summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAndrey Kiselev <dron@ak4719.spb.edu>2005-09-12 13:33:26 +0000
committerAndrey Kiselev <dron@ak4719.spb.edu>2005-09-12 13:33:26 +0000
commitf84c3a6a0cc572ef29e3df40c682074b3d655737 (patch)
tree43a3356d23b7103a1953ae1c7d899fe764d4a219 /configure.ac
parent2907cf36ad35d422bee89871ea56e87679abb73d (diff)
downloadlibtiff-git-f84c3a6a0cc572ef29e3df40c682074b3d655737.tar.gz
Applied patch from Patrick Welche (all scripts moved in the 'config' and 'm4'
directories).
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index f6a11e13..6055594f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,14 +25,15 @@ 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.3, [tiff@remotesensing.org], tiff)
+AC_INIT([LibTIFF Software], 3.7.4, [tiff@lists.maptools.org], tiff)
+AC_CONFIG_AUX_DIR(config)
+AC_CONFIG_MACRO_DIR(m4)
AC_LANG(C)
dnl Compute the canonical target-system type variable
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
-AM_PROG_CC_C_O
dnl Do not rebuild generated files every time
AM_MAINTAINER_MODE
@@ -40,7 +41,7 @@ dnl Versioning.
dnl Don't fill the ALPHA_VERSION field, if not applicable.
LIBTIFF_MAJOR_VERSION=3
LIBTIFF_MINOR_VERSION=7
-LIBTIFF_MICRO_VERSION=3
+LIBTIFF_MICRO_VERSION=4
LIBTIFF_ALPHA_VERSION=
LIBTIFF_VERSION=$LIBTIFF_MAJOR_VERSION.$LIBTIFF_MINOR_VERSION.$LIBTIFF_MICRO_VERSION$LIBTIFF_ALPHA_VERSION
dnl This will be used with the 'make release' target
@@ -69,6 +70,7 @@ AC_SUBST(LIBTIFF_RELEASE_DATE)
dnl Checks for programs.
AC_PROG_CC
+AM_PROG_CC_C_O
dnl We want warnings. As many warnings as possible.
VL_PROG_CC_WARNINGS()