diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-11-26 16:10:56 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-11-26 16:10:56 +0000 |
commit | bc597758dc79008226a25c0f11a8713709b94f2f (patch) | |
tree | 7398d99764d7b0af7454010b12d6adf4db1e54b1 /configure.in | |
parent | cfd21c58b538c7f967b41b87619b8147d17bf17d (diff) | |
download | tor-bc597758dc79008226a25c0f11a8713709b94f2f.tar.gz tor-bc597758dc79008226a25c0f11a8713709b94f2f.zip |
Use fcntl for file locking when flock() is not available.
svn:r17391
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index c08c12b9ea..37c241efda 100644 --- a/configure.in +++ b/configure.in @@ -196,7 +196,7 @@ dnl ------------------------------------------------------------------- dnl Check for functions before libevent, since libevent-1.2 apparently dnl exports strlcpy without defining it in a header. -AC_CHECK_FUNCS(gettimeofday ftime socketpair uname inet_aton strptime getrlimit strlcat strlcpy strtoull ftello getaddrinfo localtime_r gmtime_r memmem strtok_r inet_pton inet_ntop writev readv) +AC_CHECK_FUNCS(gettimeofday ftime socketpair uname inet_aton strptime getrlimit strlcat strlcpy strtoull ftello getaddrinfo localtime_r gmtime_r memmem strtok_r inet_pton inet_ntop writev readv flock) using_custom_malloc=no if test x$enable_openbsd_malloc = xyes ; then |