From 44117423282d692132898b29c2ba067a739003e8 Mon Sep 17 00:00:00 2001 From: Glenn Randers-Pehrson Date: Sun, 20 Feb 2011 06:17:22 -0600 Subject: [PATCH] [devel] Fixed scripts/makefile.vcwin32 --- ANNOUNCE | 5 +++-- CHANGES | 3 ++- scripts/makefile.vcwin32 | 8 ++++---- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/ANNOUNCE b/ANNOUNCE index 0623811ee..121325ec3 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,5 +1,5 @@ -Libpng 1.5.2beta03 - February 19, 2011 +Libpng 1.5.2beta03 - February 20, 2011 This is not intended to be a public release. It will be replaced within a few weeks by a public version or by another test version. @@ -48,7 +48,8 @@ Version 1.5.2beta02 [February 19, 2011] This documents the current behavior, where the callback is called after every row with information pertaining to the next row. -Version 1.5.2beta03 [February 19, 2011] +Version 1.5.2beta03 [February 20, 2011] + Fixed scripts/makefile.vcwin32 Send comments/corrections/commendations to png-mng-implement at lists.sf.net: (subscription required; visit diff --git a/CHANGES b/CHANGES index 558cd032c..137fd3257 100644 --- a/CHANGES +++ b/CHANGES @@ -3264,7 +3264,8 @@ Version 1.5.2beta02 [February 19, 2011] This documents the current behavior, where the callback is called after every row with information pertaining to the next row. -Version 1.5.2beta03 [February 19, 2011] +Version 1.5.2beta03 [February 20, 2011] + Fixed scripts/makefile.vcwin32 Send comments/corrections/commendations to png-mng-implement at lists.sf.net (subscription required; visit diff --git a/scripts/makefile.vcwin32 b/scripts/makefile.vcwin32 index e3b2b824c..6bfeac03f 100644 --- a/scripts/makefile.vcwin32 +++ b/scripts/makefile.vcwin32 @@ -1,6 +1,6 @@ # makefile for libpng # Copyright (C) 1998 Tim Wegner -# Copyright (C) 2006,2009 Glenn Randers-Pehrson +# Copyright (C) 2006,2009,2011 Glenn Randers-Pehrson # # This code is released under the libpng license. # For conditions of distribution and use, see the disclaimer @@ -15,7 +15,7 @@ CC = cl LD = link AR = lib -CFLAGS = -nologo -MD -O2 -W3 -I..\zlib +CFLAGS = -nologo -D_CRT_SECURE_NO_DEPRECATE -MD -O2 -W3 -I..\zlib LDFLAGS = -nologo ARFLAGS = -nologo RM = del @@ -36,8 +36,8 @@ OBJS = $(OBJS1) $(OBJS2) $(OBJS3) all: libpng.lib # see scripts/pnglibconf.mak for more options -pnglibconf.h: scripts/pnglibconf.h.prebuilt - cp scripts/pnglibconf.h.prebuilt $@ +pnglibconf.h: scripts\pnglibconf.h.prebuilt + copy scripts\pnglibconf.h.prebuilt $@ png$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h $(CC) -c $(CFLAGS) $*.c $(ERRFILE)