This commit is contained in:
parent
c6655afa58
commit
148cdcc78c
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6c26c9f2e3a98614a9d59a710c673ba4526e04b62c6baab2f292a8a2baedf03d
|
|
||||||
size 876383
|
|
3
fluidsynth-1.0.8.tar.bz2
Normal file
3
fluidsynth-1.0.8.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:686e0d21f8d65225182c93af9600fef56b6356409157539e4efea842f5ad5fc0
|
||||||
|
size 1052198
|
@ -1,11 +0,0 @@
|
|||||||
--- src/fluidsynth_priv.h-dist 2006-05-15 15:36:31.000000000 +0200
|
|
||||||
+++ src/fluidsynth_priv.h 2006-05-15 15:36:49.000000000 +0200
|
|
||||||
@@ -287,7 +287,7 @@ typedef FILE* fluid_file;
|
|
||||||
*/
|
|
||||||
#ifdef ENABLE_SSE
|
|
||||||
/* FIXME - This is broken on AMD 64 - only used if SSE enabled */
|
|
||||||
-#define FLUID_ALIGN16BYTE(ptr)(((int)(ptr)+15) & (~0xFL))
|
|
||||||
+#define FLUID_ALIGN16BYTE(ptr)(((long)(ptr)+15) & (~0xFL))
|
|
||||||
#else
|
|
||||||
#define FLUID_ALIGN16BYTE(ptr) ptr
|
|
||||||
#endif
|
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 20 10:40:37 CET 2007 - tiwai@suse.de
|
||||||
|
|
||||||
|
- updated to version 1.0.8:
|
||||||
|
* Improved synthesis interpolation
|
||||||
|
* Dithering on 16 bit converted output
|
||||||
|
* Updated fluidmax plugin with polyphony parameter.
|
||||||
|
* Improved ALSA audio and sequencer drivers.
|
||||||
|
* Fixed some Floating Point Exceptions which were causing
|
||||||
|
excessive CPU usage
|
||||||
|
* Some fixes to Chorus and Reverb parameters
|
||||||
|
* Looping/tuning problem when loop end close to end of sample
|
||||||
|
* FluidSynth crashes with QSynth and audio meters turned on
|
||||||
|
* ALSA sequencer driver no longer prints out false errors
|
||||||
|
* Many memory leaks plugged
|
||||||
|
* Warning message printed if a non option is not a valid
|
||||||
|
SoundFont or MIDI file
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 17 16:41:38 CEST 2007 - tiwai@suse.de
|
Tue Apr 17 16:41:38 CEST 2007 - tiwai@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package fluidsynth (Version 1.0.7a)
|
# spec file for package fluidsynth (Version 1.0.8)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -13,16 +13,15 @@
|
|||||||
Name: fluidsynth
|
Name: fluidsynth
|
||||||
BuildRequires: alsa-devel jack-devel ladspa-devel readline-devel
|
BuildRequires: alsa-devel jack-devel ladspa-devel readline-devel
|
||||||
Summary: A Real-Time Software Synthesizer That Uses Soundfont(tm)
|
Summary: A Real-Time Software Synthesizer That Uses Soundfont(tm)
|
||||||
Version: 1.0.7a
|
Version: 1.0.8
|
||||||
Release: 49
|
Release: 1
|
||||||
Group: Productivity/Multimedia/Sound/Midi
|
Group: Productivity/Multimedia/Sound/Midi
|
||||||
# Obsoletes: iiwusynth
|
# Obsoletes: iiwusynth
|
||||||
# Provides: iiwusynth
|
# Provides: iiwusynth
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
|
License: LGPL v2.1 or later
|
||||||
URL: http://www.fluidsynth.org/
|
Url: http://www.fluidsynth.org/
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
Patch: fluidsynth-64bit-fix.diff
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -72,9 +71,7 @@ Authors:
|
|||||||
Johnathan Lee
|
Johnathan Lee
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
# %setup
|
%setup -q
|
||||||
%setup -n %{name}-1.0.7
|
|
||||||
%patch
|
|
||||||
%{?suse_update_config:%{suse_update_config -f}}
|
%{?suse_update_config:%{suse_update_config -f}}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -117,8 +114,22 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
|
|||||||
%files -n libfluidsynth1
|
%files -n libfluidsynth1
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/lib*.so.*
|
%{_libdir}/lib*.so.*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 20 2007 - tiwai@suse.de
|
||||||
|
- updated to version 1.0.8:
|
||||||
|
* Improved synthesis interpolation
|
||||||
|
* Dithering on 16 bit converted output
|
||||||
|
* Updated fluidmax plugin with polyphony parameter.
|
||||||
|
* Improved ALSA audio and sequencer drivers.
|
||||||
|
* Fixed some Floating Point Exceptions which were causing
|
||||||
|
excessive CPU usage
|
||||||
|
* Some fixes to Chorus and Reverb parameters
|
||||||
|
* Looping/tuning problem when loop end close to end of sample
|
||||||
|
* FluidSynth crashes with QSynth and audio meters turned on
|
||||||
|
* ALSA sequencer driver no longer prints out false errors
|
||||||
|
* Many memory leaks plugged
|
||||||
|
* Warning message printed if a non option is not a valid
|
||||||
|
SoundFont or MIDI file
|
||||||
* Tue Apr 17 2007 - tiwai@suse.de
|
* Tue Apr 17 2007 - tiwai@suse.de
|
||||||
- follow library packaging policy
|
- follow library packaging policy
|
||||||
* split shared library to libfluidsynth1 sub package
|
* split shared library to libfluidsynth1 sub package
|
||||||
|
Loading…
Reference in New Issue
Block a user