diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-05-17 03:46:23 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-05-17 03:46:23 +0000 |
commit | 08ae126f9b0484b99f7569e8f2fe3138abe18029 (patch) | |
tree | 48873a0343a40485fa975a23ffeb2ec57683ea3c | |
parent | e3691c37ca4a62c3a923b992748cc3789dcf5a7a (diff) | |
download | tor-08ae126f9b0484b99f7569e8f2fe3138abe18029.tar.gz tor-08ae126f9b0484b99f7569e8f2fe3138abe18029.zip |
Normal is good.
svn:r4250
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index a813b9a759..ee1eff64cd 100644 --- a/configure.in +++ b/configure.in @@ -61,7 +61,7 @@ dnl ------------------------------------------------------ dnl Where do you live, libevent? -AC_CACHE_CHECK([for libevent], ac_cv_libevent_normal, [ +AC_CACHE_CHECK([for a normal libevent], ac_cv_libevent_normal, [ saved_LIBS="$LIBS" LIBS="$LIBS -levent" AC_TRY_RUN([ @@ -76,7 +76,7 @@ int main(void) ]) -if test "$ac_cv_libevent_normal" = no; then +if test "$ac_cv_libevent_normal" = yes; then LIBS="$LIBS -levent" else AC_CACHE_CHECK([for libevent in /usr/local/lib], ac_cv_libevent_local, [ |