diff options
author | Haru <haru@dotalux.com> | 2016-02-06 18:15:23 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-06 18:53:38 +0100 |
commit | 2f4b1d7f15c8835545c791f09bac94bfae7e43b8 (patch) | |
tree | cbe6b767c743d64faa493cd5a06e6f8c00d779ab /configure | |
parent | 8ca4506ee9ad4bfd490d1e9a7ab2cfb02f1ba3d7 (diff) | |
download | hercules-2f4b1d7f15c8835545c791f09bac94bfae7e43b8.tar.gz hercules-2f4b1d7f15c8835545c791f09bac94bfae7e43b8.tar.bz2 hercules-2f4b1d7f15c8835545c791f09bac94bfae7e43b8.tar.xz hercules-2f4b1d7f15c8835545c791f09bac94bfae7e43b8.zip |
Removed special handling of zlib in the configure script
Now it's handled like all other libraries, and no longer adds an
useless -I/usr/include option
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 35 |
1 files changed, 3 insertions, 32 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in 730fede. +# From configure.in 8ca4506. # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69. # @@ -708,7 +708,6 @@ with_maxconn with_mysql with_MYSQL_CFLAGS with_MYSQL_LIBS -with_zlib ' ac_precious_vars='build_alias host_alias @@ -1387,10 +1386,6 @@ Optional Packages: "mysql_config --include") --with-MYSQL_LIBS=ARG specify MYSQL_LIBS manually (instead of using "mysql_config --libs") - --with-zlib=DIR root directory path of zlib installation (defaults - to /usr/local or /usr if not found in /usr/local). - Assumes that the header files are in DIR/include and - the library files are in DIR/lib Some influential environment variables: CC C compiler command @@ -3811,26 +3806,6 @@ fi -# -# Specify the path of the zlib library (required library) -# - -# Check whether --with-zlib was given. -if test "${with_zlib+set}" = set; then : - withval=$with_zlib; - test -n "$withval" && ZLIB_HOME="$withval" - -else - - ZLIB_HOME=/usr/local - test ! -f "${ZLIB_HOME}/include/zlib.h" && ZLIB_HOME=/usr - - -fi - - - - ############################################################################### # Check for programs and types. # @@ -7275,10 +7250,6 @@ fi # # zlib library (required) # -if test -n "${ZLIB_HOME}" ; then - LDFLAGS="$LDFLAGS -L${ZLIB_HOME}/lib" - CPPFLAGS="$CPPFLAGS -I${ZLIB_HOME}/include" -fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing inflateEnd" >&5 $as_echo_n "checking for library containing inflateEnd... " >&6; } if ${ac_cv_search_inflateEnd+:} false; then : @@ -7334,14 +7305,14 @@ if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" else - as_fn_error $? "zlib library not found or incompatible, please specify the correct path with --with-zlib=DIR... stopping" "$LINENO" 5 + as_fn_error $? "zlib library not found or incompatible... stopping" "$LINENO" 5 fi ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default" if test "x$ac_cv_header_zlib_h" = xyes; then : else - as_fn_error $? "zlib header not found, please specify the correct path with --with-zlib=DIR... stopping" "$LINENO" 5 + as_fn_error $? "zlib header not found, please specify the correct path with... stopping" "$LINENO" 5 fi |