~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/cxx_cstdint.m4

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-08 04:22:33 UTC
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090808042233-q0z88zc490z3f3r7
Renamed the Command class to be Statement. Renamed the command directory to
statement and also the command header file to statement. Updated various
source files to reflect this renaming.

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