diff options
Diffstat (limited to 'sim/moxie')
-rw-r--r-- | sim/moxie/configure | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/sim/moxie/configure b/sim/moxie/configure index d360d1b..490e998 100644 --- a/sim/moxie/configure +++ b/sim/moxie/configure @@ -705,6 +705,7 @@ SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking +with_zlib enable_maintainer_mode enable_sim_bswap enable_sim_cflags @@ -1363,6 +1364,7 @@ Optional Features: Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-zlib include zlib support (auto/yes/no) --with-pkgversion=PKG Use PKG in the version string in place of "GDB" --with-bugurl=URL Direct users to URL to report a bug @@ -2348,6 +2350,17 @@ fi + + + + + + + + + + + sim_inline="-DDEFAULT_INLINE=0" @@ -3001,12 +3014,10 @@ done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -#include <stdio.h> + int main () { -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; ; return 0; @@ -4275,7 +4286,19 @@ fi # BFD conditionally uses zlib, so we must link it in if libbfd does, by # using the same condition. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing zlibVersion" >&5 + + # See if the user specified whether he wants zlib support or not. + +# Check whether --with-zlib was given. +if test "${with_zlib+set}" = set; then : + withval=$with_zlib; +else + with_zlib=auto +fi + + + if test "$with_zlib" != "no"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing zlibVersion" >&5 $as_echo_n "checking for library containing zlibVersion... " >&6; } if test "${ac_cv_search_zlibVersion+set}" = set; then : $as_echo_n "(cached) " >&6 @@ -4342,6 +4365,11 @@ done fi + if test "$with_zlib" = "yes" -a "$ac_cv_header_zlib_h" != "yes"; then + as_fn_error "zlib (libz) library was explicitly requested but not found" "$LINENO" 5 + fi + fi + . ${srcdir}/../../bfd/configure.host |