1 dnl Copyright (C) 2009 Sun Microsystems
2 dnl This file is free software; Sun Microsystems
3 dnl gives unlimited permission to copy and/or distribute it,
4 dnl with or without modifications, as long as this notice is preserved.
6 dnl AC_PANDORA_WARNINGS([less-warnings|warnings-always-on])
7 dnl less-warnings turn on a limited set of warnings
8 dnl warnings-always-on always set warnings=error regardless of tarball/vc
10 dnl @TODO: remove less-warnings option as soon as Drizzle is clean enough to
13 AC_DEFUN([PANDORA_WARNINGS],[
14 m4_define([PW_LESS_WARNINGS],[no])
15 m4_define([PW_WARN_ALWAYS_ON],[no])
16 ifdef([m4_define],,[define([m4_define], defn([define]))])
17 ifdef([m4_undefine],,[define([m4_undefine], defn([undefine]))])
18 m4_foreach([pw_arg],[$*],[
21 m4_undefine([PW_LESS_WARNINGS])
22 m4_define([PW_LESS_WARNINGS],[yes])
24 [warnings-always-on],[
25 m4_undefine([PW_WARN_ALWAYS_ON])
26 m4_define([PW_WARN_ALWAYS_ON],[yes])
30 AC_REQUIRE([PANDORA_BUILDING_FROM_VC])
31 m4_if(PW_WARN_ALWAYS_ON, [yes],
32 [ac_cv_warnings_as_errors=yes],
33 AS_IF([test "$pandora_building_from_vc" = "yes"],
34 [ac_cv_warnings_as_errors=yes],
35 [ac_cv_warnings_as_errors=no]))
37 AC_ARG_ENABLE([profiling],
38 [AS_HELP_STRING([--enable-profiling],
39 [Toggle profiling @<:@default=off@:>@])],
40 [ac_profiling="$enableval"],
43 AC_ARG_ENABLE([coverage],
44 [AS_HELP_STRING([--enable-coverage],
45 [Toggle coverage @<:@default=off@:>@])],
46 [ac_coverage="$enableval"],
49 AS_IF([test "$GCC" = "yes"],[
51 AS_IF([test "$ac_profiling" = "yes"],[
53 GCOV_LIBS="-pg -lgcov"
56 AC_CHECK_LIB(c_p, read)
64 AS_IF([test "$ac_coverage" = "yes"],
66 CC_COVERAGE="--coverage"
72 AS_IF([test "$ac_cv_warnings_as_errors" = "yes"],
75 AC_CACHE_CHECK([whether it is safe to use -fdiagnostics-show-option],
76 [ac_cv_safe_to_use_fdiagnostics_show_option_],
77 [save_CFLAGS="$CFLAGS"
78 CFLAGS="-fdiagnostics-show-option ${AM_CFLAGS} ${CFLAGS}"
80 [AC_LANG_PROGRAM([],[])],
81 [ac_cv_safe_to_use_fdiagnostics_show_option_=yes],
82 [ac_cv_safe_to_use_fdiagnostics_show_option_=no])
83 CFLAGS="$save_CFLAGS"])
85 AS_IF([test "$ac_cv_safe_to_use_fdiagnostics_show_option_" = "yes"],
87 F_DIAGNOSTICS_SHOW_OPTION="-fdiagnostics-show-option"
90 AC_CACHE_CHECK([whether it is safe to use -Wconversion],
91 [ac_cv_safe_to_use_wconversion_],
92 [save_CFLAGS="$CFLAGS"
93 dnl Use -Werror here instead of ${W_FAIL} so that we don't spew
94 dnl conversion warnings to all the tarball folks
95 CFLAGS="-Wconversion -Werror -pedantic ${AM_CFLAGS} ${CFLAGS}"
106 [ac_cv_safe_to_use_wconversion_=yes],
107 [ac_cv_safe_to_use_wconversion_=no])
108 CFLAGS="$save_CFLAGS"])
110 AS_IF([test "$ac_cv_safe_to_use_wconversion_" = "yes"],
111 [W_CONVERSION="-Wconversion"
112 AC_CACHE_CHECK([whether it is safe to use -Wconversion with htons],
113 [ac_cv_safe_to_use_Wconversion_],
114 [save_CFLAGS="$CFLAGS"
115 dnl Use -Werror here instead of ${W_FAIL} so that we don't spew
116 dnl conversion warnings to all the tarball folks
117 CFLAGS="-Wconversion -Werror -pedantic ${AM_CFLAGS} ${CFLAGS}"
121 #include <netinet/in.h>
123 uint16_t x= htons(80);
125 [ac_cv_safe_to_use_Wconversion_=yes],
126 [ac_cv_safe_to_use_Wconversion_=no])
127 CFLAGS="$save_CFLAGS"])
129 AS_IF([test "$ac_cv_safe_to_use_Wconversion_" = "no"],
130 [NO_CONVERSION="-Wno-conversion"])
133 NO_STRICT_ALIASING="-fno-strict-aliasing -Wno-strict-aliasing"
134 NO_SHADOW="-Wno-shadow"
136 AS_IF([test "$INTELCC" = "yes"],[
137 m4_if(PW_LESS_WARNINGS,[no],[
138 BASE_WARNINGS="-w1 -Werror -Wcheck -Wformat -Wp64 -Woverloaded-virtual -Wcast-qual"
140 BASE_WARNINGS="-w1 -Wcheck -Wformat -Wp64 -Woverloaded-virtual -Wcast-qual -diag-disable 981"
142 CC_WARNINGS="${BASE_WARNINGS}"
143 CXX_WARNINGS="${BASE_WARNINGS}"
145 m4_if(PW_LESS_WARNINGS,[no],[
146 BASE_WARNINGS_FULL="-Wformat=2 ${W_CONVERSION} -Wstrict-aliasing"
147 CC_WARNINGS_FULL="-Wswitch-default -Wswitch-enum -Wwrite-strings"
148 CXX_WARNINGS_FULL="-Wold-style-cast"
149 NO_OLD_STYLE_CAST="-Wno-old-style-cast"
150 NO_EFF_CXX="-Wno-effc++"
152 BASE_WARNINGS_FULL="-Wformat ${NO_STRICT_ALIASING}"
155 AS_IF([test "${ac_cv_assert}" = "no"],
156 [NO_UNUSED="-Wno-unused-variable -Wno-unused-parameter"])
158 AC_CACHE_CHECK([whether it is safe to use -Wextra],
159 [ac_cv_safe_to_use_Wextra_],
160 [save_CFLAGS="$CFLAGS"
161 CFLAGS="${W_FAIL} -pedantic -Wextra ${AM_CFLAGS} ${CFLAGS}"
168 [ac_cv_safe_to_use_Wextra_=yes],
169 [ac_cv_safe_to_use_Wextra_=no])
170 CFLAGS="$save_CFLAGS"])
172 BASE_WARNINGS="${W_FAIL} -pedantic -Wall -Wundef -Wshadow ${NO_UNUSED} ${F_DIAGNOSTICS_SHOW_OPTION} ${CFLAG_VISIBILITY} ${BASE_WARNINGS_FULL}"
173 AS_IF([test "$ac_cv_safe_to_use_Wextra_" = "yes"],
174 [BASE_WARNINGS="${BASE_WARNINGS} -Wextra"],
175 [BASE_WARNINGS="${BASE_WARNINGS} -W"])
177 CC_WARNINGS="${BASE_WARNINGS} -Wstrict-prototypes -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wcast-align ${CC_WARNINGS_FULL}"
178 CXX_WARNINGS="${BASE_WARNINGS} -Woverloaded-virtual -Wnon-virtual-dtor -Wctor-dtor-privacy -Wno-long-long ${CXX_WARNINGS_FULL}"
180 AC_CACHE_CHECK([whether it is safe to use -Wmissing-declarations from C++],
181 [ac_cv_safe_to_use_Wmissing_declarations_],
183 save_CXXFLAGS="$CXXFLAGS"
184 CXXFLAGS="-Werror -pedantic -Wmissing-declarations ${AM_CXXFLAGS}"
191 [ac_cv_safe_to_use_Wmissing_declarations_=yes],
192 [ac_cv_safe_to_use_Wmissing_declarations_=no])
193 CXXFLAGS="$save_CXXFLAGS"
196 AS_IF([test "$ac_cv_safe_to_use_Wmissing_declarations_" = "yes"],
197 [CXX_WARNINGS="${CXX_WARNINGS} -Wmissing-declarations"])
199 AC_CACHE_CHECK([whether it is safe to use -Wlogical-op],
200 [ac_cv_safe_to_use_Wlogical_op_],
201 [save_CFLAGS="$CFLAGS"
202 CFLAGS="${W_FAIL} -pedantic -Wlogical-op ${AM_CFLAGS} ${CFLAGS}"
209 [ac_cv_safe_to_use_Wlogical_op_=yes],
210 [ac_cv_safe_to_use_Wlogical_op_=no])
211 CFLAGS="$save_CFLAGS"])
212 AS_IF([test "$ac_cv_safe_to_use_Wlogical_op_" = "yes"],
213 [CC_WARNINGS="${CC_WARNINGS} -Wlogical-op"])
215 AC_CACHE_CHECK([whether it is safe to use -Wredundant-decls from C++],
216 [ac_cv_safe_to_use_Wredundant_decls_],
218 save_CXXFLAGS="${CXXFLAGS}"
219 CXXFLAGS="${W_FAIL} -pedantic -Wredundant-decls ${AM_CXXFLAGS}"
222 template <typename E> struct C { void foo(); };
223 template <typename E> void C<E>::foo() { }
224 template <> void C<int>::foo();
225 AC_INCLUDES_DEFAULT])],
226 [ac_cv_safe_to_use_Wredundant_decls_=yes],
227 [ac_cv_safe_to_use_Wredundant_decls_=no])
228 CXXFLAGS="${save_CXXFLAGS}"
230 AS_IF([test "$ac_cv_safe_to_use_Wredundant_decls_" = "yes"],
231 [CXX_WARNINGS="${CXX_WARNINGS} -Wredundant-decls"],
232 [CXX_WARNINGS="${CXX_WARNINGS} -Wno-redundant-decls"])
234 AC_CACHE_CHECK([whether it is safe to use -Wattributes from C++],
235 [ac_cv_safe_to_use_Wattributes_],
237 save_CXXFLAGS="${CXXFLAGS}"
238 CXXFLAGS="${W_FAIL} -pedantic -Wattributes -fvisibility=hidden ${AM_CXXFLAGS}"
241 #include <google/protobuf/message.h>
242 #include <google/protobuf/descriptor.h>
245 const ::google::protobuf::EnumDescriptor* Table_TableOptions_RowType_descriptor();
246 enum Table_TableOptions_RowType {
247 Table_TableOptions_RowType_ROW_TYPE_DEFAULT = 0,
248 Table_TableOptions_RowType_ROW_TYPE_FIXED = 1,
249 Table_TableOptions_RowType_ROW_TYPE_DYNAMIC = 2,
250 Table_TableOptions_RowType_ROW_TYPE_COMPRESSED = 3,
251 Table_TableOptions_RowType_ROW_TYPE_REDUNDANT = 4,
252 Table_TableOptions_RowType_ROW_TYPE_COMPACT = 5,
253 Table_TableOptions_RowType_ROW_TYPE_PAGE = 6
259 inline const EnumDescriptor* GetEnumDescriptor<Table_TableOptions_RowType>() {
260 return Table_TableOptions_RowType_descriptor();
265 [ac_cv_safe_to_use_Wattributes_=yes],
266 [ac_cv_safe_to_use_Wattributes_=no])
267 CXXFLAGS="${save_CXXFLAGS}"
269 AC_CACHE_CHECK([whether it is safe to use -Wno-attributes],
270 [ac_cv_safe_to_use_Wno_attributes_],
271 [save_CFLAGS="$CFLAGS"
272 CFLAGS="${W_FAIL} -pedantic -Wno_attributes_ ${AM_CFLAGS} ${CFLAGS}"
279 [ac_cv_safe_to_use_Wno_attributes_=yes],
280 [ac_cv_safe_to_use_Wno_attributes_=no])
281 CFLAGS="$save_CFLAGS"])
283 dnl GCC 3.4 doesn't have -Wno-attributes, so we can't turn them off
285 AS_IF([test "$ac_cv_safe_to_use_Wattributes_" != "yes"],[
286 AS_IF([test "$ac_cv_safe_to_use_Wno_attributes_" = "yes"],[
287 CC_WARNINGS="${CC_WARNINGS} -Wno-attributes"
288 NO_ATTRIBUTES="-Wno-attributes"])])
291 NO_REDUNDANT_DECLS="-Wno-redundant-decls"
292 dnl TODO: Figure out a better way to deal with this:
293 PROTOSKIP_WARNINGS="-Wno-effc++ -Wno-shadow -Wno-missing-braces ${NO_ATTRIBUTES}"
294 NO_WERROR="-Wno-error"
295 INNOBASE_SKIP_WARNINGS="-Wno-shadow -Wno-cast-align"
296 AS_IF([test "$host_vendor" = "apple"],[
297 BOOSTSKIP_WARNINGS="-Wno-uninitialized"
302 AS_IF([test "$SUNCC" = "yes"],[
304 AS_IF([test "$ac_profiling" = "yes"],
305 [CC_PROFILING="-xinstrument=datarace"])
307 AS_IF([test "$ac_cv_warnings_as_errors" = "yes"],
308 [W_FAIL="-errwarn=%all"])
310 AC_CACHE_CHECK([whether E_PASTE_RESULT_NOT_TOKEN is usable],
311 [ac_cv_paste_result],
313 save_CFLAGS="${CFLAGS}"
314 CFLAGS="-errwarn=%all -erroff=E_PASTE_RESULT_NOT_TOKEN ${CFLAGS}"
320 [ac_cv_paste_result=yes],
321 [ac_cv_paste_result=no])
322 CFLAGS="${save_CFLAGS}"
324 AS_IF([test $ac_cv_paste_result = yes],
325 [W_PASTE_RESULT=",E_PASTE_RESULT_NOT_TOKEN"])
328 m4_if(PW_LESS_WARNINGS, [no],[
329 CC_WARNINGS_FULL="-erroff=E_INTEGER_OVERFLOW_DETECTED${W_PASTE_RESULT}"
330 CXX_WARNINGS_FULL="-erroff=inllargeuse"
332 CC_WARNINGS_FULL="-erroff=E_ATTRIBUTE_NOT_VAR"
333 CXX_WARNINGS_FULL="-erroff=attrskipunsup,doubunder,reftotemp,inllargeuse,truncwarn1,signextwarn,inllargeint"
336 CC_WARNINGS="-v -errtags=yes ${W_FAIL} ${CC_WARNINGS_FULL} ${CFLAG_VISIBILITY}"
337 CXX_WARNINGS="+w +w2 -xwe -xport64 -errtags=yes ${CXX_WARNINGS_FULL} ${W_FAIL} ${CFLAG_VISIBILITY}"
338 PROTOSKIP_WARNINGS="-erroff=attrskipunsup,doubunder,reftotemp,wbadinitl,identexpected,inllargeuse,truncwarn1,signextwarn,partinit,notused,badargtype2w,wbadinit"
339 BOOSTSKIP_WARNINGS="-erroff=attrskipunsup,doubunder,reftotemp,inllargeuse,truncwarn1,signextwarn,inllargeint,hidef,wvarhidenmem"
340 NO_UNREACHED="-erroff=E_STATEMENT_NOT_REACHED"
341 NO_WERROR="-errwarn=%none"
345 AC_SUBST(NO_CONVERSION)
346 AC_SUBST(NO_REDUNDANT_DECLS)
347 AC_SUBST(NO_UNREACHED)
349 AC_SUBST(NO_STRICT_ALIASING)
351 AC_SUBST(NO_OLD_STYLE_CAST)
352 AC_SUBST(PROTOSKIP_WARNINGS)
353 AC_SUBST(BOOSTSKIP_WARNINGS)
354 AC_SUBST(INNOBASE_SKIP_WARNINGS)
356 AC_SUBST([GCOV_LIBS])