From 526cb950a61be7db59b7f74f43a414eb6b6d7a68 Mon Sep 17 00:00:00 2001 From: joq Date: Sun, 23 May 2004 00:40:12 +0000 Subject: [PATCH] Add OSS driver option to jack.spec file. git-svn-id: svn+ssh://jackaudio.org/trunk/jack@723 0c269be4-1314-0410-8aa9-9f06e86f4224 --- jack.spec.in | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/jack.spec.in b/jack.spec.in index 7ca7b8e..d369c6b 100644 --- a/jack.spec.in +++ b/jack.spec.in @@ -8,7 +8,9 @@ %define jack_tmpdir /var/lib/tmp %endif # use port audio -%define port_audio 1 +%define port_audio 0 +# use oss +%define oss 0 # strip binaries %define strip_jackd 1 @@ -72,6 +74,9 @@ Small example clients that use the Jack Audio Connection Kit. %if ! %{port_audio} --disable-portaudio \ %endif +%if ! %{oss} + --disable-oss \ +%endif %if %{strip_jackd} --enable-stripped-jackd %endif @@ -182,6 +187,9 @@ fi %if %{port_audio} %{_libdir}/jack/jack_portaudio.so %endif +%if %{oss} +%{_libdir}/jack/jack_oss.so +%endif %{_mandir}/man1/* %if %{enable_tmpdir} %dir %{jack_tmpdir} @@ -198,6 +206,9 @@ fi %if %{port_audio} %{_libdir}/jack/jack_portaudio.la %endif +%if %{oss} +%{_libdir}/jack/jack_oss.la +%endif %{_includedir}/jack/jack.h %{_includedir}/jack/ringbuffer.h %{_includedir}/jack/timestamps.h @@ -221,6 +232,9 @@ fi %changelog +* Sat May 22 2004 Pete Bessman - 0.98.1-1 +- changes to accomodate jack_oss and RPM's fascist build policy + * Mon Nov 13 2003 Lawrie Abbott - update based on Planet CCRMA 0.80.0 release