]> git.ipfire.org Git - thirdparty/elfutils.git/blame - m4/zip.m4
readelf: display dynamic symtab without section headers
[thirdparty/elfutils.git] / m4 / zip.m4
CommitLineData
e8d35284 1dnl -*- Autoconf -*- test for either zlib or bzlib.
24169646
RM
2dnl Defines --with-$1 argument, $2 automake conditional,
3dnl and sets AC_DEFINE(USE_$2) and LIBS.
7a647878 4
e8d35284 5AC_DEFUN([eu_ZIPLIB], [dnl
24169646 6AC_ARG_WITH([[$1]],
9a363700 7AS_HELP_STRING([--with-[$1]], [support [$1] compression in libdwfl]),,
24169646
RM
8 [with_[$1]=default])
9if test $with_[$1] != no; then
10 AC_SEARCH_LIBS([$4], [$3], [with_[$1]=yes],
11 [test $with_[$1] = default ||
12 AC_MSG_ERROR([missing -l[$3] for --with-[$1]])])
7a647878 13fi
24169646
RM
14AM_CONDITIONAL([$2], test $with_[$1] = yes)
15if test $with_[$1] = yes; then
16 AC_DEFINE(USE_[$2])
7702a3c1
MW
17else
18 with_[$1]=no
7a647878 19fi
24169646 20AH_TEMPLATE(USE_[$2], [Support $5 decompression via -l$3.])])