fix reversed libgnomeui conditional test for the AC_DEFINE.

2005-08-15  Manish Singh  <yosh@gimp.org>

        * configure.in: fix reversed libgnomeui conditional test for
        the AC_DEFINE.
This commit is contained in:
Manish Singh 2005-08-15 22:51:43 +00:00 committed by Manish Singh
parent 56f255ad3d
commit 7ac320d745
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-08-15 Manish Singh <yosh@gimp.org>
* configure.in: fix reversed libgnomeui conditional test for
the AC_DEFINE.
2005-08-16 Michael Natterer <mitch@gimp.org>
* plug-ins/common/tga.c

View File

@ -1206,7 +1206,7 @@ PKG_CHECK_MODULES(GNOMEUI, libgnomeui-2.0 >= gnomeui_required_version,
AM_CONDITIONAL(HAVE_GNOMEUI, test x$have_gnomeui = xyes)
if test "x$have_gnomeui" != xyes; then
if test "x$have_gnomeui" = xyes; then
AC_DEFINE(HAVE_GNOMEUI, 1, "Define to 1 if libgnomeui is available"),
fi