4 if [ -f configure.args
] ; then
8 (glib-gettextize
--version) < /dev
/null
> /dev
/null
2>&1 ||
{
10 echo "You must have glib-gettextize installed to compile Pidgin.";
15 (intltoolize
--version) < /dev
/null
> /dev
/null
2>&1 ||
{
17 echo "You must have intltool installed to compile Pidgin.";
22 (libtoolize
--version) < /dev
/null
> /dev
/null
2>&1 ||
{
24 echo "You must have libtool installed to compile Pidgin.";
29 (automake
--version) < /dev
/null
> /dev
/null
2>&1 ||
{
31 echo "You must have automake installed to compile Pidgin.";
36 (autoconf
--version) < /dev
/null
> /dev
/null
2>&1 ||
{
38 echo "You must have autoconf installed to compile Pidgin.";
43 echo "Generating configuration files for Pidgin, please wait...."
46 echo "Running libtoolize, please ignore non-fatal messages...."
47 echo n | libtoolize
--copy --force ||
exit;
49 # Add other directories to this list if people continue to experience
50 # brokennesses ... Obviously the real answer is for them to fix it
51 # themselves, but for Luke's sake we have this.
52 for dir
in "/usr/local/share/aclocal" \
53 "/opt/gnome-1.4/share/aclocal"
55 if test -d $dir ; then
56 ACLOCAL_FLAGS
="$ACLOCAL_FLAGS -I $dir"
60 libtoolize
-c -f --automake
61 glib-gettextize
--force --copy
62 intltoolize
--force --copy
63 aclocal
$ACLOCAL_FLAGS ||
exit;
65 automake
--add-missing --copy;
70 echo "Running ./configure ${CONFIGURE_ARGS} $@"
72 .
/configure
${CONFIGURE_ARGS} $@