diff options
author | brobecke <brobecke@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-24 22:40:46 +0000 |
---|---|---|
committer | brobecke <brobecke@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-24 22:40:46 +0000 |
commit | cd1d6df2928ba7af05a5e548c723e883f425ad9a (patch) | |
tree | f9d45de04b3aa4f3056f35ae1bd9dc644b1a1f7b /config/zlib.m4 | |
parent | 5570fae0813fdc67b5d514f819839e1963266e3d (diff) | |
download | gcc-cd1d6df2928ba7af05a5e548c723e883f425ad9a.tar.gz |
* zlib.m4: New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154521 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config/zlib.m4')
-rw-r--r-- | config/zlib.m4 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config/zlib.m4 b/config/zlib.m4 new file mode 100644 index 00000000000..b0174994ec1 --- /dev/null +++ b/config/zlib.m4 @@ -0,0 +1,18 @@ +dnl A function to check for zlib availability. zlib is used by default +dnl unless the user configured with --disable-nls. + +AC_DEFUN([AM_ZLIB], +[ + # See if the user specified whether he wants zlib support or not. + AC_ARG_WITH(zlib, + [ --with-zlib include zlib support (auto/yes/no) [default=auto]], + [], [with_zlib=auto]) + + if test "$with_zlib" != "no"; then + AC_SEARCH_LIBS(zlibVersion, z, [AC_CHECK_HEADERS(zlib.h)]) + if test "$with_zlib" = "yes" -a "$ac_cv_header_zlib_h" != "yes"; then + AC_MSG_ERROR([zlib (libz) library was explicitly requested but not found]) + fi + fi +]) + |