diff options
author | Werner Koch <[email protected]> | 2013-02-26 15:14:52 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2013-02-26 15:14:52 +0000 |
commit | fdcd5736e610cd64e47da73dcafe8bc4a6a67666 (patch) | |
tree | 4d523b11e4ea00cf85388a273a056ad90adf67b1 /configure.ac | |
parent | Remove included gitlog-to-changelog. (diff) | |
download | gpgme-fdcd5736e610cd64e47da73dcafe8bc4a6a67666.tar.gz gpgme-fdcd5736e610cd64e47da73dcafe8bc4a6a67666.zip |
Update helper scripts.
* configure.ac: Use AC_CONFIG_AUX_DIR. Remove args from
AM_INIT_AUTOMAKE. Replace AM_CONFIG_HEADER by AC_CONFIG_HEADER.
* compile, config.guess, config.sub, depcomp, install-sh, ltmain.sh
* mkinstalldirs, texinfo.texi: Move to build-aux/ and update from
gnulib (c042abf).
* build-aux/mdate-sh, build-aux/missing: Install via automake -a -c.
Update autogen.sh for changed config dir.
* autogen.sh: Adjust for scripts dir change. Update W32 toolprefix
list.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 9c4d3331..174f4066 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # configure.ac for GPGME # Copyright (C) 2000 Werner Koch (dd9jn) # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, -# 2009, 2010, 2011, 2012 g10 Code GmbH +# 2009, 2010, 2011, 2012, 2013 g10 Code GmbH # # This file is part of GPGME. # @@ -74,10 +74,11 @@ VERSION_NUMBER=m4_esyscmd(printf "0x%02x%02x%02x" \ PACKAGE=$PACKAGE_NAME VERSION=$PACKAGE_VERSION -AC_CONFIG_SRCDIR(src/gpgme.h.in) -AM_CONFIG_HEADER(config.h) +AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE($PACKAGE, $VERSION) +AC_CONFIG_SRCDIR(src/gpgme.h.in) +AC_CONFIG_HEADER(config.h) +AM_INIT_AUTOMAKE AM_MAINTAINER_MODE AC_CANONICAL_HOST |