svn commit: r380387 - head/textproc/wordnet/files
Mikhail Teterin
mi at FreeBSD.org
Tue Mar 3 18:09:36 UTC 2015
Author: mi
Date: Tue Mar 3 18:09:35 2015
New Revision: 380387
URL: https://svnweb.freebsd.org/changeset/ports/380387
QAT: https://qat.redports.org/buildarchive/r380387/
Log:
The recently-introduced use of __DECONST relies on uintptr_t (at least
on 8.x), which requires <stdint.h>.
Modified:
head/textproc/wordnet/files/patch-lib__wnutil.c
Modified: head/textproc/wordnet/files/patch-lib__wnutil.c
==============================================================================
--- head/textproc/wordnet/files/patch-lib__wnutil.c Tue Mar 3 17:14:04 2015 (r380386)
+++ head/textproc/wordnet/files/patch-lib__wnutil.c Tue Mar 3 18:09:35 2015 (r380387)
@@ -1,10 +1,11 @@
--- lib/wnutil.c Fri May 6 13:17:39 2005
+++ lib/wnutil.c Wed Dec 21 16:04:36 2005
-@@ -15,5 +15,5 @@
+@@ -15,5 +15,6 @@
#ifdef __unix__
#ifndef __MACH__
-#include <malloc.h>
+#include <stdlib.h>
++#include <stdint.h>
#endif
#endif
@@ -25,5 +25,5 @@
More information about the svn-ports-all
mailing list