Change History (4)
comment:1 by , 12 years ago
comment:2 by , 12 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
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)
Note:
See TracTickets
for help on using tickets.
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:
This is nice as it was a circular dependency.