From 98849cc4d519b8ddf44afda9e5eed89c440ed942 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Thu, 24 Jun 2004 01:51:52 +0000 Subject: Some standalone tools don't compile when run from console --- perl-install/standalone/printerdrake | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'perl-install/standalone/printerdrake') diff --git a/perl-install/standalone/printerdrake b/perl-install/standalone/printerdrake index 00ebf6288..889696b09 100755 --- a/perl-install/standalone/printerdrake +++ b/perl-install/standalone/printerdrake @@ -26,7 +26,16 @@ use standalone; use common; use any; -use ugtk2 qw(:all); +BEGIN { + eval { + require ugtk2; + ugtk2->import(qw(:all)); + }; + if ($@) { + print "This program cannot be run in console mode.\n"; + c::_exit(0); #- skip ugtk2::END + } +} use interactive; use POSIX qw(mktime ceil); use printer::printerdrake; -- cgit v1.2.1