diff --git a/ChangeLog b/ChangeLog index 9d37b9eab4..4815976823 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Wed Jul 1 10:14:41 PDT 1998 Manish Singh + + * 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 diff --git a/app/convert.c b/app/convert.c index ade030cd4e..7628a59066 100644 --- a/app/convert.c +++ b/app/convert.c @@ -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); } diff --git a/app/core/gimpimage-convert.c b/app/core/gimpimage-convert.c index ade030cd4e..7628a59066 100644 --- a/app/core/gimpimage-convert.c +++ b/app/core/gimpimage-convert.c @@ -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); } diff --git a/app/gimpimage-convert.c b/app/gimpimage-convert.c index ade030cd4e..7628a59066 100644 --- a/app/gimpimage-convert.c +++ b/app/gimpimage-convert.c @@ -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); } diff --git a/ltconfig b/ltconfig index 878a7c8122..4cd5626387 100755 --- a/ltconfig +++ b/ltconfig @@ -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