Commit 08e861c 1 parent 5441874 commit 08e861c Copy full SHA for 08e861c
File tree 2 files changed +14
-10
lines changed
2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ matrix:
9
9
10
10
- env : variant=test_debug lang=cpp11 sim=0 coverage=0 target=osx-tests
11
11
os : osx
12
- osx_image : xcode6.4
12
+ osx_image : xcode7.3
13
13
- env : variant=test_release lang=cpp11 sim=0 coverage=0 docs=1 target=osx-tests
14
14
os : osx
15
- osx_image : xcode6.4
15
+ osx_image : xcode7.3
16
16
- env : variant=test_debug lang=cpp98 sim=0 coverage=0 target=osx-tests
17
17
os : osx
18
- osx_image : xcode6.4
18
+ osx_image : xcode7.3
19
19
20
20
git :
21
21
submodules : false
@@ -47,14 +47,14 @@ addons:
47
47
48
48
before_install :
49
49
- git submodule update --init --recursive
50
- - if [ $TRAVIS_OS_NAME == "osx" ]; then brew update > /dev/null && brew install --quiet ccache boost-build boost-python; fi
50
+ - if [ $TRAVIS_OS_NAME == "osx" ]; then brew update > /dev/null && brew install ccache boost-build boost-python; fi
51
51
- ' if [[ $TRAVIS_OS_NAME == "osx" && $docs = "1" ]]; then
52
52
easy_install --user docutils;
53
53
mkdir -p /Users/travis/Library/Python/2.7/lib/python/site-packages;
54
54
echo '' import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")'' >> /Users/travis/Library/Python/2.7/lib/python/site-packages/homebrew.pth;
55
55
easy_install --user Pygments;
56
56
easy_install --user aafigure;
57
- brew install --quiet graphviz hunspell;
57
+ brew install graphviz hunspell;
58
58
easy_install --user Pillow;
59
59
fi'
60
60
Original file line number Diff line number Diff line change 30
30
{
31
31
local boost-lib-search-path =
32
32
<search>/opt/local/lib
33
- <search>/usr/lib
34
33
<search>/usr/local/lib
35
34
<search>/sw/lib
36
35
<search>/usr/g++/lib
@@ -547,13 +546,18 @@ lib gcc : : <name>gcc <link>static ;
547
546
# when using iconv
548
547
lib libiconv : : <name>iconv <link>shared <search>/usr/local/lib ;
549
548
550
- # openssl on linux/bsd/macos etc.
549
+ # openssl on linux/bsd etc.
551
550
lib gcrypt : : <name>gcrypt <link>shared <search>/opt/local/lib ;
552
- lib z : : <link>shared <name>z <search>/usr/lib ;
553
- lib crypto : : <name>crypto <link>shared <search>/usr/lib <use>z : : <include>/opt/local/include ;
554
- lib ssl : : <name>ssl <link>shared <use>crypto <search>/opt/local/lib : : <include>/opt/local/include ;
551
+ lib z : : <link>shared <name>z ;
555
552
lib dl : : <link>shared <name>dl ;
556
553
554
+ # pick up openssl on macos from brew
555
+ lib crypto : : <name>crypto <use>z <target-os>darwin <search>/usr/local/opt/openssl/lib : <link>shared : <include>/usr/local/opt/openssl/include ;
556
+ lib ssl : : <name>ssl <use>crypto <target-os>darwin <search>/usr/local/opt/openssl/lib : <link>shared : <include>/usr/local/opt/openssl/include ;
557
+
558
+ lib crypto : : <name>crypto <use>z : <link>shared ;
559
+ lib ssl : : <name>ssl <use>crypto : <link>shared ;
560
+
557
561
# time functions used on linux require librt
558
562
lib librt : : <name>rt <link>shared ;
559
563
You can’t perform that action at this time.
0 commit comments