mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-23 10:29:58 +01:00
build: Print an error message if zlib is not installed.
* configure.ac (missing_zlib): New.
This commit is contained in:
parent
c45b9819e8
commit
d91db67e51
16
configure.ac
16
configure.ac
@ -1208,6 +1208,7 @@ AM_CONDITIONAL(DISABLE_REGEX, test x"$use_regex" != xyes)
|
||||
# when compiling a conftest (due to the "-lz" from LIBS).
|
||||
# Note that we combine zlib and bzlib2 in ZLIBS.
|
||||
#
|
||||
missing_zlib=yes
|
||||
_cppflags="${CPPFLAGS}"
|
||||
_ldflags="${LDFLAGS}"
|
||||
AC_ARG_WITH(zlib,
|
||||
@ -1220,7 +1221,10 @@ AC_ARG_WITH(zlib,
|
||||
|
||||
AC_CHECK_HEADER(zlib.h,
|
||||
AC_CHECK_LIB(z, deflateInit2_,
|
||||
ZLIBS="-lz",
|
||||
[
|
||||
ZLIBS="-lz"
|
||||
missing_zlib=no
|
||||
],
|
||||
CPPFLAGS=${_cppflags} LDFLAGS=${_ldflags}),
|
||||
CPPFLAGS=${_cppflags} LDFLAGS=${_ldflags})
|
||||
|
||||
@ -1529,6 +1533,16 @@ if test "$missing_pth" = "yes"; then
|
||||
***]])
|
||||
die=yes
|
||||
fi
|
||||
if test "$missing_zlib" = "yes"; then
|
||||
AC_MSG_NOTICE([[
|
||||
***
|
||||
*** The zlib compression library is required.
|
||||
*** Please install a suitable development package
|
||||
*** (e.g. Debian package zlib1g-dev) or download
|
||||
*** it from http://zlib.net and build yourself.
|
||||
***]])
|
||||
die=yes
|
||||
fi
|
||||
if test "$missing_iconv" = "yes"; then
|
||||
AC_MSG_NOTICE([[
|
||||
***
|
||||
|
Loading…
x
Reference in New Issue
Block a user