summaryrefslogtreecommitdiffstats
path: root/scripts/parse-patch.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/parse-patch.in')
-rw-r--r--scripts/parse-patch.in21
1 files changed, 19 insertions, 2 deletions
diff --git a/scripts/parse-patch.in b/scripts/parse-patch.in
index 6441b82..cb5a8e5 100644
--- a/scripts/parse-patch.in
+++ b/scripts/parse-patch.in
@@ -12,10 +12,27 @@
use FileHandle;
use Getopt::Long;
use File::Temp qw(tempfile);
-use POSIX qw(setlocale);
-use Locale::gettext;
use strict;
+# This ugly trick lets the script work even if gettext support is missing.
+# We did so because Locale::gettext doesn't ship with the standard perl
+# distribution.
+BEGIN {
+ if (eval { require Locale::gettext }) {
+ import Locale::gettext;
+ require POSIX;
+ import POSIX, qw(setlocale);
+ } else {
+ eval '
+ use constant LC_MESSAGES => 0;
+ sub setlocale($$) { }
+ sub bindtextdomain($$) { }
+ sub textdomain($) { }
+ sub gettext($) { shift }
+ '
+ }
+}
+
setlocale(LC_MESSAGES, "");
bindtextdomain("quilt", "@LOCALEDIR@");
textdomain("quilt");