r15555@tombo: nickm | 2008-05-08 19:56:51 -0400

fwd-port The IRIX compiler thinks #error means warn.  Fix configure.in to tolerate this.


svn:r801
This commit is contained in:
Nick Mathewson 2008-05-08 23:57:31 +00:00
parent 8acb80b4f9
commit 64ce799083
2 changed files with 4 additions and 3 deletions

View File

@ -96,6 +96,7 @@ Changes in current version:
o migrate the evhttp header to event2/ but accessors are still missing.
o deprecate timeout_* event functions by moving them to event_compat.h
o Move windows gettimeofday replacement into a new evutil_gettimeofday().
o Make configure script work on IRIX.
Changes in 1.4.0:

View File

@ -130,9 +130,9 @@ dnl - (this is how we check for a windows version of GCC)
AC_MSG_CHECKING(for WIN32)
AC_TRY_COMPILE(,
[
#ifndef WIN32
#error
#endif
#ifndef WIN32
die horribly
#endif
],
bwin32=true; AC_MSG_RESULT(yes),
bwin32=false; AC_MSG_RESULT(no),