jorton 2003/02/04 06:46:45
Modified: build apr_hints.m4
Log:
Don't add -Oacgiltz to CFLAGS for GCC on *-sco3.2v[234]*, probable fix
for PR #8570 (untested).
Revision Changes Path
1.48 +3 -1 apr/build/apr_hints.m4
Index: apr_hints.m4
===================================================================
RCS file: /home/cvs/apr/build/apr_hints.m4,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- apr_hints.m4 4 Feb 2003 14:39:50 -0000 1.47
+++ apr_hints.m4 4 Feb 2003 14:46:44 -0000 1.48
@@ -175,7 +175,9 @@
;;
*-sco3.2v[234]*)
APR_ADDTO(CPPFLAGS, [-DSCO -D_REENTRANT])
- APR_ADDTO(CFLAGS, [-Oacgiltz])
+ if test "$GCC" = "no"; then
+ APR_ADDTO(CFLAGS, [-Oacgiltz])
+ fi
APR_ADDTO(LIBS, [-lPW -lmalloc])
;;
*-sco3.2v5*)
|