home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / perl5 / Glib / Install / Files.pm < prev    next >
Encoding:
Perl POD Document  |  2008-11-04  |  676 b   |  28 lines

  1. package Glib::Install::Files;
  2.  
  3. $self = {
  4.           'inc' => ' -I. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  ',
  5.           'typemaps' => [
  6.                           'typemap'
  7.                         ],
  8.           'deps' => [],
  9.           'libs' => '-lgobject-2.0 -lglib-2.0  -pthread -lgthread-2.0 -lrt -lglib-2.0  '
  10.         };
  11.  
  12.  
  13. # this is for backwards compatiblity
  14. @deps = @{ $self->{deps} };
  15. @typemaps = @{ $self->{typemaps} };
  16. $libs = $self->{libs};
  17. $inc = $self->{inc};
  18.  
  19.     $CORE = undef;
  20.     foreach (@INC) {
  21.         if ( -f $_ . "/Glib/Install/Files.pm") {
  22.             $CORE = $_ . "/Glib/Install/";
  23.             last;
  24.         }
  25.     }
  26.  
  27. 1;
  28.