configure.ac (9ef65f0e) configure.ac (e1a336b3)
1dnl /******************************************************************
2dnl * vi:set sw=3 ts=3 et:
3dnl *
4dnl * Name: configure.in
5dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland
6dnl * Date: $Date: 2008-09-08 07:38:40 $
7dnl *
8dnl * Desc: This file serves as input for the GNU autoconf package

--- 193 unchanged lines hidden (view full) ---

202 options and therefore removes a lot of warnings when
203 using the cheaper standard compiler. )
204],,)
205AC_ARG_ENABLE(gtk,
206[ --disable-gtk Determines whether to use Gtk+ vclplug on platforms
207 where Gtk+ is available.
208],,enable_gtk=yes)
209AC_ARG_ENABLE(gstreamer,
1dnl /******************************************************************
2dnl * vi:set sw=3 ts=3 et:
3dnl *
4dnl * Name: configure.in
5dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland
6dnl * Date: $Date: 2008-09-08 07:38:40 $
7dnl *
8dnl * Desc: This file serves as input for the GNU autoconf package

--- 193 unchanged lines hidden (view full) ---

202 options and therefore removes a lot of warnings when
203 using the cheaper standard compiler. )
204],,)
205AC_ARG_ENABLE(gtk,
206[ --disable-gtk Determines whether to use Gtk+ vclplug on platforms
207 where Gtk+ is available.
208],,enable_gtk=yes)
209AC_ARG_ENABLE(gstreamer,
210[ --disable-gstreamer Determines whether to use the GStreamer media
210[ --enable-gstreamer Determines whether to use the GStreamer media
211 backend on platforms where GStreamer is available.
211 backend on platforms where GStreamer is available.
212],,enable_gstreamer=yes)
212],,enable_gstreamer=no)
213AC_ARG_ENABLE(systray,
214[ --disable-systray Determines whether to build the systray quickstarter.
215],,enable_systray=yes)
216AC_ARG_ENABLE(cairo,
217[ --enable-cairo Determines whether to use Cairo library on
218 platforms where Cairo is available.
219],,enable_cairo=no)
220AC_ARG_WITH(system-cairo,

--- 5611 unchanged lines hidden (view full) ---

5832
5833GSTREAMER_CFLAGS=""
5834GSTREAMER_LIBS=""
5835ENABLE_GSTREAMER=""
5836
5837if test "$test_gstreamer" = "yes"; then
5838 AC_MSG_CHECKING([whether to build the GStreamer media backend])
5839 if test "x$enable_gstreamer" != "xno" ; then
213AC_ARG_ENABLE(systray,
214[ --disable-systray Determines whether to build the systray quickstarter.
215],,enable_systray=yes)
216AC_ARG_ENABLE(cairo,
217[ --enable-cairo Determines whether to use Cairo library on
218 platforms where Cairo is available.
219],,enable_cairo=no)
220AC_ARG_WITH(system-cairo,

--- 5611 unchanged lines hidden (view full) ---

5832
5833GSTREAMER_CFLAGS=""
5834GSTREAMER_LIBS=""
5835ENABLE_GSTREAMER=""
5836
5837if test "$test_gstreamer" = "yes"; then
5838 AC_MSG_CHECKING([whether to build the GStreamer media backend])
5839 if test "x$enable_gstreamer" != "xno" ; then
5840 PKG_CHECK_MODULES( GSTREAMER, gtk+-2.0 >= 2.4 gthread-2.0 gstreamer-0.10 gstreamer-interfaces-0.10 ,,AC_MSG_ERROR([requirements to build the GStreamer media backend not met. Use --disable-gstreamer or install the missing packages]))
5840 PKG_CHECK_MODULES( GSTREAMER, gtk+-2.0 >= 2.4 gthread-2.0 gstreamer-0.10 gstreamer-interfaces-0.10 ,,AC_MSG_ERROR([requirements to build the GStreamer media backend not met. Do not use --enable-gstreamer or install the missing packages]))
5841 ENABLE_GSTREAMER="TRUE"
5842 AC_MSG_RESULT([yes])
5843 else
5844 AC_MSG_RESULT([no])
5845 fi
5846fi
5847AC_SUBST(ENABLE_GSTREAMER)
5848AC_SUBST(GSTREAMER_CFLAGS)

--- 1378 unchanged lines hidden ---
5841 ENABLE_GSTREAMER="TRUE"
5842 AC_MSG_RESULT([yes])
5843 else
5844 AC_MSG_RESULT([no])
5845 fi
5846fi
5847AC_SUBST(ENABLE_GSTREAMER)
5848AC_SUBST(GSTREAMER_CFLAGS)

--- 1378 unchanged lines hidden ---