Skip to content

Commit

Permalink
auto-found libevent comes last
Browse files Browse the repository at this point in the history
  • Loading branch information
steveyen committed Jun 9, 2010
1 parent cd42b62 commit 17129c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions configure.ac
Expand Up @@ -281,16 +281,16 @@ LIBS="$LIBS -levent"


if test $ac_cv_libevent_dir != "(system)"; then if test $ac_cv_libevent_dir != "(system)"; then
if test -d "$ac_cv_libevent_dir/lib" ; then if test -d "$ac_cv_libevent_dir/lib" ; then
LDFLAGS="-L$ac_cv_libevent_dir/lib $LDFLAGS" LDFLAGS="$LDFLAGS -L$ac_cv_libevent_dir/lib"
le_libdir="$ac_cv_libevent_dir/lib" le_libdir="$ac_cv_libevent_dir/lib"
else else
LDFLAGS="-L$ac_cv_libevent_dir $LDFLAGS" LDFLAGS="$LDFLAGS -L$ac_cv_libevent_dir"
le_libdir="$ac_cv_libevent_dir" le_libdir="$ac_cv_libevent_dir"
fi fi
if test -d "$ac_cv_libevent_dir/include" ; then if test -d "$ac_cv_libevent_dir/include" ; then
CPPFLAGS="-I$ac_cv_libevent_dir/include $CPPFLAGS" CPPFLAGS="$CPPFLAGS -I$ac_cv_libevent_dir/include"
else else
CPPFLAGS="-I$ac_cv_libevent_dir $CPPFLAGS" CPPFLAGS="$CPPFLAGS -I$ac_cv_libevent_dir"
fi fi
fi fi


Expand Down

0 comments on commit 17129c9

Please sign in to comment.