Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
# -*- Autoconf -*-# Process this file with autoconf to produce a configure script.AC_PREREQ([2.64])AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])AC_CONFIG_SRCDIR([contrib/thrift_dump.cpp])AC_CONFIG_HEADERS([config.h])# Checks for programs.AC_PROG_CXXAC_PROG_CCAC_PROG_CPPAC_PROG_INSTALLAC_PROG_MAKE_SET# Checks for libraries.# FIXME: Replace `main' with a function in `-ldl':AC_CHECK_LIB([dl], [main])# FIXME: Replace `main' with a function in `-lthrift':AC_CHECK_LIB([thrift], [main])# Checks for header files.AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h limits.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.h strings.h sys/socket.h sys/time.h unistd.h])# Checks for typedefs, structures, and compiler characteristics.AC_HEADER_STDBOOLAC_C_INLINEAC_TYPE_INT16_TAC_TYPE_INT32_TAC_TYPE_INT64_TAC_TYPE_INT8_TAC_TYPE_MODE_TAC_TYPE_OFF_TAC_TYPE_SIZE_TAC_TYPE_SSIZE_TAC_TYPE_UINT16_TAC_TYPE_UINT32_TAC_TYPE_UINT64_TAC_TYPE_UINT8_TAC_CHECK_TYPES([ptrdiff_t])# Checks for library functions.AC_FUNC_MALLOCAC_FUNC_REALLOCAC_FUNC_STRERROR_RAC_CHECK_FUNCS([bzero clock_gettime ftruncate gettimeofday memmove memset realpath socket sqrt strchr strdup strerror strstr strtol])AC_CONFIG_FILES([Makefilecompiler/cpp/Makefilelib/Makefilelib/cpp/Makefilelib/csharp/Makefilelib/erl/Makefilelib/erl/src/Makefilelib/java/Makefilelib/ocaml/Makefilelib/ocaml/src/Makefilelib/perl/Makefilelib/perl/test/Makefilelib/py/Makefilelib/rb/Makefiletest/Makefiletest/cpp/realloc/Makefiletest/erl/Makefiletest/ocaml/Makefiletest/ocaml/client/Makefiletest/ocaml/server/Makefiletest/perl/Makefiletest/php/Makefiletest/py/Makefiletest/rb/Makefiletest/threads/Makefiletutorial/cpp/Makefile])AC_CONFIG_SUBDIRS([contrib/fb303])AC_OUTPUT