diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-02-24 19:10:35 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-02-24 19:10:35 +0000 |
commit | 988092f67482e72d0adc272979b693d9b4e55a6c (patch) | |
tree | 2a45ae7e5495a0941d15ce25fa965fae5e94a562 /configure.in | |
parent | d4ad70af5fb3d2a8ed792a150201b84561531370 (diff) | |
download | tor-988092f67482e72d0adc272979b693d9b4e55a6c.tar.gz tor-988092f67482e72d0adc272979b693d9b4e55a6c.zip |
r11921@catbus: nickm | 2007-02-24 14:09:12 -0500
Try to build with recent libevents on mingw.
svn:r9639
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 013241fe47..b41b29428e 100644 --- a/configure.in +++ b/configure.in @@ -196,6 +196,12 @@ fi dnl ------------------------------------------------------ dnl Where do you live, libevent? And how do we call you? +dnl This is a disgusting hack so we safely include recent libevent headers. +AC_CHECK_TYPE(u_int64_t, unsigned long long) +AC_CHECK_TYPE(u_int32_t, unsigned long) +AC_CHECK_TYPE(u_int16_t, unsigned short) +AC_CHECK_TYPE(u_int8_t, unsigned char) + AC_CACHE_CHECK([for libevent directory], tor_cv_libevent_dir, [ saved_LIBS="$LIBS" saved_LDFLAGS="$LDFLAGS" |