- Timestamp:
- May 30, 2008, 1:50:45 PM (18 years ago)
- Children:
- eefb8e
- Parents:
- ae0078
- Location:
- util
- Files:
-
- 2 edited
-
Makefile.am (modified) (1 diff)
-
configure.ac (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
util/Makefile.am
rae0078 rbdba3c 37 37 bin_SCRIPTS = ${scripts} 38 38 39 AM_CFLAGS = -Wall -W -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wshadow -Wpointer-arith -Wcast-align -Wcast-qual -Wwrite-strings -Wredundant-decls -Wnested-externs -Wmissing-noreturn -Wformat-security -Wmissing-format-attribute -Winit-self -
util/configure.ac
rae0078 rbdba3c 32 32 if ! test x"$enable_debug" = xno; then 33 33 if test x"${enable_debug}" = xyes; then 34 CFLAGS=" -g3"35 CXXFLAGS=" -g3"34 CFLAGS="$CFLAGS -g3" 35 CXXFLAGS="$CXXFLAGS -g3" 36 36 else 37 CFLAGS=" -g${enable_debug}"38 CXXFLAGS=" -g${enable_debug}"37 CFLAGS="$CFLAGS -g${enable_debug}" 38 CXXFLAGS="$CXXFLAGS -g${enable_debug}" 39 39 fi 40 dnl enable all warnings 41 CFLAGS="$CFLAGS -Wall -W -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wshadow -Wpointer-arith -Wcast-align -Wcast-qual -Wwrite-strings -Wredundant-decls -Wnested-externs -Wmissing-noreturn -Wformat-security -Wmissing-format-attribute -Winit-self" 42 CXXFLAGS="$CXXFLAGS -Wall -W -Wshadow -Wpointer-arith -Wcast-align -Wcast-qual -Wwrite-strings -Wredundant-decls -Wmissing-noreturn -Wformat-security -Wmissing-format-attribute -Winit-self" 40 43 AC_DEFINE(HAVE_DEBUG,1, ["Output debugging info"]) 41 44 AC_SUBST(HAVE_DEBUG) 45 else 46 dnl even without debugging we want some minimal info of something's utterly wrong 47 CFLAGS="$CFLAGS -Wall" 48 CXXFLAGS="$CXXFLAGS -Wall" 42 49 fi 43 50
Note:
See TracChangeset
for help on using the changeset viewer.
