diff options
author | wiz <wiz@pkgsrc.org> | 2003-08-27 08:17:22 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-08-27 08:17:22 +0000 |
commit | 56e05fda996c90002693b54936e2abfe00556330 (patch) | |
tree | aeaf33538011cb9740062d0d9de31eb70d9913b0 /audio/esound | |
parent | 7f67e25a0d52d5f7cb4d9c326ebda0eb109a9a57 (diff) | |
download | pkgsrc-56e05fda996c90002693b54936e2abfe00556330.tar.gz |
Fix a build failure with USE_INET6=NO, reported by Soren Jacobsen
in PR 22615.
Diffstat (limited to 'audio/esound')
-rw-r--r-- | audio/esound/distinfo | 3 | ||||
-rw-r--r-- | audio/esound/patches/patch-ad | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/audio/esound/distinfo b/audio/esound/distinfo index 23e10ba30b9..3916215531a 100644 --- a/audio/esound/distinfo +++ b/audio/esound/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.14 2003/08/17 19:37:23 jmmv Exp $ +$NetBSD: distinfo,v 1.15 2003/08/27 08:17:22 wiz Exp $ SHA1 (esound-0.2.31.tar.gz) = e67ba468a343c37e2a20a22f0654804a596059b6 Size (esound-0.2.31.tar.gz) = 497012 bytes SHA1 (patch-aa) = fe632a5514073f8d898fef5182a1047b9f2a44c9 SHA1 (patch-ab) = 50d4c829fe5d53f28a4a38b1962097b8a47b97c7 SHA1 (patch-ac) = 8c68050320c80363b831745eb17cc0703acbaf24 +SHA1 (patch-ad) = 4277273aeb2f08d8f48942d5f89a57bc4892ec9d SHA1 (patch-ae) = de4948795f3dc05ede7235269d85a08bac5266fc diff --git a/audio/esound/patches/patch-ad b/audio/esound/patches/patch-ad new file mode 100644 index 00000000000..cd2036b2652 --- /dev/null +++ b/audio/esound/patches/patch-ad @@ -0,0 +1,15 @@ +$NetBSD: patch-ad,v 1.4 2003/08/27 08:17:23 wiz Exp $ + +--- esd.c.orig Fri Aug 1 15:58:30 2003 ++++ esd.c +@@ -479,8 +479,10 @@ int open_listen_socket(const char *hostn + fprintf(stderr,"Unable to bind port %d\n", port ); + exit(1); + } ++#if defined (ENABLE_IPV6) + if ( result ) + freeaddrinfo ( result ); ++#endif + } + else + { |