diff options
author | wiz <wiz@pkgsrc.org> | 2019-11-14 09:24:06 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2019-11-14 09:24:06 +0000 |
commit | 4137c1c7fc61bd60e17dd58dfbc4155e8238c77a (patch) | |
tree | 626b054667612e799165121a6f18f37a4f8a8f15 /games/enigma/patches | |
parent | d889c1134fdd0cf6727df2270a19fdcadaa158ba (diff) | |
download | pkgsrc-4137c1c7fc61bd60e17dd58dfbc4155e8238c77a.tar.gz |
enigma: remove patch that was removed from distinfo during update
Diffstat (limited to 'games/enigma/patches')
-rw-r--r-- | games/enigma/patches/patch-aa | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/games/enigma/patches/patch-aa b/games/enigma/patches/patch-aa deleted file mode 100644 index 70695138ed3..00000000000 --- a/games/enigma/patches/patch-aa +++ /dev/null @@ -1,30 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2009/06/05 07:04:11 hasso Exp $ - ---- lib-src/enet/unix.c.orig 2009-06-05 02:24:08 +0300 -+++ lib-src/enet/unix.c 2009-06-05 02:26:23 +0300 -@@ -8,6 +8,7 @@ - #include <sys/socket.h> - #include <sys/ioctl.h> - #include <sys/time.h> -+#include <sys/param.h> - #include <arpa/inet.h> - #include <netdb.h> - #include <unistd.h> -@@ -80,7 +81,7 @@ enet_address_set_host (ENetAddress * add - char buffer [2048]; - int errnum; - --#if defined(linux) || defined(__GLIBC__) || defined(__GNU__) -+#if defined(linux) || defined(__GLIBC__) || defined(__GNU__) || (defined(__DragonFly__) && __DragonFly_version >= 200202) - gethostbyname_r (name, & hostData, buffer, sizeof (buffer), & hostEntry, & errnum); - #else - hostEntry = gethostbyname_r (name, & hostData, buffer, sizeof (buffer), & errnum); -@@ -118,7 +119,7 @@ enet_address_get_host (const ENetAddress - - in.s_addr = address -> host; - --#if defined(linux) || defined(__GLIBC__) || defined(__GNU__) -+#if defined(linux) || defined(__GLIBC__) || defined(__GNU__) || (defined(__DragonFly__) && __DragonFly_version >= 200202) - gethostbyaddr_r ((char *) & in, sizeof (struct in_addr), AF_INET, & hostData, buffer, sizeof (buffer), & hostEntry, & errnum); - #else - hostEntry = gethostbyaddr_r ((char *) & in, sizeof (struct in_addr), AF_INET, & hostData, buffer, sizeof (buffer), & errnum); |