Merge branch 'debian/latest' into ubuntu/jammy

This commit is contained in:
Dave Hibberd 2023-09-14 22:16:51 +01:00
commit 1a0e2a5796
No known key found for this signature in database
GPG Key ID: 03A1FB7A1904771B
4 changed files with 29 additions and 1 deletions

8
debian/changelog vendored
View File

@ -1,8 +1,14 @@
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-jammy1) jammy; urgency=medium qtsoundmodem (0.0.0.67-jammy1) jammy; urgency=medium
* New Upstream * New Upstream
-- Dave Hibberd <d@vehibberd.com> Tue, 12 Sep 2023 21:39:41 +0100 -- Dave Hibberd <d@vehibberd.com> Tue, 12 Sep 2023 21:49:25 +0100
qtsoundmodem (0.0.0.66-jammy1) jammy; urgency=medium qtsoundmodem (0.0.0.66-jammy1) jammy; urgency=medium

1
debian/control vendored
View File

@ -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

20
debian/patches/libpulse.patch vendored Normal file
View File

@ -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)
{

View File

@ -1 +1,2 @@
libpulse.patch
build-fix.patch build-fix.patch