Browse Source

Add OSS driver option to jack.spec file.

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@723 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
joq 22 years ago
parent
commit
526cb950a6
1 changed files with 15 additions and 1 deletions
  1. +15
    -1
      jack.spec.in

+ 15
- 1
jack.spec.in View File

@@ -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 <ninjadroid@gazuga.net> - 0.98.1-1
- changes to accomodate jack_oss and RPM's fascist build policy

* Mon Nov 13 2003 Lawrie Abbott <lawrieabbott@iinet.net.au>
- update based on Planet CCRMA 0.80.0 release



Loading…
Cancel
Save