Merge pull request #5395

4c69ebe Add /opt/local/include/db48 only if it exists. (Pavel Janík)
This commit is contained in:
Wladimir J. van der Laan 2014-12-10 08:16:29 +01:00
commit 12c05ee938
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 6 additions and 2 deletions

View File

@ -244,8 +244,12 @@ case $host in
AC_CHECK_PROG([PORT],port, port)
if test x$PORT = xport; then
dnl add default macports paths
CPPFLAGS="$CPPFLAGS -isystem /opt/local/include -I/opt/local/include/db48"
LIBS="$LIBS -L/opt/local/lib -L/opt/local/lib/db48"
CPPFLAGS="$CPPFLAGS -isystem /opt/local/include"
LIBS="$LIBS -L/opt/local/lib"
if test -d /opt/local/include/db48; then
CPPFLAGS="$CPPFLAGS -I/opt/local/include/db48"
LIBS="$LIBS -L/opt/local/lib/db48"
fi
fi
AC_CHECK_PROG([BREW],brew, brew)