blob: b57153da9bacb05d4df3ccc23ec5b768687277ab [file] [log] [blame]
jjako52c24142002-12-16 13:33:51 +00001dnl Process this file with autoconf to produce a configure script.
jjako6922f962003-01-05 18:13:35 +00002AC_INIT(gtp/gtp.c)
jjako52c24142002-12-16 13:33:51 +00003
4dnl Checks for programs.
5AC_PROG_AWK
6AC_PROG_CC
7AC_PROG_INSTALL
8AC_PROG_LN_S
9
10AC_PROG_LIBTOOL
11AM_PROG_LIBTOOL
12
13dnl Checks for libraries.
14
15dnl Checks for header files.
16AC_HEADER_STDC
17AC_HEADER_SYS_WAIT
18AC_CHECK_HEADERS(fcntl.h strings.h sys/ioctl.h sys/time.h syslog.h unistd.h)
19
20dnl Checks for typedefs, structures, and compiler characteristics.
21AC_C_CONST
22AC_TYPE_SIZE_T
23AC_HEADER_TIME
24
25dnl Checks for library functions.
26AC_PROG_GCC_TRADITIONAL
27AC_FUNC_VFORK
28AC_CHECK_FUNCS(select socket strdup strerror strtoul)
29
jjako6922f962003-01-05 18:13:35 +000030AM_INIT_AUTOMAKE(OpenGGSN,0.51)
jjako52c24142002-12-16 13:33:51 +000031
32AC_OUTPUT(doc/Makefile po/Makefile intl/Makefile Makefile tests/Makefile src/Makefile gtp/Makefile ggsn/Makefile sgsnemu/Makefile)