From 6ba78851b0967c7c4525cf9cf43e60001e7a1768 Mon Sep 17 00:00:00 2001 From: yoe Date: Sun, 23 May 2004 09:54:39 +0000 Subject: [PATCH] r64: Add missing closing bracket --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 94dc1f1..68ef533 100644 --- a/configure.ac +++ b/configure.ac @@ -3,6 +3,7 @@ dnl (c) 1998 Martin Mares , (c) 2000 Pavel Machek , dnl (c) 2003-2004 Wouter Verhelst AC_INIT([nbd],[2.7],[wouter@debian.org]) AM_INIT_AUTOMAKE(nbd, 2.7) + AC_ARG_ENABLE(lfs, AC_HELP_STRING([--enable-lfs],[Enable Large File Support]), [NBD_LFS=1], [NBD_LFS=0]) AC_MSG_CHECKING([whether Large File Support should be enabled]) if test $NBD_LFS -eq 1; then @@ -12,6 +13,7 @@ else AC_DEFINE(NBD_LFS,0) AC_MSG_RESULT([no]) fi + AC_ARG_ENABLE(syslog, AC_HELP_STRING([--enable-syslog],[Enable Syslog logging]), [ISSERVER=1], [ISSERVER=0]) AC_MSG_CHECKING([whether syslog logging is requested]) if test $ISSERVER -eq 1; then @@ -24,7 +26,7 @@ AC_PROG_CC AC_MSG_CHECKING(whether warnings should be enabled) if test -n "$GCC" ; then AC_MSG_RESULT(yes) - CFLAGS="$CFLAGS -Wall -W -Wno-parentheses -Wstrict-prototypes -Wno-unused" + #CFLAGS="$CFLAGS -Wall -W -Wno-parentheses -Wstrict-prototypes -Wno-unused" else AC_MSG_RESULT(no) fi @@ -48,7 +50,7 @@ case "`uname`" in esac AC_MSG_CHECKING(whether there is a local nbd.h) if test -f nbd.h; then - AC_DEFINE(HAVE_LOCAL_NBD_H,1, [Define to 1 if you want to use a local nbd.h (not provided, must be supplied by you]) + AC_DEFINE(HAVE_LOCAL_NBD_H,1, [Define to 1 if you want to use a local nbd.h (not provided, must be supplied by you)]) AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) -- 1.7.10.4