Author: pquerna
Date: Wed Apr 6 17:27:03 2005
New Revision: 160349
URL: http://svn.apache.org/viewcvs?view=rev&rev=160349
Log:
fix the apr.pc.in file to include the cppflags in the Cflags varaible.
It seems braindead, but pkg-config requires this, and it is a documented behavoir.
Modified:
apr/apr/trunk/CHANGES
apr/apr/trunk/apr.pc.in
Modified: apr/apr/trunk/CHANGES
URL: http://svn.apache.org/viewcvs/apr/apr/trunk/CHANGES?view=diff&r1=160348&r2=160349
==============================================================================
--- apr/apr/trunk/CHANGES (original)
+++ apr/apr/trunk/CHANGES Wed Apr 6 17:27:03 2005
@@ -1,5 +1,7 @@
Changes for APR 1.2.0
+ *) Include the C preprocessor flags in --cflags for pkg-config.
+ [Paul Querna]
Changes for APR 1.1.1
Modified: apr/apr/trunk/apr.pc.in
URL: http://svn.apache.org/viewcvs/apr/apr/trunk/apr.pc.in?view=diff&r1=160348&r2=160349
==============================================================================
--- apr/apr/trunk/apr.pc.in (original)
+++ apr/apr/trunk/apr.pc.in Wed Apr 6 17:27:03 2005
@@ -8,4 +8,4 @@
Description: The Apache Portable Runtime library
Version: @APR_DOTTED_VERSION@
Libs: -L${libdir} -l@APR_LIBNAME@ @EXTRA_LIBS@
-Cflags: @EXTRA_CFLAGS@ -I${includedir}
+Cflags: @EXTRA_CPPFLAGS@ @EXTRA_CFLAGS@ -I${includedir}
|