diff options
author | David Shaw <[email protected]> | 2007-07-08 21:48:11 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2007-07-08 21:48:11 +0000 |
commit | 3be2eb4b354b5b2b287a63ee57ced7594e9f5187 (patch) | |
tree | e7c4676231c5096cf798ad882ca02d07d68de252 | |
parent | * encode.c (encode_crypt): Missed one call to setup_plaintext_name(). (diff) | |
download | gnupg-3be2eb4b354b5b2b287a63ee57ced7594e9f5187.tar.gz gnupg-3be2eb4b354b5b2b287a63ee57ced7594e9f5187.zip |
* configure.ac: AM_PROG_CC_C_O is desired by automake 1.10 to do
per-target builds (like we do in the keyserver dir), but exists in the
currently-used 1.9.3 as well.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2007-07-08 David Shaw <[email protected]> + + * configure.ac: AM_PROG_CC_C_O is desired by automake 1.10 to do + per-target builds (like we do in the keyserver dir), but exists in + the currently-used 1.9.3 as well. + 2007-06-13 David Shaw <[email protected]> * configure.ac: Add --enable-camellia. Disabled by default. Do diff --git a/configure.ac b/configure.ac index a31ddd628..02f82d78b 100644 --- a/configure.ac +++ b/configure.ac @@ -508,6 +508,7 @@ AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir) AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir) AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir) AC_PROG_CC +AM_PROG_CC_C_O AC_PROG_CPP AC_PROG_RANLIB AC_CHECK_TOOL(AR, ar, :) |