resetting manifest requested domain to floor
[platform/upstream/man-db.git] / m4 / man-compress-lib.m4
1 # man-compress-lib.m4 serial 1
2 dnl MAN_COMPRESS_LIB(LIBRARY, FUNCTION)
3 dnl Look for FUNCTION in LIBRARY. If it is available, define HAVE_LIBLIBRARY
4 dnl and add -lLIBRARY to LIBCOMPRESS.
5 AC_DEFUN([MAN_COMPRESS_LIB],
6 [AC_CHECK_LIB(
7   [$1], [$2],
8   [AC_DEFINE_UNQUOTED(
9     AS_TR_CPP([HAVE_LIB$1]), [1],
10     [Define to 1 if you have the `$1' library (-l$1).])
11    LIBCOMPRESS="-l$1 $LIBCOMPRESS"])
12  AC_SUBST([LIBCOMPRESS])
13 ]) # MAN_COMPRESS_LIB