search for: glib_requires

Displaying 2 results from an estimated 2 matches for "glib_requires".

2007 Apr 22
0
3 commits - configure.ac libswfdec/swfdec_debug.h swfdec-gtk.pc.in swfdec.pc.in
...43:59 2007 +0200 replace all FOO_REQUIRES with FOO_VER diff --git a/configure.ac b/configure.ac index eafc8fb..4a55cfc 100644 --- a/configure.ac +++ b/configure.ac @@ -69,7 +69,7 @@ if test "$HAVE_GLIB" = "no"; 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 t...
2007 Apr 17
0
8 commits - configure.ac doc/Makefile.am libswfdec/jpeg libswfdec/swfdec_debug.h libswfdec/swfdec_image.c
...Write better error messages for missing packages diff --git a/configure.ac b/configure.ac index 2159631..b72a0f7 100644 --- a/configure.ac +++ b/configure.ac @@ -61,10 +61,11 @@ AC_ARG_WITH(pkg-config-path, dnl Check for essential libraries first: dnl ==================================== -GLIB_REQUIRES=2.0 -PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_REQUIRES gobject-2.0 >= $GLIB_REQUIRES, HAVE_GLIB=yes, HAVE_GLIB=no) +GLIB_VER=2.0 +PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_VER gobject-2.0 >= $GLIB_VER, + HAVE_GLIB=yes, HAVE_GLIB=no) if test "$HAVE_GLIB" = "no"; th...