Disabled precompiled headers for png library,
since it seemed to mess up compilation
Moved EXTRACPPFLAGS to end of command line so they
override current settings


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17176 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2002-09-14 17:23:21 +00:00
parent 3be6aea994
commit e438abe584
2 changed files with 5 additions and 1 deletions

View File

@ -137,7 +137,7 @@ LINK_FLAGS= /Tpd /c $(EXTRALINKFLAGS)
!endif
CFG=$(CFG).cfg
CPPFLAGS=$(CPPFLAGS) $(DLL_FLAGS) $(EXTRACPPFLAGS) @$(CFG)
CPPFLAGS=$(CPPFLAGS) $(DLL_FLAGS) @$(CFG) $(EXTRACPPFLAGS)
DUMMY=dummy

View File

@ -17,5 +17,9 @@ OBJECTS = png.obj pngread.obj pngrtran.obj pngrutil.obj \
pngpread.obj pngtrans.obj pngwrite.obj pngwtran.obj pngwutil.obj \
pngerror.obj pngmem.obj pngwio.obj pngrio.obj pngget.obj pngset.obj
# Precompiled headers seem to interfere with correct compilation
# of png library, so switch them off
EXTRACPPFLAGS=-H-
!include $(WXWIN)\src\makelib.b32