1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-03-26 22:29:58 +01:00

* configure.ac: Check for timegm(). Replacement functions for setenv()

and unsetenv().
This commit is contained in:
David Shaw 2004-02-20 15:11:57 +00:00
parent a3ba17e09e
commit 9fe66c89d8
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2004-02-20 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Check for timegm(). Replacement functions for
setenv() and unsetenv().
2004-02-19 David Shaw <dshaw@jabberwocky.com> 2004-02-19 David Shaw <dshaw@jabberwocky.com>
* configure.ac: Check for ln -s and add GPGKEYS_LDAP conditional, * configure.ac: Check for ln -s and add GPGKEYS_LDAP conditional,
@ -1443,7 +1448,8 @@ Fri Feb 13 19:43:41 1998 Werner Koch (wk@isil.d.shuttle.de)
* Makefile.am: Likewise * Makefile.am: Likewise
Copyright 1998,1999,2000,2001,2002,2003 Free Software Foundation, Inc. Copyright 1998, 1999, 2000, 2001, 2002, 2003,
2004 Free Software Foundation, Inc.
This file is free software; as a special exception the author gives This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without unlimited permission to copy and/or distribute it, with or without
@ -1452,5 +1458,3 @@ Fri Feb 13 19:43:41 1998 Werner Koch (wk@isil.d.shuttle.de)
This file is distributed in the hope that it will be useful, but This file is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY, to the extent permitted by law; without even the WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

View File

@ -747,11 +747,11 @@ AC_FUNC_FSEEKO
AC_FUNC_VPRINTF AC_FUNC_VPRINTF
AC_FUNC_FORK AC_FUNC_FORK
AC_CHECK_FUNCS(strerror stpcpy strsep strlwr tcgetattr strtoul mmap) AC_CHECK_FUNCS(strerror stpcpy strsep strlwr tcgetattr strtoul mmap)
AC_CHECK_FUNCS(strcasecmp strncasecmp ctermid times) AC_CHECK_FUNCS(strcasecmp strncasecmp ctermid times timegm)
AC_CHECK_FUNCS(memmove gettimeofday getrusage setrlimit clock_gettime) AC_CHECK_FUNCS(memmove gettimeofday getrusage setrlimit clock_gettime)
AC_CHECK_FUNCS(atexit raise getpagesize strftime nl_langinfo setlocale) AC_CHECK_FUNCS(atexit raise getpagesize strftime nl_langinfo setlocale)
AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat getaddrinfo) AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat getaddrinfo)
AC_REPLACE_FUNCS(mkdtemp) AC_REPLACE_FUNCS(mkdtemp setenv unsetenv)
AC_CHECK_TYPES([struct sigaction, sigset_t],,,[#include <signal.h>]) AC_CHECK_TYPES([struct sigaction, sigset_t],,,[#include <signal.h>])
# See if getopt is in libiberty. This is of course not optimal since # See if getopt is in libiberty. This is of course not optimal since