-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jjako
committed
Jan 28, 2003
1 parent
d8495fc
commit 52c6234
Showing
8 changed files
with
2,598 additions
and
888 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,57 @@ | ||
dnl Process this file with autoconf to produce a configure script. | ||
AC_INIT(gtp/gtp.c) | ||
# Process this file with autoconf to produce a configure script. | ||
AC_INIT(openggsn, 0.52, [email protected]) | ||
AC_CONFIG_SRCDIR([gtp/gtp.c]) | ||
AM_CONFIG_HEADER([config.h]) | ||
#AC_CONFIG_HEADER([config.h]) | ||
|
||
dnl Checks for programs. | ||
AC_PROG_AWK | ||
# Checks for programs. | ||
AC_PROG_CC | ||
AC_PROG_INSTALL | ||
AC_PROG_LN_S | ||
AC_PROG_AWK | ||
AC_PROG_CPP | ||
AC_PROG_CXX | ||
AC_PROG_RANLIB | ||
|
||
|
||
#JJAKO Check for libtool | ||
AC_PROG_LIBTOOL | ||
AM_PROG_LIBTOOL | ||
|
||
dnl Checks for libraries. | ||
|
||
dnl Checks for header files. | ||
# Checks for libraries. | ||
# FIXME: Replace `main' with a function in `-le': | ||
AC_CHECK_LIB([e], [main]) | ||
# FIXME: Replace `main' with a function in `-lgtp': | ||
AC_CHECK_LIB([gtp], [main]) | ||
# FIXME: Replace `main' with a function in `-links': | ||
AC_CHECK_LIB([inks], [main]) | ||
|
||
# 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) | ||
AC_CHECK_HEADERS([arpa/inet.h fcntl.h netdb.h netinet/in.h stdint.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h syslog.h unistd.h]) | ||
|
||
dnl Checks for typedefs, structures, and compiler characteristics. | ||
# Checks for typedefs, structures, and compiler characteristics. | ||
AC_C_CONST | ||
AC_TYPE_MODE_T | ||
AC_TYPE_SIZE_T | ||
AC_HEADER_TIME | ||
|
||
dnl Checks for library functions. | ||
# Checks for library functions. | ||
AC_PROG_GCC_TRADITIONAL | ||
AC_FUNC_VFORK | ||
AC_CHECK_FUNCS(select socket strdup strerror strtoul) | ||
|
||
AM_INIT_AUTOMAKE(OpenGGSN,0.51) | ||
|
||
AC_OUTPUT(doc/Makefile po/Makefile intl/Makefile Makefile tests/Makefile src/Makefile gtp/Makefile ggsn/Makefile sgsnemu/Makefile) | ||
AC_FUNC_MALLOC | ||
AC_FUNC_MEMCMP | ||
AC_CHECK_FUNCS([gethostbyname inet_ntoa memset select socket strdup strerror strtol]) | ||
|
||
AM_INIT_AUTOMAKE() | ||
|
||
AC_CONFIG_FILES([Makefile | ||
doc/Makefile | ||
ggsn/Makefile | ||
gtp/Makefile | ||
intl/Makefile | ||
po/Makefile | ||
sgsnemu/Makefile | ||
src/Makefile | ||
tests/Makefile]) | ||
AC_OUTPUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,48 @@ | ||
dnl Process this file with autoconf to produce a configure script. | ||
AC_INIT(src/cmdline.c) | ||
# Process this file with autoconf to produce a configure script. | ||
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS) | ||
AC_CONFIG_SRCDIR([sgsnemu/cmdline.c]) | ||
AC_CONFIG_HEADER([config.h]) | ||
|
||
dnl Checks for programs. | ||
AC_PROG_AWK | ||
# Checks for programs. | ||
AC_PROG_CC | ||
AC_PROG_INSTALL | ||
AC_PROG_LN_S | ||
AC_PROG_AWK | ||
AC_PROG_CPP | ||
AC_PROG_CXX | ||
AC_PROG_RANLIB | ||
|
||
dnl Checks for libraries. | ||
# Checks for libraries. | ||
# FIXME: Replace `main' with a function in `-le': | ||
AC_CHECK_LIB([e], [main]) | ||
# FIXME: Replace `main' with a function in `-lgtp': | ||
AC_CHECK_LIB([gtp], [main]) | ||
# FIXME: Replace `main' with a function in `-links': | ||
AC_CHECK_LIB([inks], [main]) | ||
|
||
dnl Checks for header files. | ||
# 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) | ||
AC_CHECK_HEADERS([arpa/inet.h fcntl.h netdb.h netinet/in.h stdint.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h syslog.h unistd.h]) | ||
|
||
dnl Checks for typedefs, structures, and compiler characteristics. | ||
# Checks for typedefs, structures, and compiler characteristics. | ||
AC_C_CONST | ||
AC_TYPE_MODE_T | ||
AC_TYPE_SIZE_T | ||
AC_HEADER_TIME | ||
|
||
dnl Checks for library functions. | ||
# Checks for library functions. | ||
AC_PROG_GCC_TRADITIONAL | ||
AC_FUNC_VFORK | ||
AC_CHECK_FUNCS(select socket strdup strerror strtoul) | ||
AC_FUNC_MALLOC | ||
AC_FUNC_MEMCMP | ||
AC_CHECK_FUNCS([gethostbyname inet_ntoa memset select socket strdup strerror strtol]) | ||
|
||
AC_OUTPUT(doc/Makefile po/Makefile intl/Makefile Makefile tests/Makefile src/Makefile) | ||
AC_CONFIG_FILES([Makefile | ||
doc/Makefile | ||
ggsn/Makefile | ||
gtp/Makefile | ||
intl/Makefile | ||
po/Makefile | ||
sgsnemu/Makefile | ||
src/Makefile | ||
tests/Makefile]) | ||
AC_OUTPUT |
Oops, something went wrong.