~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to packages/extra/gtk2/gtk+/gdk/gdk2.pas

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
  GDK_HAVE_WCHAR_H=1;
43
43
  GDK_HAVE_WCTYPE_H=1;
44
44
{$else}
45
 
  {$ifdef UseCustomLibs}
46
 
  gdklib = '';
 
45
  {$ifdef darwin}
 
46
    gdklib = 'gdk-x11-2.0';
 
47
    {$linklib gtk-x11-2.0}
 
48
    {$linklib gdk-x11-2.0}
 
49
    {$linklib pango-1.0.0}
 
50
    {$linklib glib-2.0.0}
 
51
    {$linklib gobject-2.0.0}
 
52
    {$linklib gdk_pixbuf-2.0.0}
 
53
    {$linklib atk-1.0.0}
47
54
  {$else}
48
 
  gdklib = 'libgdk-x11-2.0.so';
 
55
    {$ifdef UseCustomLibs}
 
56
    gdklib = '';
 
57
    {$else}
 
58
    gdklib = 'libgdk-x11-2.0.so';
 
59
    {$endif}
49
60
  {$endif}
50
61
{$endif}
51
62