diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-08-30 22:22:15 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-08-30 22:22:15 -0400 |
commit | 0ac4b0f99d12a76f07f24d747a77f2bc07e481e3 (patch) | |
tree | 35543fe7969e3da794709d411d011c6f42d58731 /configure.in | |
parent | 03760f6c6f0c580542c8bfc519062b65afdc8d5f (diff) | |
download | tor-0ac4b0f99d12a76f07f24d747a77f2bc07e481e3.tar.gz tor-0ac4b0f99d12a76f07f24d747a77f2bc07e481e3.zip |
Check for lround with autoconf; fall back to rint.
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 4e84298456..df1b70978b 100644 --- a/configure.in +++ b/configure.in @@ -223,7 +223,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 getaddrinfo localtime_r gmtime_r memmem strtok_r writev readv flock prctl vasprintf) +AC_CHECK_FUNCS(gettimeofday ftime socketpair uname inet_aton strptime getrlimit strlcat strlcpy strtoull getaddrinfo localtime_r gmtime_r memmem strtok_r writev readv flock prctl vasprintf lround rint) using_custom_malloc=no if test x$enable_openbsd_malloc = xyes ; then |