AC_MSG_ERROR([Your version of GCC is too old. Drizzle requires at least version 4.0.2])
64
AC_MSG_ERROR([Your version of GCC is too old. Drizzle requires at least version 4.2. If you are on OSX, you may need to specify ./configure CC=gcc-4.2 CXX=g++4.2])
57
65
fi
58
66
fi
59
67
AC_CXX_HEADER_STDCXX_98
336
344
AC_CXX_STL_HASH
337
345
AC_CXX_CSTDINT
338
346
AC_CXX_CINTTYPES
339
AC_CXX_CMATH
340
347
341
348
DRIZZLE_PROG_AR
342
349
1363
1370
W_EXCEPTIONS="-fexceptions"
1364
1371
fi
1365
1372
NO_REDUNDANT_DECLS="-Wno-redundant-decls"
1366
# Disable exceptions as they seams to create problems with gcc and threads.
1367
# drizzled doesn't use run-time-type-checking, so we disable it.