diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-02-10 13:17:32 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-02-10 13:17:32 +0100 |
commit | 78f921261af3a1cbf79b5ad41c82d332968e2d89 (patch) | |
tree | 8c9db88efe553090bce02d257b9f06f3662b0143 /configure.ac | |
parent | aac639e82dd773b9f1079d92156d3dfc99d5f08f (diff) | |
download | gnutls-78f921261af3a1cbf79b5ad41c82d332968e2d89.tar.gz |
fixes to allow libopts to compile in windows
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index b992f35d09..7aa4148930 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ dnl Process this file with autoconf to produce a configure script. # USA AC_PREREQ(2.61) -AC_INIT([GnuTLS], [3.0.12], [bug-gnutls@gnu.org]) +AC_INIT([GnuTLS], [3.0.13], [bug-gnutls@gnu.org]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) @@ -118,7 +118,7 @@ AC_C_BIGENDIAN dnl No fork on MinGW, disable some self-tests until we fix them. -AC_CHECK_FUNCS([fork getrusage getpwuid_r daemon],,) +AC_CHECK_FUNCS([fork getrusage getpwuid_r daemon fchmod],,) AM_CONDITIONAL(HAVE_FORK, test "$ac_cv_func_fork" != "no") AC_LIB_HAVE_LINKFLAGS(pthread,, [#include <pthread.h>], [pthread_mutex_lock (0);]) |