~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/cxx_cstdint.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
 
7
7
AC_DEFUN([AC_CXX_CSTDINT],
8
8
  [AC_MSG_CHECKING(the location of cstdint)
9
 
  AC_LANG_SAVE
10
 
   AC_LANG_CPLUSPLUS
 
9
   AC_LANG_PUSH(C++)
11
10
   ac_cv_cxx_cstdint=""
12
11
   for location in tr1/cstdint boost/cstdint cstdint; do
13
12
     if test -z "$ac_cv_cxx_cstdint"; then
16
15
                      [ac_cv_cxx_cstdint="<$location>";])
17
16
     fi
18
17
   done
 
18
   AC_LANG_POP()
19
19
   if test -n "$ac_cv_cxx_cstdint"; then
20
20
      AC_MSG_RESULT([$ac_cv_cxx_cstdint])
21
21
   else