diff options
author | Werner Koch <wk@gnupg.org> | 2010-02-26 19:44:36 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2010-02-26 19:44:36 +0100 |
commit | 2cf687cb3e2818ac3a6b51fea282a65f4395f580 (patch) | |
tree | 51376a0ff19c4aea990c42a895c3ef104881c240 /configure.ac | |
parent | Some minor changes and typo fixes. (diff) | |
download | gnupg2-2cf687cb3e2818ac3a6b51fea282a65f4395f580.tar.xz gnupg2-2cf687cb3e2818ac3a6b51fea282a65f4395f580.zip |
First batch of changes to support W32CE.
Note that jnlib/w32-reg.c is not yet ready.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 7ac5ec05a..abb26cfd5 100644 --- a/configure.ac +++ b/configure.ac @@ -918,6 +918,9 @@ AC_SUBST(GPGKEYS_MAILTO) # Construct a printable name of the OS # case "${host}" in + *-mingw32ce*) + PRINTABLE_OS_NAME="W32CE" + ;; *-mingw32*) PRINTABLE_OS_NAME="MingW32" ;; @@ -1089,9 +1092,11 @@ AC_CHECK_TYPES([struct sigaction, sigset_t],,,[#include <signal.h>]) # # These are needed by libjnlib - fixme: we should use a jnlib.m4 # Note: We already checked pwd.h. -AC_CHECK_FUNCS([memicmp stpcpy strsep strlwr strtoul memmove stricmp strtol]) -AC_CHECK_FUNCS([memrchr isascii timegm getrusage setrlimit stat setlocale]) -AC_CHECK_FUNCS([flockfile funlockfile fopencookie funopen getpwnam getpwuid]) +AC_CHECK_HEADERS([signal.h]) +AC_CHECK_FUNCS([memicmp stpcpy strsep strlwr strtoul memmove stricmp strtol \ + memrchr isascii timegm getrusage setrlimit stat setlocale \ + flockfile funlockfile fopencookie funopen getpwnam getpwuid \ + getenv ]) # # gnulib checks |