9
0
Fork 0
This repository has been archived on 2022-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
openggsn/configure.in

33 lines
766 B
Plaintext
Raw Normal View History

2002-12-16 13:33:51 +00:00
dnl Process this file with autoconf to produce a configure script.
2003-01-05 18:13:35 +00:00
AC_INIT(gtp/gtp.c)
2002-12-16 13:33:51 +00:00
dnl Checks for programs.
AC_PROG_AWK
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_LIBTOOL
AM_PROG_LIBTOOL
dnl Checks for libraries.
dnl Checks for header files.
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(fcntl.h strings.h sys/ioctl.h sys/time.h syslog.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T
AC_HEADER_TIME
dnl Checks for library functions.
AC_PROG_GCC_TRADITIONAL
AC_FUNC_VFORK
AC_CHECK_FUNCS(select socket strdup strerror strtoul)
2003-01-05 18:13:35 +00:00
AM_INIT_AUTOMAKE(OpenGGSN,0.51)
2002-12-16 13:33:51 +00:00
AC_OUTPUT(doc/Makefile po/Makefile intl/Makefile Makefile tests/Makefile src/Makefile gtp/Makefile ggsn/Makefile sgsnemu/Makefile)