2004-03-19 12:26:21 -05:00
|
|
|
dnl -*- Autoconf -*-
|
2004-03-28 07:01:22 -05:00
|
|
|
dnl $Id: configure.ac,v 1.3 2004-03-28 12:01:23 dron Exp $
|
2004-03-19 12:26:21 -05:00
|
|
|
dnl
|
|
|
|
dnl Tag Image File Format (TIFF) Software
|
|
|
|
dnl
|
|
|
|
dnl Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
|
|
|
|
dnl
|
|
|
|
dnl Permission to use, copy, modify, distribute, and sell this software and
|
|
|
|
dnl its documentation for any purpose is hereby granted without fee, provided
|
|
|
|
dnl that (i) the above copyright notices and this permission notice appear in
|
|
|
|
dnl all copies of the software and related documentation, and (ii) the names of
|
|
|
|
dnl Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
|
|
dnl publicity relating to the software without the specific, prior written
|
|
|
|
dnl permission of Sam Leffler and Silicon Graphics.
|
|
|
|
dnl
|
|
|
|
dnl THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
dnl EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
|
|
dnl WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
dnl
|
|
|
|
dnl IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
|
|
dnl ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
|
|
dnl OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
|
|
dnl WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
|
|
dnl LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
dnl OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
|
|
AC_PREREQ(2.59)
|
|
|
|
AC_INIT([LibTIFF Software], 3.7.0, [tiff@remotesensing.org], libtiff)
|
|
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AC_CONFIG_SRCDIR(libtiff/config.h.in)
|
|
|
|
AM_CONFIG_HEADER(libtiff/config.h)
|
|
|
|
|
|
|
|
dnl Versioning
|
|
|
|
LIBTIFF_MAJOR_VERSION=3
|
|
|
|
LIBTIFF_MINOR_VERSION=7
|
|
|
|
LIBTIFF_MICRO_VERSION=0
|
|
|
|
LIBTIFF_VERSION=$LIBTIFF_MAJOR_VERSION.$LIBTIFF_MINOR_VERSION.$LIBTIFF_MICRO_VERSION
|
|
|
|
|
|
|
|
AC_SUBST(LIBTIFF_MAJOR_VERSION)
|
|
|
|
AC_SUBST(LIBTIFF_MINOR_VERSION)
|
|
|
|
AC_SUBST(LIBTIFF_MICRO_VERSION)
|
|
|
|
AC_SUBST(LIBTIFF_VERSION)
|
|
|
|
|
|
|
|
dnl Checks for programs.
|
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_LN_S
|
|
|
|
AC_PROG_RANLIB
|
|
|
|
|
|
|
|
dnl Checks for libraries.
|
|
|
|
AC_CHECK_LIB([GL], [main])
|
|
|
|
AC_CHECK_LIB([c], [main])
|
|
|
|
AC_CHECK_LIB([gl], [main])
|
|
|
|
AC_CHECK_LIB([glut], [main])
|
|
|
|
|
|
|
|
dnl We don't need to add math library at all targets
|
|
|
|
case "$target_os" in
|
|
|
|
cygwin* | mingw32* | beos* | darwin*)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
AC_CHECK_LIB(m,main,,,)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
dnl Checks for header files.
|
|
|
|
AC_HEADER_STDC
|
|
|
|
AC_CHECK_HEADERS([fcntl.h limits.h malloc.h memory.h stdlib.h string.h sys/time.h unistd.h])
|
|
|
|
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_HEADER_STDBOOL
|
|
|
|
AC_C_CONST
|
|
|
|
AC_C_BIGENDIAN
|
|
|
|
AC_TYPE_OFF_T
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
AC_HEADER_TIME
|
|
|
|
AC_STRUCT_TM
|
|
|
|
|
|
|
|
dnl Checks for library functions.
|
|
|
|
AC_FUNC_ERROR_AT_LINE
|
|
|
|
AC_FUNC_MALLOC
|
|
|
|
AC_FUNC_MEMCMP
|
|
|
|
AC_FUNC_MMAP
|
|
|
|
AC_FUNC_REALLOC
|
|
|
|
AC_FUNC_VPRINTF
|
|
|
|
AC_CHECK_FUNCS([floor gettimeofday isascii memmove memset munmap pow sqrt strcasecmp strchr strncasecmp strrchr strstr strtol strtoul])
|
|
|
|
|
2004-03-26 06:44:45 -05:00
|
|
|
AC_SUBST(LIBTIFF,../libtiff/libtiff.la)
|
|
|
|
|
2004-03-19 12:26:21 -05:00
|
|
|
AC_CONFIG_FILES([Makefile \
|
|
|
|
html/Makefile \
|
2004-03-28 07:01:22 -05:00
|
|
|
html/images/Makefile \
|
|
|
|
html/man/Makefile \
|
2004-03-19 12:26:21 -05:00
|
|
|
libtiff/Makefile \
|
|
|
|
man/Makefile \
|
|
|
|
tools/Makefile])
|
|
|
|
AC_OUTPUT
|
|
|
|
|