upgrade to esound 0.2.20

This commit is contained in:
brad 2000-10-06 00:17:45 +00:00
parent d7e775947e
commit 73f0ba705c
8 changed files with 27 additions and 60 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.18 2000/09/24 07:04:01 brad Exp $
# $OpenBSD: Makefile,v 1.19 2000/10/06 00:17:45 brad Exp $
# $FreeBSD: Makefile,v 1.8 1999/03/09 01:08:46 nectar Exp $
DISTNAME= esound-0.2.19
DISTNAME= esound-0.2.20
CATEGORIES= audio
NEED_VERSION= 1.330
NEED_VERSION= 1.336
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/esound

View File

@ -1,3 +1,3 @@
MD5 (esound-0.2.19.tar.gz) = 05ce2d3d8db08a340a4fc04671a38ef0
RMD160 (esound-0.2.19.tar.gz) = ad8e3a7c59bf277ce10a2cfe49980873992fd224
SHA1 (esound-0.2.19.tar.gz) = e2b43a8d16fe0fc9e56d79dc332b668aef1569be
MD5 (esound-0.2.20.tar.gz) = 7973f370efe15bec740fb495b2571dfc
RMD160 (esound-0.2.20.tar.gz) = 5169d0a0b4abd2612d67bcf335189b28956c27cf
SHA1 (esound-0.2.20.tar.gz) = 09697e64b332688c203f87b3baf7a3bb24b7ef4e

View File

@ -1,29 +1,11 @@
--- Makefile.in.orig Tue Jul 18 12:35:17 2000
+++ Makefile.in Sun Aug 6 04:24:05 2000
@@ -135,7 +135,7 @@
genrand.h
-libesd_la_LDFLAGS = -version-info @ESD_VERSION_INFO@
+libesd_la_LDFLAGS = -version-info 2:19:0
libesd_la_LIBADD = @AUDIOFILE_LIBS@ -lm
@@ -143,7 +143,7 @@
libesddsp.la
-libesddsp_la_LDFLAGS = -rpath $(libdir) -version-info @ESD_VERSION_INFO@
+libesddsp_la_LDFLAGS = -rpath $(libdir) -version-info 2:19:0
libesddsp_la_LIBADD = @DL_LIB@ -lm
@@ -236,7 +236,7 @@
--- Makefile.in.orig Tue Oct 3 14:32:18 2000
+++ Makefile.in Thu Oct 5 19:52:36 2000
@@ -178,7 +178,7 @@
m4datadir = $(datadir)/aclocal
m4data_DATA = esd.m4
-esdconfdir = $(sysconfdir)
+esdconfdir = $(prefix)/share/examples/esound
+esdconfdir = $(datadir)/examples/esound
esdconf_DATA = esd.conf
CLEANFILES = esound.spec

View File

@ -1,8 +1,8 @@
--- configure.orig Mon Nov 15 12:23:06 1999
+++ configure Sun Aug 6 03:02:12 2000
@@ -4077,6 +4077,7 @@
--- configure.orig Tue Oct 3 13:59:31 2000
+++ configure Thu Oct 5 19:31:30 2000
@@ -4224,6 +4224,7 @@
cat > conftest.$ac_ext <<EOF
#line 4079 "configure"
#line 4226 "configure"
#include "confdefs.h"
+#include <stdio.h>
#include <tcpd.h>

View File

@ -1,5 +1,5 @@
--- esd.c.orig Sun Aug 6 04:43:42 2000
+++ esd.c Sun Aug 6 04:47:49 2000
--- esd.c.orig Mon Oct 2 12:39:17 2000
+++ esd.c Thu Oct 5 19:39:00 2000
@@ -219,12 +219,12 @@
{
mkdir(ESD_UNIX_SOCKET_DIR,
@ -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)
{

View File

@ -1,17 +1,15 @@
--- esd.h.orig Sun Aug 6 04:42:18 2000
+++ esd.h Sun Aug 6 04:43:12 2000
@@ -7,8 +7,15 @@
--- esd.h.orig Thu Oct 5 19:34:39 2000
+++ esd.h Thu Oct 5 19:35:35 2000
@@ -7,8 +7,13 @@
#endif
/* 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);
+#define ESD_UNIX_SOCKET_DIR esd_unix_socket_dir()
+#define ESD_UNIX_SOCKET_NAME esd_unix_socket_name()
+#define ESD_UNIX_SOCKET_DIR esd_unix_socket_dir()
+#define ESD_UNIX_SOCKET_NAME esd_unix_socket_name()
+#endif
/* length of the audio buffer size */

View File

@ -1,5 +1,5 @@
--- esdlib.c.orig Sun Aug 6 04:49:10 2000
+++ esdlib.c Sun Aug 6 04:51:37 2000
--- esdlib.c.orig Mon Oct 2 12:44:18 2000
+++ esdlib.c Thu Oct 5 19:39:59 2000
@@ -19,6 +19,8 @@
#include <arpa/inet.h>
#include <errno.h>
@ -9,7 +9,7 @@
#include <sys/un.h>
@@ -1421,4 +1423,34 @@
@@ -1422,4 +1424,34 @@
*/
return close( esd );

View File

@ -1,3 +1,3 @@
@comment $OpenBSD: PFRAG.shared,v 1.3 2000/08/06 08:21:35 brad Exp $
lib/libesd.so.2.19
@comment $OpenBSD: PFRAG.shared,v 1.4 2000/10/06 00:17:46 brad Exp $
lib/libesd.so.2.20
DYNLIBDIR(%B)