view autogen.sh @ 8445:46f3c447da4d

[gaim-migrate @ 9175] Mar 13 20:58:37 <nosnilmot> LSchiere2: ping Mar 13 21:04:28 <LSchiere2> semi-pong Mar 13 21:05:11 <nosnilmot> LSchiere2: simple one, do you want a patch that splits changelog into ChangeLog & po/ChangeLog ? Mar 13 21:05:24 <LSchiere2> sure. go ahead Mar 13 21:06:13 <nosnilmot> http://www.nosnilmot.com/patches/gaim-0.76cvs-i18n-changelog.patch ... Mar 13 21:58:31 <nosnilmot> LSchiere2: did you get that changelog patch? Mar 13 22:01:44 <LSchiere2> i grabbed it, nothing more .... Mar 14 00:53:07 <LSchiere> nosnilmot: i left that patch at work accidentally All times in GST (Gaim Standard Time). committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 14 Mar 2004 19:01:53 +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 $@