mirror of https://github.com/GNOME/gimp.git
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:
parent
04e5fe7cd9
commit
3237bf3cb9
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
2
ltconfig
2
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
|
||||
|
|
Loading…
Reference in New Issue