X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/3bd1c92fad10a504eb8283d3f8d540b4fef9831d..ed9292409297f93ea2df30f7e67e35a266acc548:/configure.ac diff --git a/configure.ac b/configure.ac index 1491c67..79778fd 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ # along with this program. If not, see . # -AC_INIT([disorder], [5.1.1], [richard+disorder@sfere.greenend.org.uk]) +AC_INIT([disorder], [5.1.1], [rjk@greenend.org.uk]) AC_CONFIG_AUX_DIR([config.aux]) AM_INIT_AUTOMAKE([foreign]) AC_CONFIG_SRCDIR([server/disorderd.c]) @@ -33,6 +33,7 @@ want_gtk=yes want_python=yes want_tests=yes want_server=yes +want_gstdecode=whatever want_cgi=yes # APIs we want @@ -250,9 +251,14 @@ AC_ARG_WITH([python], [AS_HELP_STRING([--without-python], [do not build Python support])], [want_python=$withval]) +AC_ARG_WITH([gstdecode], + [AS_HELP_STRING([--with-gstdecode], + [require GStreamer-based decoder])], + [want_gstdecode=$withval]) if test $want_server = no; then want_cgi=no + want_gstdecode=no fi # @@ -335,7 +341,7 @@ if test -z "$dochtmldir"; then fi AC_SUBST([dochtmldir]) -subdirs="scripts lib" +subdirs="scripts common lib" if test $want_tests = yes; then subdirs="${subdirs} libtests" fi @@ -432,11 +438,44 @@ fi AC_SUBST([finkdir]) AC_SUBST([finkbindir]) +# Checks for packages. +case $want_gstdecode in + yes | whatever) + PKG_CHECK_MODULES([GSTREAMER], [gstreamer-0.10], + [have_gstreamer=yes], [have_gstreamer=no]) + PKG_CHECK_MODULES([GSTREAMER_PLUGINS_BASE], + [gstreamer-plugins-base-0.10], + [have_gst_plugins_base=yes], [have_gst_plugins_base=no]) + ;; +esac +case $want_gstdecode,$have_gstreamer,$have_gst_plugins_base in + whatever,yes,yes | yes,yes,yes) want_gstdecode=yes ;; + whatever,*) want_gstdecode=no ;; + yes,*) + case $have_gstreamer in + no) missing_libraries="$missing_libraries gstreamer-0.10" ;; + esac + case $have_gst_plugins_base in + no) missing_libraries="$missing_libraries gstreamer-plugins-base-0.10" ;; + esac +esac + +mdw_SAVE_CFLAGS=$CFLAGS +mdw_SAVE_LIBS=$LIBS +CFLAGS="$CFLAGS $GSTREAMER_CFLAGS $GSTREAMER_PLUGINS_BASE_CFLAGS" +LIBS="$LIBS \ + $GSTREAMER_LIBS $GSTREAMER_PLUGINS_BASE_LIBS + -lgstaudio-0.10 -lgstapp-0.10" +AC_CHECK_FUNCS([gst_audio_info_from_caps]) +CFLAGS=$mdw_SAVE_CFLAGS +LIBS=$mdw_SAVE_LIBS + # Checks for libraries. # We save up a list of missing libraries that we can't do without # and report them all at once. AC_CHECK_LIB(gc, GC_malloc, [AC_SUBST(LIBGC,[-lgc])], [missing_libraries="$missing_libraries libgc"]) +AC_CHECK_FUNCS(GC_get_all_interior_pointers) AC_CHECK_LIB(gcrypt, gcry_md_open, [AC_SUBST(LIBGCRYPT,[-lgcrypt])], [missing_libraries="$missing_libraries libgcrypt"]) @@ -695,6 +734,7 @@ if test $want_gtk = yes; then AC_DEFINE([WITH_GTK], [1], [define if using GTK+]) fi AM_CONDITIONAL([GTK], [test x$want_gtk = xyes]) +AM_CONDITIONAL([GSTDECODE], [test x$want_gstdecode = xyes]) # Some GCC invocations warn for converting function pointers to void *. # This is fair enough, as it's technically forbidden, but we use dlsym() @@ -852,6 +892,7 @@ AH_BOTTOM([#ifdef __GNUC__ AC_CONFIG_FILES([Makefile images/Makefile scripts/Makefile + common/Makefile lib/Makefile server/Makefile cgi/Makefile