view autogen.sh @ 8310:cc3a65c19ecf

[gaim-migrate @ 9034] <nosnilmot> I think someone should remove buddy_chat.c from POTFILES.in === can you commit this fix? i cant do it from work... ----- Original Message ----- From: <seven@nimrod-online.com> To: <gaim@robflynn.com> Sent: Thursday, February 19, 2004 10:25 AM Subject: 'nl.po' typo > Dear Rob, > > Yesterday i sent an e-mail to your sourceforge account. I bet you > never read it, so here it is again (in short ;)). First of all, love > Gaim, hate MSN Messenger 6.1, so I use it ;). When I got rather bored > I started reading the dutch translation (nl.po), to look for any > mistakes, and hey, I found one! Where it says > #~ msgid "State:" > #~ msgstr "Privincie:" > it should say: > #~ msgid "State:" > #~ msgstr "Provincie:" > Well, that was about all > > Roy Spliet. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 21 Feb 2004 20:32:06 +0000
parents d881871490dd
children e67993da8a22
line wrap: on
line source

#!/bin/sh

SETUP_GETTEXT=./setup-gettext

($SETUP_GETTEXT --gettext-tool) < /dev/null > /dev/null 2>&1 || {
	echo;
	echo "You must have gettext installed to compile Gaim";
	echo;
	exit;
}

(libtoolize --version) < /dev/null > /dev/null 2>&1 || {
	echo;
	echo "You must have libtool installed to compile Gaim";
	echo;
	exit;
}

(automake --version) < /dev/null > /dev/null 2>&1 || {
	echo;
	echo "You must have automake installed to compile Gaim";
	echo;
	exit;
}

(autoconf --version) < /dev/null > /dev/null 2>&1 || {
	echo;
	echo "You must have autoconf installed to compile Gaim";
	echo;
	exit;
}

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;

# Add other directories to this list if people continue to experience
# brokennesses ...  Obviously the real answer is for them to fix it
# themselves, but for Luke's sake we have this.
for dir in "/usr/local/share/aclocal" \
           "/opt/gnome-1.4/share/aclocal"
do
	if test -d $dir ; then
		ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $dir"
	fi
done

aclocal $ACLOCAL_FLAGS || exit;
autoheader || exit;
automake --add-missing --copy;
autoconf || exit;
automake || exit;
./configure $@