~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_cstdint.m4

pandora-build v0.85 - Fixed the C++ standard setting in the build checks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
AC_DEFUN([PANDORA_CXX_CSTDINT],
8
8
  [AC_MSG_CHECKING(the location of cstdint)
9
9
   AC_LANG_PUSH(C++)
 
10
   save_CXXFLAGS="${CXXFLAGS}"
 
11
   CXXFLAGS="${CXX_STANDARD} ${CXXFLAGS}"
10
12
   ac_cv_cxx_cstdint=""
11
13
   for location in tr1/cstdint boost/cstdint cstdint; do
12
14
     if test -z "$ac_cv_cxx_cstdint"; then
16
18
     fi
17
19
   done
18
20
   AC_LANG_POP()
 
21
   CXXFLAGS="${save_CXXFLAGS}"
19
22
   if test -n "$ac_cv_cxx_cstdint"; then
20
23
      AC_MSG_RESULT([$ac_cv_cxx_cstdint])
21
24
   else