summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authornigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:40:08 +0000
committernigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:40:08 +0000
commit776635721f3417106a59041ad7e77c4c815e1bd0 (patch)
tree1bbd6ba83e3faa1b6cebf413d2e080e51f95e483 /Makefile.in
parentc8cb607ab7e12e185e86a8b23d413b7f9536f24c (diff)
downloadpcre-776635721f3417106a59041ad7e77c4c815e1bd0.tar.gz
Load pcre-4.1 into code/trunk.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@65 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index 5d621b8..510d8f1 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -56,9 +56,9 @@ MANDIR = @mandir@
CC = @CC@
CFLAGS = @CFLAGS@
-HOST_CC = @HOST_CC@
-HOST_CFLAGS = @HOST_CFLAGS@
-UTF8 = @UTF8@
+CC_FOR_BUILD = @CC_FOR_BUILD@
+CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
+UTF8 = @UTF8@
NEWLINE = @NEWLINE@
POSIX_MALLOC_THRESHOLD = @POSIX_MALLOC_THRESHOLD@
LINK_SIZE = @LINK_SIZE@
@@ -72,7 +72,7 @@ INSTALL_DATA = @INSTALL_DATA@
LIBTOOL = @LIBTOOL@
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) -I. -I$(top_srcdir) $(NEWLINE) $(LINK_SIZE) $(MATCH_LIMIT)
-LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -I. -I$(top_srcdir)
+LINK = $(LIBTOOL) --mode=link $(CC) --no-undefined $(CFLAGS) -I. -I$(top_srcdir)
# These are the version numbers for the shared libraries
@@ -101,7 +101,7 @@ libpcre.la: $(OBJ)
libpcreposix.la: pcreposix.o
-rm -f libpcreposix.la
- $(LINK) -rpath $(LIBDIR) -version-info \
+ $(LINK) -rpath $(LIBDIR) -L. -lpcre -version-info \
'$(PCREPOSIXLIBVERSION)' -o libpcreposix.la pcreposix.lo
pcre.o: $(top_srcdir)/chartables.c $(top_srcdir)/pcre.c \
@@ -140,7 +140,7 @@ $(top_srcdir)/chartables.c: dftables
dftables.o: $(top_srcdir)/dftables.c $(top_srcdir)/maketables.c \
$(top_srcdir)/internal.h pcre.h config.h Makefile
- $(HOST_CC) -c $(HOST_CFLAGS) -I. $(top_srcdir)/dftables.c
+ $(CC_FOR_BUILD) -c $(CFLAGS_FOR_BUILD) -I. $(top_srcdir)/dftables.c
dftables: dftables.o
$(LINK) -o dftables dftables.o