[Spread-cvs] commit: r548 - trunk/stdutil

jschultz at spread.org jschultz at spread.org
Tue Mar 12 16:23:24 EDT 2013


Author: jschultz
Date: 2013-03-12 16:23:23 -0400 (Tue, 12 Mar 2013)
New Revision: 548

Modified:
   trunk/stdutil/configure.in
Log:
Change to stdutil configure to append onto CFLAGS rather than setting / wiping them out.


Modified: trunk/stdutil/configure.in
===================================================================
--- trunk/stdutil/configure.in	2013-03-12 20:18:22 UTC (rev 547)
+++ trunk/stdutil/configure.in	2013-03-12 20:23:23 UTC (rev 548)
@@ -18,10 +18,8 @@
 	LD=$CC
 fi
 
-CFLAGS=""
-
 if test "$GCC" = "yes"; then 
-	CFLAGS="-Wall"
+	CFLAGS="$CFLAGS -Wall"
 fi
 
 # Check for threading parameters (store temporarily into main vars then put into specific ones)
@@ -62,7 +60,7 @@
         ;;
 mips-sgi-irix*)
 	CC=cc
-	CFLAGS="-n32 -signed"
+	CFLAGS="$CFLAGS -n32 -signed"
 	DYNLIBEXT=
 	STANDARD_LIBS="\$(STATIC_THREADED_DEBUG_LIB) \$(STATIC_THREADED_RELEASE_LIB)"
 	SHARED_LIBS=




More information about the Spread-cvs mailing list