orlikowski 01/12/03 11:28:40
Modified: . configure.in
Log:
AIX wants this set when using xlc, paths to source files are known.
Revision Changes Path
1.382 +4 -0 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.381
retrieving revision 1.382
diff -u -r1.381 -r1.382
--- configure.in 2001/12/03 18:00:04 1.381
+++ configure.in 2001/12/03 19:28:40 1.382
@@ -145,6 +145,8 @@
[APR_ADDTO(CFLAGS,-g)
if test "$GCC" = "yes"; then
APR_ADDTO(CFLAGS,-Wall)
+ elif test "$AIX_XLC" = "yes"; then
+ APR_ADDTO(CFLAGS,-qfullpath)
fi
])dnl
@@ -153,6 +155,8 @@
APR_ADDTO(CFLAGS,-g)
if test "$GCC" = "yes"; then
APR_ADDTO(CFLAGS,[-Wall -Wmissing-prototypes -Wstrict-prototypes
-Wmissing-declarations])
+ elif test "$AIX_XLC" = "yes"; then
+ APR_ADDTO(CFLAGS,-qfullpath)
fi
])dnl