diff options
author | Pino Toscano <pino@debian.org> | 2012-01-02 11:35:38 +0100 |
---|---|---|
committer | Pino Toscano <pino@debian.org> | 2012-01-02 11:35:38 +0100 |
commit | 42a9a84587119ba12c3c634dcc4b4255b91a20e9 (patch) | |
tree | 7653aac17ae90fd72eea4b36953b326fab1554fa | |
parent | f9cca44a36be9b3892194d724e942d9b7b174cf6 (diff) | |
download | xine-lib-42a9a84587119ba12c3c634dcc4b4255b91a20e9.tar.gz xine-lib-42a9a84587119ba12c3c634dcc4b4255b91a20e9.tar.bz2 |
FTBFS on hurd-i386: not compiled plugins
The problem is that there are some audio and video plugins that are not
enabled (while they could be).
-rw-r--r-- | m4/audio_out.m4 | 4 | ||||
-rw-r--r-- | m4/video_out.m4 | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/m4/audio_out.m4 b/m4/audio_out.m4 index 791f1ecda..59bd1abae 100644 --- a/m4/audio_out.m4 +++ b/m4/audio_out.m4 @@ -41,6 +41,10 @@ AC_DEFUN([XINE_AUDIO_OUT_PLUGINS], [ default_with_pulseaudio=yes default_with_jack=yes ;; + gnu*) + default_with_pulseaudio=yes + default_with_jack=yes + ;; irix*) default_enable_irixal=yes default_enable_oss=no diff --git a/m4/video_out.m4 b/m4/video_out.m4 index 8d6ddad0e..2ac257fec 100644 --- a/m4/video_out.m4 +++ b/m4/video_out.m4 @@ -47,6 +47,10 @@ AC_DEFUN([XINE_VIDEO_OUT_PLUGINS], [ default_enable_vdpau=yes ;; + gnu*) + default_enable_vdpau=yes + ;; + linux*) default_enable_dxr3=yes default_enable_fb=yes |