~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Brian Aker
  • Date: 2008-11-25 01:33:32 UTC
  • mfrom: (590.2.23 trunk)
  • Revision ID: brian@tangent.org-20081125013332-5q6umof4d3a8eq20
More Sun Studio patches from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
301
301
DRIZZLE_CHECK_C_VERSION
302
302
DRIZZLE_CHECK_CXX_VERSION
303
303
 
 
304
AH_TOP([
 
305
#ifdef _FILE_OFFSET_BITS
 
306
# undef _FILE_OFFSET_BITS
 
307
#endif
 
308
])
 
309
AC_SYS_LARGEFILE
 
310
 
304
311
AC_PROG_AWK
305
312
 
306
313
if test "$ac_cv_c_compiler_gnu" = "yes"
529
536
fi
530
537
AC_MSG_RESULT("$wthval")
531
538
 
532
 
AC_CACHE_CHECK([for Message in libprotobuf], ac_libprotobuf_works, [
 
539
AC_CACHE_CHECK([for Message in libprotobuf], ac_cv_libprotobuf_works, [
533
540
  AC_TRY_LINK([
534
541
#include <google/protobuf/descriptor.pb.h>
535
542
  ],[
536
543
    google::protobuf::FileDescriptorProto testFdp;
537
 
  ], ac_libprotobuf_works=yes, [
 
544
  ], ac_cv_libprotobuf_works=yes, [
538
545
        AC_MSG_ERROR([could not find Google's libprotobuf])
539
546
  ])
540
547
 
909
916
  AC_MSG_RESULT([no])
910
917
fi
911
918
 
912
 
AC_SYS_LARGEFILE
913
 
AC_FUNC_FSEEKO
914
 
 
915
919
# Types that must be checked AFTER large file support is checked
916
920
AC_TYPE_SIZE_T
917
921