~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Brian Aker
  • Date: 2008-10-07 15:15:28 UTC
  • mfrom: (481.1.24 codestyle)
  • Revision ID: brian@tangent.org-20081007151528-xc1w8m90lqb37j4r
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
928
928
AC_TYPE_OFF_T
929
929
AC_HEADER_TIME
930
930
AC_STRUCT_TM
931
 
# AC_CHECK_SIZEOF return 0 when it does not find the size of a
932
 
# type. We want a error instead.
933
 
AC_CHECK_SIZEOF(char, 1)
934
 
if test "$ac_cv_sizeof_char" -eq 0
935
 
then
936
 
  AC_MSG_ERROR([No size for char type.])
937
 
fi
938
 
AC_CHECK_SIZEOF(char*, 4)
939
 
AC_CHECK_SIZEOF(short, 2)
940
 
AC_CHECK_SIZEOF(int, 4)
941
 
if test "$ac_cv_sizeof_int" -eq 0
942
 
then
943
 
  AC_MSG_ERROR("No size for int type.")
944
 
fi
945
931
# off_t is not a builtin type
946
932
AC_CHECK_SIZEOF(off_t, 4)
947
933
if test "$ac_cv_sizeof_off_t" -eq 0