Browse Source

Tweaks and remove old patch

Signed-off-by: falkTX <falktx@falktx.com>
pull/25/head
falkTX 3 years ago
parent
commit
3ce181e485
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 1 additions and 15 deletions
  1. +1
    -1
      bootstrap-plugins.sh
  2. +0
    -14
      patches/lv2lint/macos/01_fix-build.patch

+ 1
- 1
bootstrap-plugins.sh View File

@@ -228,7 +228,7 @@ if [ ! -e "${PAWPAW_PREFIX}/lib/pkgconfig/fluidsynth.pc-e" ]; then
elif [ "${WIN32}" -eq 1 ]; then
FLUIDSYNTH_EXTRALIBS+=" -lole32 -lws2_32"
fi
sed -i -e "s/-L${libdir} -lfluidsynth/-L${libdir} -lfluidsynth ${FLUIDSYNTH_EXTRALIBS}/" "${PAWPAW_PREFIX}/lib/pkgconfig/fluidsynth.pc"
sed -i -e "s/-L\${libdir} -lfluidsynth/-L\${libdir} -lfluidsynth ${FLUIDSYNTH_EXTRALIBS}/" "${PAWPAW_PREFIX}/lib/pkgconfig/fluidsynth.pc"
touch "${PAWPAW_PREFIX}/lib/pkgconfig/fluidsynth.pc-e"
fi



+ 0
- 14
patches/lv2lint/macos/01_fix-build.patch View File

@@ -1,14 +0,0 @@
diff --git a/lv2lint.c b/lv2lint.c
index e18a574..29fcac1 100644
--- a/lv2lint.c
+++ b/lv2lint.c
@@ -668,6 +668,9 @@ _pattern_match(const char *pattern, const char *str)
}
#if defined(HAS_FNMATCH)
+# ifndef FNM_EXTMATCH /* glibc extension */
+# define FNM_EXTMATCH 0
+# endif
if(fnmatch(pattern, str, FNM_CASEFOLD | FNM_EXTMATCH) == 0)
#else
if(strcasecmp(pattern, str) == 0)

Loading…
Cancel
Save