zlib/configure

452 lines
12 KiB
Plaintext
Raw Normal View History

2011-09-10 02:14:39 -04:00
#!/bin/sh
# configure script for zlib. This script is needed only if
# you wish to build a shared library and your system supports them,
# of if you need special compiler, flags or install directory.
# Otherwise, you can just use directly "make test; make install"
#
2011-09-10 02:17:33 -04:00
# To create a shared library, use "configure --shared"; by default a static
# library is created. If the primitive shared library support provided here
# does not work, use ftp://prep.ai.mit.edu/pub/gnu/libtool-*.tar.gz
#
2011-09-10 02:14:39 -04:00
# To impose specific compiler or flags or install directory, use for example:
# prefix=$HOME CC=cc CFLAGS="-O4" ./configure
# or for csh/tcsh users:
# (setenv prefix $HOME; setenv CC cc; setenv CFLAGS "-O4"; ./configure)
# LDSHARED is the command to be used to create a shared library
2011-09-10 02:19:21 -04:00
# Incorrect settings of CC or CFLAGS may prevent creating a shared library.
# If you have problems, try without defining CC and CFLAGS before reporting
# an error.
2011-09-10 02:14:39 -04:00
LIBS=libz.a
2011-09-10 02:22:10 -04:00
LDFLAGS="-L. ${LIBS}"
2011-09-10 02:14:39 -04:00
VER=`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`
2011-09-10 02:23:01 -04:00
VER2=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\)\\..*/\1/p' < zlib.h`
VER1=`sed -n -e '/VERSION "/s/.*"\([0-9]*\)\\..*/\1/p' < zlib.h`
2011-09-10 02:14:39 -04:00
AR=${AR-"ar rc"}
RANLIB=${RANLIB-"ranlib"}
prefix=${prefix-/usr/local}
2011-09-10 02:20:29 -04:00
exec_prefix=${exec_prefix-'${prefix}'}
libdir=${libdir-'${exec_prefix}/lib'}
includedir=${includedir-'${prefix}/include'}
2011-09-10 02:22:37 -04:00
mandir=${mandir-'${prefix}/share/man'}
2011-09-10 02:17:33 -04:00
shared_ext='.so'
shared=0
2011-09-10 02:19:55 -04:00
gcc=0
2011-09-10 02:19:21 -04:00
old_cc="$CC"
old_cflags="$CFLAGS"
2011-09-10 02:17:33 -04:00
2011-09-10 02:20:29 -04:00
while test $# -ge 1
do
2011-09-10 02:17:33 -04:00
case "$1" in
2011-09-10 02:20:29 -04:00
-h* | --h*)
echo 'usage:'
echo ' configure [--shared] [--prefix=PREFIX] [--exec_prefix=EXPREFIX]'
echo ' [--libdir=LIBDIR] [--includedir=INCLUDEDIR]'
exit 0;;
-p*=* | --p*=*) prefix=`echo $1 | sed 's/[-a-z_]*=//'`; shift;;
-e*=* | --e*=*) exec_prefix=`echo $1 | sed 's/[-a-z_]*=//'`; shift;;
-l*=* | --libdir=*) libdir=`echo $1 | sed 's/[-a-z_]*=//'`; shift;;
-i*=* | --includedir=*) includedir=`echo $1 | sed 's/[-a-z_]*=//'`;shift;;
-p* | --p*) prefix="$2"; shift; shift;;
-e* | --e*) exec_prefix="$2"; shift; shift;;
-l* | --l*) libdir="$2"; shift; shift;;
-i* | --i*) includedir="$2"; shift; shift;;
-s* | --s*) shared=1; shift;;
esac
done
2011-09-10 02:14:39 -04:00
test=ztest$$
cat > $test.c <<EOF
2011-09-10 02:18:57 -04:00
extern int getchar();
int hello() {return getchar();}
2011-09-10 02:14:39 -04:00
EOF
2011-09-10 02:18:57 -04:00
test -z "$CC" && echo Checking for gcc...
cc=${CC-gcc}
cflags=${CFLAGS-"-O3"}
2011-09-10 02:20:29 -04:00
# to force the asm version use: CFLAGS="-O3 -DASMV" ./configure
2011-09-10 02:18:57 -04:00
case "$cc" in
*gcc*) gcc=1;;
esac
if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) 2>/dev/null; then
CC="$cc"
2011-09-10 02:14:39 -04:00
SFLAGS=${CFLAGS-"-fPIC -O3"}
2011-09-10 02:18:57 -04:00
CFLAGS="$cflags"
2011-09-10 02:17:33 -04:00
case `(uname -s || echo unknown) 2>/dev/null` in
2011-09-10 02:21:47 -04:00
Linux | linux) LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1"};;
2011-09-10 02:22:37 -04:00
QNX*) # This is for QNX6. I suppose that the QNX rule below is for QNX2,QNX4
# (alain.bonnefoy@icbt.com)
LDSHARED=${LDSHARED-"$cc -shared -Wl,-hlibz.so.1"};;
2011-09-10 02:21:47 -04:00
HP-UX*) LDSHARED=${LDSHARED-"$cc -shared $SFLAGS"}
shared_ext='.sl'
SHAREDLIB='libz.sl';;
2011-09-10 02:23:01 -04:00
Darwin*) shared_ext='.dylib'
SHAREDLIB=libz$shared_ext
SHAREDLIBV=libz.$VER$shared_ext
SHAREDLIBM=libz.$VER1$shared_ext
LDSHARED=${LDSHARED-"$cc -dynamiclib -install_name /usr/lib/$SHAREDLIBV -compatibility_version $VER2 -current_version $VER"}
libdir='/usr/lib'
includedir='/usr/include';;
2011-09-10 02:21:47 -04:00
*) LDSHARED=${LDSHARED-"$cc -shared"};;
2011-09-10 02:17:33 -04:00
esac
2011-09-10 02:14:39 -04:00
else
# find system name and corresponding cc options
CC=${CC-cc}
case `(uname -sr || echo unknown) 2>/dev/null` in
2011-09-10 02:20:15 -04:00
HP-UX*) SFLAGS=${CFLAGS-"-O +z"}
2011-09-10 02:22:37 -04:00
CFLAGS=${CFLAGS-"-O"}
# LDSHARED=${LDSHARED-"ld -b +vnocompatwarnings"}
LDSHARED=${LDSHARED-"ld -b"}
shared_ext='.sl'
SHAREDLIB='libz.sl';;
2011-09-10 02:14:39 -04:00
IRIX*) SFLAGS=${CFLAGS-"-ansi -O2 -rpath ."}
2011-09-10 02:22:37 -04:00
CFLAGS=${CFLAGS-"-ansi -O2"}
LDSHARED=${LDSHARED-"cc -shared"};;
2011-09-10 02:20:29 -04:00
OSF1\ V4*) SFLAGS=${CFLAGS-"-O -std1"}
2011-09-10 02:22:37 -04:00
CFLAGS=${CFLAGS-"-O -std1"}
2011-09-10 02:23:01 -04:00
LDSHARED=${LDSHARED-"cc -shared -Wl,-soname,libz.so -Wl,-msym -Wl,-rpath,$(libdir) -Wl,-set_version,${VER}:1.0"};;
2011-09-10 02:20:29 -04:00
OSF1*) SFLAGS=${CFLAGS-"-O -std1"}
2011-09-10 02:22:37 -04:00
CFLAGS=${CFLAGS-"-O -std1"}
LDSHARED=${LDSHARED-"cc -shared"};;
2011-09-10 02:14:39 -04:00
QNX*) SFLAGS=${CFLAGS-"-4 -O"}
CFLAGS=${CFLAGS-"-4 -O"}
2011-09-10 02:22:37 -04:00
LDSHARED=${LDSHARED-"cc"}
2011-09-10 02:14:39 -04:00
RANLIB=${RANLIB-"true"}
AR="cc -A";;
SCO_SV\ 3.2*) SFLAGS=${CFLAGS-"-O3 -dy -KPIC "}
2011-09-10 02:22:37 -04:00
CFLAGS=${CFLAGS-"-O3"}
LDSHARED=${LDSHARED-"cc -dy -KPIC -G"};;
2011-09-10 02:20:15 -04:00
SunOS\ 5*) SFLAGS=${CFLAGS-"-fast -xcg89 -KPIC -R."}
CFLAGS=${CFLAGS-"-fast -xcg89"}
2011-09-10 02:22:37 -04:00
LDSHARED=${LDSHARED-"cc -G"};;
2011-09-10 02:20:15 -04:00
SunOS\ 4*) SFLAGS=${CFLAGS-"-O2 -PIC"}
2011-09-10 02:22:37 -04:00
CFLAGS=${CFLAGS-"-O2"}
LDSHARED=${LDSHARED-"ld"};;
UNIX_System_V\ 4.2.0)
SFLAGS=${CFLAGS-"-KPIC -O"}
CFLAGS=${CFLAGS-"-O"}
LDSHARED=${LDSHARED-"cc -G"};;
2011-09-10 02:20:15 -04:00
UNIX_SV\ 4.2MP)
2011-09-10 02:22:37 -04:00
SFLAGS=${CFLAGS-"-Kconform_pic -O"}
CFLAGS=${CFLAGS-"-O"}
LDSHARED=${LDSHARED-"cc -G"};;
OpenUNIX\ 5)
SFLAGS=${CFLAGS-"-KPIC -O"}
CFLAGS=${CFLAGS-"-O"}
LDSHARED=${LDSHARED-"cc -G"};;
2011-09-10 02:22:10 -04:00
AIX*) # Courtesy of dbakker@arrayasolutions.com
2011-09-10 02:22:37 -04:00
SFLAGS=${CFLAGS-"-O -qmaxmem=8192"}
CFLAGS=${CFLAGS-"-O -qmaxmem=8192"}
LDSHARED=${LDSHARED-"xlc -G"};;
2011-09-10 02:17:33 -04:00
# send working options for other systems to support@gzip.org
2011-09-10 02:14:39 -04:00
*) SFLAGS=${CFLAGS-"-O"}
2011-09-10 02:22:37 -04:00
CFLAGS=${CFLAGS-"-O"}
LDSHARED=${LDSHARED-"cc -shared"};;
2011-09-10 02:14:39 -04:00
esac
fi
2011-09-10 02:23:01 -04:00
SHAREDLIB=${SHAREDLIB-"libz$shared_ext"}
SHAREDLIBV=${SHAREDLIBV-"libz$shared_ext.$VER"}
SHAREDLIBM=${SHAREDLIBM-"libz$shared_ext.$VER1"}
2011-09-10 02:17:33 -04:00
if test $shared -eq 1; then
echo Checking for shared library support...
# we must test in two steps (cc then ld), required at least on SunOS 4.x
if test "`($CC -c $SFLAGS $test.c) 2>&1`" = "" &&
test "`($LDSHARED -o $test$shared_ext $test.o) 2>&1`" = ""; then
CFLAGS="$SFLAGS"
2011-09-10 02:23:01 -04:00
LIBS="$SHAREDLIBV"
echo Building shared library $SHAREDLIBV with $CC.
2011-09-10 02:19:21 -04:00
elif test -z "$old_cc" -a -z "$old_cflags"; then
2011-09-10 02:22:37 -04:00
echo No shared library support.
2011-09-10 02:17:33 -04:00
shared=0;
2011-09-10 02:19:21 -04:00
else
2011-09-10 02:22:37 -04:00
echo 'No shared library support; try without defining CC and CFLAGS'
2011-09-10 02:19:21 -04:00
shared=0;
2011-09-10 02:17:33 -04:00
fi
fi
if test $shared -eq 0; then
2011-09-10 02:14:39 -04:00
LDSHARED="$CC"
echo Building static library $LIBS version $VER with $CC.
2011-09-10 02:23:01 -04:00
else
LDFLAGS="-L. ${SHAREDLIBV}"
2011-09-10 02:14:39 -04:00
fi
2011-09-10 02:17:33 -04:00
2011-09-10 02:20:29 -04:00
cat > $test.c <<EOF
#include <unistd.h>
int main() { return 0; }
EOF
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
2011-09-10 02:21:47 -04:00
sed < zconf.in.h "/HAVE_UNISTD_H/s%0%1%" > zconf.h
2011-09-10 02:20:29 -04:00
echo "Checking for unistd.h... Yes."
else
2011-09-10 02:21:47 -04:00
cp -p zconf.in.h zconf.h
2011-09-10 02:20:29 -04:00
echo "Checking for unistd.h... No."
2011-09-10 02:17:33 -04:00
fi
2011-09-10 02:20:29 -04:00
cat > $test.c <<EOF
2011-09-10 02:21:47 -04:00
#include <stdio.h>
#include <stdlib.h>
#if (defined(__MSDOS__) || defined(_WINDOWS) || defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__STDC__) || defined(__cplusplus) || defined(__OS2__)) && !defined(STDC)
# define STDC
#endif
2011-09-10 02:22:37 -04:00
int main()
2011-09-10 02:21:47 -04:00
{
#ifndef STDC
choke me
#endif
return 0;
}
EOF
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
echo "Checking whether to use vsnprintf() or snprintf()... using vsnprintf()"
cat > $test.c <<EOF
#include <stdio.h>
#include <stdarg.h>
int mytest(char *fmt, ...)
{
char buf[20];
va_list ap;
va_start(ap, fmt);
vsnprintf(buf, sizeof(buf), fmt, ap);
va_end(ap);
return 0;
}
int main()
{
return (mytest("Hello%d\n", 1));
}
EOF
2011-09-10 02:22:37 -04:00
2011-09-10 02:21:47 -04:00
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
echo "Checking for vsnprintf() in stdio.h... Yes."
cat >$test.c <<EOF
#include <stdio.h>
#include <stdarg.h>
int mytest(char *fmt, ...)
{
int i;
char buf[20];
va_list ap;
va_start(ap, fmt);
i = vsnprintf(buf, sizeof(buf), fmt, ap);
va_end(ap);
return 0;
}
int main()
{
return (mytest("Hello%d\n", 1));
}
EOF
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
echo "Checking for return value of vsnprintf()... Yes."
else
CFLAGS="$CFLAGS -DHAS_vsnprintf_void"
echo "Checking for return value of vsnprintf()... No."
echo " WARNING: apparently vsnprintf() does not return a value. zlib"
echo " can build but will be open to possible string-format security"
echo " vulnerabilities."
fi
else
CFLAGS="$CFLAGS -DNO_vsnprintf"
echo "Checking for vsnprintf() in stdio.h... No."
echo " WARNING: vsnprintf() not found, falling back to vsprintf(). zlib"
echo " can build but will be open to possible buffer-overflow security"
echo " vulnerabilities."
cat >$test.c <<EOF
#include <stdio.h>
#include <stdarg.h>
int mytest(char *fmt, ...)
{
int i;
char buf[20];
va_list ap;
va_start(ap, fmt);
i = vsprintf(buf, fmt, ap);
va_end(ap);
return 0;
}
2011-09-10 02:22:37 -04:00
int main()
2011-09-10 02:21:47 -04:00
{
return (mytest("Hello%d\n", 1));
}
EOF
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
echo "Checking for return value of vsprintf()... Yes."
else
CFLAGS="$CFLAGS -DHAS_vsprintf_void"
echo "Checking for return value of vsprintf()... No."
echo " WARNING: apparently vsprintf() does not return a value. zlib"
echo " can build but will be open to possible string-format security"
echo " vulnerabilities."
fi
fi
else
echo "Checking whether to use vsnprintf() or snprintf()... using snprintf()"
cat >$test.c <<EOF
#include <stdio.h>
#include <stdarg.h>
2011-09-10 02:22:37 -04:00
int mytest()
2011-09-10 02:21:47 -04:00
{
char buf[20];
snprintf(buf, sizeof(buf), "%s", "foo");
return 0;
}
2011-09-10 02:22:37 -04:00
int main()
2011-09-10 02:21:47 -04:00
{
return (mytest());
}
EOF
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
echo "Checking for snprintf() in stdio.h... Yes."
cat >$test.c <<EOF
#include <stdio.h>
#include <stdarg.h>
int mytest(char *fmt, ...)
{
int i;
char buf[20];
i = snprintf(buf, sizeof(buf), "%s", "foo");
return 0;
}
2011-09-10 02:22:37 -04:00
int main()
2011-09-10 02:21:47 -04:00
{
return (mytest());
}
EOF
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
echo "Checking for return value of snprintf()... Yes."
else
CFLAGS="$CFLAGS -DHAS_snprintf_void"
echo "Checking for return value of snprintf()... No."
echo " WARNING: apparently snprintf() does not return a value. zlib"
echo " can build but will be open to possible string-format security"
echo " vulnerabilities."
fi
else
CFLAGS="$CFLAGS -DNO_snprintf"
echo "Checking for snprintf() in stdio.h... No."
echo " WARNING: snprintf() not found, falling back to sprintf(). zlib"
echo " can build but will be open to possible buffer-overflow security"
echo " vulnerabilities."
cat >$test.c <<EOF
#include <stdio.h>
#include <stdarg.h>
2011-09-10 02:22:37 -04:00
int mytest(char *fmt, ...)
2011-09-10 02:21:47 -04:00
{
int i;
char buf[20];
i = sprintf(buf, "%s", "foo");
return 0;
}
2011-09-10 02:22:37 -04:00
int main()
2011-09-10 02:21:47 -04:00
{
return (mytest());
}
EOF
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
echo "Checking for return value of sprintf()... Yes."
else
CFLAGS="$CFLAGS -DHAS_sprintf_void"
echo "Checking for return value of sprintf()... No."
echo " WARNING: apparently sprintf() does not return a value. zlib"
echo " can build but will be open to possible string-format security"
echo " vulnerabilities."
fi
fi
fi
cat >$test.c <<EOF
2011-09-10 02:20:29 -04:00
#include <errno.h>
int main() { return 0; }
EOF
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
2011-09-10 02:22:37 -04:00
echo "Checking for errno.h... Yes."
2011-09-10 02:20:29 -04:00
else
2011-09-10 02:22:37 -04:00
echo "Checking for errno.h... No."
2011-09-10 02:17:33 -04:00
CFLAGS="$CFLAGS -DNO_ERRNO_H"
fi
2011-09-10 02:14:39 -04:00
2011-09-10 02:19:55 -04:00
cat > $test.c <<EOF
#include <sys/types.h>
#include <sys/mman.h>
#include <sys/stat.h>
caddr_t hello() {
2011-09-10 02:22:37 -04:00
return mmap((caddr_t)0, (off_t)0, PROT_READ, MAP_SHARED, 0, (off_t)0);
2011-09-10 02:19:55 -04:00
}
EOF
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
CFLAGS="$CFLAGS -DUSE_MMAP"
echo Checking for mmap support... Yes.
else
echo Checking for mmap support... No.
fi
2011-09-10 02:20:29 -04:00
CPP=${CPP-"$CC -E"}
case $CFLAGS in
*ASMV*)
if test "`nm $test.o | grep _hello`" = ""; then
CPP="$CPP -DNO_UNDERLINE"
echo Checking for underline in external names... No.
else
echo Checking for underline in external names... Yes.
fi;;
esac
2011-09-10 02:19:55 -04:00
rm -f $test.[co] $test$shared_ext
2011-09-10 02:14:39 -04:00
# udpate Makefile
sed < Makefile.in "
2011-09-10 02:23:01 -04:00
/^CC *=/s#=.*#=$CC#
/^CFLAGS *=/s#=.*#=$CFLAGS#
/^CPP *=/s#=.*#=$CPP#
/^LDSHARED *=/s#=.*#=$LDSHARED#
/^LIBS *=/s#=.*#=$LIBS#
/^SHAREDLIB *=/s#=.*#=$SHAREDLIB#
/^SHAREDLIBV *=/s#=.*#=$SHAREDLIBV#
/^SHAREDLIBM *=/s#=.*#=$SHAREDLIBM#
/^AR *=/s#=.*#=$AR#
/^RANLIB *=/s#=.*#=$RANLIB#
/^prefix *=/s#=.*#=$prefix#
/^exec_prefix *=/s#=.*#=$exec_prefix#
/^libdir *=/s#=.*#=$libdir#
/^includedir *=/s#=.*#=$includedir#
/^mandir *=/s#=.*#=$mandir#
/^LDFLAGS *=/s#=.*#=$LDFLAGS#
2011-09-10 02:14:39 -04:00
" > Makefile