2 # configure script for zlib.
4 # Normally configure builds both a static and a shared library.
5 # If you want to build just a static library, use: ./configure --static
7 # To impose specific compiler or flags or install directory, use for example:
8 # prefix=$HOME CC=cc CFLAGS="-O4" ./configure
9 # or for csh/tcsh users:
10 # (setenv prefix $HOME; setenv CC cc; setenv CFLAGS "-O4"; ./configure)
12 # Incorrect settings of CC or CFLAGS may prevent creating a shared library.
13 # If you have problems, try without defining CC and CFLAGS before reporting
16 # start off configure.log
17 echo -------------------- >> configure.log
18 echo $0 $
* >> configure.log
21 # get source directory
23 if test $SRCDIR = "."; then
28 ZINC
='-include zconf.h'
29 ZINCOUT
='-I. -I$(SRCDIR)'
33 # set command prefix for cross-compilation
34 if [ -n "${CHOST}" ]; then
35 uname
="`echo "${CHOST}" | sed -e 's/^[^-]*-\([^-]*\)$/\1/' -e 's/^[^-]*-[^-]*-\([^-]*\)$/\1/' -e 's/^[^-]*-[^-]*-\([^-]*\)-.*$/\1/'`"
36 CROSS_PREFIX
="${CHOST}-"
39 # destination name for static library
42 # extract zlib version numbers from zlib.h
43 VER
=`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < ${SRCDIR}zlib.h`
44 VER3
=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\\.[0-9]*\).*/\1/p' < ${SRCDIR}zlib.h`
45 VER2
=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\)\\..*/\1/p' < ${SRCDIR}zlib.h`
46 VER1
=`sed -n -e '/VERSION "/s/.*"\([0-9]*\)\\..*/\1/p' < ${SRCDIR}zlib.h`
48 # establish commands for library building
49 if "${CROSS_PREFIX}ar" --version >/dev
/null
2>/dev
/null ||
test $?
-lt 126; then
50 AR
=${AR-"${CROSS_PREFIX}ar"}
51 test -n "${CROSS_PREFIX}" && echo Using
${AR} |
tee -a configure.log
54 test -n "${CROSS_PREFIX}" && echo Using
${AR} |
tee -a configure.log
56 ARFLAGS
=${ARFLAGS-"rc"}
57 if "${CROSS_PREFIX}ranlib" --version >/dev
/null
2>/dev
/null ||
test $?
-lt 126; then
58 RANLIB
=${RANLIB-"${CROSS_PREFIX}ranlib"}
59 test -n "${CROSS_PREFIX}" && echo Using
${RANLIB} |
tee -a configure.log
61 RANLIB
=${RANLIB-"ranlib"}
63 if "${CROSS_PREFIX}nm" --version >/dev
/null
2>/dev
/null ||
test $?
-lt 126; then
64 NM
=${NM-"${CROSS_PREFIX}nm"}
65 test -n "${CROSS_PREFIX}" && echo Using
${NM} |
tee -a configure.log
70 # set defaults before processing command line options
71 LDCONFIG
=${LDCONFIG-"ldconfig"}
72 LDSHAREDLIBC
="${LDSHAREDLIBC--lc}"
74 prefix
=${prefix-/usr/local}
75 exec_prefix
=${exec_prefix-'${prefix}'}
76 libdir
=${libdir-'${exec_prefix}/lib'}
77 sharedlibdir
=${sharedlibdir-'${libdir}'}
78 includedir
=${includedir-'${prefix}/include'}
79 mandir
=${mandir-'${prefix}/share/man'}
92 OBJC
='$(OBJZ) $(OBJG)'
93 PIC_OBJC
='$(PIC_OBJZ) $(PIC_OBJG)'
95 # leave this script, optionally in a bad way
98 if test "$*" != "0"; then
99 echo "** $0 aborting." |
tee -a configure.log
101 rm -f $test.
[co
] $test $test$shared_ext $test.gcno .
/--version
102 echo -------------------- >> configure.log
103 echo >> configure.log
104 echo >> configure.log
108 # process command line options
113 echo 'usage:' |
tee -a configure.log
114 echo ' configure [--const] [--zprefix] [--prefix=PREFIX] [--eprefix=EXPREFIX]' |
tee -a configure.log
115 echo ' [--static] [--64] [--libdir=LIBDIR] [--sharedlibdir=LIBDIR]' |
tee -a configure.log
116 echo ' [--includedir=INCLUDEDIR] [--archs="-arch i386 -arch x86_64"]' |
tee -a configure.log
118 -p*=* |
--prefix=*) prefix
=`echo $1 | sed 's/.*=//'`; shift ;;
119 -e*=* |
--eprefix=*) exec_prefix
=`echo $1 | sed 's/.*=//'`; shift ;;
120 -l*=* |
--libdir=*) libdir
=`echo $1 | sed 's/.*=//'`; shift ;;
121 --sharedlibdir=*) sharedlibdir
=`echo $1 | sed 's/.*=//'`; shift ;;
122 -i*=* |
--includedir=*) includedir
=`echo $1 | sed 's/.*=//'`;shift ;;
123 -u*=* |
--uname=*) uname
=`echo $1 | sed 's/.*=//'`;shift ;;
124 -p* |
--prefix) prefix
="$2"; shift; shift ;;
125 -e* |
--eprefix) exec_prefix
="$2"; shift; shift ;;
126 -l* |
--libdir) libdir
="$2"; shift; shift ;;
127 -i* |
--includedir) includedir
="$2"; shift; shift ;;
128 -s* |
--shared |
--enable-shared) shared
=1; shift ;;
129 -t |
--static) shared
=0; shift ;;
130 --solo) solo
=1; shift ;;
131 --cover) cover
=1; shift ;;
132 -z* |
--zprefix) zprefix
=1; shift ;;
133 -6* |
--64) build64
=1; shift ;;
134 -a*=* |
--archs=*) ARCHS
=`echo $1 | sed 's/.*=//'`; shift ;;
135 --sysconfdir=*) echo "ignored option: --sysconfdir" |
tee -a configure.log
; shift ;;
136 --localstatedir=*) echo "ignored option: --localstatedir" |
tee -a configure.log
; shift ;;
137 -c* |
--const) zconst
=1; shift ;;
138 -w* |
--warn) warn
=1; shift ;;
139 -d* |
--debug) debug
=1; shift ;;
141 echo "unknown option: $1" |
tee -a configure.log
142 echo "$0 --help for help" |
tee -a configure.log
147 # temporary file name
150 # put arguments in log, also put test file in log if used in arguments
155 echo === $test.c
=== >> configure.log
156 cat $test.c
>> configure.log
157 echo === >> configure.log
;;
159 echo $
* >> configure.log
162 # check for gcc vs. cc and set compile and link flags based on the system identified by uname
164 extern int getchar();
165 int hello() {return getchar();}
168 test -z "$CC" && echo Checking
for ${CROSS_PREFIX}gcc... |
tee -a configure.log
169 cc
=${CC-${CROSS_PREFIX}gcc}
170 cflags
=${CFLAGS-"-O3"}
171 # to force the asm version use: CFLAGS="-O3 -DASMV" ./configure
176 case `$cc -v 2>&1` in
182 if test "$gcc" -eq 1 && ($cc -c $test.c
) >> configure.log
2>&1; then
183 echo ... using gcc
>> configure.log
185 CFLAGS
="${CFLAGS--O3}"
186 SFLAGS
="${CFLAGS--O3} -fPIC"
187 if test "$ARCHS"; then
188 CFLAGS
="${CFLAGS} ${ARCHS}"
189 LDFLAGS
="${LDFLAGS} ${ARCHS}"
191 if test $build64 -eq 1; then
192 CFLAGS
="${CFLAGS} -m64"
193 SFLAGS
="${SFLAGS} -m64"
195 if test "$warn" -eq 1; then
196 if test "$zconst" -eq 1; then
197 CFLAGS
="${CFLAGS} -Wall -Wextra -Wcast-qual -pedantic -DZLIB_CONST"
199 CFLAGS
="${CFLAGS} -Wall -Wextra -pedantic"
202 if test $debug -eq 1; then
203 CFLAGS
="${CFLAGS} -DZLIB_DEBUG"
204 SFLAGS
="${SFLAGS} -DZLIB_DEBUG"
206 if test -z "$uname"; then
207 uname
=`(uname -s || echo unknown) 2>/dev/null`
210 Linux
* | linux
* | GNU | GNU
/* | solaris
*)
211 LDSHARED
=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script,${SRCDIR}zlib.map"} ;;
212 *BSD |
*bsd
* | DragonFly
)
213 LDSHARED
=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script,${SRCDIR}zlib.map"}
214 LDCONFIG
="ldconfig -m" ;;
215 CYGWIN
* | Cygwin
* | cygwin
* | OS
/2*)
219 rm -f $test.
[co
] $test $test$shared_ext
220 echo "Please use win32/Makefile.gcc instead." |
tee -a configure.log
222 LDSHARED
=${LDSHARED-"$cc -shared"}
225 QNX
*) # This is for QNX6. I suppose that the QNX rule below is for QNX2,QNX4
226 # (alain.bonnefoy@icbt.com)
227 LDSHARED
=${LDSHARED-"$cc -shared -Wl,-hlibz.so.1"} ;;
229 LDSHARED
=${LDSHARED-"$cc -shared $SFLAGS"}
230 case `(uname -m || echo unknown) 2>/dev/null` in
233 SHAREDLIB
='libz.so' ;;
236 SHAREDLIB
='libz.sl' ;;
240 SHAREDLIB
=libz
$shared_ext
241 SHAREDLIBV
=libz.
$VER$shared_ext
242 SHAREDLIBM
=libz.
$VER1$shared_ext
243 LDSHARED
=${LDSHARED-"$cc -dynamiclib -install_name $libdir/$SHAREDLIBM -compatibility_version $VER1 -current_version $VER3"}
244 if libtool
-V 2>&1 |
grep Apple
> /dev
/null
; then
247 AR
="/usr/bin/libtool"
250 *) LDSHARED
=${LDSHARED-"$cc -shared"} ;;
253 # find system name and corresponding cc options
256 echo ... using
$CC >> configure.log
257 if test -z "$uname"; then
258 uname
=`(uname -sr || echo unknown) 2>/dev/null`
261 HP-UX
*) SFLAGS
=${CFLAGS-"-O +z"}
262 CFLAGS
=${CFLAGS-"-O"}
263 # LDSHARED=${LDSHARED-"ld -b +vnocompatwarnings"}
264 LDSHARED
=${LDSHARED-"ld -b"}
265 case `(uname -m || echo unknown) 2>/dev/null` in
268 SHAREDLIB
='libz.so' ;;
271 SHAREDLIB
='libz.sl' ;;
273 IRIX
*) SFLAGS
=${CFLAGS-"-ansi -O2 -rpath ."}
274 CFLAGS
=${CFLAGS-"-ansi -O2"}
275 LDSHARED
=${LDSHARED-"cc -shared -Wl,-soname,libz.so.1"} ;;
276 OSF1\ V4
*) SFLAGS
=${CFLAGS-"-O -std1"}
277 CFLAGS
=${CFLAGS-"-O -std1"}
278 LDFLAGS
="${LDFLAGS} -Wl,-rpath,."
279 LDSHARED
=${LDSHARED-"cc -shared -Wl,-soname,libz.so -Wl,-msym -Wl,-rpath,$(libdir) -Wl,-set_version,${VER}:1.0"} ;;
280 OSF1
*) SFLAGS
=${CFLAGS-"-O -std1"}
281 CFLAGS
=${CFLAGS-"-O -std1"}
282 LDSHARED
=${LDSHARED-"cc -shared -Wl,-soname,libz.so.1"} ;;
283 QNX
*) SFLAGS
=${CFLAGS-"-4 -O"}
284 CFLAGS
=${CFLAGS-"-4 -O"}
285 LDSHARED
=${LDSHARED-"cc"}
286 RANLIB
=${RANLIB-"true"}
289 SCO_SV\
3.2*) SFLAGS
=${CFLAGS-"-O3 -dy -KPIC "}
290 CFLAGS
=${CFLAGS-"-O3"}
291 LDSHARED
=${LDSHARED-"cc -dy -KPIC -G"} ;;
292 SunOS\
5* | solaris
*)
293 LDSHARED
=${LDSHARED-"cc -G -h libz$shared_ext.$VER1"}
294 SFLAGS
=${CFLAGS-"-fast -KPIC"}
295 CFLAGS
=${CFLAGS-"-fast"}
296 if test $build64 -eq 1; then
297 # old versions of SunPRO/Workshop/Studio don't support -m64,
298 # but newer ones do. Check for it.
299 flag64
=`$CC -flags | egrep -- '^-m64'`
300 if test x
"$flag64" != x
"" ; then
301 CFLAGS
="${CFLAGS} -m64"
302 SFLAGS
="${SFLAGS} -m64"
304 case `(uname -m || echo unknown) 2>/dev/null` in
306 SFLAGS
="$SFLAGS -xarch=amd64"
307 CFLAGS
="$CFLAGS -xarch=amd64" ;;
309 SFLAGS
="$SFLAGS -xarch=v9"
310 CFLAGS
="$CFLAGS -xarch=v9" ;;
314 if test -n "$ZINC"; then
315 ZINC
='-I- -I. -I$(SRCDIR)'
318 SunOS\
4*) SFLAGS
=${CFLAGS-"-O2 -PIC"}
319 CFLAGS
=${CFLAGS-"-O2"}
320 LDSHARED
=${LDSHARED-"ld"} ;;
321 SunStudio\
9*) SFLAGS
=${CFLAGS-"-fast -xcode=pic32 -xtarget=ultra3 -xarch=v9b"}
322 CFLAGS
=${CFLAGS-"-fast -xtarget=ultra3 -xarch=v9b"}
323 LDSHARED
=${LDSHARED-"cc -xarch=v9b"} ;;
324 UNIX_System_V\
4.2.0)
325 SFLAGS
=${CFLAGS-"-KPIC -O"}
326 CFLAGS
=${CFLAGS-"-O"}
327 LDSHARED
=${LDSHARED-"cc -G"} ;;
329 SFLAGS
=${CFLAGS-"-Kconform_pic -O"}
330 CFLAGS
=${CFLAGS-"-O"}
331 LDSHARED
=${LDSHARED-"cc -G"} ;;
333 SFLAGS
=${CFLAGS-"-KPIC -O"}
334 CFLAGS
=${CFLAGS-"-O"}
335 LDSHARED
=${LDSHARED-"cc -G"} ;;
336 AIX
*) # Courtesy of dbakker@arrayasolutions.com
337 SFLAGS
=${CFLAGS-"-O -qmaxmem=8192"}
338 CFLAGS
=${CFLAGS-"-O -qmaxmem=8192"}
339 LDSHARED
=${LDSHARED-"xlc -G"} ;;
340 # send working options for other systems to zlib@gzip.org
341 *) SFLAGS
=${CFLAGS-"-O"}
342 CFLAGS
=${CFLAGS-"-O"}
343 LDSHARED
=${LDSHARED-"cc -shared"} ;;
347 # destination names for shared library if not defined above
348 SHAREDLIB
=${SHAREDLIB-"libz$shared_ext"}
349 SHAREDLIBV
=${SHAREDLIBV-"libz$shared_ext.$VER"}
350 SHAREDLIBM
=${SHAREDLIBM-"libz$shared_ext.$VER1"}
352 echo >> configure.log
354 # define functions for testing compiler and library characteristics and logging the results
359 if ($CC -c $CFLAGS $test.c
) 2>/dev
/null
; then
363 test "`( $* ) 2>&1 | tee -a configure.log`" = ""
365 echo - using any output from compiler to indicate an error
>> configure.log
370 ( $
* ) >> configure.log
2>&1
372 if test $ret -ne 0; then
373 echo "(exit code "$ret")" >> configure.log
384 printf %s
"$got" >> configure.log
385 if test $ret -ne 0; then
392 int foo() { return 0; }
394 echo "Checking for obsessive-compulsive compiler options..." >> configure.log
395 if try
$CC -c $CFLAGS $test.c
; then
398 echo "Compiler error reporting is too harsh for $0 (perhaps remove -Werror)." |
tee -a configure.log
402 echo >> configure.log
404 # see if shared library build supported
406 extern int getchar();
407 int hello() {return getchar();}
409 if test $shared -eq 1; then
410 echo Checking
for shared library support... |
tee -a configure.log
411 # we must test in two steps (cc then ld), required at least on SunOS 4.x
412 if try
$CC -w -c $SFLAGS $test.c
&&
413 try
$LDSHARED $SFLAGS -o $test$shared_ext $test.o
; then
414 echo Building shared library
$SHAREDLIBV with
$CC. |
tee -a configure.log
415 elif test -z "$old_cc" -a -z "$old_cflags"; then
416 echo No shared library support. |
tee -a configure.log
419 echo 'No shared library support; try without defining CC and CFLAGS' |
tee -a configure.log
423 if test $shared -eq 0; then
426 TEST
="all teststatic"
430 echo Building static library
$STATICLIB version
$VER with
$CC. |
tee -a configure.log
433 TEST
="all teststatic testshared"
436 # check for underscores in external names for use by assembler code
440 echo >> configure.log
441 show
"$NM $test.o | grep _hello"
442 if test "`$NM $test.o | grep _hello | tee -a configure.log`" = ""; then
443 CPP
="$CPP -DNO_UNDERLINE"
444 echo Checking
for underline
in external names... No. |
tee -a configure.log
446 echo Checking
for underline
in external names... Yes. |
tee -a configure.log
450 echo >> configure.log
458 if try
$CC -c $CFLAGS $test.c
; then
459 echo "Checking for size_t... Yes." |
tee -a configure.log
462 echo "Checking for size_t... No." |
tee -a configure.log
466 echo >> configure.log
468 # find the size_t integer type, if needed
469 if test $need_sizet -eq 1; then
473 if try
$CC -c $CFLAGS $test.c
; then
474 echo "Checking for long long... Yes." |
tee -a configure.log
478 if (sizeof(void *) <= sizeof(int)) puts("int");
479 else if (sizeof(void *) <= sizeof(long)) puts("long");
480 else puts("z_longlong");
485 echo "Checking for long long... No." |
tee -a configure.log
489 if (sizeof(void *) <= sizeof(int)) puts("int");
495 if try
$CC $CFLAGS -o $test $test.c
; then
497 echo "Checking for a pointer-size integer type..." $sizet"." |
tee -a configure.log
499 echo "Failed to find a pointer-size integer type." |
tee -a configure.log
504 if test $need_sizet -eq 1; then
505 CFLAGS
="${CFLAGS} -DNO_SIZE_T=${sizet}"
506 SFLAGS
="${SFLAGS} -DNO_SIZE_T=${sizet}"
509 echo >> configure.log
511 # check for large file support, and if none, check for fseeko()
513 #include <sys/types.h>
516 if try
$CC -c $CFLAGS -D_LARGEFILE64_SOURCE=1 $test.c
; then
517 CFLAGS
="${CFLAGS} -D_LARGEFILE64_SOURCE=1"
518 SFLAGS
="${SFLAGS} -D_LARGEFILE64_SOURCE=1"
520 TEST
="${TEST} test64"
521 echo "Checking for off64_t... Yes." |
tee -a configure.log
522 echo "Checking for fseeko... Yes." |
tee -a configure.log
524 echo "Checking for off64_t... No." |
tee -a configure.log
525 echo >> configure.log
533 if try
$CC $CFLAGS -o $test $test.c
; then
534 echo "Checking for fseeko... Yes." |
tee -a configure.log
536 CFLAGS
="${CFLAGS} -DNO_FSEEKO"
537 SFLAGS
="${SFLAGS} -DNO_FSEEKO"
538 echo "Checking for fseeko... No." |
tee -a configure.log
542 echo >> configure.log
544 # check for strerror() for use by gz* functions
548 int main() { return strlen(strerror(errno)); }
550 if try
$CC $CFLAGS -o $test $test.c
; then
551 echo "Checking for strerror... Yes." |
tee -a configure.log
553 CFLAGS
="${CFLAGS} -DNO_STRERROR"
554 SFLAGS
="${SFLAGS} -DNO_STRERROR"
555 echo "Checking for strerror... No." |
tee -a configure.log
558 # copy clean zconf.h for subsequent edits
559 cp -p ${SRCDIR}zconf.h.
in zconf.h
561 echo >> configure.log
563 # check for unistd.h and save result in zconf.h
566 int main() { return 0; }
568 if try
$CC -c $CFLAGS $test.c
; then
569 sed < zconf.h
"/^#ifdef HAVE_UNISTD_H.* may be/s/def HAVE_UNISTD_H\(.*\) may be/ 1\1 was/" > zconf.temp.h
570 mv zconf.temp.h zconf.h
571 echo "Checking for unistd.h... Yes." |
tee -a configure.log
573 echo "Checking for unistd.h... No." |
tee -a configure.log
576 echo >> configure.log
578 # check for stdarg.h and save result in zconf.h
581 int main() { return 0; }
583 if try
$CC -c $CFLAGS $test.c
; then
584 sed < zconf.h
"/^#ifdef HAVE_STDARG_H.* may be/s/def HAVE_STDARG_H\(.*\) may be/ 1\1 was/" > zconf.temp.h
585 mv zconf.temp.h zconf.h
586 echo "Checking for stdarg.h... Yes." |
tee -a configure.log
588 echo "Checking for stdarg.h... No." |
tee -a configure.log
591 # if the z_ prefix was requested, save that in zconf.h
592 if test $zprefix -eq 1; then
593 sed < zconf.h
"/#ifdef Z_PREFIX.* may be/s/def Z_PREFIX\(.*\) may be/ 1\1 was/" > zconf.temp.h
594 mv zconf.temp.h zconf.h
595 echo >> configure.log
596 echo "Using z_ prefix on all symbols." |
tee -a configure.log
599 # if --solo compilation was requested, save that in zconf.h and remove gz stuff from object lists
600 if test $solo -eq 1; then
601 sed '/#define ZCONF_H/a\
604 ' < zconf.h
> zconf.temp.h
605 mv zconf.temp.h zconf.h
607 PIC_OBJC
='$(PIC_OBJZ)'
610 # if code coverage testing was requested, use older gcc if defined, e.g. "gcc-4.2" on Mac OS X
611 if test $cover -eq 1; then
612 CFLAGS
="${CFLAGS} -fprofile-arcs -ftest-coverage"
613 if test -n "$GCC_CLASSIC"; then
618 echo >> configure.log
620 # conduct a series of tests to resolve eight possible cases of using "vs" or "s" printf functions
621 # (using stdarg or not), with or without "n" (proving size of buffer), and with or without a
622 # return value. The most secure result is vsnprintf() with a return value. snprintf() with a
623 # return value is secure as well, but then gzprintf() will be limited to 20 arguments.
636 if try
$CC -c $CFLAGS $test.c
; then
637 echo "Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf()." |
tee -a configure.log
639 echo >> configure.log
643 int mytest(const char *fmt, ...)
648 vsnprintf(buf, sizeof(buf), fmt, ap);
654 return (mytest("Hello%d\n", 1));
657 if try
$CC $CFLAGS -o $test $test.c
; then
658 echo "Checking for vsnprintf() in stdio.h... Yes." |
tee -a configure.log
660 echo >> configure.log
664 int mytest(const char *fmt, ...)
670 n = vsnprintf(buf, sizeof(buf), fmt, ap);
676 return (mytest("Hello%d\n", 1));
680 if try
$CC -c $CFLAGS $test.c
; then
681 echo "Checking for return value of vsnprintf()... Yes." |
tee -a configure.log
683 CFLAGS
="$CFLAGS -DHAS_vsnprintf_void"
684 SFLAGS
="$SFLAGS -DHAS_vsnprintf_void"
685 echo "Checking for return value of vsnprintf()... No." |
tee -a configure.log
686 echo " WARNING: apparently vsnprintf() does not return a value. zlib" |
tee -a configure.log
687 echo " can build but will be open to possible string-format security" |
tee -a configure.log
688 echo " vulnerabilities." |
tee -a configure.log
691 CFLAGS
="$CFLAGS -DNO_vsnprintf"
692 SFLAGS
="$SFLAGS -DNO_vsnprintf"
693 echo "Checking for vsnprintf() in stdio.h... No." |
tee -a configure.log
694 echo " WARNING: vsnprintf() not found, falling back to vsprintf(). zlib" |
tee -a configure.log
695 echo " can build but will be open to possible buffer-overflow security" |
tee -a configure.log
696 echo " vulnerabilities." |
tee -a configure.log
698 echo >> configure.log
702 int mytest(const char *fmt, ...)
708 n = vsprintf(buf, fmt, ap);
714 return (mytest("Hello%d\n", 1));
718 if try
$CC -c $CFLAGS $test.c
; then
719 echo "Checking for return value of vsprintf()... Yes." |
tee -a configure.log
721 CFLAGS
="$CFLAGS -DHAS_vsprintf_void"
722 SFLAGS
="$SFLAGS -DHAS_vsprintf_void"
723 echo "Checking for return value of vsprintf()... No." |
tee -a configure.log
724 echo " WARNING: apparently vsprintf() does not return a value. zlib" |
tee -a configure.log
725 echo " can build but will be open to possible string-format security" |
tee -a configure.log
726 echo " vulnerabilities." |
tee -a configure.log
730 echo "Checking whether to use vs[n]printf() or s[n]printf()... using s[n]printf()." |
tee -a configure.log
732 echo >> configure.log
738 snprintf(buf, sizeof(buf), "%s", "foo");
747 if try
$CC $CFLAGS -o $test $test.c
; then
748 echo "Checking for snprintf() in stdio.h... Yes." |
tee -a configure.log
750 echo >> configure.log
756 return snprintf(buf, sizeof(buf), "%s", "foo");
764 if try
$CC -c $CFLAGS $test.c
; then
765 echo "Checking for return value of snprintf()... Yes." |
tee -a configure.log
767 CFLAGS
="$CFLAGS -DHAS_snprintf_void"
768 SFLAGS
="$SFLAGS -DHAS_snprintf_void"
769 echo "Checking for return value of snprintf()... No." |
tee -a configure.log
770 echo " WARNING: apparently snprintf() does not return a value. zlib" |
tee -a configure.log
771 echo " can build but will be open to possible string-format security" |
tee -a configure.log
772 echo " vulnerabilities." |
tee -a configure.log
775 CFLAGS
="$CFLAGS -DNO_snprintf"
776 SFLAGS
="$SFLAGS -DNO_snprintf"
777 echo "Checking for snprintf() in stdio.h... No." |
tee -a configure.log
778 echo " WARNING: snprintf() not found, falling back to sprintf(). zlib" |
tee -a configure.log
779 echo " can build but will be open to possible buffer-overflow security" |
tee -a configure.log
780 echo " vulnerabilities." |
tee -a configure.log
782 echo >> configure.log
788 return sprintf(buf, "%s", "foo");
796 if try
$CC -c $CFLAGS $test.c
; then
797 echo "Checking for return value of sprintf()... Yes." |
tee -a configure.log
799 CFLAGS
="$CFLAGS -DHAS_sprintf_void"
800 SFLAGS
="$SFLAGS -DHAS_sprintf_void"
801 echo "Checking for return value of sprintf()... No." |
tee -a configure.log
802 echo " WARNING: apparently sprintf() does not return a value. zlib" |
tee -a configure.log
803 echo " can build but will be open to possible string-format security" |
tee -a configure.log
804 echo " vulnerabilities." |
tee -a configure.log
809 # see if we can hide zlib internal symbols that are linked between separate source files
810 if test "$gcc" -eq 1; then
811 echo >> configure.log
813 #define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
814 int ZLIB_INTERNAL foo;
820 if tryboth
$CC -c $CFLAGS $test.c
; then
821 CFLAGS
="$CFLAGS -DHAVE_HIDDEN"
822 SFLAGS
="$SFLAGS -DHAVE_HIDDEN"
823 echo "Checking for attribute(visibility) support... Yes." |
tee -a configure.log
825 echo "Checking for attribute(visibility) support... No." |
tee -a configure.log
829 # show the results in the log
830 echo >> configure.log
831 echo ALL
= $ALL >> configure.log
832 echo AR
= $AR >> configure.log
833 echo ARFLAGS
= $ARFLAGS >> configure.log
834 echo CC
= $CC >> configure.log
835 echo CFLAGS
= $CFLAGS >> configure.log
836 echo CPP
= $CPP >> configure.log
837 echo EXE
= $EXE >> configure.log
838 echo LDCONFIG
= $LDCONFIG >> configure.log
839 echo LDFLAGS
= $LDFLAGS >> configure.log
840 echo LDSHARED
= $LDSHARED >> configure.log
841 echo LDSHAREDLIBC
= $LDSHAREDLIBC >> configure.log
842 echo OBJC
= $OBJC >> configure.log
843 echo PIC_OBJC
= $PIC_OBJC >> configure.log
844 echo RANLIB
= $RANLIB >> configure.log
845 echo SFLAGS
= $SFLAGS >> configure.log
846 echo SHAREDLIB
= $SHAREDLIB >> configure.log
847 echo SHAREDLIBM
= $SHAREDLIBM >> configure.log
848 echo SHAREDLIBV
= $SHAREDLIBV >> configure.log
849 echo STATICLIB
= $STATICLIB >> configure.log
850 echo TEST
= $TEST >> configure.log
851 echo VER
= $VER >> configure.log
852 echo Z_U4
= $Z_U4 >> configure.log
853 echo SRCDIR
= $SRCDIR >> configure.log
854 echo exec_prefix
= $exec_prefix >> configure.log
855 echo includedir
= $includedir >> configure.log
856 echo libdir
= $libdir >> configure.log
857 echo mandir
= $mandir >> configure.log
858 echo prefix
= $prefix >> configure.log
859 echo sharedlibdir
= $sharedlibdir >> configure.log
860 echo uname
= $uname >> configure.log
862 # udpate Makefile with the configure results
863 sed < ${SRCDIR}Makefile.
in "
865 /^CFLAGS *=/s#=.*#=$CFLAGS#
866 /^SFLAGS *=/s#=.*#=$SFLAGS#
867 /^LDFLAGS *=/s#=.*#=$LDFLAGS#
868 /^LDSHARED *=/s#=.*#=$LDSHARED#
869 /^CPP *=/s#=.*#=$CPP#
870 /^STATICLIB *=/s#=.*#=$STATICLIB#
871 /^SHAREDLIB *=/s#=.*#=$SHAREDLIB#
872 /^SHAREDLIBV *=/s#=.*#=$SHAREDLIBV#
873 /^SHAREDLIBM *=/s#=.*#=$SHAREDLIBM#
875 /^ARFLAGS *=/s#=.*#=$ARFLAGS#
876 /^RANLIB *=/s#=.*#=$RANLIB#
877 /^LDCONFIG *=/s#=.*#=$LDCONFIG#
878 /^LDSHAREDLIBC *=/s#=.*#=$LDSHAREDLIBC#
879 /^EXE *=/s#=.*#=$EXE#
880 /^SRCDIR *=/s#=.*#=$SRCDIR#
881 /^ZINC *=/s#=.*#=$ZINC#
882 /^ZINCOUT *=/s#=.*#=$ZINCOUT#
883 /^prefix *=/s#=.*#=$prefix#
884 /^exec_prefix *=/s#=.*#=$exec_prefix#
885 /^libdir *=/s#=.*#=$libdir#
886 /^sharedlibdir *=/s#=.*#=$sharedlibdir#
887 /^includedir *=/s#=.*#=$includedir#
888 /^mandir *=/s#=.*#=$mandir#
889 /^OBJC *=/s#=.*#= $OBJC#
890 /^PIC_OBJC *=/s#=.*#= $PIC_OBJC#
891 /^all: */s#:.*#: $ALL#
892 /^test: */s#:.*#: $TEST#
895 # create zlib.pc with the configure results
896 sed < ${SRCDIR}zlib.pc.
in "
898 /^CFLAGS *=/s#=.*#=$CFLAGS#
899 /^CPP *=/s#=.*#=$CPP#
900 /^LDSHARED *=/s#=.*#=$LDSHARED#
901 /^STATICLIB *=/s#=.*#=$STATICLIB#
902 /^SHAREDLIB *=/s#=.*#=$SHAREDLIB#
903 /^SHAREDLIBV *=/s#=.*#=$SHAREDLIBV#
904 /^SHAREDLIBM *=/s#=.*#=$SHAREDLIBM#
906 /^ARFLAGS *=/s#=.*#=$ARFLAGS#
907 /^RANLIB *=/s#=.*#=$RANLIB#
908 /^EXE *=/s#=.*#=$EXE#
909 /^prefix *=/s#=.*#=$prefix#
910 /^exec_prefix *=/s#=.*#=$exec_prefix#
911 /^libdir *=/s#=.*#=$libdir#
912 /^sharedlibdir *=/s#=.*#=$sharedlibdir#
913 /^includedir *=/s#=.*#=$includedir#
914 /^mandir *=/s#=.*#=$mandir#
915 /^LDFLAGS *=/s#=.*#=$LDFLAGS#
917 s/\@VERSION\@/$VER/g;