* configure.in: only set HAVE_LIBZ if zlib.h exists

From-SVN: r19154
This commit is contained in:
Alexandre Oliva 1998-04-12 20:00:34 +00:00 committed by Jeff Law
parent 547a618398
commit 3c0d0dea6a
3 changed files with 176 additions and 133 deletions

View File

@ -1,3 +1,7 @@
Sun Apr 12 20:59:53 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
* configure.in: only set HAVE_LIBZ if zlib.h exists
Fri Apr 10 01:36:24 1998 Jim Wilson <wilson@cygnus.com>
* Makefile.am (SUBDIRS): Redefine to exclude info, po, util and doc.

303
texinfo/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -27,7 +27,7 @@ AM_MAINTAINER_MODE
AM_EXEEXT
dnl Checks for libraries.
AC_CHECK_LIB(z, gzdopen)
AC_CHECK_HEADERS(zlib.h, [AC_CHECK_LIB(z, gzdopen)])
# Needed on sysV68 for sigblock, sigsetmask. But check for it in libc first.
AC_CHECK_FUNC(sigblock, , AC_CHECK_LIB(bsd, sigblock))