home *** CD-ROM | disk | FTP | other *** search
- package Glib::Install::Files;
-
- $self = {
- '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. ',
- 'typemaps' => [
- 'typemap'
- ],
- 'deps' => [],
- 'libs' => '-lgobject-2.0 -lglib-2.0 -pthread -lgthread-2.0 -lglib-2.0 '
- };
-
-
- # this is for backwards compatiblity
- @deps = @{ $self->{deps} };
- @typemaps = @{ $self->{typemaps} };
- $libs = $self->{libs};
- $inc = $self->{inc};
-
- $CORE = undef;
- foreach (@INC) {
- if ( -f $_ . "/Glib/Install/Files.pm") {
- $CORE = $_ . "/Glib/Install/";
- last;
- }
- }
-
- 1;
-