1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

Update to 0.2.20

This commit is contained in:
Ade Lovett 2000-10-05 23:03:44 +00:00
parent 633afd4037
commit 3c87e8ec0f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=33442
4 changed files with 3 additions and 16 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= esound
PORTVERSION= 0.2.19
PORTVERSION= 0.2.20
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/esound

View File

@ -1 +1 @@
MD5 (esound-0.2.19.tar.gz) = 05ce2d3d8db08a340a4fc04671a38ef0
MD5 (esound-0.2.20.tar.gz) = 7973f370efe15bec740fb495b2571dfc

View File

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

View File

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