Hello community, here is the log from the commit of package ladspa-vocoder for openSUSE:Factory checked in at 2014-02-02 22:19:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ladspa-vocoder (Old) and /work/SRC/openSUSE:Factory/.ladspa-vocoder.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ladspa-vocoder" Changes: -------- New Changes file: --- /dev/null 2013-11-25 01:44:08.036031256 +0100 +++ /work/SRC/openSUSE:Factory/.ladspa-vocoder.new/ladspa-vocoder.changes 2014-02-02 22:19:50.000000000 +0100 @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Mon Dec 16 15:03:13 CET 2013 - [email protected] + +- Initial version 0.3: split from ladspa package + New: ---- ladspa-vocoder.changes ladspa-vocoder.spec vocoder-0.1.dif vocoder-ladspa-0.3.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ladspa-vocoder.spec ++++++ # # spec file for package ladspa-vocoder # # Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # Name: ladspa-vocoder BuildRequires: gcc BuildRequires: ladspa-devel Summary: LADSPA vocoder plugin License: GPL-2.0+ Group: Productivity/Multimedia/Sound/Utilities Version: 0.3 Release: 0 AutoReq: on Autoprov: off Supplements: ladspa Source: vocoder-ladspa-%{version}.tar.bz2 Patch1: vocoder-0.1.dif Url: http://users.skynet.be/solaris/linuxaudio/ BuildRoot: %{_tmppath}/%{name}-%{version}-build %description This package provides a LADSPA (Linux Audio Developer's Simple Plug-in API) vocoder plugin. %prep %setup -q -n vocoder-%{version} %patch1 %build # This package failed when testing with -Wl,-as-needed being default. # So we disable it here, if you want to retest, just delete this comment and the line below. export SUSE_ASNEEDED=0 make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS -fPIC -ggdb" %install mkdir -p $RPM_BUILD_ROOT%{_libdir}/ladspa install -c *.so "$RPM_BUILD_ROOT"%{_libdir}/ladspa %files %defattr(-,root,root) %{_libdir}/ladspa %doc COPYRIGHT README %changelog ++++++ vocoder-0.1.dif ++++++ --- vocoder.c +++ vocoder.c 2002/05/07 12:43:43 @@ -263,8 +263,8 @@ /* _init() is called automatically when the plugin library is first loaded. */ -void -_init() { +static void __attribute__ ((constructor)) +init() { char ** pcPortNames; LADSPA_PortDescriptor * piPortDescriptors; LADSPA_PortRangeHint * psPortRangeHints; @@ -338,8 +338,8 @@ /*****************************************************************************/ /* _fini() is called automatically when the library is unloaded. */ -void -_fini() { +static void __attribute__ ((destructor)) +fini() { long lIndex; if (g_psDescriptor) { free((char *)g_psDescriptor->Label); --- Makefile-dist 2004-01-22 14:32:58.000000000 +0100 +++ Makefile 2004-01-22 14:33:02.000000000 +0100 @@ -14,7 +14,7 @@ vocoder.so: vocoder.c $(CC) $(CFLAGS) -o vocoder.o -c vocoder.c - $(LD) -o vocoder.so vocoder.o -shared + $(CC) -o vocoder.so vocoder.o -shared ############################################################################### # -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
