Modified:
trunk/configure.ac
Log:
point to system includes and libs if found; caught by j...@oberheide.org
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Fri Sep 12 14:05:13 2008
@@ -37,7 +37,9 @@
;;
esac ],
[ if test -f /usr/include/event.h -a -f /usr/lib/libevent.a; then
- EVENTLIB="-levent"
+ # XXX - setup.py.in cruft
+ EVENTINC="-I/usr/include"
+ EVENTLIB="-L/usr/lib -levent"
elif test -f ${prefix}/include/event.h -a -f ${prefix}/lib/libevent.a;
then
EVENTINC="-I${prefix}/include"
EVENTLIB="-L${prefix}/lib -levent"