home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / lib / perl5 / Glib / Install / Files.pm < prev    next >
Encoding:
Perl POD Document  |  2006-06-19  |  671 b   |  28 lines

  1. package Glib::Install::Files;
  2.  
  3. $self = {
  4.           'inc' => '-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   -I. ',
  5.           'typemaps' => [
  6.                           'typemap'
  7.                         ],
  8.           'deps' => [],
  9.           'libs' => '-lgobject-2.0 -lglib-2.0  -pthread -lgthread-2.0 -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.