This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/zlib/configure.in
Vitor Santos Costa 36973f93ba zlib
2010-07-29 00:40:25 +01:00

34 lines
824 B
Plaintext

dnl Process this file with autoconf to produce a configure script.
AC_INIT(install-sh)
AC_PREREQ([2.50])
AC_CONFIG_HEADER(config.h)
AC_SUBST(TARGETS)
AC_SUBST(PLTARGETS)
m4_include([../ac_swi_c.m4])
AC_CHECK_HEADERS(zlib.h zutil.h)
AC_CHECK_LIB(z, zlibVersion,
LIBS="$LIBS -lz"
ZLIB=yes,
ZLIB=no)
if test "$ZLIB" = yes; then
TARGETS="zlib4pl.$SO"
PLTARGETS=zlib.pl
else
TARGETS=nolib
cat << EOF
##################################################################
# ERROR: Could not find library zlib (-lz). Dropped library(zlib)
# Library zlib is available from http://www.zlib.net/
# Most Unix/Linux distributions are shipped with binaries. Make
# sure to have the development library installed.
##################################################################
EOF
fi
AC_OUTPUT(Makefile)