summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--.gitmodules3
-rw-r--r--lib/Makefile14
m---------lib/boost0
4 files changed, 9 insertions, 9 deletions
diff --git a/.gitignore b/.gitignore
index 10d577d4..521720c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -70,6 +70,7 @@
/ledger.info
/ledger.so
/libtool
+/lib/boost*
/ltmain.sh
/make.deps
/make.sh
diff --git a/.gitmodules b/.gitmodules
index d6c8ead2..1352a8bb 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,6 +1,3 @@
-[submodule "lib/boost"]
- path = lib/boost
- url = git://repo.or.cz/boost.git
[submodule "lib/gdtoa"]
path = lib/gdtoa
url = git://github.com/jwiegley/gdtoa.git
diff --git a/lib/Makefile b/lib/Makefile
index 09894134..ff4c0d08 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -9,17 +9,19 @@ STOW_ROOT = /usr/local/stow
HERE = $(shell pwd)
+BOOST_VER = 1_37_0
+
# architecture=combined
boost-release:
- (cd boost && \
- bjam release -j3 --prefix=$(STOW_ROOT)/boost \
- --build-dir=$(HERE)/boost/build --toolset=darwin \
+ (cd boost_$(BOOST_VER) && \
+ bjam release -j3 --prefix=$(STOW_ROOT)/boost_$(BOOST_VER) \
+ --build-dir=$(HERE)/boost_$(BOOST_VER)/build --toolset=darwin \
--build-type=complete install)
boost-debug:
- (cd boost && \
- bjam debug -j3 --prefix=$(STOW_ROOT)/boost \
- --build-dir=$(HERE)/boost/build --toolset=darwin \
+ (cd boost_$(BOOST_VER) && \
+ bjam debug -j3 --prefix=$(STOW_ROOT)/boost_$(BOOST_VER) \
+ --build-dir=$(HERE)/boost_$(BOOST_VER)/build --toolset=darwin \
--build-type=complete \
define=_GLIBCXX_DEBUG=1 install)
diff --git a/lib/boost b/lib/boost
deleted file mode 160000
-Subproject 39d1e20cb03d22465f8d8884f744d254dfbfa0c