8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 16:43:03 +01:00

additional fix for building with ICU 76.1 (v4.0-release)

Another define is needed to avoid C++ code in ICU 76.1 headers that otherwise require -std=c++17
This commit is contained in:
real-dam 2025-01-16 14:03:01 +00:00 committed by Alexander Peshkov
parent 9136116f7f
commit 76159a3659

View File

@ -103,8 +103,8 @@ GLOB_OPTIONS:=
#____________________________________________________________________________
# Global c++ flags: firebird needs no RTTI, choose build standard, make it build with icu-75.1
PLUSPLUS_FLAGS:= -fno-rtti -std=c++11 -DU_SHOW_CPLUSPLUS_API=0
# Global c++ flags: firebird needs no RTTI, choose build standard, make it build with icu-76.1
PLUSPLUS_FLAGS:= -fno-rtti -std=c++11 -DU_SHOW_CPLUSPLUS_API=0 -DU_SHOW_CPLUSPLUS_HEADER_API=0
# If this is defined then we use special rules useful for developers only
IsDeveloper = @DEVEL_FLG@