fix for properly detecting shared lib support on SunPro cc (taken from

* ltconfig: fix for properly detecting shared lib support on SunPro cc
(taken from libtool 1.2.a)

* app/convert.c: PDB wrapper for convert_indexed_palette should return args
associated with it's own proc

-Yosh
This commit is contained in:
Manish Singh 1998-07-01 17:20:13 +00:00
parent 04e5fe7cd9
commit 3237bf3cb9
5 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,11 @@
Wed Jul 1 10:14:41 PDT 1998 Manish Singh <yosh@gimp.org>
* ltconfig: fix for properly detecting shared lib support on
SunPro cc (taken from libtool 1.2.a)
* app/convert.c: PDB wrapper for convert_indexed_palette should
return args associated with it's own proc
Tue Jun 30 12:19:58 CDT 1998 arturo@nuclecu.unam.mx
* pupi-button.scm: (script-fu-round-button) A new beveled button

View File

@ -3092,5 +3092,5 @@ convert_indexed_palette_invoker (Argument *args)
}
if (success)
convert_image ((void *) gimage, INDEXED, num_cols, dither, palette_type);
return procedural_db_return_args (&convert_indexed_proc, success);
return procedural_db_return_args (&convert_indexed_palette_proc, success);
}

View File

@ -3092,5 +3092,5 @@ convert_indexed_palette_invoker (Argument *args)
}
if (success)
convert_image ((void *) gimage, INDEXED, num_cols, dither, palette_type);
return procedural_db_return_args (&convert_indexed_proc, success);
return procedural_db_return_args (&convert_indexed_palette_proc, success);
}

View File

@ -3092,5 +3092,5 @@ convert_indexed_palette_invoker (Argument *args)
}
if (success)
convert_image ((void *) gimage, INDEXED, num_cols, dither, palette_type);
return procedural_db_return_args (&convert_indexed_proc, success);
return procedural_db_return_args (&convert_indexed_palette_proc, success);
}

View File

@ -561,7 +561,7 @@ if test -n "$pic_flag"; then
# Check to make sure the pic_flag actually works.
echo $ac_n "checking if $compiler PIC flag $pic_flag works... $ac_c" 1>&6
$rm conftest*
echo > conftest.c
echo "int some_variable = 0;" > conftest.c
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $pic_flag -DPIC"
echo "$progname:567: checking if $compiler PIC flag $pic_flag works" >&5