Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Core
Tor
Commits
988092f6
Commit
988092f6
authored
Feb 24, 2007
by
Nick Mathewson
🎨
Browse files
r11921@catbus: nickm | 2007-02-24 14:09:12 -0500
Try to build with recent libevents on mingw. svn:r9639
parent
d4ad70af
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
988092f6
...
...
@@ -55,6 +55,8 @@ Changes in version 0.1.2.8-alpha - 2007-??-??
back online.
- On a malformed DNS reply, always give an error to the corresponding
DNS request.
- Build with recent libevents on platforms that do not define the
nonstandard types "u_int8_t" and friends.
o Minor features (controller):
- Warn the user when an application uses the obsolete binary v0
...
...
configure.in
View file @
988092f6
...
...
@@ -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"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment