File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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
1313SHIRO_PLUGINS_TARGET_MAKE = $(TARGET_MAKE_ENV ) $(TARGET_CONFIGURE_OPTS ) $(MAKE ) NOOPT=true -C $(@D )
1414
1515# 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
1717
1818define SHIRO_PLUGINS_BUILD_CMDS
1919 (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)
2223
2324 $(SHIRO_PLUGINS_TARGET_MAKE )
2425endef
File renamed without changes.
Original file line number Diff line number Diff line change @@ -13,12 +13,14 @@ ZAM_PLUGINS_CXXFLAGS = -std=gnu++11
1313ZAM_PLUGINS_TARGET_MAKE = $(TARGET_MAKE_ENV ) $(TARGET_CONFIGURE_OPTS ) $(MAKE ) NOOPT=true -C $(@D )
1414
1515# 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
1717
1818define ZAM_PLUGINS_BUILD_CMDS
1919 (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)
2224
2325 $(ZAM_PLUGINS_TARGET_MAKE )
2426endef
You can’t perform that action at this time.
0 commit comments