gtk2: added missing linklib for darwin, workaround for fpc 2.2.4, newer versions should be fixed in fpc/packages/gtk2 (issue #14518)

git-svn-id: trunk@21599 -
This commit is contained in:
vincents 2009-09-07 11:10:54 +00:00
parent 91915ea85b
commit c8a5a6f6f2

View File

@ -193,3 +193,10 @@ procedure gtk_file_chooser_set_do_overwrite_confirmation(chooser:PGtkFileChooser
{$ifdef GTK_2_10}
function gdk_screen_is_composited(screen: PGdkScreen): gboolean; cdecl; external gdklib;
{$endif}
{$ifdef ver2_2}
{$ifdef darwin}
// this linklib statement is not present in gtk2.pas
{linklib gthread-2.0}
{$endif}
{$endif}