Skip to content

Commit 48b7e23

Browse files
committed
updated configure options to include -DBOOST_NO_CXX11_SCOPED_ENUMS
1 parent dc1b5bc commit 48b7e23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $DIR/install_locales.sh $(grep -F posix_locale $DIR/../locales/*.json | sed -e "
2222
for dep in midgard baldr; do
2323
pushd deps/$dep
2424
./autogen.sh
25-
./configure CPPFLAGS=-DBOOST_SPIRIT_THREADSAFE
25+
./configure CPPFLAGS="-DBOOST_SPIRIT_THREADSAFE -DBOOST_NO_CXX11_SCOPED_ENUMS"
2626
make -j$(nproc)
2727
sudo make install
2828
popd

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ set -e
33

44
export LD_LIBRARY_PATH=.:`cat /etc/ld.so.conf.d/* | grep -v -E "#" | tr "\\n" ":" | sed -e "s/:$//g"`
55
./autogen.sh
6-
./configure --enable-coverage CPPFLAGS=-DBOOST_SPIRIT_THREADSAFE
6+
./configure --enable-coverage CPPFLAGS="-DBOOST_SPIRIT_THREADSAFE -DBOOST_NO_CXX11_SCOPED_ENUMS"
77
make test -j$(nproc)
88
sudo make install

0 commit comments

Comments
 (0)