diff options
Diffstat (limited to 'patches')
-rw-r--r-- | patches/perl-5.22.1.local.patch | 2 | ||||
-rw-r--r-- | patches/smallbasic.local.patch | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/patches/perl-5.22.1.local.patch b/patches/perl-5.22.1.local.patch index 65fe7e6a..2113c540 100644 --- a/patches/perl-5.22.1.local.patch +++ b/patches/perl-5.22.1.local.patch @@ -22,7 +22,7 @@ diff -ru perl-5.22.1.orig/Makefile perl-5.22.1/Makefile $(eval extlibs=$(shell cat ext.libs)) $(eval statars=$(shell cat static.list)) - $(CC) $(LDFLAGS) -o $@ $(filter %$o,$^) $(LIBPERL) $(statars) $(LIBS) $(extlibs) -+ $(CC) $(LDFLAGS) -o $@ $(filter %$o,$^) -lperl $(statars) $(LIBS) $(extlibs) ++ $(CC) $(LDFLAGS) -o $@ $(filter %$o,$^) -L. -lperl $(statars) $(LIBS) $(extlibs) %$o: %.c config.h $(CC) $(CFLAGS) -c -o $@ $< diff --git a/patches/smallbasic.local.patch b/patches/smallbasic.local.patch new file mode 100644 index 00000000..e92e5b02 --- /dev/null +++ b/patches/smallbasic.local.patch @@ -0,0 +1,11 @@ +--- SmallBASIC/configure.orig 2017-11-20 01:35:25.276000000 +0000 ++++ SmallBASIC/configure 2017-11-20 01:37:03.332000000 +0000 +@@ -5171,7 +5171,7 @@ + + $as_echo "#define USE_PCRE 1" >>confdefs.h + +- PACKAGE_LIBS="${PACKAGE_LIBS} `pcre-config --libs`" ++ PACKAGE_LIBS="${PACKAGE_LIBS} ${PCRE_LIBS}" + fi + } + |