mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 12:22:39 -03:00
Add MacPorts default include/lib paths for OSX
This commit is contained in:
parent
78fb796997
commit
a86f241d08
1 changed files with 7 additions and 0 deletions
|
@ -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],
|
||||
|
|
Loading…
Reference in a new issue