Check-in Number:
|
720 | |
Date: |
2001-Aug-21 12:13:27 (local)
2001-Aug-21 10:13:27 (UTC) |
User: | simons |
Branch: | |
Comment: |
Grouped the parameters of AC_CHECK_EXTLIB's AC_WITH_ARG macro call by
'[' and ']' delimiters to avoid autoconf confusion. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/aclocal.m4 1.2 -> 1.3
--- aclocal.m4 2001/08/21 10:02:15 1.2
+++ aclocal.m4 2001/08/21 10:13:27 1.3
@@ -200,8 +200,8 @@
dnl ##
AC_DEFUN(AC_CHECK_EXTLIB,[dnl
-AC_ARG_WITH($2,dnl
-[ --with-]$2[[[=DIR]] build with $1 library (default=no)]),
+AC_ARG_WITH($2, [dnl
+[ --with-]$2[[[=DIR]] build with $1 library (default=no)]], [dnl
if test ".$with_$2" = .yes; then
# via config script
$2_version=`($2-config --version) 2>/dev/null`
@@ -268,11 +268,11 @@
if test ".$with_$2" = .no; then
AC_ERROR([Unable to find $1 library])
fi
-,
+ ], [dnl
if test ".$with_$2" = .; then
with_$2=no
fi
-)dnl
+ ])dnl
AC_MSG_CHECKING(whether to build against $1 library)
if test ".$with_$2" = .yes; then
ifelse([$5], , :, [$5])
|
|