blob: 61a41ab53e7d85cc5bebfa7850cd060c17cf8919 [file] [log] [blame]
jjako52c24142002-12-16 13:33:51 +00001dnl Process this file with autoconf to produce a configure script.
2AC_INIT(gtp/gtp.c ggsn/ggsn.c sgsnemu/sgsnemu.c)
3
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
30AM_INIT_AUTOMAKE(OpenGGSN,0.5)
31
32AC_OUTPUT(doc/Makefile po/Makefile intl/Makefile Makefile tests/Makefile src/Makefile gtp/Makefile ggsn/Makefile sgsnemu/Makefile)