We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 366f5fe commit 627f516Copy full SHA for 627f516
1 file changed
configure.ac
@@ -10921,6 +10921,11 @@ fi
10921
LIB_SOCKET_NSL
10922
AX_HARDEN_CC_COMPILER_FLAGS
10923
10924
+# -Wdeprecated-enum-enum-conversion is on by default in C++20, but conflicts with
10925
+# our use of enum constructs to define fungible constants.
10926
+AX_CHECK_COMPILE_FLAG([-Werror -Wno-deprecated-enum-enum-conversion],
10927
+ [AX_APPEND_FLAG([-Wno-deprecated-enum-enum-conversion], [AM_CFLAGS])])
10928
+
10929
case $host_os in
10930
mingw*)
10931
# if mingw then link to ws2_32 for sockets, and crypt32
0 commit comments