diff options
author | David Shaw <[email protected]> | 2002-11-13 16:11:32 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-11-13 16:11:32 +0000 |
commit | 453c471f50b913524f68376b03389b30f871c8e2 (patch) | |
tree | d51c62678d7fd61d2240dd3324d28af94789df51 /configure.ac | |
parent | * secmem.c (lock_pool) [__CYGWIN__]: Don't print secmem warning. From (diff) | |
download | gnupg-453c471f50b913524f68376b03389b30f871c8e2.tar.gz gnupg-453c471f50b913524f68376b03389b30f871c8e2.zip |
* THANKS: Changes from stable branch.
* configure.ac: Check for ctermid(). From Werner on stable
branch.
* configure.ac (GPGKEYS_LDAP,GPGKEYS_HKP): Add $EXEEXT. From
Werner on stable branch.
* configure.ac (try_gettext): Remove special case for cygwin.
This removes all the DOS specific macros and let Cygwin work like
a real OS. Needs a couple of changes elsewhere but after all,
GnuPG presents itself much more like a Posix program and can be
used in a full Cygwin environment; e.g. used along with mutt.
Changes suggested by Volker Quetschke. From Werner on stable
branch.
* acinclude.m4 (GNUPG_SYS_NM_PARSE): Allow for underscore in test
symbols. Useful for Cygwin builds.
(GNUPG_SYS_SYMBOL_UNDERSCORE): Don't hardwire to yes for Cygwin.
From Werner on stable branch.
* README: Add an installation note for Darwin 6.1. From Werner on
stable branch.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 9f128c7c1..c58140e56 100644 --- a/configure.ac +++ b/configure.ac @@ -201,7 +201,7 @@ if test "$use_exec" = yes ; then AC_MSG_RESULT($try_hkp) if test "$try_hkp" = yes ; then - AC_SUBST(GPGKEYS_HKP,"gpgkeys_hkp") + AC_SUBST(GPGKEYS_HKP,"gpgkeys_hkp$EXEEXT") fi AC_MSG_CHECKING([whether email keyserver support is requested]) @@ -274,7 +274,7 @@ MPI_OPT_FLAGS="" try_gettext=yes case "${target}" in - *-*-mingw32*|*-*-cygwin*) + *-*-mingw32*) # special stuff for Windoze NT ac_cv_have_dev_random=no AC_DEFINE(USE_ONLY_8DOT3,1, @@ -384,7 +384,7 @@ if test "$try_ldap" = yes ; then if test "$gnupg_cv_func_ldap_init" = yes || \ test "$gnupg_cv_func_ldaplber_init" = yes ; then LDAPLIBS=$MY_LDAPLIBS - GPGKEYS_LDAP="gpgkeys_ldap" + GPGKEYS_LDAP="gpgkeys_ldap$EXEEXT" AC_MSG_CHECKING([whether LDAP supports ldap_get_option]) @@ -463,7 +463,7 @@ case "${target}" in PRINTABLE_OS_NAME="MingW32" ;; *-*-cygwin*) - PRINTABLE_OS_NAME="Cygwin32" + PRINTABLE_OS_NAME="Cygwin" ;; i?86-emx-os2 | i?86-*-os2*emx ) PRINTABLE_OS_NAME="OS/2" @@ -577,7 +577,7 @@ AC_FUNC_FSEEKO AC_FUNC_VPRINTF AC_FUNC_FORK AC_CHECK_FUNCS(strerror stpcpy strsep strlwr tcgetattr strtoul mmap) -AC_CHECK_FUNCS(strcasecmp strncasecmp) +AC_CHECK_FUNCS(strcasecmp strncasecmp ctermid) 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) |