From 00768a2d760a734577cacd1e7b4821b3098871bb Mon Sep 17 00:00:00 2001 From: Glenn Randers-Pehrson Date: Thu, 3 Sep 2009 13:23:59 -0500 Subject: [PATCH] [devel] Removed scripts/libpng.icc --- ANNOUNCE | 5 +++-- CHANGES | 3 ++- INSTALL | 3 +-- README | 3 +-- scripts/libpng.icc | 47 ---------------------------------------------- 5 files changed, 7 insertions(+), 54 deletions(-) delete mode 100644 scripts/libpng.icc diff --git a/ANNOUNCE b/ANNOUNCE index 9e13a6dc5..c91550c93 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,5 +1,5 @@ -Libpng 1.4.0beta80 - September 1, 2009 +Libpng 1.4.0beta80 - September 3, 2009 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. @@ -544,7 +544,8 @@ version 1.4.0beta79 [September 1, 2009] Eliminated PNG_GLOBAL_ARRAYS and PNG_LOCAL_ARRAYS; always use local arrays. Eliminated PNG_CALLOC_SUPPORTED macro and always provide png_calloc(). -version 1.4.0beta80 [September 1, 2009] +version 1.4.0beta80 [September 3, 2009] + Removed scripts/libpng.icc version 1.4.0betaN [future] Build shared libraries with -lz and sometimes -lm. diff --git a/CHANGES b/CHANGES index fcfe32095..fef2658c3 100644 --- a/CHANGES +++ b/CHANGES @@ -2230,7 +2230,8 @@ version 1.4.0beta79 [September 1, 2009] Eliminated PNG_GLOBAL_ARRAYS and PNG_LOCAL_ARRAYS; always use local arrays. Eliminated PNG_CALLOC_SUPPORTED macro and always provide png_calloc(). -version 1.4.0beta80 [September 1, 2009] +version 1.4.0beta80 [September 3, 2009] + Removed scripts/libpng.icc version 1.4.0betaN [future] Build shared libraries with -lz and sometimes -lm. diff --git a/INSTALL b/INSTALL index 5a31ab790..cc8468845 100644 --- a/INSTALL +++ b/INSTALL @@ -1,5 +1,5 @@ -Installing libpng version 1.4.0beta80 - September 1, 2009 +Installing libpng version 1.4.0beta80 - September 3, 2009 On Unix/Linux and similar systems, you can simply type @@ -117,7 +117,6 @@ include makefile.hp64 => HPUX (10.20 and 11.00) makefile, 64-bit makefile.ibmc => IBM C/C++ version 3.x for Win32 and OS/2 (static) makefile.intel => Intel C/C++ version 4.0 and later - libpng.icc => Project file for IBM VisualAge/C++ version 4.0 or later makefile.netbsd => NetBSD/cc makefile, uses PNGGCCRD, makes libpng.so. makefile.ne14bsd => NetBSD/cc makefile, uses PNGGCCRD, makes libpng14.so diff --git a/README b/README index c826f2798..8780148b7 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -README for libpng version 1.4.0beta80 - September 1, 2009 (shared library 14.0) +README for libpng version 1.4.0beta80 - September 3, 2009 (shared library 14.0) See the note about version numbers near the top of png.h See INSTALL for instructions on how to install libpng. @@ -204,7 +204,6 @@ Files in this distribution: makefile.hp64 => HPUX (10.20 and 11.00) makefile, 64 bit makefile.ibmc => IBM C/C++ version 3.x for Win32 and OS/2 (static) makefile.intel => Intel C/C++ version 4.0 and later - libpng.icc => Project file, IBM VisualAge/C++ 4.0 or later makefile.netbsd => NetBSD/cc makefile, PNGGCCRD, makes libpng.so. makefile.ne14bsd => NetBSD/cc makefile, PNGGCCRD, makes libpng14.so makefile.openbsd => OpenBSD makefile diff --git a/scripts/libpng.icc b/scripts/libpng.icc deleted file mode 100644 index 663596350..000000000 --- a/scripts/libpng.icc +++ /dev/null @@ -1,47 +0,0 @@ -// Project file for libpng (static) -// IBM VisualAge/C++ version 4.0 or later -// Copyright (C) 2000 Cosmin Truta -// -// This code is released under the libpng license. -// For conditions of distribution and use, see the disclaimer -// and license in png.h -// -// Notes: -// All modules are compiled in C mode -// Tested with IBM VAC++ 4.0 under Win32 -// Expected to work with IBM VAC++ 4.0 or later under OS/2 and Win32 -// Can be easily adapted for IBM VAC++ 4.0 or later under AIX - -option incl(searchpath, "../zlib"), opt(level, "2"), - link(libsearchpath, "../zlib") -{ - target type(lib) "libpng.lib" - { - source type(c) "png.c" - source type(c) "pngerror.c" - source type(c) "pngget.c" - source type(c) "pngmem.c" - source type(c) "pngpread.c" - source type(c) "pngread.c" - source type(c) "pngrio.c" - source type(c) "pngrtran.c" - source type(c) "pngrutil.c" - source type(c) "pngset.c" - source type(c) "pngtrans.c" - source type(c) "pngwio.c" - source type(c) "pngwrite.c" - source type(c) "pngwtran.c" - source type(c) "pngwutil.c" - } -} - -option incl(searchpath, "../zlib"), opt(level, "2"), - link(libsearchpath, "../zlib") -{ - target type(exe) "pngtest.exe" - { - source type(c) "pngtest.c" - source type(lib) "libpng.lib" - source type(lib) "zlib.lib" - } -}