aboutsummaryrefslogtreecommitdiff
path: root/www/crawl/files
diff options
context:
space:
mode:
authorDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2001-06-23 16:09:53 +0000
committerDavid W. Chapman Jr. <dwcjr@FreeBSD.org>2001-06-23 16:09:53 +0000
commit302ddeb73e4485411c6ccb4dbc8d317879222dba (patch)
tree821fd4b1cec4d66d83d4ac4c891d8fc73127f184 /www/crawl/files
parentcb1d95a5762937e7d8a54e4d881ec7d453e843c0 (diff)
downloadports-302ddeb73e4485411c6ccb4dbc8d317879222dba.tar.gz
ports-302ddeb73e4485411c6ccb4dbc8d317879222dba.zip
Notes
Diffstat (limited to 'www/crawl/files')
-rw-r--r--www/crawl/files/patch-configure.in17
1 files changed, 17 insertions, 0 deletions
diff --git a/www/crawl/files/patch-configure.in b/www/crawl/files/patch-configure.in
new file mode 100644
index 000000000000..9de236fb45a9
--- /dev/null
+++ b/www/crawl/files/patch-configure.in
@@ -0,0 +1,17 @@
+--- configure.in.orig Wed Jun 20 14:41:44 2001
++++ configure.in Wed Jun 20 17:30:07 2001
+@@ -38,11 +38,11 @@
+ ;;
+ *)
+ AC_MSG_RESULT($withval)
+- 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
+ AC_ERROR(event.h or libevent.a not found in $withval)
+ fi