search for: gtk_requires

Displaying 5 results from an estimated 5 matches for "gtk_requires".

2007 Apr 22
0
3 commits - configure.ac libswfdec/swfdec_debug.h swfdec-gtk.pc.in swfdec.pc.in
...uot;; then fi AC_SUBST(GLIB_LIBS) AC_SUBST(GLIB_CFLAGS) -AC_SUBST(GLIB_REQUIRES) +AC_SUBST(GLIB_VER) dnl FIXME: detect these executables correctly GLIB_GENMARSHAL=glib-genmarshal AC_SUBST(GLIB_GENMARSHAL) @@ -92,17 +92,17 @@ AC_ARG_ENABLE(gtk, dnl dnl GTK: We want this for swfdec-gtk dnl -GTK_REQUIRES=2.8.0 -AC_SUBST(GTK_REQUIRES) +GTK_VER=2.8.0 +AC_SUBST(GTK_VER) if test "$enable_gtk" = "yes"; then - PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $GTK_REQUIRES, HAVE_GTK=yes, HAVE_GTK=no) + PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $GTK_VER, HAVE_GTK=yes, HAVE_GTK=no) if test "$HA...
2007 Nov 15
2
2 commits - configure.ac
configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit 8b3f9aca00a0d0447ba95a5ac86c56eb5894b8a8 Author: Benjamin Otte <otte at gnome.org> Date: Thu Nov 15 12:00:38 2007 +0100 back to development diff --git a/configure.ac b/configure.ac index 514f515..96ffeed 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.58])
2007 Dec 17
1
2 commits - configure.ac NEWS
NEWS | 5 +++++ configure.ac | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) New commits: commit b89f3c46440581f2818e1572c206331182e3a17f Author: Benjamin Otte <otte at gnome.org> Date: Mon Dec 17 21:44:48 2007 +0100 back to development diff --git a/configure.ac b/configure.ac index 56b01c5..237b2a0 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7
2007 Mar 26
0
6 commits - doc/swfdec-sections.txt libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec/swfdec_loader.c player/swfplay.c swfdec-gtk.pc.in
...c-gtk.pc.in b/swfdec-gtk.pc.in index 1b866f0..37e507b 100644 --- a/swfdec-gtk.pc.in +++ b/swfdec-gtk.pc.in @@ -7,5 +7,5 @@ Name: swfdec-gtk Description: Support for playing Flash files in Gtk using Swfdec Version: @VERSION@ Requires: swfdec-@SWFDEC_MAJORMINOR@ = @PACKAGE_VERSION@ gtk+-2.0 >= @GTK_REQUIRES@ -Libs: -L${libdir} -lswfdec-@SWFDEC_MAJORMINOR@ +Libs: -L${libdir} -lswfdec-gtk-@SWFDEC_MAJORMINOR@ Cflags: -I${includedir} diff-tree 00a2f65fd9ff9f2ab7770837c26da2a1634125b9 (from 58cd315b3b41e451e7f94b282e8a4fe8e787069e) Author: Benjamin Otte <otte@gnome.org> Date: Mon Mar 26 21:14:33 2...
2007 Mar 27
0
15 commits - configure.ac doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt doc/swfdec.types libswfdec-gtk/.gitignore libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h
..." = "no"; then - AC_MSG_WARN([cannot find GTK+-2.0, player will be disabled]) +AC_ARG_ENABLE(gtk, + AS_HELP_STRING([--enable-gtk], + [enable Gtk integration (default=yes)])], + enable_gtk=$enableval, + enable_gtk="yes") + +dnl +dnl GTK: We want this for swfdec-gtk +dnl +GTK_REQUIRES=2.8.0 +AC_SUBST(GTK_REQUIRES) +if test "$enable_gtk" = "yes"; then + PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $GTK_REQUIRES, HAVE_GTK=yes, HAVE_GTK=no) + if test "$HAVE_GTK" = "no"; then + AC_MSG_WARN([cannot find GTK+-2.0, player will be disabled]) + fi + if...