Index: Changes =================================================================== RCS file: /cvsroot/pdl/PDL/Changes,v retrieving revision 1.186 retrieving revision 1.186.2.1 diff -u -r1.186 -r1.186.2.1 --- Changes 2001/11/22 00:38:32 1.186 +++ Changes 2001/12/19 08:20:31 1.186.2.1 @@ -1,3 +1,8 @@ +2.3.2 +CS - change pdlcore.h.PL so that gimp-perl compiles + again + - Changes to Release_Notes, PDL.pm associated + with making release 2.3.2 2.3.1 John Cerney (11/21/01) - Changes to Release_Notes, PDL.pm associated Index: README =================================================================== RCS file: /cvsroot/pdl/PDL/README,v retrieving revision 1.5 retrieving revision 1.5.6.1 diff -u -r1.5 -r1.5.6.1 --- README 2000/09/03 09:14:47 1.5 +++ README 2001/12/19 08:20:31 1.5.6.1 @@ -1,6 +1,10 @@ ++ WARNING: There is absolutely no warranty for this software ++ ++ package. See the file COPYING for details. ++ ++ Note: PDL-2.3.2 is a pure bugfix release that fixes a compilation ++ problem with gimp-perl (part of the gimp distribution) ++ It introduces *no* other features or fixes against 2.3.1 + Important reading ----------------- Index: Release_Notes =================================================================== RCS file: /cvsroot/pdl/PDL/Release_Notes,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -u -r1.7 -r1.7.2.1 --- Release_Notes 2001/11/22 00:38:32 1.7 +++ Release_Notes 2001/12/19 08:20:31 1.7.2.1 @@ -1,7 +1,13 @@ +Release notes for PDL 2.3.2 ------------------------------ + +A pure bugfix release to fix compilation problems with gimp-perl +(part of the gimp distribution). The following notes from +2.3 and 2.3.1 still apply: + Release notes for PDL 2.3.1 ------------------------------ A bugfix release to fix some compilation problems seen with -2.3. The following notes from 2.004 still apply: +2.3. The following notes from 2.3 still apply: Release notes for PDL 2.3 ------------------------------- Index: Basic/PDL.pm =================================================================== RCS file: /cvsroot/pdl/PDL/Basic/PDL.pm,v retrieving revision 1.17 retrieving revision 1.17.2.1 diff -u -r1.17 -r1.17.2.1 --- Basic/PDL.pm 2001/11/20 08:50:04 1.17 +++ Basic/PDL.pm 2001/12/19 08:20:31 1.17.2.1 @@ -29,7 +29,7 @@ # set the version: -$PDL::VERSION = '2.3.1'; # delete 'cvs' bit for release ! +$PDL::VERSION = '2.3.2'; # delete 'cvs' bit for release ! # Main loader of standard PDL package Index: Basic/Core/pdlcore.h.PL =================================================================== RCS file: /cvsroot/pdl/PDL/Basic/Core/pdlcore.h.PL,v retrieving revision 1.12 retrieving revision 1.12.2.1 diff -u -r1.12 -r1.12.2.1 --- Basic/Core/pdlcore.h.PL 2001/11/21 09:40:45 1.12 +++ Basic/Core/pdlcore.h.PL 2001/12/19 08:20:31 1.12.2.1 @@ -215,7 +215,11 @@ I32 Version; pdl* (*SvPDLV) ( SV* ); void (*SetSV_PDL) ( SV *sv, pdl *it ); +#if defined(PDL_clean_namespace) || defined(PDL_OLD_API) + pdl* (*new) ( ); /* make it work with gimp-perl */ +#else pdl* (*pdlnew) ( ); /* renamed because of C++ clash */ +#endif pdl* (*tmp) ( ); pdl* (*create) (int type); void (*destroy) (pdl *it);