[hipl-commit] [trunk] Rev 4547: cosmetics: split the CFLAGS onto multiple lines.

  • From: Mircea Gherzan <mircea.gherzan@xxxxxxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Mon, 17 May 2010 22:04:51 +0300

Committer: Mircea Gherzan <mircea.gherzan@xxxxxxxxxxxxxx>
Date: 17/05/2010 at 22:04:51
Revision: 4547
Revision-id: mircea.gherzan@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  cosmetics: split the CFLAGS onto multiple lines.

Modified:
  M  configure.ac

=== modified file 'configure.ac'
--- configure.ac        2010-05-17 18:24:10 +0000
+++ configure.ac        2010-05-17 19:04:21 +0000
@@ -66,7 +66,14 @@
 
 
 # Set default AM_CFLAGS for the complete project.
-AC_SUBST(AM_CFLAGS, "-std=c99 -Werror -Wall -Wredundant-decls 
-Wdisabled-optimization -Wundef -Wstrict-prototypes -Wmissing-prototypes 
-Wno-deprecated-declarations -Wpointer-arith -Wwrite-strings 
-fno-strict-aliasing")
+AC_SUBST(AM_CFLAGS, "-std=c99 -Werror -Wall")
+AC_SUBST(AM_CFLAGS, "$AM_CFLAGS -Wredundant-decls -Wdisabled-optimization")
+AC_SUBST(AM_CFLAGS, "$AM_CFLAGS -Wundef -Wstrict-prototypes 
-Wmissing-prototypes")
+AC_SUBST(AM_CFLAGS, "$AM_CFLAGS -Wno-deprecated-declarations -Wpointer-arith")
+AC_SUBST(AM_CFLAGS, "$AM_CFLAGS -Wwrite-strings")
+
+#TODO fix the code and get rid of this one
+AC_SUBST(AM_CFLAGS, "$AM_CFLAGS -fno-strict-aliasing")
 
 # Set the preprocessor flags for the entire project
 AC_SUBST(AM_CPPFLAGS, "-D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=500")

Other related posts:

  • » [hipl-commit] [trunk] Rev 4547: cosmetics: split the CFLAGS onto multiple lines. - Mircea Gherzan