~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/cxx_cstdint.m4

  • Committer: Monty Taylor
  • Date: 2009-03-04 02:48:12 UTC
  • mto: (917.1.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 918.
  • Revision ID: mordred@inaugust.com-20090304024812-5wb6wpye5c1iitbq
Applied atomic patch to current tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# HAVE_BOOST_CSTDINT depending
5
5
# on location.
6
6
 
7
 
AC_DEFUN([PANDORA_CXX_CSTDINT],
 
7
AC_DEFUN([AC_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}"
12
10
   ac_cv_cxx_cstdint=""
13
11
   for location in tr1/cstdint boost/cstdint cstdint; do
14
12
     if test -z "$ac_cv_cxx_cstdint"; then
18
16
     fi
19
17
   done
20
18
   AC_LANG_POP()
21
 
   CXXFLAGS="${save_CXXFLAGS}"
22
19
   if test -n "$ac_cv_cxx_cstdint"; then
23
20
      AC_MSG_RESULT([$ac_cv_cxx_cstdint])
24
21
   else