~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/ac_cxx_header_stdcxx_98.m4

  • Committer: Monty Taylor
  • Date: 2009-01-09 19:40:29 UTC
  • mto: (779.1.4 devel)
  • mto: This revision was merged to the branch mainline in revision 784.
  • Revision ID: mordred@inaugust.com-20090109194029-vcic3m30e4uj0smj
General build cleanup - removed cruft, removed depreated checks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
AC_DEFUN([AC_CXX_HEADER_STDCXX_98], [
7
7
  AC_CACHE_CHECK(for ISO C++ 98 include files,
8
8
  ac_cv_cxx_stdcxx_98,
9
 
  [AC_LANG_SAVE
10
 
  AC_LANG_CPLUSPLUS
 
9
  [AC_LANG_PUSH(C++)
11
10
  AC_TRY_COMPILE([
12
11
    #include <cassert>
13
12
    #include <cctype>
60
59
    #include <vector>
61
60
  ],,
62
61
  ac_cv_cxx_stdcxx_98=yes, ac_cv_cxx_stdcxx_98=no)
63
 
  AC_LANG_RESTORE
 
62
  AC_LANG_POP()
64
63
  ])
65
64
  if test "$ac_cv_cxx_stdcxx_98" = yes; then
66
65
    AC_DEFINE(STDCXX_98_HEADERS,,[Define if ISO C++ 1998 header files are present. ])