| ## Process this file with autoconf to produce configure. |
| ## In general, the safest way to proceed is to run ./autogen.sh |
| # Note: If you change the version, you must also update it in: |
| # * src/google/protobuf/stubs/common.h |
| # * src/Makefile.am (Update -version-info for LDFLAGS if needed) |
| AC_INIT([protobuf],[2.0.3-SNAPSHOT],[protobuf@googlegroups.com]) |
| AC_CONFIG_SRCDIR(src/google/protobuf/message.cc) |
| AC_CONFIG_HEADERS([config.h]) |
| AM_CONDITIONAL(GCC, test "$GCC" = yes) # let the Makefile know if we're gcc |
| # Checks for header files. |
| AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h stdlib.h unistd.h]) |
| # Checks for library functions. |
| AC_CHECK_FUNCS([ftruncate memset mkdir strchr strerror strtol]) |
| AC_CONFIG_FILES([Makefile src/Makefile ]) |