From d954b89d2fd9f8032bdb4de3f0fdad7754f982bf Mon Sep 17 00:00:00 2001 From: Hyunjin Song Date: Wed, 15 May 2019 12:33:01 +0900 Subject: [PATCH 1/2] [TEST] Build FLTK for ZynAddSubFX support --- io.lmms.LMMS.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/io.lmms.LMMS.json b/io.lmms.LMMS.json index ecb9e9c..4591522 100644 --- a/io.lmms.LMMS.json +++ b/io.lmms.LMMS.json @@ -189,6 +189,29 @@ } ] }, + { + "name": "fltk", + "config-opts": [ + "--enable-threads", + "--enable-cairo", + "--enable-shared", + "--disable-static" + ], + "sources": [ + { + "type": "archive", + "url": "https://github.com/fltk/fltk/archive/release-1.3.5.tar.gz", + "sha256": "5c534287b0e03b9520ff866704a5649268986b371bdf8f6ac003fa240e761901" + } + ], + "cleanup": [ + "/include", + "/man", + "/share/man", + "/lib/pkgconfig", + "*.la" + ] + }, { "name": "lmms", "buildsystem": "cmake-ninja", From 2d9510fb163988a7ab21e22ef458cef0579d5867 Mon Sep 17 00:00:00 2001 From: Hyunjin Song Date: Wed, 15 May 2019 12:34:21 +0900 Subject: [PATCH 2/2] Test if the RemoteZynAddSubFX error is due to the file system restriction --- io.lmms.LMMS.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io.lmms.LMMS.json b/io.lmms.LMMS.json index 4591522..01640c6 100644 --- a/io.lmms.LMMS.json +++ b/io.lmms.LMMS.json @@ -16,8 +16,8 @@ "--socket=pulseaudio", /* MIDI */ "--device=all", - /* Allow loading, saving files from the home directory (portals don’t work yet) */ - "--filesystem=home", + /* Allow loading, saving files from anywhere (portals don’t work yet) */ + "--filesystem=host", /* Allow other instances to see lockfiles */ "--env=TMPDIR=/var/tmp", "--env=QT_AUTO_SCREEN_SCALE_FACTOR=1",