Skip to content

Commit

Permalink
Changed version number from 1.0 to 1.1.
Browse files Browse the repository at this point in the history
Added checks for maths library.
Removed checks for headers that we don't use anymore or are standard
ANSI C headers from AC_CHECK_HEADERS.


git-svn-id: svn+ssh://svn.nta-monitor.com/trunk/opensource/ike-scan@640 062a1500-4a13-0410-a63b-ee65f32af78f
  • Loading branch information
royhills committed Jan 24, 2003
1 parent 33b6dd6 commit 386f0a8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl $Id$
dnl Process this file with autoconf to produce a configure script.

AC_INIT(ike-scan.c)
AM_INIT_AUTOMAKE(ike-scan, 1.0, nodefine)
AM_INIT_AUTOMAKE(ike-scan, 1.1, nodefine)

AM_CONFIG_HEADER(config.h)

Expand All @@ -18,13 +18,15 @@ dnl Checks for libraries.
dnl Solaris 8 needs nsl and socket. Linux and {Free,Open}BSD do not.
AC_CHECK_LIB(nsl, t_open)
AC_CHECK_LIB(socket, socket)
dnl We only use "abs" and "floor" from the maths library
AC_CHECK_LIB(m, floor)

AC_SUBST(COMPAT_OBJS)
AC_SUBST(COMPAT_SRCS)

dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([arpa/inet.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h sys/time.h syslog.h unistd.h getopt.h libgen.h stdarg.h])
AC_CHECK_HEADERS([arpa/inet.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h sys/time.h syslog.h unistd.h getopt.h])

dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
Expand Down

0 comments on commit 386f0a8

Please sign in to comment.