~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_cstdint.m4

  • Committer: Monty Taylor
  • Date: 2009-12-14 22:00:27 UTC
  • mto: (1241.9.10 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091214220027-kpmfbl452nctzc0g
pandora-build v0.85 - Fixed C++ standard setting.

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