diff options
author | John Wiegley <johnw@newartisans.com> | 2009-10-09 19:50:23 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-10-09 19:50:23 -0400 |
commit | 475014a14be8a1ee4a82075113f8ca11ceca9f5b (patch) | |
tree | 77e3f7a909bbdefb4983225ae6da65123e23ef24 /lib | |
parent | 071273aa3e81e3bfc15266d432582b10959acb95 (diff) | |
download | fork-ledger-475014a14be8a1ee4a82075113f8ca11ceca9f5b.tar.gz fork-ledger-475014a14be8a1ee4a82075113f8ca11ceca9f5b.tar.bz2 fork-ledger-475014a14be8a1ee4a82075113f8ca11ceca9f5b.zip |
Added some missing casts, upgraded to Boost 1.40
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Makefile b/lib/Makefile index 38ff924d..709358df 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -8,20 +8,20 @@ STOW_ROOT = /usr/local/stow BOOST_SOURCE = boost -BOOST_VERSION = 1_39_0 +BOOST_VERSION = 1_40_0 # architecture=combined boost-release: (cd $(BOOST_SOURCE) && \ - bjam release -j3 --prefix=$(STOW_ROOT)/boost_$(BOOST_VERSION) \ + bjam release -j16 --prefix=$(STOW_ROOT)/boost_$(BOOST_VERSION) \ --build-dir=$(HOME)/Products/boost_$(BOOST_VERSION) \ - --toolset=darwin --build-type=complete install) + --toolset=darwin --build-type=complete --layout=versioned install) boost-debug: (cd $(BOOST_SOURCE) && \ - bjam debug -j3 --prefix=$(STOW_ROOT)/boost_$(BOOST_VERSION) \ + bjam debug -j16 --prefix=$(STOW_ROOT)/boost_$(BOOST_VERSION) \ --build-dir=$(HOME)/Products/boost_$(BOOST_VERSION) \ - --toolset=darwin --build-type=complete \ + --toolset=darwin --build-type=complete --layout=versioned \ define=_GLIBCXX_DEBUG=1 install) boost-build: boost-release boost-debug |