From 6a1211c9642e6018e6548c2a47bd666c60cc442d Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 10 Jan 2004 22:45:20 +0000 Subject: autoconf fixes git-svn-id: file:///home/lennart/svn/public/ivcall/trunk@14 e0b13411-74c3-0310-b366-a0654dd0340f --- configure.ac | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 9c46925..656d77a 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. AC_PREREQ(2.58) -AC_INIT([ivcall], [0.3], [mzvipnyy (at) 0pointer (dot) de]) +AC_INIT([ivcall],[0.3],[mzvipnyy (at) 0pointer (dot) de]) AC_CONFIG_SRCDIR([src/ivcall.c]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([foreign -Wall]) @@ -46,7 +46,7 @@ fi # Specify the locking directory AC_ARG_WITH(lockdir, - AC_HELP_STRING([--with-lockdir=LOCKDIR], [Specify a UUCP lock dir]), + AS_HELP_STRING(--with-lockdir=LOCKDIR,Specify a UUCP lock dir), LOCK_DIR="${withval}", LOCK_DIR="/var/lock") AC_SUBST(LOCK_DIR) @@ -55,6 +55,8 @@ AC_MSG_NOTICE([*** Using $LOCK_DIR as lock directory ***]) AC_CHECK_FUNCS([alarm memset select strdup strerror strrchr]) AC_CHECK_HEADERS([fcntl.h limits.h stdlib.h string.h sys/ioctl.h sys/time.h termios.h unistd.h]) +AC_TYPE_MODE_T +AC_FUNC_STAT AC_C_CONST AC_C_VOLATILE AC_FUNC_MALLOC @@ -69,7 +71,7 @@ AC_TYPE_SIZE_T # LYNX documentation generation AC_ARG_ENABLE(lynx, - AC_HELP_STRING([--disable-lynx], [Turn off lynx usage for documentation generation]), + AS_HELP_STRING(--disable-lynx,Turn off lynx usage for documentation generation), [case "${enableval}" in yes) lynx=yes ;; no) lynx=no ;; @@ -88,7 +90,7 @@ AM_CONDITIONAL([USE_LYNX], [test "x$lynx" = xyes]) # XMLTOMAN manpage generation AC_ARG_ENABLE(xmltoman, - AC_HELP_STRING([--disable-xmltoman], [Disable rebuilding of man pages with xmltoman]), + AS_HELP_STRING(--disable-xmltoman,Disable rebuilding of man pages with xmltoman), [case "${enableval}" in yes) xmltoman=yes ;; no) xmltoman=no ;; -- cgit