Merge pull request #17

a86f241 Add MacPorts default include/lib paths for OSX (Peter Dettman)
This commit is contained in:
Pieter Wuille
2014-06-02 10:51:34 +02:00

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],