diff options
author | Werner Koch <[email protected]> | 2004-10-15 09:37:49 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2004-10-15 09:37:49 +0000 |
commit | 7b01988db3e23c9d87e38f816ac6ab9d52a1798b (patch) | |
tree | f4af199dc5352d266496f0c596770ebd5a1c7fc6 | |
parent | Fix up the @setfilename lines. (diff) | |
download | gnupg-7b01988db3e23c9d87e38f816ac6ab9d52a1798b.tar.gz gnupg-7b01988db3e23c9d87e38f816ac6ab9d52a1798b.zip |
* Makefile.am (DISTCHECK_CONFIGURE_FLAGS): New.
(AUTOMAKE_OPTIONS): New.
* configure.ac: Check whether vasprintf needs a replacement.
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.ac | 1 |
4 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2004-10-15 Werner Koch <[email protected]> + + * Makefile.am (DISTCHECK_CONFIGURE_FLAGS): New. + (AUTOMAKE_OPTIONS): New. + + * configure.ac: Check whether vasprintf needs a replacement. + 2004-10-13 Werner Koch <[email protected]> * configure.ac: Actually name the option --disable-finger and not diff --git a/Makefile.am b/Makefile.am index c6f107967..1fc16db4b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,6 +19,8 @@ ## Process this file with automake to produce Makefile.in ACLOCAL_AMFLAGS = -I m4 +DISTCHECK_CONFIGURE_FLAGS = --enable-selinux-support +AUTOMAKE_OPTIONS = dist-bzip2 std-options if CROSS_COMPILING checks = @@ -5,6 +5,8 @@ Noteworthy changes in version 1.3.91 processing of confidential files used by gpg (e.g. secring.gpg). This helps writing ACLs for the SELinux kernel. + * Minor bug fixes, code and string cleanups. + Noteworthy changes in version 1.3.90 (2004-10-01) ------------------------------------------------ diff --git a/configure.ac b/configure.ac index bc79f886b..8203edd9f 100644 --- a/configure.ac +++ b/configure.ac @@ -799,6 +799,7 @@ AC_CHECK_FUNCS(memmove gettimeofday getrusage setrlimit clock_gettime) AC_CHECK_FUNCS(atexit raise getpagesize strftime nl_langinfo setlocale) AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat getaddrinfo) AC_REPLACE_FUNCS(mkdtemp timegm) +AC_REPLACE_FUNCS(vasprintf) AC_CHECK_TYPES([struct sigaction, sigset_t],,,[#include <signal.h>]) # See if getopt is in libiberty. This is of course not optimal since |