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