diff options
author | Werner Koch <[email protected]> | 2004-10-21 16:56:22 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2004-10-21 16:56:22 +0000 |
commit | 0ebf79c824a0eebff35f757f85608e3dd7750ac3 (patch) | |
tree | 915cea6a021349865c78dfb0bed4b327bf4b4202 /configure.ac | |
parent | * g10.c (parse_list_options): Fix non-constant initializer so we can build (diff) | |
download | gnupg-0ebf79c824a0eebff35f757f85608e3dd7750ac3.tar.gz gnupg-0ebf79c824a0eebff35f757f85608e3dd7750ac3.zip |
* configure.ac: Remove the check for asprintf
* app-common.h (app_openpgp_storekey: Add prototype.
* app-openpgp.c (do_sign): Replace asprintf by direct allocation.
This avoids problems with missing vasprintf implementations.
* card-util.c (generate_card_keys): Add a #warning for gnupg 1.9
and use the same string there.
* util.h [!HAVE_VASPRINTF]: Removed prototype.
* vasprintf.c: Removed. It was used only at one place and I don't
want to get into build problems in 1.4.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c75a77451..8276a98c8 100644 --- a/configure.ac +++ b/configure.ac @@ -799,7 +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 |