freebsd-ports/news/inn-current/files/patch-configure
Daichi GOTO 5471197f6a update: news/inn
- Now config files are not removed
  - add many knobs
  - Use USE_OPENSSL hook

PR:		57160
Submitted by:	Clement Laforet <sheepkiller@cultdeadsheep.org> (maintainer)
2003-09-26 06:32:40 +00:00

15 lines
664 B
Text

--- configure.orig Mon Sep 22 11:31:16 2003
+++ configure Mon Sep 22 11:32:15 2003
@@ -5828,9 +5828,9 @@
fi
if test x"$BERKELEY_DB_DIR" = xyes ; then
for v in db4 db3 db2 ; do
- if test -d "/usr/local/include/$v" ; then
- BERKELEY_DB_LDFLAGS="-L/usr/local/lib"
- BERKELEY_DB_CFLAGS="-I/usr/local/include/$v"
+ if test -d "${LOCALBASE}/include/$v" ; then
+ BERKELEY_DB_LDFLAGS="-L${LOCALBASE}/lib"
+ BERKELEY_DB_CFLAGS="-I${LOCALBASE}/include/$v"
BERKELEY_DB_LIB="-l$v"
echo "$ac_t""FreeBSD locations" 1>&6
break