1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3# $Revision: 17314 $
4
5AC_PREREQ(2.59)
6AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
7AC_CONFIG_SRCDIR([src/main.c])
8AM_INIT_AUTOMAKE(phddns,2.0.6.32828)
9AM_MAINTAINER_MODE
10
11# Checks for programs.
12AC_PROG_CXX
13AC_PROG_CC
14
15# Checks for libraries.
16
17# Checks for header files.
18AC_HEADER_STDC
19AC_CHECK_HEADERS([arpa/inet.h fcntl.h memory.h netdb.h netinet/in.h stddef.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h sys/timeb.h termios.h unistd.h])
20
21# Checks for typedefs, structures, and compiler characteristics.
22AC_HEADER_STDBOOL
23AC_C_CONST
24AC_C_INLINE
25AC_TYPE_SIZE_T
26AC_HEADER_TIME
27AC_STRUCT_TM
28
29# Checks for library functions.
30AC_FUNC_SELECT_ARGTYPES
31AC_TYPE_SIGNAL
32AC_FUNC_STRFTIME
33AC_FUNC_VPRINTF
34AC_CHECK_FUNCS([gethostbyname inet_ntoa isascii memset select socket strchr strstr])
35AC_OUTPUT([Makefile
36	src/Makefile])
37