| 1234567891011121314151617181920212223242526272829303132333435 | ## Process this file with autoconf to produce configure.## In general, the safest way to proceed is to run ./autogen.shAC_PREREQ(2.59)# Note:  If you change the version, you must also update it in:# * java/pom.xml# * python/setup.py# * src/google/protobuf/stubs/common.hAC_INIT([protobuf],[2.0.3-SNAPSHOT],[protobuf@googlegroups.com])AC_CONFIG_SRCDIR(src/google/protobuf/message.cc)AC_CONFIG_HEADERS([config.h])AM_INIT_AUTOMAKE# Checks for programs.AC_PROG_CCAC_PROG_CXXAC_PROG_LIBTOOLAM_CONDITIONAL(GCC, test "$GCC" = yes)   # let the Makefile know if we're gcc# Checks for header files.AC_HEADER_STDCAC_CHECK_HEADERS([fcntl.h inttypes.h limits.h stdlib.h unistd.h])# Checks for library functions.AC_FUNC_MEMCMPAC_FUNC_STRTODAC_CHECK_FUNCS([ftruncate memset mkdir strchr strerror strtol])ACX_PTHREADAC_CXX_STL_HASHAC_CONFIG_FILES([Makefile src/Makefile ])AC_OUTPUT
 |