changes for releasing ivtools-1.2.3
[email protected] Fri, 7 Oct 2005 11:12:15 -0700
| Newsgroups | gmane.comp.lib.ivtools.patches |
|---|---|
| Message-ID | <[email protected]> |
--Apple-Mail-2-77679753 Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-unix-mode=0644; name="ivtools-051007-johnston-012" Content-Disposition: attachment; filename=ivtools-051007-johnston-012 Patch: ivtools-051007-johnston-012 For: ivtools-1.2.2 Author: [email protected] Subject: changes for releasing ivtools-1.2.3 Requires: This is an intermediate patch to ivtools-1.2.2. To apply, cd to the top-level directory of the ivtools source tree (the directory with src and config subdirs), and apply like this: patch -p0 <ThisFile Summary of Changes: - changes for releasing ivtools-1.2.3 Index: config_ivtools/params.def diff -c config_ivtools/params.def:1.5 config_ivtools/params.def:1.6 *** config_ivtools/params.def:1.5 Thu Oct 6 12:27:35 2005 --- config/params.def Fri Oct 7 11:10:20 2005 *************** *** 27,33 **** * Name of the software release */ #ifndef Release ! #define Release ivtools-1.2.2 #endif RELEASE = Release --- 27,33 ---- * Name of the software release */ #ifndef Release ! #define Release ivtools-1.2.3 #endif RELEASE = Release *************** *** 36,42 **** * VersionNumber */ #ifndef Version ! #define Version 1.2.2 #endif VERSION = Version --- 36,42 ---- * VersionNumber */ #ifndef Version ! #define Version 1.2.3 #endif VERSION = Version *************** *** 589,595 **** #ifndef TiffCCIncludes #ifdef TiffDir ! #define TiffCCIncludes -I$(TIFFINCS) #else #define TiffCCIncludes /**/ #endif --- 589,595 ---- #ifndef TiffCCIncludes #ifdef TiffDir ! #define TiffCCIncludes -I$(TIFFDIR)/include #else #define TiffCCIncludes /**/ #endif *************** *** 613,618 **** --- 613,619 ---- ACE_CCINCLUDES = AceCCIncludes IUE_CCINCLUDES = IueCCIncludes QT_CCINCLUDES = QtCCIncludes + TIFF_CCINCLUDES = TiffCCIncludes #ifdef ClipPolyDir CLIPPOLYDIR = ClipPolyDir #endif *************** *** 628,633 **** --- 629,637 ---- #ifdef QtDir QTDIR = QtDir #endif + #ifdef TiffDir + TIFFDIR = TiffDir + #endif /* * Define the flags passed to the CC driver when we link a C++ program. Index: include_std/version.h diff -c include_std/version.h:1.3 include_std/version.h:1.4 *** include_std/version.h:1.3 Tue Jan 25 09:47:39 2005 --- src/include/ivstd/version.h Fri Oct 7 11:10:16 2005 *************** *** 1,3 **** ! #define IvtoolsVersion 1.2.21 ! #define VersionString "1.2.2" ! #define ReleaseString "ivtools-1.2.2" --- 1,3 ---- ! #define IvtoolsVersion 1.2.3 ! #define VersionString "1.2.3" ! #define ReleaseString "ivtools-1.2.3" Index: src_tiff/mkg3states.c diff -c src_tiff/mkg3states.c:1.1 src_tiff/mkg3states.c:1.2 *** src_tiff/mkg3states.c:1.1 Tue Jun 15 08:54:10 2004 --- src/TIFF/mkg3states.c Fri Oct 7 11:09:57 2005 *************** *** 62,67 **** --- 62,68 ---- * END (from the original source) */ #include <stdio.h> + #include <stdlib.h> #include "prototypes.h" #ifndef TRUE Index: src_tiff/tiffcompat.h diff -c src_tiff/tiffcompat.h:1.1 src_tiff/tiffcompat.h:1.2 *** src_tiff/tiffcompat.h:1.1 Tue Jun 15 08:54:11 2004 --- src/TIFF/tiffcompat.h Fri Oct 7 11:09:57 2005 *************** *** 213,216 **** --- 213,220 ---- #define VA_START(ap, parmN) va_start(ap, parmN) #endif #endif /* defined(USE_VARARGS) */ + + #include <stdlib.h> + #include <string.h> + #endif /* _COMPAT_ */ Index: top_ivtools/CHANGES diff -c top_ivtools/CHANGES:1.3 top_ivtools/CHANGES:1.4 *** top_ivtools/CHANGES:1.3 Tue Jan 25 09:47:26 2005 --- ./CHANGES Fri Oct 7 11:09:51 2005 *************** *** 1,6 **** January 25th, 2005 ivtools-1.2.2 ! If you submitted a patch in the past half year to ivtools that you don't see reflected here, please resubmit. I lost that e-mail. - fix for problem writing to /tmp --- 1,24 ---- + October 7th, 2005 ivtools-1.2.3 + + - add support for an external libtiff with a --with-tiff (and + -with-tiff-lib) configure arguments. + + - changes necessary to compile with gcc-4.0 + + - changes necessary to compile with gcc-4.0 on top of ACE-5.4.7 + + - changes necessary to compile on suse-9.3 linux (amd64 platform). + Contributed by Paul Vixie. + + - fixed bug in "addtool" command/mechanism in graphdraw and drawserv + + - added support for color expressions to graphdraw (:colexpr), to + allow attribute-sensitive computation of a node's color. + January 25th, 2005 ivtools-1.2.2 ! If you submitted a patch in the past half year to ivtools that you ! don't see reflected here, please resubmit. I lost that e-mail. - fix for problem writing to /tmp Index: top_ivtools/INSTALL diff -c top_ivtools/INSTALL:1.3 top_ivtools/INSTALL:1.4 *** top_ivtools/INSTALL:1.3 Tue Jan 25 09:47:26 2005 --- ./INSTALL Fri Oct 7 11:09:51 2005 *************** *** 1,7 **** INSTALL for ivtools-1.2 ! Instructions for building ivtools-1.2.2 from source, the short version: ./configure make --- 1,7 ---- INSTALL for ivtools-1.2 ! Instructions for building ivtools-1.2.3 from source, the short version: ./configure make *************** *** 10,16 **** And if that doesn't work... ! Instructions for building ivtools-1.2.2 from source, the long version: 0. Compilation Environment --- 10,16 ---- And if that doesn't work... ! Instructions for building ivtools-1.2.3 from source, the long version: 0. Compilation Environment Index: top_ivtools/README diff -c top_ivtools/README:1.3 top_ivtools/README:1.4 *** top_ivtools/README:1.3 Tue Jan 25 09:47:26 2005 --- ./README Fri Oct 7 11:09:51 2005 *************** *** 2,8 **** README for ivtools 1.2 ! This directory contains a release of ivtools 1.2.2. You should read the rest of this file for information on what ivtools is and the INSTALL file for instructions on how to build it. --- 2,8 ---- README for ivtools 1.2 ! This directory contains a release of ivtools 1.2.3. You should read the rest of this file for information on what ivtools is and the INSTALL file for instructions on how to build it. Index: top_ivtools/VERSION diff -c top_ivtools/VERSION:1.3 top_ivtools/VERSION:1.4 *** top_ivtools/VERSION:1.3 Tue Jan 25 09:47:26 2005 --- ./VERSION Fri Oct 7 11:09:51 2005 *************** *** 1 **** ! Release 1.2.2 --- 1 ---- ! Release 1.2.3 *** /dev/null Fri Oct 7 11:10:22 PDT 2005 --- patches/ivtools-051007-johnston-012 *************** patches/ivtools-051007-johnston-012 *** 0 **** --- 1 ---- + ivtools-051007-johnston-012 --Apple-Mail-2-77679753-- ------------------------------------------------------- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl