summaryrefslogtreecommitdiff
path: root/sim/erc32
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2009-11-24 22:58:05 +0000
committerJoel Brobecker <brobecker@gnat.com>2009-11-24 22:58:05 +0000
commit3ab54415dd0f60d361f17b6496a679f358628560 (patch)
tree014dbff523bd1e7064709571d8f802e4a9555f30 /sim/erc32
parentb7311588e483130ae4294d614ba4f89125d9986b (diff)
downloadgdb-3ab54415dd0f60d361f17b6496a679f358628560.tar.gz
* common/aclocal.m4: Add include of ../../config/zlib.m4.
* common/common.m4: Use AM_ZLIB to check for zlib support. * ppc/configure.ac: Likewise. * arm/configure, avr/configure, common/configure, cr16/configure, cris/configure, d10v/configure, erc32/configure, frv/configure, h8300/configure, iq2000/configure, lm32/configure, m32c/configure, m32r/configure, m68hc11/configure, mcore/configure, microblaze/configure, mips/configure, mn10300/configure, moxie/configure, ppc/configure, sh/configure, sh64/configure, v850/configure: Regenerate.
Diffstat (limited to 'sim/erc32')
-rwxr-xr-xsim/erc32/configure26
1 files changed, 24 insertions, 2 deletions
diff --git a/sim/erc32/configure b/sim/erc32/configure
index b716c8c0b62..27343d3e9f3 100755
--- a/sim/erc32/configure
+++ b/sim/erc32/configure
@@ -706,6 +706,7 @@ SHELL'
ac_subst_files=''
ac_user_opts='
enable_option_checking
+with_zlib
enable_maintainer_mode
enable_sim_bswap
enable_sim_cflags
@@ -1354,6 +1355,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
@@ -2253,6 +2255,10 @@ ac_config_headers="$ac_config_headers config.h:config.in"
+
+
+
+
sim_inline="-DDEFAULT_INLINE=0"
@@ -2411,7 +2417,6 @@ sim_inline="-DDEFAULT_INLINE=0"
-
# Bugs in autoconf 2.59 break the call to SIM_AC_COMMON, hack around
# it by inlining the macro's contents.
# This file contains common code used by all simulators.
@@ -4179,7 +4184,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
@@ -4246,6 +4263,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