dnl Process this file with autoconf to produce a configure script. dnl dnl Copyright (C) 2009-2011 Peter Breitenlohner dnl dnl This file is free software; the copyright holder dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl m4_include([version.ac])[] dnl define zlib_version AC_INIT([zlib for TeX Live], zlib_version, [tex-k@tug.org]) AC_PREREQ([2.65]) AC_CONFIG_SRCDIR([zlib-]zlib_version[/zlib.h]) AC_CONFIG_AUX_DIR([../../build-aux]) AC_CONFIG_MACRO_DIR([../../m4]) KPSE_BASIC([zlib]) AC_PROG_CC AC_PROG_RANLIB AC_PROG_LN_S AC_CONFIG_HEADERS([config.h])[]dnl unused, to avoid zillions of -D' on command line AM_CONDITIONAL([build], [test "x$enable_build" != xno]) if test "x$GCC" = xyes; then CFLAGS=${CFLAGS-"-O3"} fi AC_HEADER_STDC if test "x$ac_cv_header_stdc" != xyes; then AC_MSG_ERROR([Sorry, can't do anything for you]) fi AC_CHECK_HEADER([errno.h], [ZLIB_DEFINES=], [ZLIB_DEFINES="-DNO_ERRNO_H"]) AC_CHECK_HEADERS([unistd.h]) ZCONF_SRC=[zlib-]zlib_version[/zconf.h.in] if test x"$ac_cv_header_unistd_h" = xyes; then zconf_sh='sed <$srcdir/'"$ZCONF_SRC"' "/^#ifdef HAVE_UNISTD_H.* may be/s/def HAVE_UNISTD_H\\(.*\\) may be/ 1\\1 was/" >' else zconf_sh='cp $srcdir/'"$ZCONF_SRC" fi AC_SYS_LARGEFILE AC_FUNC_FSEEKO dnl add to ZLIB_DEFINES if test "$enable_largefile" != no; then AS_CASE([$ac_cv_sys_file_offset_bits], [no], [], [unknown], [AS_CASE([$ac_cv_sys_large_files], [no | unknown], [], [ZLIB_DEFINES="$ZLIB_DEFINES -D_LARGE_FILES=1"])], [ZLIB_DEFINES="$ZLIB_DEFINES -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE=1"]) fi AS_CASE([$ac_cv_sys_largefile_source], [no | unknown], [], [ZLIB_DEFINES="$ZLIB_DEFINES -D_LARGEFILE_SOURCE=1"]) AC_CONFIG_COMMANDS([zconf.h], [eval "$zconf_sh" zconf.h], [zconf_sh='$zconf_sh']) AC_MSG_CHECKING([for mmap support]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include #include #include caddr_t hello() { return mmap((caddr_t)0, (off_t)0, PROT_READ, MAP_SHARED, 0, (off_t)0); }]])], [AC_MSG_RESULT([yes]) ZLIB_DEFINES="$ZLIB_DEFINES -DUSE_MMAP"], [AC_MSG_RESULT([no])]) KPSE_CHECK_WIN32 if test "x$kpse_cv_have_win32" != xno; then ZLIB_DEFINES="$ZLIB_DEFINES -DNO_VIZ" fi AC_SUBST([ZLIB_DEFINES]) AC_SUBST([ZLIB_TREE], [zlib-]zlib_version) if test -f $srcdir/$ZLIB_TREE/zconf.h; then AC_MSG_ERROR([Sorry, you must remove the file $ZLIB_TREE/zconf.h]) fi AC_CONFIG_FILES([Makefile include/Makefile]) AC_OUTPUT