configure.ac: Use different prefix for the new check of PyGtk so we're not overwriting the good PYGTK_CFLAGS

Original commit message from CVS:
* configure.ac: Use different prefix for the new check of PyGtk so
we're not overwriting the good PYGTK_CFLAGS
This commit is contained in:
Johan Dahlin 2004-05-03 10:56:08 +00:00
parent 50ca154fbc
commit c14192312c
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2004-05-03 Johan Dahlin <johan@gnome.org>
* configure.ac: Use different prefix for the new check of PyGtk so
we're not overwriting the good PYGTK_CFLAGS
* gst/Makefile.am (INCLUDES): Move PYGTK_CFLAGS to common_cflags
instead of INCLUDES

View file

@ -60,7 +60,7 @@ dnl check for pygtk
PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= $PYGTK_REQ)
AC_SUBST(PYGTK_CFLAGS)
PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= 2.3.92, ,HAVE_OLD_PYGTK="yes")
PKG_CHECK_MODULES(_UNUSED_NEW_PYGTK, pygtk-2.0 >= 2.3.92, ,HAVE_OLD_PYGTK="yes")
if test "x$HAVE_OLD_PYGTK" = "xyes"; then
AC_DEFINE_UNQUOTED(HAVE_OLD_PYGTK, 1, [Defined if we have an old version of PyGTK])
fi