diff options
author | Rodney Dawes <dobey@novell.com> | 2004-11-24 17:53:26 +0000 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-11-24 17:53:26 +0000 |
commit | cf53c531bd4ba2dbfe191b030cd945811b4aa3de (patch) | |
tree | 0528bb3587c4551676eeed44646a40d94ef77278 | |
parent | 76613c8f0092ac221b15af8342c83b6408f7ed83 (diff) | |
download | shared-mime-info-cf53c531bd4ba2dbfe191b030cd945811b4aa3de.tar.gz |
Add support for IT_PROG_INTLTOOL which deprecates AC_PROG_INTLTOOL
2004-11-24 Rodney Dawes <dobey@novell.com>
* gnome-autogen.sh: Add support for IT_PROG_INTLTOOL which
deprecates AC_PROG_INTLTOOL
svn path=/trunk/; revision=3484
-rw-r--r-- | macros2/ChangeLog | 5 | ||||
-rw-r--r-- | macros2/gnome-autogen.sh | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/macros2/ChangeLog b/macros2/ChangeLog index f2a17a18..34e5ce66 100644 --- a/macros2/ChangeLog +++ b/macros2/ChangeLog @@ -1,3 +1,8 @@ +2004-11-24 Rodney Dawes <dobey@novell.com> + + * gnome-autogen.sh: Add support for IT_PROG_INTLTOOL which + deprecates AC_PROG_INTLTOOL + 2004-11-09 Jordi Mallach <jordi@sindominio.net> * gnome-autogen.sh: Workaround automake-1.4 limitations by just diff --git a/macros2/gnome-autogen.sh b/macros2/gnome-autogen.sh index 738d8ca5..d513a04c 100644 --- a/macros2/gnome-autogen.sh +++ b/macros2/gnome-autogen.sh @@ -218,7 +218,7 @@ for configure_ac in $configure_files; do if grep "^AM_GLIB_GNU_GETTEXT" $configure_ac >/dev/null; then want_glib_gettext=true fi - if grep "^AC_PROG_INTLTOOL" $configure_ac >/dev/null; then + if grep "^(AC|IT)_PROG_INTLTOOL" $configure_ac >/dev/null; then want_intltool=true fi if grep "^PKG_CHECK_MODULES" $configure_ac >/dev/null; then |