diff options
author | Roland McGrath <roland@redhat.com> | 2009-02-01 14:24:46 -0800 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2009-02-01 14:24:46 -0800 |
commit | e8d3528477c499edfcd177d779952c15b546913c (patch) | |
tree | fa00973dc41eeff80471933b509b1713947c2fd1 | |
parent | 03288f0df65115b75cf029825ecc9cf9158870a4 (diff) | |
download | elfutils-e8d3528477c499edfcd177d779952c15b546913c.tar.gz |
zip.m4: Fix --with/--without argument handling.
-rw-r--r-- | m4/ChangeLog | 4 | ||||
-rw-r--r-- | m4/zip.m4 | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/m4/ChangeLog b/m4/ChangeLog index eea78ff0..25675634 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,7 @@ +2009-02-01 Roland McGrath <roland@redhat.com> + + * zip.m4: Fix --with/--without argument handling. + 2009-01-08 Roland McGrath <roland@redhat.com> * zip.am: New file. @@ -1,10 +1,11 @@ -dnl Test for either zlib or bzlib. +dnl -*- Autoconf -*- test for either zlib or bzlib. dnl Defines --with-$1lib argument, $2LIB automake conditional, dnl and sets AC_DEFINE(USE_$2LIB) and LIBS. -AC_DEFUN([eu_ZIPLIB], [with_[$1]lib=default +AC_DEFUN([eu_ZIPLIB], [dnl AC_ARG_WITH([[$1]lib], -AC_HELP_STRING([--with-[$1]lib], [support g[$1]ip compression in libdwfl])) +AC_HELP_STRING([--with-[$1]lib], [support g[$1]ip compression in libdwfl]),, + [with_[$1]lib=default]) if test $with_[$1]lib != no; then AC_SEARCH_LIBS([$4], [$3], [with_[$1]lib=yes], [test $with_[$1]lib = default || |