Remove -D__STDC_FORMAT_MACROS from CXXFLAGS
The inttypes defines are no longer used anywhere due to that agi::Format doesn't require them.
This commit is contained in:
parent
c1a7ba0009
commit
71b74a6e86
2 changed files with 1 additions and 2 deletions
|
@ -125,7 +125,6 @@
|
|||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>
|
||||
__STDC_FORMAT_MACROS;
|
||||
NOMINMAX;
|
||||
%(PreprocessorDefinitions)
|
||||
</PreprocessorDefinitions>
|
||||
|
|
|
@ -4,7 +4,7 @@ PROGRAM += $(d)src
|
|||
|
||||
src_CPPFLAGS := -I$(d) -I.. -I$(d)include -I$(TOP)libaegisub/include -I$(TOP)build \
|
||||
$(CFLAGS_PTHREAD) $(CFLAGS_FFTW3) $(CFLAGS_ICU)
|
||||
src_CXXFLAGS := -D__STDC_FORMAT_MACROS $(CXXFLAGS_WX)
|
||||
src_CXXFLAGS := $(CXXFLAGS_WX)
|
||||
src_LIBS := $(LIBS_GL) $(LIBS_PTHREAD) $(LIBS_WX) $(LIBS_FREETYPE) \
|
||||
$(LIBS_LIBASS) $(LIBS_FONTCONFIG) $(LIBS_FFTW3) $(LIBS_BOOST) $(LIBS_ICU)
|
||||
src_PCH := $(d)agi_pre.h
|
||||
|
|
Loading…
Reference in a new issue