see plug-ins/perl/Changes

This commit is contained in:
Marc Lehmann
1999-08-25 20:35:48 +00:00
parent 93413604a1
commit f9aa6f14d6
3 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,7 @@ Revision history for Gimp-Perl extension.
1.12 Tue Aug 24 19:30:29 CEST 1999 1.12 Tue Aug 24 19:30:29 CEST 1999
- do not emit warning for function names prefixed with "+". - do not emit warning for function names prefixed with "+".
- removed non-c89 ansi'isms from Lib.xs.
1.11 Tue Aug 3 03:23:23 CEST 1999 1.11 Tue Aug 3 03:23:23 CEST 1999
- EXPERIMENTALLY re-enabled the return path from main. It works - EXPERIMENTALLY re-enabled the return path from main. It works

View File

@ -12,7 +12,7 @@ use subs qw(init end lock unlock canonicalize_color);
require DynaLoader; require DynaLoader;
@ISA=qw(DynaLoader); @ISA=qw(DynaLoader);
$VERSION = 1.11; $VERSION = 1.12;
@_param = qw( @_param = qw(
PARAM_BOUNDARY PARAM_CHANNEL PARAM_COLOR PARAM_DISPLAY PARAM_DRAWABLE PARAM_BOUNDARY PARAM_CHANNEL PARAM_COLOR PARAM_DISPLAY PARAM_DRAWABLE

View File

@ -330,9 +330,9 @@ trace_init ()
SvCUR_set (trace_var, 0); SvCUR_set (trace_var, 0);
} }
#ifndef __STDC_VERSION__ #ifndef __STDC__
#warn You need to compile with an ansi-c compiler!!! #error You need to compile with an ansi-c compiler!!!
#warn Compilation will continue at your own risk!! #error Compilation will continue at your own risk!!
#define __STDC_VERSION__ 0 #define __STDC_VERSION__ 0
#endif #endif