Skip to content

Commit

Permalink
Actually respect USE_BOOST_STRING_REF.
Browse files Browse the repository at this point in the history
  • Loading branch information
tgockel committed Sep 28, 2014
1 parent 8ae01ef commit 8b363ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ CXX_COMPILER ?= c++
CXX_FLAGS ?= $(CXX_STANDARD) -c $(CXX_WARNINGS) -ggdb -fPIC $(CXX_FLAGS_$(CONF))
CXX_INCLUDES ?= -I$(SRC_DIR) -I$(HEADER_DIR)
CXX_STANDARD ?= --std=c++11
CXX_DEFINES ?= -DJSONV_REGEX_USE_BOOST=$(USE_BOOST_REGEX) \
-DJSONV_STRING_REF_USE_BOOST=$(USE_BOOST_REGEX) \
CXX_DEFINES ?= -DJSONV_REGEX_USE_BOOST=$(USE_BOOST_REGEX) \
-DJSONV_STRING_REF_USE_BOOST=$(USE_BOOST_STRING_REF) \
-DJSONV_STRING_REF_USE_STD=$(USE_STD_STRING_REF)
CXX_WARNINGS ?= -Werror -Wall -Wextra
LD = $(CXX_COMPILER) $(LD_PATHS) $(LD_FLAGS)
Expand Down

0 comments on commit 8b363ad

Please sign in to comment.