mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
15 lines
500 B
C
15 lines
500 B
C
$NetBSD: patch-liblrzip.c,v 1.1 2013/10/21 11:29:05 fhajny Exp $
|
|
|
|
fmemopen is also not available on SunOS.
|
|
--- liblrzip.c.orig 2013-09-01 14:41:11.000000000 +0000
|
|
+++ liblrzip.c
|
|
@@ -36,7 +36,7 @@
|
|
#include "lrzip_core.h"
|
|
#include "rzip.h"
|
|
|
|
-#if defined(__APPLE__) || defined(__FreeBSD__)
|
|
+#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__sun)
|
|
# define fmemopen(s, len, modes) fake_fmemopen((s), (len), (modes))
|
|
static FILE *fake_fmemopen(void *buf, size_t buflen, const char *mode)
|
|
{
|