diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-11-04 15:58:44 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-11-04 16:24:10 +0100 |
commit | 4101e2226d4211a2c855c3e382fd8fcef7a2fdb0 (patch) | |
tree | da55918b1ef33a0e0bdf44115ffbe76c882b615c /fake_packages/Gtk3.pm | |
parent | 5b587ef8fe8119e95035f9bf1b8d2c325afb2596 (diff) | |
download | perl_checker-4101e2226d4211a2c855c3e382fd8fcef7a2fdb0.tar perl_checker-4101e2226d4211a2c855c3e382fd8fcef7a2fdb0.tar.gz perl_checker-4101e2226d4211a2c855c3e382fd8fcef7a2fdb0.tar.bz2 perl_checker-4101e2226d4211a2c855c3e382fd8fcef7a2fdb0.tar.xz perl_checker-4101e2226d4211a2c855c3e382fd8fcef7a2fdb0.zip |
add fake packages for Atk, Gio, GObject
This prevent the following errors after next commit:
can't find package Atk::Object
can't find package Gio::*
can't find package GObject::TypeModule
Diffstat (limited to 'fake_packages/Gtk3.pm')
-rw-r--r-- | fake_packages/Gtk3.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fake_packages/Gtk3.pm b/fake_packages/Gtk3.pm index a893a1d..4b5bda9 100644 --- a/fake_packages/Gtk3.pm +++ b/fake_packages/Gtk3.pm @@ -1,4 +1,8 @@ package Gtk3; +use Atk; +use Glib; +use Gio; +use GObject; sub BINARY_AGE { } sub INPUT_ERROR { } sub INTERFACE_AGE { } |