aboutsummaryrefslogtreecommitdiff
path: root/devel/pcre
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>2000-03-24 01:58:45 +0000
committerMichael Haro <mharo@FreeBSD.org>2000-03-24 01:58:45 +0000
commit2c802b6209e00a8eb0c83e73d1bf83472c99cd3c (patch)
tree40018831a943aa5690c72b40ecd0457aaad5b0ce /devel/pcre
parentfa5004af09a5358139980619abeb184d49ad3501 (diff)
downloadports-2c802b6209e00a8eb0c83e73d1bf83472c99cd3c.tar.gz
ports-2c802b6209e00a8eb0c83e73d1bf83472c99cd3c.zip
Notes
Diffstat (limited to 'devel/pcre')
-rw-r--r--devel/pcre/files/patch-aa44
1 files changed, 44 insertions, 0 deletions
diff --git a/devel/pcre/files/patch-aa b/devel/pcre/files/patch-aa
new file mode 100644
index 000000000000..1ea9b24fb684
--- /dev/null
+++ b/devel/pcre/files/patch-aa
@@ -0,0 +1,44 @@
+--- Makefile.in.orig Wed Feb 9 10:44:58 2000
++++ Makefile.in Thu Mar 9 22:32:11 2000
+@@ -42,7 +42,7 @@
+ # is set to "la" instead of "a", which causes the shared libraries to be
+ # installed.
+
+-LIBTOOL = @LIBTOOL@
++LIBTOOL = $(LOCALBASE)/bin/libtool
+ LIBSUFFIX = @LIBSUFFIX@
+
+ # These are the version numbers for the shared libraries
+@@ -76,13 +76,7 @@
+ OBJ = maketables.o get.o study.o pcre.o
+ LOBJ = maketables.lo get.lo study.lo pcre.lo
+
+-all: libtool libpcre.$(LIBSUFFIX) libpcreposix.$(LIBSUFFIX) pcretest pgrep
+-
+-libtool: config.guess config.sub ltconfig ltmain.sh
+- @if test "$(LIBTOOL)" = "libtool"; then \
+- echo '--- Building libtool ---'; \
+- ./ltconfig ./ltmain.sh; \
+- echo '--- Built libtool ---'; fi
++all: libpcre.$(LIBSUFFIX) libpcreposix.$(LIBSUFFIX) pcretest pgrep
+
+ pgrep: libpcre.$(LIBSUFFIX) pgrep.o
+ @echo ' '
+@@ -110,7 +104,7 @@
+ @echo '--- Building shared library: libpcre'
+ @echo ' '
+ -rm -f libpcre.la
+- libtool $(CC) -version-info '$(PCRELIBVERSION)' -o libpcre.la -rpath $(LIBDIR) $(LOBJ)
++ $(LIBTOOL) $(CC) -version-info '$(PCRELIBVERSION)' -o libpcre.la -rpath $(LIBDIR) $(LOBJ)
+
+ libpcreposix.a: pcreposix.o
+ @echo ' '
+@@ -125,7 +119,7 @@
+ @echo '--- Building shared library: libpcreposix'
+ @echo ' '
+ -rm -f libpcreposix.la
+- libtool $(CC) -version-info '$(PCREPOSIXLIBVERSION)' -o libpcreposix.la -rpath $(LIBDIR) pcreposix.lo
++ $(LIBTOOL) $(CC) -version-info '$(PCREPOSIXLIBVERSION)' -o libpcreposix.la -rpath $(LIBDIR) pcreposix.lo
+
+ pcre.o: chartables.c pcre.c pcre.h internal.h config.h Makefile
+ $(LIBTOOL) $(CC) -c $(CFLAGS) pcre.c