aboutsummaryrefslogtreecommitdiff
path: root/audio/esound/files
diff options
context:
space:
mode:
authorAde Lovett <ade@FreeBSD.org>2000-10-05 23:03:44 +0000
committerAde Lovett <ade@FreeBSD.org>2000-10-05 23:03:44 +0000
commit3c87e8ec0fd0364b62268d060b19b829fdac400e (patch)
tree3075cd670d3239e9e53dabf45708d4d210e1e245 /audio/esound/files
parent633afd403769b9a76485fd1a2650cfe6c913bcc0 (diff)
Notes
Diffstat (limited to 'audio/esound/files')
-rw-r--r--audio/esound/files/patch-ab2
-rw-r--r--audio/esound/files/patch-ac13
2 files changed, 1 insertions, 14 deletions
diff --git a/audio/esound/files/patch-ab b/audio/esound/files/patch-ab
index e9adf4705bbf..10d7e657d30f 100644
--- a/audio/esound/files/patch-ab
+++ b/audio/esound/files/patch-ab
@@ -6,7 +6,7 @@
/* path and name of the default EsounD domain socket */
+#if 0
#define ESD_UNIX_SOCKET_DIR "/tmp/.esd"
- #define ESD_UNIX_SOCKET_NAME ESD_UNIX_SOCKET_DIR ## "/" ## "socket"
+ #define ESD_UNIX_SOCKET_NAME ESD_UNIX_SOCKET_DIR "/socket"
+#else
+char *esd_unix_socket_dir(void);
+char *esd_unix_socket_name(void);
diff --git a/audio/esound/files/patch-ac b/audio/esound/files/patch-ac
index f493138a02a1..9a7286980fe9 100644
--- a/audio/esound/files/patch-ac
+++ b/audio/esound/files/patch-ac
@@ -17,16 +17,3 @@
}
if (access(ESD_UNIX_SOCKET_NAME, R_OK | W_OK) == -1)
{
-@@ -317,9 +317,9 @@
- /* let anyone access esd's socket - but we have authentication so they */
- /* wont get far if they dont have the auth key */
- chmod(ESD_UNIX_SOCKET_NAME,
-- S_IRUSR|S_IWUSR|S_IXUSR|
-- S_IRGRP|S_IWGRP|S_IXGRP|
-- S_IROTH|S_IWOTH|S_IXOTH);
-+ S_IRUSR|S_IWUSR|
-+ S_IRGRP|
-+ S_IROTH);
- }
- if (listen(socket_listen,16)<0)
- {