summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorRichard Laager <rlaager@pidgin.im>2006-02-08 21:01:56 +0000
committerRichard Laager <rlaager@pidgin.im>2006-02-08 21:01:56 +0000
commit562c031a2f375620f83f8f5c2378ae37e0474845 (patch)
tree3e461437246903e2bb43b86c7beeb496eeb21637 /autogen.sh
parentf4c86e044509920df87e86d6227edf4e21e29e4a (diff)
downloadpidgin-562c031a2f375620f83f8f5c2378ae37e0474845.tar.gz
[gaim-migrate @ 15550]
Finish the switch to glib-gettext.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh17
1 files changed, 2 insertions, 15 deletions
diff --git a/autogen.sh b/autogen.sh
index 1f7843b05f..d724a7354c 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,10 +1,8 @@
#!/bin/sh
-SETUP_GETTEXT=./setup-gettext
-
-($SETUP_GETTEXT --gettext-tool) < /dev/null > /dev/null 2>&1 || {
+(intltoolize --version) < /dev/null > /dev/null 2>&1 || {
echo;
- echo "You must have gettext installed to compile Gaim";
+ echo "You must have intltool installed to compile Gaim";
echo;
exit;
}
@@ -33,17 +31,6 @@ SETUP_GETTEXT=./setup-gettext
echo "Generating configuration files for Gaim, please wait...."
echo;
-# Backup the po/ChangeLog. This should prevent the annoying
-# gettext ChangeLog modifications.
-
-cp -p po/ChangeLog po/ChangeLog.save
-
-echo "Running gettextize, please ignore non-fatal messages...."
-$SETUP_GETTEXT
-
-# Restore the po/ChangeLog file.
-mv po/ChangeLog.save po/ChangeLog
-
echo "Running libtoolize, please ignore non-fatal messages...."
echo n | libtoolize --copy --force || exit;