gaim/gaim

Syncing autogen.sh.
gtk1-stable
2002-09-28, Christian Hammond
1a43b7b199d2
Parents 015792ac3198
Children 3cb53063c5f7
Syncing autogen.sh.
  • +15 -2
    autogen.sh
  • --- a/autogen.sh Fri Sep 27 22:58:53 2002 -0400
    +++ b/autogen.sh Sat Sep 28 18:13:48 2002 -0400
    @@ -1,6 +1,8 @@
    #!/bin/sh
    -(./setup-gettext --gettext-tool) < /dev/null > /dev/null 2>&1 || {
    +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;
    @@ -47,7 +49,7 @@
    cp -p po/ChangeLog po/ChangeLog.save
    echo "Running gettextize, please ignore non-fatal messages...."
    -./setup-gettext
    +$SETUP_GETTEXT
    # Restore the po/ChangeLog file.
    mv po/ChangeLog.save po/ChangeLog
    @@ -55,6 +57,17 @@
    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 -I m4 $ACLOCAL_FLAGS || exit;
    autoheader || exit;
    automake --add-missing --copy;