search for: with_audio

Displaying 7 results from an estimated 7 matches for "with_audio".

Did you mean: with_audit
2007 Nov 08
0
configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_playback_pa.c
...rams working). The priority order for auto config is alsa, pulse, oss. If common desktops move to PA, we may want to revisit this ordering. diff --git a/configure.ac b/configure.ac index 5708323..fc48f5c 100644 --- a/configure.ac +++ b/configure.ac @@ -141,6 +141,23 @@ if test "$with_audio" = "auto" -o "$with_audio" = "alsa"; then fi fi +dnl Use PA if ALSA wasn't found and we're auto and it's available. +dnl Disabled for now until the PA backend works. +if test "$with_audio" = "auto" -o "$with_audio" =...
2007 Jul 16
0
configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_playback_oss.c
...+ b/configure.ac @@ -125,7 +125,7 @@ dnl dnl audio backend dnl AC_ARG_WITH(audio, - [AC_HELP_STRING([--with-audio=@<:@auto/alsa/none@:>@], + [AC_HELP_STRING([--with-audio=@<:@auto/alsa/oss/none@:>@], [audio backend to use])],, [with_audio=auto]) @@ -134,6 +134,8 @@ if test "$with_audio" = "auto" -o "$with PKG_CHECK_MODULES(ALSA, alsa >= 1.0, AUDIO_TYPE=alsa) if test "$AUDIO_TYPE" = "alsa"; then with_audio=alsa + AUDIO_CFLAGS=$ALSA_CFLAGS + AUDIO_LIBS=$ALSA_LIBS el...
2007 Dec 01
1
OpenBSD related patches
Hello, list ! Here is diff of changes, i had to make to get swfdec running on OpenBSD 4.2-current. Regards Valery. P.S. Please cc me, i am not subscribed to the list -------------- next part -------------- A non-text attachment was scrubbed... Name: swfdec.diff Type: application/octet-stream Size: 11628 bytes Desc: not available Url :
2007 Jan 29
0
3 commits - autogen.sh configure.ac player/.gitignore player/Makefile.am player/swfdec_playback_alsa.c player/swfdec_playback.c player/swfdec_playback_none.c
...if test "$HAVE_ALSA" = "no"; then - AC_MSG_WARN([cannot find alsa, player will be disabled]) +dnl +dnl audio backend +dnl +AC_ARG_WITH(audio, + [AC_HELP_STRING([--with-audio=@<:@auto/alsa/none@:>@], + [audio backend to use])],, + [with_audio=auto]) + +AUDIO_TYPE= +if test "$with_audio" = "auto" -o "$with_audio" = "alsa"; then + PKG_CHECK_MODULES(ALSA, alsa >= 1.0, AUDIO_TYPE=alsa) + if test "$AUDIO_TYPE" = "alsa"; then + with_audio=alsa + else + AC_MSG_WARN([no als...
2007 Jan 31
0
Branch 'interpreter' - 20 commits - autogen.sh configure.ac libswfdec/js libswfdec/swfdec_debug.h libswfdec/swfdec_js.c libswfdec/swfdec_js_color.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_script.c
...if test "$HAVE_ALSA" = "no"; then - AC_MSG_WARN([cannot find alsa, player will be disabled]) +dnl +dnl audio backend +dnl +AC_ARG_WITH(audio, + [AC_HELP_STRING([--with-audio=@<:@auto/alsa/none@:>@], + [audio backend to use])],, + [with_audio=auto]) + +AUDIO_TYPE= +if test "$with_audio" = "auto" -o "$with_audio" = "alsa"; then + PKG_CHECK_MODULES(ALSA, alsa >= 1.0, AUDIO_TYPE=alsa) + if test "$AUDIO_TYPE" = "alsa"; then + with_audio=alsa + else + AC_MSG_WARN([no als...
2007 Jul 07
1
Compiling swfdec without GTK
...led it with GTK. But if I disable GTK then I am getting error messages while compiling test directory. I have used following configuration options: ./configure enable_shared=no enable_static=yes enable_mad=no enable_gtk_doc=no enable_ffmpeg=no enable_gtk=no enable_gnome_vfs=no enable_gstreamer=no with_audio=none Following are the error messages: make[3]: Entering directory `/home/FlashLibs/swfdec-0.4.5/test' if /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -Wextra -Wno-missing-field-initializers -Wno-unused-parameter -I.. -I/usr/include/glib-2.0 -I/usr/lib/...
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
...in Otte <otte@gnome.org> Date: Mon Mar 26 12:46:56 2007 +0200 movie libswfdecui to libswfdec-gtk and make libswfdec-gtk an installed library diff --git a/configure.ac b/configure.ac index 5ac3db0..65be1fc 100644 --- a/configure.ac +++ b/configure.ac @@ -122,7 +122,11 @@ if test "$with_audio" = "auto" -o "$with if test "$AUDIO_TYPE" = "alsa"; then with_audio=alsa else - AC_MSG_WARN([no alsa audio support]) + if test "$with_audio" = "alsa"; then + AC_MSG_ERROR([no alsa audio support]) + else + AC_M...