]> git.lizzy.rs Git - zlib.git/blob - configure
Add more comments to configure.
[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 # set command prefix for cross-compilation
22 if [ -n "${CHOST}" ]; then
23     uname="`echo "${CHOST}" | sed -e 's/^[^-]*-\([^-]*\)$/\1/' -e 's/^[^-]*-[^-]*-\([^-]*\)$/\1/' -e 's/^[^-]*-[^-]*-\([^-]*\)-.*$/\1/'`"
24     CROSS_PREFIX="${CHOST}-"
25 fi
26
27 # destination name for static library
28 STATICLIB=libz.a
29
30 # extract zlib version numbers from zlib.h
31 VER=`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`
32 VER3=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\\.[0-9]*\).*/\1/p' < zlib.h`
33 VER2=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\)\\..*/\1/p' < zlib.h`
34 VER1=`sed -n -e '/VERSION "/s/.*"\([0-9]*\)\\..*/\1/p' < zlib.h`
35
36 # establish commands for library building
37 if "${CROSS_PREFIX}ar" --version >/dev/null 2>/dev/null || test $? -lt 126; then
38     AR=${AR-"${CROSS_PREFIX}ar"}
39     test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
40 else
41     AR=${AR-"ar"}
42     test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log
43 fi
44 ARFLAGS=${ARFLAGS-"rc"}
45 if "${CROSS_PREFIX}ranlib" --version >/dev/null 2>/dev/null || test $? -lt 126; then
46     RANLIB=${RANLIB-"${CROSS_PREFIX}ranlib"}
47     test -n "${CROSS_PREFIX}" && echo Using ${RANLIB} | tee -a configure.log
48 else
49     RANLIB=${RANLIB-"ranlib"}
50 fi
51 if "${CROSS_PREFIX}nm" --version >/dev/null 2>/dev/null || test $? -lt 126; then
52     NM=${NM-"${CROSS_PREFIX}nm"}
53     test -n "${CROSS_PREFIX}" && echo Using ${NM} | tee -a configure.log
54 else
55     NM=${NM-"nm"}
56 fi
57
58 # set defaults before processing command line options
59 LDCONFIG=${LDCONFIG-"ldconfig"}
60 LDSHAREDLIBC="${LDSHAREDLIBC--lc}"
61 ARCHS=
62 prefix=${prefix-/usr/local}
63 exec_prefix=${exec_prefix-'${prefix}'}
64 libdir=${libdir-'${exec_prefix}/lib'}
65 sharedlibdir=${sharedlibdir-'${libdir}'}
66 includedir=${includedir-'${prefix}/include'}
67 mandir=${mandir-'${prefix}/share/man'}
68 shared_ext='.so'
69 shared=1
70 solo=0
71 cover=0
72 zprefix=0
73 build64=0
74 gcc=0
75 old_cc="$CC"
76 old_cflags="$CFLAGS"
77 OBJC='$(OBJZ) $(OBJG)'
78 PIC_OBJC='$(PIC_OBJZ) $(PIC_OBJG)'
79
80 # process command line options
81 while test $# -ge 1
82 do
83 case "$1" in
84     -h* | --help)
85       echo 'usage:' | tee -a configure.log
86       echo '  configure [--zprefix] [--prefix=PREFIX]  [--eprefix=EXPREFIX]' | tee -a configure.log
87       echo '    [--static] [--64] [--libdir=LIBDIR] [--sharedlibdir=LIBDIR]' | tee -a configure.log
88       echo '    [--includedir=INCLUDEDIR] [--archs="-arch i386 -arch x86_64"]' | tee -a configure.log
89         exit 0 ;;
90     -p*=* | --prefix=*) prefix=`echo $1 | sed 's/.*=//'`; shift ;;
91     -e*=* | --eprefix=*) exec_prefix=`echo $1 | sed 's/.*=//'`; shift ;;
92     -l*=* | --libdir=*) libdir=`echo $1 | sed 's/.*=//'`; shift ;;
93     --sharedlibdir=*) sharedlibdir=`echo $1 | sed 's/.*=//'`; shift ;;
94     -i*=* | --includedir=*) includedir=`echo $1 | sed 's/.*=//'`;shift ;;
95     -u*=* | --uname=*) uname=`echo $1 | sed 's/.*=//'`;shift ;;
96     -p* | --prefix) prefix="$2"; shift; shift ;;
97     -e* | --eprefix) exec_prefix="$2"; shift; shift ;;
98     -l* | --libdir) libdir="$2"; shift; shift ;;
99     -i* | --includedir) includedir="$2"; shift; shift ;;
100     -s* | --shared | --enable-shared) shared=1; shift ;;
101     -t | --static) shared=0; shift ;;
102     --solo) solo=1; shift ;;
103     --cover) cover=1; shift ;;
104     -z* | --zprefix) zprefix=1; shift ;;
105     -6* | --64) build64=1; shift ;;
106     -a*=* | --archs=*) ARCHS=`echo $1 | sed 's/.*=//'`; shift ;;
107     --sysconfdir=*) echo "ignored option: --sysconfdir" | tee -a configure.log; shift ;;
108     --localstatedir=*) echo "ignored option: --localstatedir" | tee -a configure.log; shift ;;
109     *) echo "unknown option: $1"; echo "$0 --help for help" | tee -a configure.log; exit 1 ;;
110     esac
111 done
112
113 # define functions for testing compiler and library characteristics and logging the results
114 test=ztest$$
115
116 show()
117 {
118   case "$*" in
119     *$test.c*)
120       echo === $test.c === >> configure.log
121       cat $test.c >> configure.log
122       echo === >> configure.log;;
123   esac
124   echo $* >> configure.log
125 }
126
127 cat > $test.c <<EOF
128 #error error
129 EOF
130 if ($CC -c $CFLAGS $test.c) 2>/dev/null; then
131   try()
132   {
133     show $*
134     test "`( $* ) 2>&1 | tee -a configure.log`" = ""
135   }
136   echo - using any output from compiler to indicate an error >> configure.log
137 else
138   try()
139   {
140     show $*
141     ( $* ) >> configure.log 2>&1
142     ret=$?
143     if test $ret -ne 0; then
144       echo "(exit code "$ret")" >> configure.log
145     fi
146     return $ret
147   }
148 fi
149
150 tryboth()
151 {
152   show $*
153   got=`( $* ) 2>&1`
154   ret=$?
155   printf %s "$got" >> configure.log
156   if test $ret -ne 0; then
157     return $ret
158   fi
159   test "$got" = ""
160 }
161
162 echo >> configure.log
163
164 # check for gcc vs. cc and set compile and link flags based on the system identified by uname
165 cat > $test.c <<EOF
166 extern int getchar();
167 int hello() {return getchar();}
168 EOF
169
170 test -z "$CC" && echo Checking for ${CROSS_PREFIX}gcc... | tee -a configure.log
171 cc=${CC-${CROSS_PREFIX}gcc}
172 cflags=${CFLAGS-"-O3"}
173 # to force the asm version use: CFLAGS="-O3 -DASMV" ./configure
174 case "$cc" in
175   *gcc*) gcc=1 ;;
176   *clang*) gcc=1 ;;
177 esac
178 case `$cc -v 2>&1` in
179   *gcc*) gcc=1 ;;
180 esac
181
182 show $cc -c $cflags $test.c
183 if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) >> configure.log 2>&1; then
184   echo ... using gcc >> configure.log
185   CC="$cc"
186   CFLAGS="${CFLAGS--O3} ${ARCHS}"
187   SFLAGS="${CFLAGS--O3} -fPIC"
188   LDFLAGS="${LDFLAGS} ${ARCHS}"
189   if test $build64 -eq 1; then
190     CFLAGS="${CFLAGS} -m64"
191     SFLAGS="${SFLAGS} -m64"
192   fi
193   if test "${ZLIBGCCWARN}" = "YES"; then
194     CFLAGS="${CFLAGS} -Wall -Wextra -pedantic"
195   fi
196   if test -z "$uname"; then
197     uname=`(uname -s || echo unknown) 2>/dev/null`
198   fi
199   case "$uname" in
200   Linux* | linux* | GNU | GNU/* | solaris*)
201         LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map"} ;;
202   *BSD | *bsd* | DragonFly)
203         LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map"}
204         LDCONFIG="ldconfig -m" ;;
205   CYGWIN* | Cygwin* | cygwin* | OS/2*)
206         EXE='.exe' ;;
207   MINGW* | mingw*)
208 # temporary bypass
209         rm -f $test.[co] $test $test$shared_ext
210         echo "Please use win32/Makefile.gcc instead." | tee -a configure.log
211         exit 1
212         LDSHARED=${LDSHARED-"$cc -shared"}
213         LDSHAREDLIBC=""
214         EXE='.exe' ;;
215   QNX*)  # This is for QNX6. I suppose that the QNX rule below is for QNX2,QNX4
216          # (alain.bonnefoy@icbt.com)
217                  LDSHARED=${LDSHARED-"$cc -shared -Wl,-hlibz.so.1"} ;;
218   HP-UX*)
219          LDSHARED=${LDSHARED-"$cc -shared $SFLAGS"}
220          case `(uname -m || echo unknown) 2>/dev/null` in
221          ia64)
222                  shared_ext='.so'
223                  SHAREDLIB='libz.so' ;;
224          *)
225                  shared_ext='.sl'
226                  SHAREDLIB='libz.sl' ;;
227          esac ;;
228   Darwin* | darwin*)
229              shared_ext='.dylib'
230              SHAREDLIB=libz$shared_ext
231              SHAREDLIBV=libz.$VER$shared_ext
232              SHAREDLIBM=libz.$VER1$shared_ext
233              LDSHARED=${LDSHARED-"$cc -dynamiclib -install_name $libdir/$SHAREDLIBM -compatibility_version $VER1 -current_version $VER3"}
234              AR="libtool"
235              ARFLAGS="-o" ;;
236   *)             LDSHARED=${LDSHARED-"$cc -shared"} ;;
237   esac
238 else
239   # find system name and corresponding cc options
240   CC=${CC-cc}
241   gcc=0
242   echo ... using $CC >> configure.log
243   if test -z "$uname"; then
244     uname=`(uname -sr || echo unknown) 2>/dev/null`
245   fi
246   case "$uname" in
247   HP-UX*)    SFLAGS=${CFLAGS-"-O +z"}
248              CFLAGS=${CFLAGS-"-O"}
249 #            LDSHARED=${LDSHARED-"ld -b +vnocompatwarnings"}
250              LDSHARED=${LDSHARED-"ld -b"}
251          case `(uname -m || echo unknown) 2>/dev/null` in
252          ia64)
253              shared_ext='.so'
254              SHAREDLIB='libz.so' ;;
255          *)
256              shared_ext='.sl'
257              SHAREDLIB='libz.sl' ;;
258          esac ;;
259   IRIX*)     SFLAGS=${CFLAGS-"-ansi -O2 -rpath ."}
260              CFLAGS=${CFLAGS-"-ansi -O2"}
261              LDSHARED=${LDSHARED-"cc -shared -Wl,-soname,libz.so.1"} ;;
262   OSF1\ V4*) SFLAGS=${CFLAGS-"-O -std1"}
263              CFLAGS=${CFLAGS-"-O -std1"}
264              LDFLAGS="${LDFLAGS} -Wl,-rpath,."
265              LDSHARED=${LDSHARED-"cc -shared  -Wl,-soname,libz.so -Wl,-msym -Wl,-rpath,$(libdir) -Wl,-set_version,${VER}:1.0"} ;;
266   OSF1*)     SFLAGS=${CFLAGS-"-O -std1"}
267              CFLAGS=${CFLAGS-"-O -std1"}
268              LDSHARED=${LDSHARED-"cc -shared -Wl,-soname,libz.so.1"} ;;
269   QNX*)      SFLAGS=${CFLAGS-"-4 -O"}
270              CFLAGS=${CFLAGS-"-4 -O"}
271              LDSHARED=${LDSHARED-"cc"}
272              RANLIB=${RANLIB-"true"}
273              AR="cc"
274              ARFLAGS="-A" ;;
275   SCO_SV\ 3.2*) SFLAGS=${CFLAGS-"-O3 -dy -KPIC "}
276              CFLAGS=${CFLAGS-"-O3"}
277              LDSHARED=${LDSHARED-"cc -dy -KPIC -G"} ;;
278   SunOS\ 5* | solaris*)
279          LDSHARED=${LDSHARED-"cc -G"}
280          case `(uname -m || echo unknown) 2>/dev/null` in
281          i86*)
282              SFLAGS=${CFLAGS-"-xpentium -fast -KPIC -R."}
283              CFLAGS=${CFLAGS-"-xpentium -fast"} ;;
284          *)
285              SFLAGS=${CFLAGS-"-fast -xcg92 -KPIC -R."}
286              CFLAGS=${CFLAGS-"-fast -xcg92"} ;;
287          esac ;;
288   SunOS\ 4*) SFLAGS=${CFLAGS-"-O2 -PIC"}
289              CFLAGS=${CFLAGS-"-O2"}
290              LDSHARED=${LDSHARED-"ld"} ;;
291   SunStudio\ 9*) SFLAGS=${CFLAGS-"-fast -xcode=pic32 -xtarget=ultra3 -xarch=v9b"}
292              CFLAGS=${CFLAGS-"-fast -xtarget=ultra3 -xarch=v9b"}
293              LDSHARED=${LDSHARED-"cc -xarch=v9b"} ;;
294   UNIX_System_V\ 4.2.0)
295              SFLAGS=${CFLAGS-"-KPIC -O"}
296              CFLAGS=${CFLAGS-"-O"}
297              LDSHARED=${LDSHARED-"cc -G"} ;;
298   UNIX_SV\ 4.2MP)
299              SFLAGS=${CFLAGS-"-Kconform_pic -O"}
300              CFLAGS=${CFLAGS-"-O"}
301              LDSHARED=${LDSHARED-"cc -G"} ;;
302   OpenUNIX\ 5)
303              SFLAGS=${CFLAGS-"-KPIC -O"}
304              CFLAGS=${CFLAGS-"-O"}
305              LDSHARED=${LDSHARED-"cc -G"} ;;
306   AIX*)  # Courtesy of dbakker@arrayasolutions.com
307              SFLAGS=${CFLAGS-"-O -qmaxmem=8192"}
308              CFLAGS=${CFLAGS-"-O -qmaxmem=8192"}
309              LDSHARED=${LDSHARED-"xlc -G"} ;;
310   # send working options for other systems to zlib@gzip.org
311   *)         SFLAGS=${CFLAGS-"-O"}
312              CFLAGS=${CFLAGS-"-O"}
313              LDSHARED=${LDSHARED-"cc -shared"} ;;
314   esac
315 fi
316
317 # destination names for shared library if not defined above
318 SHAREDLIB=${SHAREDLIB-"libz$shared_ext"}
319 SHAREDLIBV=${SHAREDLIBV-"libz$shared_ext.$VER"}
320 SHAREDLIBM=${SHAREDLIBM-"libz$shared_ext.$VER1"}
321
322 echo >> configure.log
323
324 # see if shared library build supported
325 if test $shared -eq 1; then
326   echo Checking for shared library support... | tee -a configure.log
327   # we must test in two steps (cc then ld), required at least on SunOS 4.x
328   if try $CC -w -c $SFLAGS $test.c &&
329      try $LDSHARED $SFLAGS -o $test$shared_ext $test.o; then
330     echo Building shared library $SHAREDLIBV with $CC. | tee -a configure.log
331   elif test -z "$old_cc" -a -z "$old_cflags"; then
332     echo No shared library support. | tee -a configure.log
333     shared=0;
334   else
335     echo 'No shared library support; try without defining CC and CFLAGS' | tee -a configure.log
336     shared=0;
337   fi
338 fi
339 if test $shared -eq 0; then
340   LDSHARED="$CC"
341   ALL="static"
342   TEST="all teststatic"
343   SHAREDLIB=""
344   SHAREDLIBV=""
345   SHAREDLIBM=""
346   echo Building static library $STATICLIB version $VER with $CC. | tee -a configure.log
347 else
348   ALL="static shared"
349   TEST="all teststatic testshared"
350 fi
351
352 echo >> configure.log
353
354 # check for underscores in external names for use by assembler code
355 CPP=${CPP-"$CC -E"}
356 case $CFLAGS in
357   *ASMV*)
358     echo >> configure.log
359     show "$NM $test.o | grep _hello"
360     if test "`$NM $test.o | grep _hello | tee -a configure.log`" = ""; then
361       CPP="$CPP -DNO_UNDERLINE"
362       echo Checking for underline in external names... No. | tee -a configure.log
363     else
364       echo Checking for underline in external names... Yes. | tee -a configure.log
365     fi ;;
366 esac
367
368 echo >> configure.log
369
370 # check for large file support, and if none, check for fseeko()
371 cat > $test.c <<EOF
372 #include <sys/types.h>
373 off64_t dummy = 0;
374 EOF
375 if try $CC -c $CFLAGS -D_LARGEFILE64_SOURCE=1 $test.c; then
376   CFLAGS="${CFLAGS} -D_LARGEFILE64_SOURCE=1"
377   SFLAGS="${SFLAGS} -D_LARGEFILE64_SOURCE=1"
378   ALL="${ALL} all64"
379   TEST="${TEST} test64"
380   echo "Checking for off64_t... Yes." | tee -a configure.log
381   echo "Checking for fseeko... Yes." | tee -a configure.log
382 else
383   echo "Checking for off64_t... No." | tee -a configure.log
384   echo >> configure.log
385   cat > $test.c <<EOF
386 #include <stdio.h>
387 int main(void) {
388   fseeko(NULL, 0, 0);
389   return 0;
390 }
391 EOF
392   if try $CC $CFLAGS -o $test $test.c; then
393     echo "Checking for fseeko... Yes." | tee -a configure.log
394   else
395     CFLAGS="${CFLAGS} -DNO_FSEEKO"
396     SFLAGS="${SFLAGS} -DNO_FSEEKO"
397     echo "Checking for fseeko... No." | tee -a configure.log
398   fi
399 fi
400
401 echo >> configure.log
402
403 # check for strerror() for use by gz* functions
404 cat > $test.c <<EOF
405 #include <string.h>
406 #include <errno.h>
407 int main() { return strlen(strerror(errno)); }
408 EOF
409 if try $CC $CFLAGS -o $test $test.c; then
410   echo "Checking for strerror... Yes." | tee -a configure.log
411 else
412   CFLAGS="${CFLAGS} -DNO_STRERROR"
413   SFLAGS="${SFLAGS} -DNO_STRERROR"
414   echo "Checking for strerror... No." | tee -a configure.log
415 fi
416
417 # copy clean zconf.h for subsequent edits
418 cp -p zconf.h.in zconf.h
419
420 echo >> configure.log
421
422 # check for unistd.h and save result in zconf.h
423 cat > $test.c <<EOF
424 #include <unistd.h>
425 int main() { return 0; }
426 EOF
427 if try $CC -c $CFLAGS $test.c; then
428   sed < zconf.h "/^#ifdef HAVE_UNISTD_H.* may be/s/def HAVE_UNISTD_H\(.*\) may be/ 1\1 was/" > zconf.temp.h
429   mv zconf.temp.h zconf.h
430   echo "Checking for unistd.h... Yes." | tee -a configure.log
431 else
432   echo "Checking for unistd.h... No." | tee -a configure.log
433 fi
434
435 echo >> configure.log
436
437 # check for stdarg.h and save result in zconf.h
438 cat > $test.c <<EOF
439 #include <stdarg.h>
440 int main() { return 0; }
441 EOF
442 if try $CC -c $CFLAGS $test.c; then
443   sed < zconf.h "/^#ifdef HAVE_STDARG_H.* may be/s/def HAVE_STDARG_H\(.*\) may be/ 1\1 was/" > zconf.temp.h
444   mv zconf.temp.h zconf.h
445   echo "Checking for stdarg.h... Yes." | tee -a configure.log
446 else
447   echo "Checking for stdarg.h... No." | tee -a configure.log
448 fi
449
450 # if the z_ prefix was requested, save that in zconf.h
451 if test $zprefix -eq 1; then
452   sed < zconf.h "/#ifdef Z_PREFIX.* may be/s/def Z_PREFIX\(.*\) may be/ 1\1 was/" > zconf.temp.h
453   mv zconf.temp.h zconf.h
454   echo >> configure.log
455   echo "Using z_ prefix on all symbols." | tee -a configure.log
456 fi
457
458 # if --solo compilation was requested, save that in zconf.h and remove gz stuff from object lists
459 if test $solo -eq 1; then
460   sed '/#define ZCONF_H/a\
461 #define Z_SOLO
462
463 ' < zconf.h > zconf.temp.h
464   mv zconf.temp.h zconf.h
465 OBJC='$(OBJZ)'
466 PIC_OBJC='$(PIC_OBJZ)'
467 fi
468
469 # if code coverage testing was requested, use older gcc if defined, e.g. "gcc-4.2" on Mac OS X
470 if test $cover -eq 1; then
471   CFLAGS="${CFLAGS} -fprofile-arcs -ftest-coverage"
472   if test -n "$GCC_CLASSIC"; then
473     CC=$GCC_CLASSIC
474   fi
475 fi
476
477 echo >> configure.log
478
479 # conduct a series of tests to resolve eight possible cases of using "vs" or "s" printf functions
480 # (using stdarg or not), with or without "n" (proving size of buffer), and with or without a
481 # return value.  The most secure result is vsnprintf() with a return value.  snprintf() with a
482 # return value is secure as well, but then gzprintf() will be limited to 20 arguments.
483 cat > $test.c <<EOF
484 #include <stdio.h>
485 #include <stdarg.h>
486 #include "zconf.h"
487 int main()
488 {
489 #ifndef STDC
490   choke me
491 #endif
492   return 0;
493 }
494 EOF
495 if try $CC -c $CFLAGS $test.c; then
496   echo "Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf()." | tee -a configure.log
497
498   echo >> configure.log
499   cat > $test.c <<EOF
500 #include <stdio.h>
501 #include <stdarg.h>
502 int mytest(const char *fmt, ...)
503 {
504   char buf[20];
505   va_list ap;
506   va_start(ap, fmt);
507   vsnprintf(buf, sizeof(buf), fmt, ap);
508   va_end(ap);
509   return 0;
510 }
511 int main()
512 {
513   return (mytest("Hello%d\n", 1));
514 }
515 EOF
516   if try $CC $CFLAGS -o $test $test.c; then
517     echo "Checking for vsnprintf() in stdio.h... Yes." | tee -a configure.log
518
519     echo >> configure.log
520     cat >$test.c <<EOF
521 #include <stdio.h>
522 #include <stdarg.h>
523 int mytest(const char *fmt, ...)
524 {
525   int n;
526   char buf[20];
527   va_list ap;
528   va_start(ap, fmt);
529   n = vsnprintf(buf, sizeof(buf), fmt, ap);
530   va_end(ap);
531   return n;
532 }
533 int main()
534 {
535   return (mytest("Hello%d\n", 1));
536 }
537 EOF
538
539     if try $CC -c $CFLAGS $test.c; then
540       echo "Checking for return value of vsnprintf()... Yes." | tee -a configure.log
541     else
542       CFLAGS="$CFLAGS -DHAS_vsnprintf_void"
543       SFLAGS="$SFLAGS -DHAS_vsnprintf_void"
544       echo "Checking for return value of vsnprintf()... No." | tee -a configure.log
545       echo "  WARNING: apparently vsnprintf() does not return a value. zlib" | tee -a configure.log
546       echo "  can build but will be open to possible string-format security" | tee -a configure.log
547       echo "  vulnerabilities." | tee -a configure.log
548     fi
549   else
550     CFLAGS="$CFLAGS -DNO_vsnprintf"
551     SFLAGS="$SFLAGS -DNO_vsnprintf"
552     echo "Checking for vsnprintf() in stdio.h... No." | tee -a configure.log
553     echo "  WARNING: vsnprintf() not found, falling back to vsprintf(). zlib" | tee -a configure.log
554     echo "  can build but will be open to possible buffer-overflow security" | tee -a configure.log
555     echo "  vulnerabilities." | tee -a configure.log
556
557     echo >> configure.log
558     cat >$test.c <<EOF
559 #include <stdio.h>
560 #include <stdarg.h>
561 int mytest(const char *fmt, ...)
562 {
563   int n;
564   char buf[20];
565   va_list ap;
566   va_start(ap, fmt);
567   n = vsprintf(buf, fmt, ap);
568   va_end(ap);
569   return n;
570 }
571 int main()
572 {
573   return (mytest("Hello%d\n", 1));
574 }
575 EOF
576
577     if try $CC -c $CFLAGS $test.c; then
578       echo "Checking for return value of vsprintf()... Yes." | tee -a configure.log
579     else
580       CFLAGS="$CFLAGS -DHAS_vsprintf_void"
581       SFLAGS="$SFLAGS -DHAS_vsprintf_void"
582       echo "Checking for return value of vsprintf()... No." | tee -a configure.log
583       echo "  WARNING: apparently vsprintf() does not return a value. zlib" | tee -a configure.log
584       echo "  can build but will be open to possible string-format security" | tee -a configure.log
585       echo "  vulnerabilities." | tee -a configure.log
586     fi
587   fi
588 else
589   echo "Checking whether to use vs[n]printf() or s[n]printf()... using s[n]printf()." | tee -a configure.log
590
591   echo >> configure.log
592   cat >$test.c <<EOF
593 #include <stdio.h>
594 int mytest()
595 {
596   char buf[20];
597   snprintf(buf, sizeof(buf), "%s", "foo");
598   return 0;
599 }
600 int main()
601 {
602   return (mytest());
603 }
604 EOF
605
606   if try $CC $CFLAGS -o $test $test.c; then
607     echo "Checking for snprintf() in stdio.h... Yes." | tee -a configure.log
608
609     echo >> configure.log
610     cat >$test.c <<EOF
611 #include <stdio.h>
612 int mytest()
613 {
614   char buf[20];
615   return snprintf(buf, sizeof(buf), "%s", "foo");
616 }
617 int main()
618 {
619   return (mytest());
620 }
621 EOF
622
623     if try $CC -c $CFLAGS $test.c; then
624       echo "Checking for return value of snprintf()... Yes." | tee -a configure.log
625     else
626       CFLAGS="$CFLAGS -DHAS_snprintf_void"
627       SFLAGS="$SFLAGS -DHAS_snprintf_void"
628       echo "Checking for return value of snprintf()... No." | tee -a configure.log
629       echo "  WARNING: apparently snprintf() does not return a value. zlib" | tee -a configure.log
630       echo "  can build but will be open to possible string-format security" | tee -a configure.log
631       echo "  vulnerabilities." | tee -a configure.log
632     fi
633   else
634     CFLAGS="$CFLAGS -DNO_snprintf"
635     SFLAGS="$SFLAGS -DNO_snprintf"
636     echo "Checking for snprintf() in stdio.h... No." | tee -a configure.log
637     echo "  WARNING: snprintf() not found, falling back to sprintf(). zlib" | tee -a configure.log
638     echo "  can build but will be open to possible buffer-overflow security" | tee -a configure.log
639     echo "  vulnerabilities." | tee -a configure.log
640
641     echo >> configure.log
642     cat >$test.c <<EOF
643 #include <stdio.h>
644 int mytest()
645 {
646   char buf[20];
647   return sprintf(buf, "%s", "foo");
648 }
649 int main()
650 {
651   return (mytest());
652 }
653 EOF
654
655     if try $CC -c $CFLAGS $test.c; then
656       echo "Checking for return value of sprintf()... Yes." | tee -a configure.log
657     else
658       CFLAGS="$CFLAGS -DHAS_sprintf_void"
659       SFLAGS="$SFLAGS -DHAS_sprintf_void"
660       echo "Checking for return value of sprintf()... No." | tee -a configure.log
661       echo "  WARNING: apparently sprintf() does not return a value. zlib" | tee -a configure.log
662       echo "  can build but will be open to possible string-format security" | tee -a configure.log
663       echo "  vulnerabilities." | tee -a configure.log
664     fi
665   fi
666 fi
667
668 # see if we can hide zlib internal symbols that are linked between separate source files
669 if test "$gcc" -eq 1; then
670   echo >> configure.log
671   cat > $test.c <<EOF
672 #define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
673 int ZLIB_INTERNAL foo;
674 int main()
675 {
676   return 0;
677 }
678 EOF
679   if tryboth $CC -c $CFLAGS $test.c; then
680     CFLAGS="$CFLAGS -DHAVE_HIDDEN"
681     SFLAGS="$SFLAGS -DHAVE_HIDDEN"
682     echo "Checking for attribute(visibility) support... Yes." | tee -a configure.log
683   else
684     echo "Checking for attribute(visibility) support... No." | tee -a configure.log
685   fi
686 fi
687
688 # clean up files produced by running the compiler and linker
689 rm -f $test.[co] $test $test$shared_ext $test.gcno
690
691 # show the results in the log
692 echo >> configure.log
693 echo ALL = $ALL >> configure.log
694 echo AR = $AR >> configure.log
695 echo ARFLAGS = $ARFLAGS >> configure.log
696 echo CC = $CC >> configure.log
697 echo CFLAGS = $CFLAGS >> configure.log
698 echo CPP = $CPP >> configure.log
699 echo EXE = $EXE >> configure.log
700 echo LDCONFIG = $LDCONFIG >> configure.log
701 echo LDFLAGS = $LDFLAGS >> configure.log
702 echo LDSHARED = $LDSHARED >> configure.log
703 echo LDSHAREDLIBC = $LDSHAREDLIBC >> configure.log
704 echo OBJC = $OBJC >> configure.log
705 echo PIC_OBJC = $PIC_OBJC >> configure.log
706 echo RANLIB = $RANLIB >> configure.log
707 echo SFLAGS = $SFLAGS >> configure.log
708 echo SHAREDLIB = $SHAREDLIB >> configure.log
709 echo SHAREDLIBM = $SHAREDLIBM >> configure.log
710 echo SHAREDLIBV = $SHAREDLIBV >> configure.log
711 echo STATICLIB = $STATICLIB >> configure.log
712 echo TEST = $TEST >> configure.log
713 echo VER = $VER >> configure.log
714 echo exec_prefix = $exec_prefix >> configure.log
715 echo includedir = $includedir >> configure.log
716 echo libdir = $libdir >> configure.log
717 echo mandir = $mandir >> configure.log
718 echo prefix = $prefix >> configure.log
719 echo sharedlibdir = $sharedlibdir >> configure.log
720 echo uname = $uname >> configure.log
721 echo -------------------- >> configure.log
722 echo >> configure.log
723 echo >> configure.log
724
725 # udpate Makefile with the configure results
726 sed < Makefile.in "
727 /^CC *=/s#=.*#=$CC#
728 /^CFLAGS *=/s#=.*#=$CFLAGS#
729 /^SFLAGS *=/s#=.*#=$SFLAGS#
730 /^LDFLAGS *=/s#=.*#=$LDFLAGS#
731 /^LDSHARED *=/s#=.*#=$LDSHARED#
732 /^CPP *=/s#=.*#=$CPP#
733 /^STATICLIB *=/s#=.*#=$STATICLIB#
734 /^SHAREDLIB *=/s#=.*#=$SHAREDLIB#
735 /^SHAREDLIBV *=/s#=.*#=$SHAREDLIBV#
736 /^SHAREDLIBM *=/s#=.*#=$SHAREDLIBM#
737 /^AR *=/s#=.*#=$AR#
738 /^ARFLAGS *=/s#=.*#=$ARFLAGS#
739 /^RANLIB *=/s#=.*#=$RANLIB#
740 /^LDCONFIG *=/s#=.*#=$LDCONFIG#
741 /^LDSHAREDLIBC *=/s#=.*#=$LDSHAREDLIBC#
742 /^EXE *=/s#=.*#=$EXE#
743 /^prefix *=/s#=.*#=$prefix#
744 /^exec_prefix *=/s#=.*#=$exec_prefix#
745 /^libdir *=/s#=.*#=$libdir#
746 /^sharedlibdir *=/s#=.*#=$sharedlibdir#
747 /^includedir *=/s#=.*#=$includedir#
748 /^mandir *=/s#=.*#=$mandir#
749 /^OBJC *=/s#=.*#= $OBJC#
750 /^PIC_OBJC *=/s#=.*#= $PIC_OBJC#
751 /^all: */s#:.*#: $ALL#
752 /^test: */s#:.*#: $TEST#
753 " > Makefile
754
755 # create zlib.pc with the configure results
756 sed < zlib.pc.in "
757 /^CC *=/s#=.*#=$CC#
758 /^CFLAGS *=/s#=.*#=$CFLAGS#
759 /^CPP *=/s#=.*#=$CPP#
760 /^LDSHARED *=/s#=.*#=$LDSHARED#
761 /^STATICLIB *=/s#=.*#=$STATICLIB#
762 /^SHAREDLIB *=/s#=.*#=$SHAREDLIB#
763 /^SHAREDLIBV *=/s#=.*#=$SHAREDLIBV#
764 /^SHAREDLIBM *=/s#=.*#=$SHAREDLIBM#
765 /^AR *=/s#=.*#=$AR#
766 /^ARFLAGS *=/s#=.*#=$ARFLAGS#
767 /^RANLIB *=/s#=.*#=$RANLIB#
768 /^EXE *=/s#=.*#=$EXE#
769 /^prefix *=/s#=.*#=$prefix#
770 /^exec_prefix *=/s#=.*#=$exec_prefix#
771 /^libdir *=/s#=.*#=$libdir#
772 /^sharedlibdir *=/s#=.*#=$sharedlibdir#
773 /^includedir *=/s#=.*#=$includedir#
774 /^mandir *=/s#=.*#=$mandir#
775 /^LDFLAGS *=/s#=.*#=$LDFLAGS#
776 " | sed -e "
777 s/\@VERSION\@/$VER/g;
778 " > zlib.pc