diff options
author | Fabian Groffen <grobian@gentoo.org> | 2021-06-18 09:34:25 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2021-06-18 10:58:32 +0200 |
commit | d79073fa489f7f736f8b64e8598e2d93ea0c0264 (patch) | |
tree | 6e1ee284fbf313ee0e7f9923762baec4280cf113 /net-analyzer/openbsd-netcat/files | |
parent | sci-misc/netlogo-bin: remove version with min java 1.5 (diff) | |
download | gentoo-d79073fa489f7f736f8b64e8598e2d93ea0c0264.tar.gz gentoo-d79073fa489f7f736f8b64e8598e2d93ea0c0264.tar.bz2 gentoo-d79073fa489f7f736f8b64e8598e2d93ea0c0264.zip |
net-analyzer/openbsd-netcat-1.195-r1: fix compile for real on >=darwin19
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'net-analyzer/openbsd-netcat/files')
-rw-r--r-- | net-analyzer/openbsd-netcat/files/openbsd-netcat-1.190-darwin13.patch | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net-analyzer/openbsd-netcat/files/openbsd-netcat-1.190-darwin13.patch b/net-analyzer/openbsd-netcat/files/openbsd-netcat-1.190-darwin13.patch index 5a643a2945f3..216b8c207922 100644 --- a/net-analyzer/openbsd-netcat/files/openbsd-netcat-1.190-darwin13.patch +++ b/net-analyzer/openbsd-netcat/files/openbsd-netcat-1.190-darwin13.patch @@ -1,4 +1,8 @@ -strtonum isn't available on <Darwin-10.15 +strtonum isn't available on <Darwin-11 + +however, it is in the header files on systems like 10.15 with an +availability clause, so don't define strtonum static such that it +matches the prototype from stdlib.h diff --git a/netcat.c b/netcat.c index a0fb51b..bbb5dd1 100644 @@ -14,7 +18,7 @@ index a0fb51b..bbb5dd1 100644 + "invalid" +}; + -+static long long ++long long +strtonum( + const char *nptr, + long long minval, |