freebsd-ports/news/inn-current/files/patch-configure
Shaun Amott 62491c7999 Overhaul for the inn ports:
- Turn inn-stable and inn-current into slaves, as they are pretty much
  clones of news/inn.
- Update the above ports to recent snapshots.
- Allow inn's database and spool directories to be placed outside
  PREFIX (e.g. under /var).
- Add OPTIONS knobs.
2006-10-31 02:35:52 +00:00

57 lines
2.1 KiB
Text

--- configure.orig Tue Oct 24 18:54:13 2006
+++ configure Tue Oct 24 20:49:19 2006
@@ -24229,52 +24229,11 @@
{ echo "$as_me:$LINENO: checking for Berkeley DB location" >&5
echo $ECHO_N "checking for Berkeley DB location... $ECHO_C" >&6; }
- if test x"$DB_DIR" = xyes ; then
- for version in BerkeleyDB.4.4 BerkeleyDB.4.3 BerkeleyDB.4.2 \
- BerkeleyDB.4.1 BerkeleyDB.4.0 \
- BerkeleyDB.3.3 BerkeleyDB.3.2 BerkeleyDB.3.1 \
- BerkeleyDB.3.0 BerkeleyDB ; do
- if test -d "/usr/local/$version" ; then
- DB_DIR=/usr/local/$version
- break
- fi
- done
- fi
-
- if test x"$DB_DIR" = xyes ; then
- for version in db44 db43 db42 db41 db4 db3 db2 ; do
- if test -d "/usr/local/include/$version" ; then
- DB_CPPFLAGS="-I/usr/local/include/$version"
+ DB_CPPFLAGS="-I/usr/local/include/${DB_VER}"
DB_LDFLAGS="-L/usr/local/lib"
- DB_LIBS="-l$version"
+ DB_LIBS="-l${DB_VER}"
{ echo "$as_me:$LINENO: result: FreeBSD locations" >&5
echo "${ECHO_T}FreeBSD locations" >&6; }
- break
- fi
- done
- if test x"$DB_LIBS" = x ; then
- for version in db44 db43 db42 db41 db4 db3 db2 ; do
- if test -d "/usr/include/$version" ; then
- DB_CPPFLAGS="-I/usr/include/$version"
- DB_LIBS="-l$version"
- { echo "$as_me:$LINENO: result: Red Hat locations" >&5
-echo "${ECHO_T}Red Hat locations" >&6; }
- break
- fi
- done
- if test x"$DB_LIBS" = x ; then
- DB_LIBS=-ldb
- { echo "$as_me:$LINENO: result: trying -ldb" >&5
-echo "${ECHO_T}trying -ldb" >&6; }
- fi
- fi
- else
- DB_CPPFLAGS="-I$DB_DIR/include"
- DB_LDFLAGS="-L$DB_DIR/lib"
- DB_LIBS="-ldb"
- { echo "$as_me:$LINENO: result: $DB_DIR" >&5
-echo "${ECHO_T}$DB_DIR" >&6; }
- fi
cat >>confdefs.h <<\_ACEOF
#define USE_BERKELEY_DB 1