# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT(simulotron, 2006.0.01, APBTeam ) AC_CONFIG_AUX_DIR(config) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AC_CONFIG_SRCDIR([src/main.cc]) AC_CONFIG_HEADER([src/config.h]) CXXFLAGS= # Checks for programs AC_PROG_CXX # Checks for libraries. # Checks for header files. AC_CHECK_HEADERS([arpa/inet.h netdb.h netinet/in.h sys/socket.h]) # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STDBOOL AC_C_CONST AC_C_INLINE # Checks for library functions. AC_CHECK_FUNCS([gethostbyaddr gethostbyname inet_ntoa socket strerror]) AC_CONFIG_FILES([Makefile src/Makefile]) AC_OUTPUT