Changes between Initial Version and Version 1 of Ticket #69539, comment 17


Ignore:
Timestamp:
Apr 17, 2024, 9:33:37 AM (3 weeks ago)
Author:
barracuda156
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #69539, comment 17

    initial v1  
    11On PowerPC `pulseaudio` just segfaults on start, so no surprise it failed with VLC. Should be fixable.
    22Sonoma still makes me wonder though.
     3
     4Segfault on ppc fixed, and I have found something very funny which perhaps explains why it does not work: the port installs dylibs, but its binaries are looking for .so objects:
     5{{{
     636-5% pulseaudio
     7W: [(null)] caps.c: Normally all extra capabilities would be dropped now, but that's impossible because PulseAudio was built without capabilities support.
     8E: [(null)] ltdl-bind-now.c: Failed to open module module-device-restore.so: dlopen(module-device-restore.so, 2): image not found
     9E: [(null)] ltdl-bind-now.c: Failed to open module module-stream-restore.so: dlopen(module-stream-restore.so, 2): image not found
     10E: [(null)] ltdl-bind-now.c: Failed to open module module-card-restore.so: dlopen(module-card-restore.so, 2): image not found
     11E: [(null)] ltdl-bind-now.c: Failed to open module module-augment-properties.so: dlopen(module-augment-properties.so, 2): image not found
     12E: [(null)] ltdl-bind-now.c: Failed to open module module-switch-on-port-available.so: dlopen(module-switch-on-port-available.so, 2): image not found
     13E: [(null)] ltdl-bind-now.c: Failed to open module module-detect.so: dlopen(module-detect.so, 2): image not found
     14W: [(null)] module-detect.c: failed to detect any sound hardware.
     15E: [(null)] module.c: Failed to load module "module-detect" (argument: ""): initialization failed.
     16E: [(null)] ltdl-bind-now.c: Failed to open module module-native-protocol-unix.so: dlopen(module-native-protocol-unix.so, 2): image not found
     17W: [(null)] authkey.c: Failed to open cookie file '/Users/svacchanda/.config/pulse/cookie': No such file or directory
     18W: [(null)] authkey.c: Failed to load authentication key '/Users/svacchanda/.config/pulse/cookie': No such file or directory
     19W: [(null)] authkey.c: Failed to open cookie file '/Users/svacchanda/.pulse-cookie': No such file or directory
     20W: [(null)] authkey.c: Failed to load authentication key '/Users/svacchanda/.pulse-cookie': No such file or directory
     21E: [(null)] ltdl-bind-now.c: Failed to open module module-default-device-restore.so: dlopen(module-default-device-restore.so, 2): image not found
     22E: [(null)] ltdl-bind-now.c: Failed to open module module-always-sink.so: dlopen(module-always-sink.so, 2): image not found
     23E: [(null)] ltdl-bind-now.c: Failed to open module module-null-sink.so: dlopen(module-null-sink.so, 2): image not found
     24E: [(null)] ltdl-bind-now.c: Failed to open module module-intended-roles.so: dlopen(module-intended-roles.so, 2): image not found
     25E: [(null)] ltdl-bind-now.c: Failed to open module module-suspend-on-idle.so: dlopen(module-suspend-on-idle.so, 2): image not found
     26E: [(null)] ltdl-bind-now.c: Failed to open module module-position-event-sounds.so: dlopen(module-position-event-sounds.so, 2): image not found
     27E: [(null)] ltdl-bind-now.c: Failed to open module module-role-cork.so: dlopen(module-role-cork.so, 2): image not found
     28E: [(null)] ltdl-bind-now.c: Failed to open module module-filter-heuristics.so: dlopen(module-filter-heuristics.so, 2): image not found
     29E: [(null)] ltdl-bind-now.c: Failed to open module module-filter-apply.so: dlopen(module-filter-apply.so, 2): image not found
     30W: [(null)] cli-command.c: stat('/opt/local/etc/pulse/default.pa.d'): No such file or directory
     31}}}
     32
     33I guess no one used it so far? )
     34
     35Lumme sort this madness out.