1dnl Process this file with autoconf to produce a configure script. 2AC_INIT(src/main.c) 3 4AM_INIT_AUTOMAKE( dhcptool, 0.0.1-alpha) 5 6AC_CONFIG_HEADER(config.h) 7dnl Checks for programs. 8AC_PROG_CC 9 10dnl Checks for libraries. 11dnl AC_CHECK_LIB(pthread, pthread_create, ,exit) 12 13dnl Checks for header files. 14AC_HEADER_STDC 15AC_CHECK_HEADERS(unistd.h) 16dnl AC_CHECK_HEADERS(pthread.h) 17 18dnl Checks for typedefs, structures, and compiler characteristics. 19AC_MINGW32 20 21dnl Checks for library functions. 22AC_CHECK_FUNCS(socket) 23 24AC_OUTPUT(Makefile src/Makefile) 25