~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/cxx_cstdint.m4

Merged Nathan from lp:~nlws/drizzle/fix-string-c-ptr-overrun

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