Opened 11 years ago

Closed 11 years ago

Last modified 10 years ago

#3705 closed enhancement (fixed)

Pixman 0.28.2

Reported by: Armin K Owned by: Armin K
Priority: normal Milestone:
Component: BOOK Version: SVN
Severity: normal Keywords:
Cc:

Description

Change History (4)

comment:1 by Randy McMurchy, 11 years ago

It appears that the dependency of GTK+ for the test suite is no longer applicable. Note that I ran the test without GTK+ installed and received the following:

===================
All 23 tests passed
===================

This is nice as it was a circular dependency.

comment:2 by Armin K, 11 years ago

Owner: changed from blfs-book@… to Armin K
Status: newassigned

configure still checks for GTK+2

dnl ===================================
dnl GTK+

AC_ARG_ENABLE(gtk,
   [AC_HELP_STRING([--enable-gtk],
                   [enable tests using GTK+ [default=auto]])],
   [enable_gtk=$enableval], [enable_gtk=auto])

PKG_PROG_PKG_CONFIG

if test $enable_gtk = yes ; then
   AC_CHECK_LIB([pixman-1], [pixman_version_string])
   PKG_CHECK_MODULES(GTK, [gtk+-2.0 pixman-1])
fi

if test $enable_gtk = auto ; then
   AC_CHECK_LIB([pixman-1], [pixman_version_string], [enable_gtk=auto], [enable_gtk=no])
fi

if test $enable_gtk = auto ; then
   PKG_CHECK_MODULES(GTK, [gtk+-2.0 pixman-1], [enable_gtk=yes], [enable_gtk=no])
fi

AM_CONDITIONAL(HAVE_GTK, [test "x$enable_gtk" = xyes])

AC_SUBST(GTK_CFLAGS)
AC_SUBST(GTK_LIBS)

comment:3 by Armin K, 11 years ago

Resolution: fixed
Status: assignedclosed

Fixed in r10901

comment:4 by bdubbs@…, 10 years ago

Milestone: current

Milestone current deleted

Note: See TracTickets for help on using tickets.