Merge branch 'debian/latest' into debian/bookworm
This commit is contained in:
commit
6cb5e954da
|
@ -1,3 +1,9 @@
|
||||||
|
qtsoundmodem (0.0.0.67-2) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Fixing libpulse
|
||||||
|
|
||||||
|
-- Dave Hibberd <d@vehibberd.com> Thu, 14 Sep 2023 21:53:22 +0100
|
||||||
|
|
||||||
qtsoundmodem (0.0.0.67-1~bpo12+1) bookworm; urgency=medium
|
qtsoundmodem (0.0.0.67-1~bpo12+1) bookworm; urgency=medium
|
||||||
|
|
||||||
* Rebuild for bookworm-backports.
|
* Rebuild for bookworm-backports.
|
||||||
|
|
|
@ -12,5 +12,6 @@ Rules-Requires-Root: no
|
||||||
Package: qtsoundmodem
|
Package: qtsoundmodem
|
||||||
Architecture: linux-any
|
Architecture: linux-any
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Recommends: libpulse0
|
||||||
Description: Qt-based Sound Modem & Terminal for packet
|
Description: Qt-based Sound Modem & Terminal for packet
|
||||||
QtSoundModem (QtSM) is a multi-platform port of UZ7HO's SoundModem
|
QtSoundModem (QtSM) is a multi-platform port of UZ7HO's SoundModem
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
--- a/pulse.c
|
||||||
|
+++ b/pulse.c
|
||||||
|
@@ -67,7 +67,7 @@
|
||||||
|
if (handle)
|
||||||
|
return handle; // already done
|
||||||
|
|
||||||
|
- handle = dlopen("libpulse.so", RTLD_LAZY);
|
||||||
|
+ handle = dlopen("libpulse.so.0", RTLD_LAZY);
|
||||||
|
|
||||||
|
if (!handle)
|
||||||
|
{
|
||||||
|
@@ -91,7 +91,7 @@
|
||||||
|
if ((ppa_operation_unref = getModule(handle, "pa_operation_unref")) == NULL) return NULL;
|
||||||
|
if ((ppa_operation_get_state = getModule(handle, "pa_operation_get_state")) == NULL) return NULL;
|
||||||
|
|
||||||
|
- shandle = dlopen("libpulse-simple.so", RTLD_LAZY);
|
||||||
|
+ shandle = dlopen("libpulse-simple.so.0", RTLD_LAZY);
|
||||||
|
|
||||||
|
if (!shandle)
|
||||||
|
{
|
|
@ -1 +1,2 @@
|
||||||
|
libpulse.patch
|
||||||
build-fix.patch
|
build-fix.patch
|
||||||
|
|
Loading…
Reference in New Issue