We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a1d03c + 4c69ebe commit 12c05eeCopy full SHA for 12c05ee
configure.ac
@@ -244,8 +244,12 @@ case $host in
244
AC_CHECK_PROG([PORT],port, port)
245
if test x$PORT = xport; then
246
dnl add default macports paths
247
- CPPFLAGS="$CPPFLAGS -isystem /opt/local/include -I/opt/local/include/db48"
248
- LIBS="$LIBS -L/opt/local/lib -L/opt/local/lib/db48"
+ CPPFLAGS="$CPPFLAGS -isystem /opt/local/include"
+ LIBS="$LIBS -L/opt/local/lib"
249
+ if test -d /opt/local/include/db48; then
250
+ CPPFLAGS="$CPPFLAGS -I/opt/local/include/db48"
251
+ LIBS="$LIBS -L/opt/local/lib/db48"
252
+ fi
253
fi
254
255
AC_CHECK_PROG([BREW],brew, brew)
0 commit comments