Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Mar 2015 18:09:35 +0000 (UTC)
From:      Mikhail Teterin <mi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r380387 - head/textproc/wordnet/files
Message-ID:  <201503031809.t23I9Z43012386@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 @@



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503031809.t23I9Z43012386>