audio/ladish: update 1.1 → 1.2

This commit is contained in:
Yuri Victorovich 2024-03-29 09:05:15 -07:00
parent 8c0f9ab01e
commit 07c8eaff2b
7 changed files with 5 additions and 69 deletions

View file

@ -1,6 +1,6 @@
PORTNAME= ladish PORTNAME= ladish
DISTVERSION= 1.1 DISTVERSION= 1.2
DISTVERSIONSUFFIX= -g36c489e4 DISTVERSIONSUFFIX= -g4dcd67d7
CATEGORIES= audio CATEGORIES= audio
MASTER_SITES= https://dl.ladish.org/ladish/ MASTER_SITES= https://dl.ladish.org/ladish/

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1702937580 TIMESTAMP = 1711726210
SHA256 (ladish-1.1-g36c489e4.tar.bz2) = 37a11899ce472d6cefa5a53d7de47a410f15120983b6255e82f5110573310b16 SHA256 (ladish-1.2-g4dcd67d7.tar.bz2) = 387c195b2efe4912b48b3e6c9a3feefcc420ef6f457462c0a87a11f8e33b000a
SIZE (ladish-1.1-g36c489e4.tar.bz2) = 656723 SIZE (ladish-1.2-g4dcd67d7.tar.bz2) = 659040

View file

@ -1,11 +0,0 @@
--- alsapid/alsapid.h.orig 2023-12-18 22:37:53 UTC
+++ alsapid/alsapid.h
@@ -29,6 +29,8 @@
#include "../common.h"
+#include <unistd.h> // for pid_t
+
void alsapid_compose_src_link(int alsa_client_id, char * buffer);
void alsapid_compose_dst_link(char * buffer);
bool alsapid_get_pid(int alsa_client_id, pid_t * pid_ptr);

View file

@ -1,11 +0,0 @@
--- alsapid/helper.c.orig 2023-12-18 22:35:47 UTC
+++ alsapid/helper.c
@@ -33,6 +33,8 @@
#include <unistd.h>
#include <sys/types.h>
+#include <libgen.h>
+
void alsapid_compose_src_link(int alsa_client_id, char * buffer)
{
sprintf(buffer, "/tmp/alsapid-%lld-%d", (long long)getuid(), alsa_client_id);

View file

@ -1,10 +0,0 @@
--- daemon/app_supervisor.c.orig 2023-12-18 22:40:21 UTC
+++ daemon/app_supervisor.c
@@ -30,6 +30,7 @@
#include <sys/stat.h>
#include <signal.h>
#include <unistd.h>
+#include <sys/wait.h>
#include "app_supervisor.h"
#include "../dbus_constants.h"

View file

@ -1,22 +0,0 @@
--- daemon/loader.c.orig 2023-12-18 22:30:22 UTC
+++ daemon/loader.c
@@ -30,10 +30,18 @@
#include <unistd.h>
#include <fcntl.h>
-#include <pty.h> /* forkpty() */
+#if !defined(__FreeBSD__)
+# include <pty.h> /* forkpty() */
+#else
+# include <sys/types.h>
+# include <sys/ioctl.h>
+# include <termios.h>
+# include <libutil.h>
+#endif
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/resource.h>
+#include <signal.h>
#include "loader.h"
#include "../proxies/conf_proxy.h"

View file

@ -1,10 +0,0 @@
--- proxies/graph_proxy.h.orig 2023-12-18 22:32:12 UTC
+++ proxies/graph_proxy.h
@@ -28,6 +28,7 @@
#define GRAPH_PROXY_H__61D1ED56_E33B_4F50_B45B_F520979E8AA7__INCLUDED
#include "common.h"
+#include <unistd.h>
typedef struct graph_proxy_tag { int unused; } * graph_proxy_handle;