diff options
author | Daouda Lo <daouda@mandriva.com> | 2005-09-15 14:32:54 +0000 |
---|---|---|
committer | Daouda Lo <daouda@mandriva.com> | 2005-09-15 14:32:54 +0000 |
commit | 17f2187971a2281681e62cea984863172e88b7dc (patch) | |
tree | d04be6bde3d71049b013f449f42e7e1c40471770 | |
parent | 378ceb25d315acfdcd781ddeb496c16ae52702ef (diff) | |
download | mgaonline-17f2187971a2281681e62cea984863172e88b7dc.tar mgaonline-17f2187971a2281681e62cea984863172e88b7dc.tar.gz mgaonline-17f2187971a2281681e62cea984863172e88b7dc.tar.bz2 mgaonline-17f2187971a2281681e62cea984863172e88b7dc.tar.xz mgaonline-17f2187971a2281681e62cea984863172e88b7dc.zip |
- require LWP
-rw-r--r-- | mdkonline.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mdkonline.pm b/mdkonline.pm index 08750f26..c158294f 100644 --- a/mdkonline.pm +++ b/mdkonline.pm @@ -6,6 +6,11 @@ use MIME::Base64 qw(encode_base64); use lib qw(/usr/lib/libDrakX); use c; use common; + +use LWP::UserAgent; +use Net::HTTPS; +use HTTP::Request::Common; +use HTTP::Request; use SOAP::Lite; my $release_file = find { -f $_ } '/etc/mandriva-release', '/etc/mandrakelinux-release', '/etc/mandrake-release', '/etc/redhat-release'; |