diff options
author | fanquake <fanquake@gmail.com> | 2021-08-16 14:28:40 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-11-16 07:51:29 +0800 |
commit | 5b93e65f6abfd174a56cf50c952ca5d5c3833859 (patch) | |
tree | 764b51c90425898692c9ee28b6d47fd3c441eae0 /configure.ac | |
parent | dbfca4a815d2dbef69f3b634c24b875bc1d22afc (diff) |
build: remove D__STDC_FORMAT_MACROS from CPPFLAGS
This was used to expose additional formatting macros in glibs / std
libs. However this is no-longer required now that we require glibc
2.18+.
See https://sourceware.org/bugzilla/show_bug.cgi?id=15366.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 3c035ab614..0443dd9d5c 100644 --- a/configure.ac +++ b/configure.ac @@ -581,7 +581,7 @@ CXXFLAGS="$TEMP_CXXFLAGS" fi -CPPFLAGS="$CPPFLAGS -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS" +CPPFLAGS="$CPPFLAGS -DHAVE_BUILD_INFO" AC_ARG_WITH([utils], [AS_HELP_STRING([--with-utils], |