[Bug 239128] audio/swhplugins

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Thu Jul 11 00:43:38 UTC 2019


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=239128

            Bug ID: 239128
           Summary: audio/swhplugins
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: ports-bugs at FreeBSD.org
          Reporter: marcelbonnet at gmail.com

Created attachment 205681
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=205681&action=edit
Makefile diff

When running linuxsampler I found errors related to shared libraries from
audio/swhplugins .

Linuxsampler messages:

$ linuxsampler --instruments-db-location instrumentos.db
LinuxSampler 2.0.0                                                              
Copyright (C) 2003,2004 by Benno Senoner and Christian Schoenebeck   
Copyright (C) 2005-2015 Christian Schoenebeck                       
Detected features: disabled at compile time                        
Automatic Stacktrace: Off                                             
Creating Sampler...OK                                             
Registered sampler engines: 'GIG','SF2','SFZ'                     
Registered MIDI input drivers: JACK                                
Registered audio output drivers: JACK                              
Loading instrument editor plugins...OK                                          
Registered instrument editors:                                       
Registered internal effect systems: LADSPA                                    
failed to load DLL: '/usr/local/lib/ladspa/imp_1199.so', cause:
/usr/local/lib/ladspa/imp_1199.so: Undefined symbol "mk_imps"
failed to load DLL: '/usr/local/lib/ladspa/gong_1424.so', cause:
/usr/local/lib/ladspa/gong_1424.so: Undefined symbol "waveguide_nl_process"
failed to load DLL: '/usr/local/lib/ladspa/sifter_1210.so', cause:
/usr/local/lib/ladspa/sifter_1210.so: Undefined symbol "q_sort"
Registered internal effects: 239                                                
Starting LSCP network server (0.0.0.0:8888)...Thread: WARNING, can't mlockall()
memory!
OK                                                                
LinuxSampler initialization completed. :-)


I changed the Makefile of audio/swhplugins to:

--- Makefile.orig       2019-07-10 21:38:35.532167000 -0300
+++ Makefile    2019-07-10 21:33:08.596835000 -0300
@@ -24,7 +24,7 @@
 LDFLAGS+=      -L${LOCALBASE}/lib
 USE_LDCONFIG=  yes

-CFLAGS+=       -fPIC -DPIC 
+CFLAGS+=       -fPIC -DPIC -std=gnu89

 OPTIONS_DEFINE=        NLS 3DNOW SSE
 OPTIONS_SUB=   yes

And now linuxsampler do not complains :

$    linuxsampler --instruments-db-location instrumentos.db
LinuxSampler 2.0.0
Copyright (C) 2003,2004 by Benno Senoner and Christian Schoenebeck
Copyright (C) 2005-2015 Christian Schoenebeck
Detected features: disabled at compile time
Automatic Stacktrace: Off
Creating Sampler...OK
Registered sampler engines: 'GIG','SF2','SFZ'
Registered MIDI input drivers: JACK
Registered audio output drivers: JACK
Loading instrument editor plugins...OK
Registered instrument editors:
Registered internal effect systems: LADSPA
Registered internal effects: 242
Starting LSCP network server (0.0.0.0:8888)...Thread: WARNING, can't mlockall()
memory!
OK
LinuxSampler initialization completed. :-)

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list