--- configure.in 2002/02/12 17:59:50 1.14
+++ configure.in 2002/03/26 17:11:06 1.15
@@ -1,11 +1,11 @@
dnl ##
dnl ## OSSP rc - Run-command processor
+dnl ## Copyright (c) 2002 Ralf S. Engelschall
dnl ## Copyright (c) 2002 Cable & Wireless Deutschland GmbH
dnl ## Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>
-dnl ## Copyright (c) 2002 Ralf S. Engelschall
dnl ##
dnl ## This file is part of OSSP rc, a portable Run-command processor
-dnl ## which can be found at http://www.ossp.org/pkg/rc/
+dnl ## which can be found at http://www.ossp.org/pkg/lib/rc/
dnl ##
dnl ## Permission to use, copy, modify, and distribute this software for
dnl ## any purpose with or without fee is hereby granted, provided that
@@ -29,16 +29,14 @@
dnl ##
dnl Version requirement and information
-AC_PREREQ(2.52)dnl
+AC_PREREQ(2.53)dnl
AC_REVISION(1.0)
dnl Announce the product and version
-AC_DIVERT_PUSH(NOTICE)
V=`./shtool version -lc -dlong rc_version.c`
-./shtool echo -e "Configuring %BOSSP rc%b, Version %B${V}%b"
+./shtool echo -e "Configuring %BOSSP rc%b, version %B${V}%b"
echo "Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>"
echo "Copyright (c) 2002 Cable & Wireless Deutschland <http://www.cw.com/de/>"
-AC_DIVERT_POP()
dnl Process this file with autoconf
AC_INIT(rc.h)
@@ -57,7 +55,7 @@
dnl AC_PROG_LIBTOOL
dnl Check other requirements
-AC_SET_MAKE
+AC_PROG_MAKE_SET
AC_CHECK_DEBUGGING
AC_CHECK_LIB(socket, getprotobyname)
AC_CHECK_LIB(nsl, gethostbyname)
@@ -68,7 +66,7 @@
dnl Check for Dmalloc library
AC_CHECK_EXTLIB([Dmalloc],
dmalloc, dmalloc_debug, dmalloc.h,
- AC_DEFINE(DMALLOC))
+ [AC_DEFINE(DMALLOC, 1, [Define to 1 if building with dmalloc])])
dnl Check for OSSP popt library
AC_CHECK_EXTLIB([OSSP popt],
|