Small changes to satisfy the native SGI IRIX-6.4 compiler. There are still

lots of warnings, but it seems to compile out of the box now (using GNU
make).


--Sven
This commit is contained in:
Sven Neumann 1998-03-27 13:33:38 +00:00
parent a5c103b53b
commit 8dec2758b7
3 changed files with 16 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Fri Mar 27 14:33:42 MET 1998 Sven Neumann <sven@gimp.org>
* plugins/dbbrowser/dbbrowser_utils.c
* plugins/sparkle/sparkle.c: small changes to make it compile
on irix-6.4 with the native compiler.
Fri Mar 27 00:19:38 PST 1998 Manish Singh <yosh@gimp.org>
* Made 0.99.23 release

View File

@ -713,7 +713,11 @@ rpnt (GDrawable *drawable,
guchar *pixel;
guchar *guc_tmp;
gdouble *gd_tmp;
gint oldrow = row - 1, oldcol = col - 1;
gint *oldrow;
gint *oldcol;
oldrow = row - 1;
oldcol = col - 1;
x = (int) (xr); /* integer coord. to upper left of real point */
y = (int) (yr);

View File

@ -713,7 +713,11 @@ rpnt (GDrawable *drawable,
guchar *pixel;
guchar *guc_tmp;
gdouble *gd_tmp;
gint oldrow = row - 1, oldcol = col - 1;
gint *oldrow;
gint *oldcol;
oldrow = row - 1;
oldcol = col - 1;
x = (int) (xr); /* integer coord. to upper left of real point */
y = (int) (yr);