Hi. I've had this for a while in my configure.in file. The automake docs say somewhere or another that the first AM_ macro should be AM_INIT_AUTOMAKE. As autoconf offers AC_CONFIG_HEADERS to replace AM_CONFIG_HEADER, I made the following change.
Perhaps this can go on the branch and head of pygtk? Art Haas Index: pygtk/configure.in =================================================================== RCS file: /cvs/gnome/gnome-python/pygtk/configure.in,v retrieving revision 1.81 diff -u -u -r1.81 configure.in --- pygtk/configure.in 1 Sep 2003 12:47:39 -0000 1.81 +++ pygtk/configure.in 2 Sep 2003 18:37:19 -0000 @@ -23,9 +23,9 @@ AC_DEFINE(PYGTK_MICRO_VERSION, pygtk_micro_version, [PyGtk macro version]) AC_CONFIG_SRCDIR([gtk/gtkmodule.c]) -AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE +AC_CONFIG_HEADERS([config.h]) AC_CHECK_FUNCS(bind_textdomain_codeset) dnl put the ACLOCAL flags in the makefile -- Man once surrendering his reason, has no remaining guard against absurdities the most monstrous, and like a ship without rudder, is the sport of every wind. -Thomas Jefferson to James Smith, 1822 _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
