]> git.lizzy.rs Git - zlib.git/blob - configure
minizip warning fix if MAXU32 already defined. (gvollant)
[zlib.git] / configure
1 #!/bin/sh
2 # configure script for zlib.
3 #
4 # Normally configure builds both a static and a shared library.
5 # If you want to build just a static library, use: ./configure --static
6 #
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)
11
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
14 # an error.
15
16 # start off configure.log
17 echo -------------------- >> configure.log
18 echo $0 $* >> configure.log
19 date >> configure.log
20
21 # get source directory
22 SRCDIR=`dirname $0`
23 if test $SRCDIR = "."; then
24     ZINC=""
25     ZINCOUT="-I."
26     SRCDIR=""
27 else
28     ZINC='-include zconf.h'
29     ZINCOUT='-I. -I$(SRCDIR)'
30     SRCDIR="$SRCDIR/"
31 fi
32
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}-"
37 fi
38
39 # destination name for static library
40 STATICLIB=libz.a
41
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`
47
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
52 else
53     AR=${AR-"ar"}
54     test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
55 fi
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
60 else
61     RANLIB=${RANLIB-"ranlib"}
62 fi
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
66 else
67     NM=${NM-"nm"}
68 fi
69
70 # set defaults before processing command line options
71 LDCONFIG=${LDCONFIG-"ldconfig"}
72 LDSHAREDLIBC="${LDSHAREDLIBC--lc}"
73 ARCHS=
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'}
80 shared_ext='.so'
81 shared=1
82 solo=0
83 cover=0
84 zprefix=0
85 zconst=0
86 build64=0
87 gcc=0
88 warn=0
89 debug=0
90 old_cc="$CC"
91 old_cflags="$CFLAGS"
92 OBJC='$(OBJZ) $(OBJG)'
93 PIC_OBJC='$(PIC_OBJZ) $(PIC_OBJG)'
94
95 # leave this script, optionally in a bad way
96 leave()
97 {
98   if test "$*" != "0"; then
99     echo "** $0 aborting." | tee -a configure.log
100   fi
101   rm -f $test.[co] $test $test$shared_ext $test.gcno ./--version
102   echo -------------------- >> configure.log
103   echo >> configure.log
104   echo >> configure.log
105   exit $1
106 }
107
108 # process command line options
109 while test $# -ge 1
110 do
111 case "$1" in
112     -h* | --help)
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
117         exit 0 ;;
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 ;;
140     *)
141       echo "unknown option: $1" | tee -a configure.log
142       echo "$0 --help for help" | tee -a configure.log
143       leave 1;;
144     esac
145 done
146
147 # temporary file name
148 test=ztest$$
149
150 # put arguments in log, also put test file in log if used in arguments
151 show()
152 {
153   case "$*" in
154     *$test.c*)
155       echo === $test.c === >> configure.log
156       cat $test.c >> configure.log
157       echo === >> configure.log;;
158   esac
159   echo $* >> configure.log
160 }
161
162 # check for gcc vs. cc and set compile and link flags based on the system identified by uname
163 cat > $test.c <<EOF
164 extern int getchar();
165 int hello() {return getchar();}
166 EOF
167
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
172 case "$cc" in
173   *gcc*) gcc=1 ;;
174   *clang*) gcc=1 ;;
175 esac
176 case `$cc -v 2>&1` in
177   *gcc*) gcc=1 ;;
178   *clang*) gcc=1 ;;
179 esac
180
181 show $cc -c $test.c
182 if test "$gcc" -eq 1 && ($cc -c $test.c) >> configure.log 2>&1; then
183   echo ... using gcc >> configure.log
184   CC="$cc"
185   CFLAGS="${CFLAGS--O3}"
186   SFLAGS="${CFLAGS--O3} -fPIC"
187   if test "$ARCHS"; then
188     CFLAGS="${CFLAGS} ${ARCHS}"
189     LDFLAGS="${LDFLAGS} ${ARCHS}"
190   fi
191   if test $build64 -eq 1; then
192     CFLAGS="${CFLAGS} -m64"
193     SFLAGS="${SFLAGS} -m64"
194   fi
195   if test "$warn" -eq 1; then
196     if test "$zconst" -eq 1; then
197       CFLAGS="${CFLAGS} -Wall -Wextra -Wcast-qual -pedantic -DZLIB_CONST -fsanitize=address"
198     else
199       CFLAGS="${CFLAGS} -Wall -Wextra -pedantic -fsanitize=address"
200     fi
201   fi
202   if test $debug -eq 1; then
203     CFLAGS="${CFLAGS} -DZLIB_DEBUG"
204     SFLAGS="${SFLAGS} -DZLIB_DEBUG"
205   fi
206   if test -z "$uname"; then
207     uname=`(uname -s || echo unknown) 2>/dev/null`
208   fi
209   case "$uname" in
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*)
216         EXE='.exe' ;;
217   MINGW* | mingw*)
218 # temporary bypass
219         rm -f $test.[co] $test $test$shared_ext
220         echo "Please use win32/Makefile.gcc instead." | tee -a configure.log
221         leave 1
222         LDSHARED=${LDSHARED-"$cc -shared"}
223         LDSHAREDLIBC=""
224         EXE='.exe' ;;
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"} ;;
228   HP-UX*)
229          LDSHARED=${LDSHARED-"$cc -shared $SFLAGS"}
230          case `(uname -m || echo unknown) 2>/dev/null` in
231          ia64)
232                  shared_ext='.so'
233                  SHAREDLIB='libz.so' ;;
234          *)
235                  shared_ext='.sl'
236                  SHAREDLIB='libz.sl' ;;
237          esac ;;
238   Darwin* | darwin*)
239              shared_ext='.dylib'
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
245                  AR="libtool"
246              else
247                  AR="/usr/bin/libtool"
248              fi
249              ARFLAGS="-o" ;;
250   *)             LDSHARED=${LDSHARED-"$cc -shared"} ;;
251   esac
252 else
253   # find system name and corresponding cc options
254   CC=${CC-cc}
255   gcc=0
256   echo ... using $CC >> configure.log
257   if test -z "$uname"; then
258     uname=`(uname -sr || echo unknown) 2>/dev/null`
259   fi
260   case "$uname" in
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
266          ia64)
267              shared_ext='.so'
268              SHAREDLIB='libz.so' ;;
269          *)
270              shared_ext='.sl'
271              SHAREDLIB='libz.sl' ;;
272          esac ;;
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"}
287              AR="cc"
288              ARFLAGS="-A" ;;
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"
303              else
304                  case `(uname -m || echo unknown) 2>/dev/null` in
305                    i86*)
306                      SFLAGS="$SFLAGS -xarch=amd64"
307                      CFLAGS="$CFLAGS -xarch=amd64" ;;
308                    *)
309                      SFLAGS="$SFLAGS -xarch=v9"
310                      CFLAGS="$CFLAGS -xarch=v9" ;;
311                  esac
312              fi
313          fi
314          if test -n "$ZINC"; then
315              ZINC='-I- -I. -I$(SRCDIR)'
316          fi
317          ;;
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"} ;;
328   UNIX_SV\ 4.2MP)
329              SFLAGS=${CFLAGS-"-Kconform_pic -O"}
330              CFLAGS=${CFLAGS-"-O"}
331              LDSHARED=${LDSHARED-"cc -G"} ;;
332   OpenUNIX\ 5)
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"} ;;
344   esac
345 fi
346
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"}
351
352 echo >> configure.log
353
354 # define functions for testing compiler and library characteristics and logging the results
355
356 cat > $test.c <<EOF
357 #error error
358 EOF
359 if ($CC -c $CFLAGS $test.c) 2>/dev/null; then
360   try()
361   {
362     show $*
363     test "`( $* ) 2>&1 | tee -a configure.log`" = ""
364   }
365   echo - using any output from compiler to indicate an error >> configure.log
366 else
367   try()
368   {
369     show $*
370     got=`( $* ) 2>&1`
371     ret=$?
372     if test "$got" != ""; then
373       printf "%s\n" "$got" >> configure.log
374     fi
375     if test $ret -ne 0; then
376       echo "(exit code "$ret")" >> configure.log
377     fi
378     return $ret
379   }
380 fi
381
382 tryboth()
383 {
384   show $*
385   got=`( $* ) 2>&1`
386   ret=$?
387   if test "$got" != ""; then
388     printf "%s\n" "$got" >> configure.log
389   fi
390   if test $ret -ne 0; then
391     echo "(exit code "$ret")" >> configure.log
392     return $ret
393   fi
394   test "$got" = ""
395 }
396
397 cat > $test.c << EOF
398 int foo() { return 0; }
399 EOF
400 echo "Checking for obsessive-compulsive compiler options..." >> configure.log
401 if try $CC -c $CFLAGS $test.c; then
402   :
403 else
404   echo "Compiler error reporting is too harsh for $0 (perhaps remove -Werror)." | tee -a configure.log
405   leave 1
406 fi
407
408 echo >> configure.log
409
410 # see if shared library build supported
411 cat > $test.c <<EOF
412 extern int getchar();
413 int hello() {return getchar();}
414 EOF
415 if test $shared -eq 1; then
416   echo Checking for shared library support... | tee -a configure.log
417   # we must test in two steps (cc then ld), required at least on SunOS 4.x
418   if try $CC -w -c $SFLAGS $test.c &&
419      try $LDSHARED $SFLAGS -o $test$shared_ext $test.o; then
420     echo Building shared library $SHAREDLIBV with $CC. | tee -a configure.log
421   elif test -z "$old_cc" -a -z "$old_cflags"; then
422     echo No shared library support. | tee -a configure.log
423     shared=0;
424   else
425     echo 'No shared library support; try without defining CC and CFLAGS' | tee -a configure.log
426     shared=0;
427   fi
428 fi
429 if test $shared -eq 0; then
430   LDSHARED="$CC"
431   ALL="static"
432   TEST="all teststatic"
433   SHAREDLIB=""
434   SHAREDLIBV=""
435   SHAREDLIBM=""
436   echo Building static library $STATICLIB version $VER with $CC. | tee -a configure.log
437 else
438   ALL="static shared"
439   TEST="all teststatic testshared"
440 fi
441
442 # check for underscores in external names for use by assembler code
443 CPP=${CPP-"$CC -E"}
444 case $CFLAGS in
445   *ASMV*)
446     echo >> configure.log
447     show "$NM $test.o | grep _hello"
448     if test "`$NM $test.o | grep _hello | tee -a configure.log`" = ""; then
449       CPP="$CPP -DNO_UNDERLINE"
450       echo Checking for underline in external names... No. | tee -a configure.log
451     else
452       echo Checking for underline in external names... Yes. | tee -a configure.log
453     fi ;;
454 esac
455
456 echo >> configure.log
457
458 # check for size_t
459 cat > $test.c <<EOF
460 #include <stdio.h>
461 #include <stdlib.h>
462 size_t dummy = 0;
463 EOF
464 if try $CC -c $CFLAGS $test.c; then
465   echo "Checking for size_t... Yes." | tee -a configure.log
466 else
467   echo "Checking for size_t... No." | tee -a configure.log
468   # find a size_t integer type
469   # check for long long
470   cat > $test.c << EOF
471 long long dummy = 0;
472 EOF
473   if try $CC -c $CFLAGS $test.c; then
474     echo "Checking for long long... Yes." | tee -a configure.log
475     cat > $test.c <<EOF
476 #include <stdio.h>
477 int main(void) {
478     if (sizeof(void *) <= sizeof(int)) puts("int");
479     else if (sizeof(void *) <= sizeof(long)) puts("long");
480     else puts("z_longlong");
481     return 0;
482 }
483 EOF
484   else
485     echo "Checking for long long... No." | tee -a configure.log
486     cat > $test.c <<EOF
487 #include <stdio.h>
488 int main(void) {
489     if (sizeof(void *) <= sizeof(int)) puts("int");
490     else puts("long");
491     return 0;
492 }
493 EOF
494   fi
495   if try $CC $CFLAGS -o $test $test.c; then
496     sizet=`./$test`
497     echo "Checking for a pointer-size integer type..." $sizet"." | tee -a configure.log
498     CFLAGS="${CFLAGS} -DNO_SIZE_T=${sizet}"
499     SFLAGS="${SFLAGS} -DNO_SIZE_T=${sizet}"
500   else
501     echo "Checking for a pointer-size integer type... not found." | tee -a configure.log
502   fi
503 fi
504
505 echo >> configure.log
506
507 # check for large file support, and if none, check for fseeko()
508 cat > $test.c <<EOF
509 #include <sys/types.h>
510 off64_t dummy = 0;
511 EOF
512 if try $CC -c $CFLAGS -D_LARGEFILE64_SOURCE=1 $test.c; then
513   CFLAGS="${CFLAGS} -D_LARGEFILE64_SOURCE=1"
514   SFLAGS="${SFLAGS} -D_LARGEFILE64_SOURCE=1"
515   ALL="${ALL} all64"
516   TEST="${TEST} test64"
517   echo "Checking for off64_t... Yes." | tee -a configure.log
518   echo "Checking for fseeko... Yes." | tee -a configure.log
519 else
520   echo "Checking for off64_t... No." | tee -a configure.log
521   echo >> configure.log
522   cat > $test.c <<EOF
523 #include <stdio.h>
524 int main(void) {
525   fseeko(NULL, 0, 0);
526   return 0;
527 }
528 EOF
529   if try $CC $CFLAGS -o $test $test.c; then
530     echo "Checking for fseeko... Yes." | tee -a configure.log
531   else
532     CFLAGS="${CFLAGS} -DNO_FSEEKO"
533     SFLAGS="${SFLAGS} -DNO_FSEEKO"
534     echo "Checking for fseeko... No." | tee -a configure.log
535   fi
536 fi
537
538 echo >> configure.log
539
540 # check for strerror() for use by gz* functions
541 cat > $test.c <<EOF
542 #include <string.h>
543 #include <errno.h>
544 int main() { return strlen(strerror(errno)); }
545 EOF
546 if try $CC $CFLAGS -o $test $test.c; then
547   echo "Checking for strerror... Yes." | tee -a configure.log
548 else
549   CFLAGS="${CFLAGS} -DNO_STRERROR"
550   SFLAGS="${SFLAGS} -DNO_STRERROR"
551   echo "Checking for strerror... No." | tee -a configure.log
552 fi
553
554 # copy clean zconf.h for subsequent edits
555 cp -p ${SRCDIR}zconf.h.in zconf.h
556
557 echo >> configure.log
558
559 # check for unistd.h and save result in zconf.h
560 cat > $test.c <<EOF
561 #include <unistd.h>
562 int main() { return 0; }
563 EOF
564 if try $CC -c $CFLAGS $test.c; then
565   sed < zconf.h "/^#ifdef HAVE_UNISTD_H.* may be/s/def HAVE_UNISTD_H\(.*\) may be/ 1\1 was/" > zconf.temp.h
566   mv zconf.temp.h zconf.h
567   echo "Checking for unistd.h... Yes." | tee -a configure.log
568 else
569   echo "Checking for unistd.h... No." | tee -a configure.log
570 fi
571
572 echo >> configure.log
573
574 # check for stdarg.h and save result in zconf.h
575 cat > $test.c <<EOF
576 #include <stdarg.h>
577 int main() { return 0; }
578 EOF
579 if try $CC -c $CFLAGS $test.c; then
580   sed < zconf.h "/^#ifdef HAVE_STDARG_H.* may be/s/def HAVE_STDARG_H\(.*\) may be/ 1\1 was/" > zconf.temp.h
581   mv zconf.temp.h zconf.h
582   echo "Checking for stdarg.h... Yes." | tee -a configure.log
583 else
584   echo "Checking for stdarg.h... No." | tee -a configure.log
585 fi
586
587 # if the z_ prefix was requested, save that in zconf.h
588 if test $zprefix -eq 1; then
589   sed < zconf.h "/#ifdef Z_PREFIX.* may be/s/def Z_PREFIX\(.*\) may be/ 1\1 was/" > zconf.temp.h
590   mv zconf.temp.h zconf.h
591   echo >> configure.log
592   echo "Using z_ prefix on all symbols." | tee -a configure.log
593 fi
594
595 # if --solo compilation was requested, save that in zconf.h and remove gz stuff from object lists
596 if test $solo -eq 1; then
597   sed '/#define ZCONF_H/a\
598 #define Z_SOLO
599
600 ' < zconf.h > zconf.temp.h
601   mv zconf.temp.h zconf.h
602 OBJC='$(OBJZ)'
603 PIC_OBJC='$(PIC_OBJZ)'
604 fi
605
606 # if code coverage testing was requested, use older gcc if defined, e.g. "gcc-4.2" on Mac OS X
607 if test $cover -eq 1; then
608   CFLAGS="${CFLAGS} -fprofile-arcs -ftest-coverage"
609   if test -n "$GCC_CLASSIC"; then
610     CC=$GCC_CLASSIC
611   fi
612 fi
613
614 echo >> configure.log
615
616 # conduct a series of tests to resolve eight possible cases of using "vs" or "s" printf functions
617 # (using stdarg or not), with or without "n" (proving size of buffer), and with or without a
618 # return value.  The most secure result is vsnprintf() with a return value.  snprintf() with a
619 # return value is secure as well, but then gzprintf() will be limited to 20 arguments.
620 cat > $test.c <<EOF
621 #include <stdio.h>
622 #include <stdarg.h>
623 #include "zconf.h"
624 int main()
625 {
626 #ifndef STDC
627   choke me
628 #endif
629   return 0;
630 }
631 EOF
632 if try $CC -c $CFLAGS $test.c; then
633   echo "Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf()." | tee -a configure.log
634
635   echo >> configure.log
636   cat > $test.c <<EOF
637 #include <stdio.h>
638 #include <stdarg.h>
639 int mytest(const char *fmt, ...)
640 {
641   char buf[20];
642   va_list ap;
643   va_start(ap, fmt);
644   vsnprintf(buf, sizeof(buf), fmt, ap);
645   va_end(ap);
646   return 0;
647 }
648 int main()
649 {
650   return (mytest("Hello%d\n", 1));
651 }
652 EOF
653   if try $CC $CFLAGS -o $test $test.c; then
654     echo "Checking for vsnprintf() in stdio.h... Yes." | tee -a configure.log
655
656     echo >> configure.log
657     cat >$test.c <<EOF
658 #include <stdio.h>
659 #include <stdarg.h>
660 int mytest(const char *fmt, ...)
661 {
662   int n;
663   char buf[20];
664   va_list ap;
665   va_start(ap, fmt);
666   n = vsnprintf(buf, sizeof(buf), fmt, ap);
667   va_end(ap);
668   return n;
669 }
670 int main()
671 {
672   return (mytest("Hello%d\n", 1));
673 }
674 EOF
675
676     if try $CC -c $CFLAGS $test.c; then
677       echo "Checking for return value of vsnprintf()... Yes." | tee -a configure.log
678     else
679       CFLAGS="$CFLAGS -DHAS_vsnprintf_void"
680       SFLAGS="$SFLAGS -DHAS_vsnprintf_void"
681       echo "Checking for return value of vsnprintf()... No." | tee -a configure.log
682       echo "  WARNING: apparently vsnprintf() does not return a value. zlib" | tee -a configure.log
683       echo "  can build but will be open to possible string-format security" | tee -a configure.log
684       echo "  vulnerabilities." | tee -a configure.log
685     fi
686   else
687     CFLAGS="$CFLAGS -DNO_vsnprintf"
688     SFLAGS="$SFLAGS -DNO_vsnprintf"
689     echo "Checking for vsnprintf() in stdio.h... No." | tee -a configure.log
690     echo "  WARNING: vsnprintf() not found, falling back to vsprintf(). zlib" | tee -a configure.log
691     echo "  can build but will be open to possible buffer-overflow security" | tee -a configure.log
692     echo "  vulnerabilities." | tee -a configure.log
693
694     echo >> configure.log
695     cat >$test.c <<EOF
696 #include <stdio.h>
697 #include <stdarg.h>
698 int mytest(const char *fmt, ...)
699 {
700   int n;
701   char buf[20];
702   va_list ap;
703   va_start(ap, fmt);
704   n = vsprintf(buf, fmt, ap);
705   va_end(ap);
706   return n;
707 }
708 int main()
709 {
710   return (mytest("Hello%d\n", 1));
711 }
712 EOF
713
714     if try $CC -c $CFLAGS $test.c; then
715       echo "Checking for return value of vsprintf()... Yes." | tee -a configure.log
716     else
717       CFLAGS="$CFLAGS -DHAS_vsprintf_void"
718       SFLAGS="$SFLAGS -DHAS_vsprintf_void"
719       echo "Checking for return value of vsprintf()... No." | tee -a configure.log
720       echo "  WARNING: apparently vsprintf() does not return a value. zlib" | tee -a configure.log
721       echo "  can build but will be open to possible string-format security" | tee -a configure.log
722       echo "  vulnerabilities." | tee -a configure.log
723     fi
724   fi
725 else
726   echo "Checking whether to use vs[n]printf() or s[n]printf()... using s[n]printf()." | tee -a configure.log
727
728   echo >> configure.log
729   cat >$test.c <<EOF
730 #include <stdio.h>
731 int mytest()
732 {
733   char buf[20];
734   snprintf(buf, sizeof(buf), "%s", "foo");
735   return 0;
736 }
737 int main()
738 {
739   return (mytest());
740 }
741 EOF
742
743   if try $CC $CFLAGS -o $test $test.c; then
744     echo "Checking for snprintf() in stdio.h... Yes." | tee -a configure.log
745
746     echo >> configure.log
747     cat >$test.c <<EOF
748 #include <stdio.h>
749 int mytest()
750 {
751   char buf[20];
752   return snprintf(buf, sizeof(buf), "%s", "foo");
753 }
754 int main()
755 {
756   return (mytest());
757 }
758 EOF
759
760     if try $CC -c $CFLAGS $test.c; then
761       echo "Checking for return value of snprintf()... Yes." | tee -a configure.log
762     else
763       CFLAGS="$CFLAGS -DHAS_snprintf_void"
764       SFLAGS="$SFLAGS -DHAS_snprintf_void"
765       echo "Checking for return value of snprintf()... No." | tee -a configure.log
766       echo "  WARNING: apparently snprintf() does not return a value. zlib" | tee -a configure.log
767       echo "  can build but will be open to possible string-format security" | tee -a configure.log
768       echo "  vulnerabilities." | tee -a configure.log
769     fi
770   else
771     CFLAGS="$CFLAGS -DNO_snprintf"
772     SFLAGS="$SFLAGS -DNO_snprintf"
773     echo "Checking for snprintf() in stdio.h... No." | tee -a configure.log
774     echo "  WARNING: snprintf() not found, falling back to sprintf(). zlib" | tee -a configure.log
775     echo "  can build but will be open to possible buffer-overflow security" | tee -a configure.log
776     echo "  vulnerabilities." | tee -a configure.log
777
778     echo >> configure.log
779     cat >$test.c <<EOF
780 #include <stdio.h>
781 int mytest()
782 {
783   char buf[20];
784   return sprintf(buf, "%s", "foo");
785 }
786 int main()
787 {
788   return (mytest());
789 }
790 EOF
791
792     if try $CC -c $CFLAGS $test.c; then
793       echo "Checking for return value of sprintf()... Yes." | tee -a configure.log
794     else
795       CFLAGS="$CFLAGS -DHAS_sprintf_void"
796       SFLAGS="$SFLAGS -DHAS_sprintf_void"
797       echo "Checking for return value of sprintf()... No." | tee -a configure.log
798       echo "  WARNING: apparently sprintf() does not return a value. zlib" | tee -a configure.log
799       echo "  can build but will be open to possible string-format security" | tee -a configure.log
800       echo "  vulnerabilities." | tee -a configure.log
801     fi
802   fi
803 fi
804
805 # see if we can hide zlib internal symbols that are linked between separate source files
806 if test "$gcc" -eq 1; then
807   echo >> configure.log
808   cat > $test.c <<EOF
809 #define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
810 int ZLIB_INTERNAL foo;
811 int main()
812 {
813   return 0;
814 }
815 EOF
816   if tryboth $CC -c $CFLAGS $test.c; then
817     CFLAGS="$CFLAGS -DHAVE_HIDDEN"
818     SFLAGS="$SFLAGS -DHAVE_HIDDEN"
819     echo "Checking for attribute(visibility) support... Yes." | tee -a configure.log
820   else
821     echo "Checking for attribute(visibility) support... No." | tee -a configure.log
822   fi
823 fi
824
825 # show the results in the log
826 echo >> configure.log
827 echo ALL = $ALL >> configure.log
828 echo AR = $AR >> configure.log
829 echo ARFLAGS = $ARFLAGS >> configure.log
830 echo CC = $CC >> configure.log
831 echo CFLAGS = $CFLAGS >> configure.log
832 echo CPP = $CPP >> configure.log
833 echo EXE = $EXE >> configure.log
834 echo LDCONFIG = $LDCONFIG >> configure.log
835 echo LDFLAGS = $LDFLAGS >> configure.log
836 echo LDSHARED = $LDSHARED >> configure.log
837 echo LDSHAREDLIBC = $LDSHAREDLIBC >> configure.log
838 echo OBJC = $OBJC >> configure.log
839 echo PIC_OBJC = $PIC_OBJC >> configure.log
840 echo RANLIB = $RANLIB >> configure.log
841 echo SFLAGS = $SFLAGS >> configure.log
842 echo SHAREDLIB = $SHAREDLIB >> configure.log
843 echo SHAREDLIBM = $SHAREDLIBM >> configure.log
844 echo SHAREDLIBV = $SHAREDLIBV >> configure.log
845 echo STATICLIB = $STATICLIB >> configure.log
846 echo TEST = $TEST >> configure.log
847 echo VER = $VER >> configure.log
848 echo SRCDIR = $SRCDIR >> configure.log
849 echo exec_prefix = $exec_prefix >> configure.log
850 echo includedir = $includedir >> configure.log
851 echo libdir = $libdir >> configure.log
852 echo mandir = $mandir >> configure.log
853 echo prefix = $prefix >> configure.log
854 echo sharedlibdir = $sharedlibdir >> configure.log
855 echo uname = $uname >> configure.log
856
857 # udpate Makefile with the configure results
858 sed < ${SRCDIR}Makefile.in "
859 /^CC *=/s#=.*#=$CC#
860 /^CFLAGS *=/s#=.*#=$CFLAGS#
861 /^SFLAGS *=/s#=.*#=$SFLAGS#
862 /^LDFLAGS *=/s#=.*#=$LDFLAGS#
863 /^LDSHARED *=/s#=.*#=$LDSHARED#
864 /^CPP *=/s#=.*#=$CPP#
865 /^STATICLIB *=/s#=.*#=$STATICLIB#
866 /^SHAREDLIB *=/s#=.*#=$SHAREDLIB#
867 /^SHAREDLIBV *=/s#=.*#=$SHAREDLIBV#
868 /^SHAREDLIBM *=/s#=.*#=$SHAREDLIBM#
869 /^AR *=/s#=.*#=$AR#
870 /^ARFLAGS *=/s#=.*#=$ARFLAGS#
871 /^RANLIB *=/s#=.*#=$RANLIB#
872 /^LDCONFIG *=/s#=.*#=$LDCONFIG#
873 /^LDSHAREDLIBC *=/s#=.*#=$LDSHAREDLIBC#
874 /^EXE *=/s#=.*#=$EXE#
875 /^SRCDIR *=/s#=.*#=$SRCDIR#
876 /^ZINC *=/s#=.*#=$ZINC#
877 /^ZINCOUT *=/s#=.*#=$ZINCOUT#
878 /^prefix *=/s#=.*#=$prefix#
879 /^exec_prefix *=/s#=.*#=$exec_prefix#
880 /^libdir *=/s#=.*#=$libdir#
881 /^sharedlibdir *=/s#=.*#=$sharedlibdir#
882 /^includedir *=/s#=.*#=$includedir#
883 /^mandir *=/s#=.*#=$mandir#
884 /^OBJC *=/s#=.*#= $OBJC#
885 /^PIC_OBJC *=/s#=.*#= $PIC_OBJC#
886 /^all: */s#:.*#: $ALL#
887 /^test: */s#:.*#: $TEST#
888 " > Makefile
889
890 # create zlib.pc with the configure results
891 sed < ${SRCDIR}zlib.pc.in "
892 /^CC *=/s#=.*#=$CC#
893 /^CFLAGS *=/s#=.*#=$CFLAGS#
894 /^CPP *=/s#=.*#=$CPP#
895 /^LDSHARED *=/s#=.*#=$LDSHARED#
896 /^STATICLIB *=/s#=.*#=$STATICLIB#
897 /^SHAREDLIB *=/s#=.*#=$SHAREDLIB#
898 /^SHAREDLIBV *=/s#=.*#=$SHAREDLIBV#
899 /^SHAREDLIBM *=/s#=.*#=$SHAREDLIBM#
900 /^AR *=/s#=.*#=$AR#
901 /^ARFLAGS *=/s#=.*#=$ARFLAGS#
902 /^RANLIB *=/s#=.*#=$RANLIB#
903 /^EXE *=/s#=.*#=$EXE#
904 /^prefix *=/s#=.*#=$prefix#
905 /^exec_prefix *=/s#=.*#=$exec_prefix#
906 /^libdir *=/s#=.*#=$libdir#
907 /^sharedlibdir *=/s#=.*#=$sharedlibdir#
908 /^includedir *=/s#=.*#=$includedir#
909 /^mandir *=/s#=.*#=$mandir#
910 /^LDFLAGS *=/s#=.*#=$LDFLAGS#
911 " | sed -e "
912 s/\@VERSION\@/$VER/g;
913 " > zlib.pc
914
915 # done
916 leave 0