mirror of https://github.com/GNOME/gimp.git
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:
parent
56f255ad3d
commit
7ac320d745
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue