1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00
freebsd-ports/www/crawl/files/patch-configure
Dmitry Marakasov 67e9a69b83 - Switch to options helpers
- Regenerate patches
- Update WWW
2017-12-25 09:00:39 +00:00

18 lines
737 B
Plaintext

--- configure.orig 2003-05-18 01:50:55 UTC
+++ configure
@@ -2545,11 +2545,11 @@ echo "${ECHO_T}no" >&6
*)
echo "$as_me:$LINENO: result: $withval" >&5
echo "${ECHO_T}$withval" >&6
- if test -f $withval/event.h -a -f $withval/libevent.a; then
+ if test -f $withval/include/event.h -a -f $withval/lib/libevent.a; then
owd=`pwd`
if cd $withval; then withval=`pwd`; cd $owd; fi
- EVENTINC="-I$withval"
- EVENTLIB="-L$withval -levent"
+ EVENTINC="-I$withval/include"
+ EVENTLIB="-L$withval/lib -levent"
else
{ { echo "$as_me:$LINENO: error: event.h or libevent.a not found in $withval" >&5
echo "$as_me: error: event.h or libevent.a not found in $withval" >&2;}