~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Monty Taylor
  • Date: 2008-07-30 21:24:14 UTC
  • mto: (202.3.5 gettextize)
  • mto: This revision was merged to the branch mainline in revision 243.
  • Revision ID: monty@inaugust.com-20080730212414-z8n7ug9a1wokh612
Changed C++ check to actually check for CXX98 instead (since the plain C++ check can't be trusted) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
sinclude(config/ac-macros/readline.m4)
50
50
sinclude(config/ac-macros/ssl.m4)
51
51
sinclude(config/ac-macros/pkg.m4)
 
52
sinclude(config/ac-macros/ac_cxx_header_stdcxx_98.m4)
52
53
 
53
54
# Remember to add a directory drizzled/share/LANGUAGE
54
55
AVAILABLE_LANGUAGES="\
161
162
  C99_SUPPORT_HACK=""
162
163
],[C99_SUPPORT_HACK="-std=gnu99"])
163
164
AC_PROG_CXX
164
 
if test "x$ac_ct_CXX" = "x"
 
165
AC_CXX_HEADER_STDCXX_98
 
166
if test "$ac_cv_cxx_stdcxx_98" = "no"
165
167
then
166
168
  AC_MSG_ERROR([C++ Compiler required to compile Drizzle])
167
169
fi