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
commit 5355746867
No known key found for this signature in database
GPG Key ID: 8F653255C87992E0
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],