see plug-ins/perl/Changes
This commit is contained in:
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user