Add MacPorts default include/lib paths for OSX

This commit is contained in:
Peter Dettman 2014-05-20 11:39:54 +07:00
parent 78fb796997
commit a86f241d08
1 changed files with 7 additions and 0 deletions

View File

@ -29,6 +29,13 @@ case $host in
;;
esac
case $host_os in
darwin*)
CPPFLAGS="$CPPFLAGS -I/opt/local/include"
LDFLAGS="$LDFLAGS -L/opt/local/lib"
;;
esac
AC_ARG_ENABLE(benchmark,
AS_HELP_STRING([--enable-benchmark],[compile benchmark (default is yes)]),
[use_benchmark=$enableval],