diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-03-16 09:02:58 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-03-16 09:02:58 +0000 |
commit | c4bba072f5a8f0dc3f223cbe4c2630925d32fe14 (patch) | |
tree | 8cb4c5ca12d2ef6594ff19671f7f5fb166cd33eb | |
parent | 23b10e3ed724431b1af3f4c6353e34933c610df8 (diff) | |
download | urpmi-c4bba072f5a8f0dc3f223cbe4c2630925d32fe14.tar urpmi-c4bba072f5a8f0dc3f223cbe4c2630925d32fe14.tar.gz urpmi-c4bba072f5a8f0dc3f223cbe4c2630925d32fe14.tar.bz2 urpmi-c4bba072f5a8f0dc3f223cbe4c2630925d32fe14.tar.xz urpmi-c4bba072f5a8f0dc3f223cbe4c2630925d32fe14.zip |
support other distros which do not have exception support in gtk+ callbacks
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | gurpmi2 | 7 |
2 files changed, 7 insertions, 1 deletions
@@ -3,6 +3,7 @@ progress & errors o enhanced doc - gurpmi: + o support other distros which do not handle exceptions in gtk+ callbacks o use new exception management Version 7.19 - 9 February 2013, by Thierry Vignaud @@ -30,7 +30,12 @@ our $test = 0; our $use_provides = 1; my $progressbar_size = 450; -Glib->enable_exceptions2; + +# For other distros w/o exception support: +eval { Glib->enable_exceptions2 }; +if (my $err = $@) { + warn "Error: $err\n"; +} #- GUI globals my ($mainw, $mainbox); |