diff options
author | lloyd <[email protected]> | 2015-02-21 14:14:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-02-21 14:14:45 +0000 |
commit | 5ef7108d620a00ce5b2f6997c8b6ffc0708467d6 (patch) | |
tree | 670771c55dfb1e77e0783cd791355327ecdf1ef6 /src/build-data/makefile | |
parent | ee2ac0c46d0c76e04b0fa68f9bb73825b60a4b09 (diff) |
Hide all uses of boost filesystem in fs.cpp. Use readdir as an
alternate implementation for Unix and add some feature checks so a
boost-free build of the tests and command line are possible again.
Diffstat (limited to 'src/build-data/makefile')
-rw-r--r-- | src/build-data/makefile/header.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build-data/makefile/header.in b/src/build-data/makefile/header.in index 6594cab69..d83529d5f 100644 --- a/src/build-data/makefile/header.in +++ b/src/build-data/makefile/header.in @@ -9,8 +9,8 @@ SO_OBJ_FLAGS = %{shared_flags} LIB_LINK_CMD = %{so_link} LIB_LINKS_TO = %{link_to} -APP_LINKS_TO = $(LIB_LINKS_TO) -lboost_system -TEST_LINKS_TO = $(LIB_LINKS_TO) -lboost_filesystem -lboost_system +APP_LINKS_TO = $(LIB_LINKS_TO) +TEST_LINKS_TO = $(LIB_LINKS_TO) LIB_FLAGS = $(SO_OBJ_FLAGS) $(LANG_FLAGS) $(LIB_OPT) $(WARN_FLAGS) APP_FLAGS = $(LANG_FLAGS) $(APP_OPT) $(WARN_FLAGS) |