# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT(gkremldk, 0.9.7, tof@tof2k.com) AC_CONFIG_SRCDIR([gkremldk.c]) AC_CONFIG_HEADER([config.h]) # checks for programs. AC_PROG_CC # Checks for libraries. AC_CHECK_LIB([pthread], [pthread_create]) # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([netdb.h netinet/in.h gkrellm2/gkrellm.h stdlib.h string.h sys/socket.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. AC_FUNC_MALLOC AC_CHECK_FUNCS([bzero gethostbyname socket strdup]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT