File tree Expand file tree Collapse file tree 4 files changed +22
-6
lines changed Expand file tree Collapse file tree 4 files changed +22
-6
lines changed Original file line number Diff line number Diff line change
1
+ diff --git a/screcord/Makefile b/screcord/Makefile
2
+ index 584d094..95383dc 100644
3
+ --- a/screcord/Makefile
4
+ +++ b/screcord/Makefile
5
+ @@ -62,7 +62,7 @@
6
+
7
+ # set compile flags
8
+ CFLAGS += -I. -I./dsp -fPIC -DPIC -O2 -Wall -funroll-loops `pkg-config --cflags sndfile`\
9
+ - -ffast-math -fomit-frame-pointer -fstrength-reduce -fdata-sections -Wl,--gc-sections $(SSE_CFLAGS)
10
+ + -ffast-math -fomit-frame-pointer -fstrength-reduce -fdata-sections -Wl,--gc-sections -pthread $(SSE_CFLAGS)
11
+ CXXFLAGS += -std=c++11 $(CFLAGS)
12
+ LDFLAGS += -I. -lm -shared -Llibrary -lm -fPIC -DPIC `pkg-config --libs sndfile`
13
+ ifneq ($(MACOS)$(WINDOWS),true)
Original file line number Diff line number Diff line change @@ -13,12 +13,13 @@ SHIRO_PLUGINS_CXXFLAGS = -std=gnu++11
13
13
SHIRO_PLUGINS_TARGET_MAKE = $(TARGET_MAKE_ENV ) $(TARGET_CONFIGURE_OPTS ) $(MAKE ) NOOPT=true -C $(@D )
14
14
15
15
# needed for submodules support
16
- SHIRO_PLUGINS_PRE_DOWNLOAD_HOOKS += MOD_PLUGIN_BUILDER_DOWNLOAD_WITH_SUBMODULES
16
+ # SHIRO_PLUGINS_PRE_DOWNLOAD_HOOKS += MOD_PLUGIN_BUILDER_DOWNLOAD_WITH_SUBMODULES
17
17
18
18
define SHIRO_PLUGINS_BUILD_CMDS
19
19
(cd $(@D ) && \
20
- [ ! -e dpf/Makefile ] && \
21
- git clone https://github.com/DISTRHO/DPF.git dpf --depth=1)
20
+ rm -rf dpf && \
21
+ git clone https://github.com/DISTRHO/DPF.git dpf && \
22
+ git -C dpf checkout f8cd00fc49ab0e91a136d109e5478946ae936956)
22
23
23
24
$(SHIRO_PLUGINS_TARGET_MAKE )
24
25
endef
File renamed without changes.
Original file line number Diff line number Diff line change @@ -13,12 +13,14 @@ ZAM_PLUGINS_CXXFLAGS = -std=gnu++11
13
13
ZAM_PLUGINS_TARGET_MAKE = $(TARGET_MAKE_ENV ) $(TARGET_CONFIGURE_OPTS ) $(MAKE ) NOOPT=true -C $(@D )
14
14
15
15
# needed for submodules support
16
- ZAM_PLUGINS_PRE_DOWNLOAD_HOOKS += MOD_PLUGIN_BUILDER_DOWNLOAD_WITH_SUBMODULES
16
+ # ZAM_PLUGINS_PRE_DOWNLOAD_HOOKS += MOD_PLUGIN_BUILDER_DOWNLOAD_WITH_SUBMODULES
17
17
18
18
define ZAM_PLUGINS_BUILD_CMDS
19
19
(cd $(@D ) && \
20
- [ ! -e dpf/Makefile ] && \
21
- git clone https://github.com/DISTRHO/DPF.git dpf --depth=1)
20
+ rm -rf dpf && \
21
+ git clone https://github.com/DISTRHO/DPF.git dpf && \
22
+ git -C dpf checkout f8cd00fc49ab0e91a136d109e5478946ae936956 && \
23
+ patch -p1 -i $($(PKG ) _PKGDIR) /02_fix-win32-ttl-gen.patchx)
22
24
23
25
$(ZAM_PLUGINS_TARGET_MAKE )
24
26
endef
You can’t perform that action at this time.
0 commit comments