You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2011/04/01 04:33:27 UTC

svn commit: r1087561 - /httpd/httpd/trunk/NWGNUmakefile

Author: fuankg
Date: Fri Apr  1 02:33:27 2011
New Revision: 1087561

URL: http://svn.apache.org/viewvc?rev=1087561&view=rev
Log:
Fixed lib target for old PCRE.

With older PCRE chartables.c is included from pcre.c.

Modified:
    httpd/httpd/trunk/NWGNUmakefile

Modified: httpd/httpd/trunk/NWGNUmakefile
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/NWGNUmakefile?rev=1087561&r1=1087560&r2=1087561&view=diff
==============================================================================
--- httpd/httpd/trunk/NWGNUmakefile (original)
+++ httpd/httpd/trunk/NWGNUmakefile Fri Apr  1 02:33:27 2011
@@ -218,7 +218,7 @@ TARGET_nlm = \
 # If there is an LIB target, put it here
 #
 TARGET_lib = \
-	$(OBJDIR)/pcre.lib \
+	$(PCRELIB) \
 	$(EOLIST)
 
 #
@@ -369,14 +369,11 @@ FILES_lib_objs = \
 	$(OBJDIR)/pcre_tables.o \
 	$(OBJDIR)/pcre_try_flipped.o \
 	$(OBJDIR)/pcre_version.o \
+	$(OBJDIR)/chartables.o \
 	$(EOLIST)
 
 endif
 
-FILES_lib_objs += \
-	$(OBJDIR)/chartables.o \
-	$(EOLIST)
-
 #
 # implement targets and dependancies (leave this section alone)
 #