svn commit: r402127 - head/devel/nspr/files

Jan Beich jbeich at FreeBSD.org
Sat Nov 21 02:24:54 UTC 2015


Author: jbeich
Date: Sat Nov 21 02:24:52 2015
New Revision: 402127
URL: https://svnweb.freebsd.org/changeset/ports/402127

Log:
  devel/nspr: unbreak building prtests after r394866
  
  prfz.c:24:31: error: use of undeclared identifier 'SIZE_MAX'
      size_t  unsigned_max    = SIZE_MAX;
                                ^
  1 error generated.

Modified:
  head/devel/nspr/files/patch-tests   (contents, props changed)

Modified: head/devel/nspr/files/patch-tests
==============================================================================
--- head/devel/nspr/files/patch-tests	Sat Nov 21 02:23:29 2015	(r402126)
+++ head/devel/nspr/files/patch-tests	Sat Nov 21 02:24:52 2015	(r402127)
@@ -584,6 +584,17 @@
 +	    clientThreadFunc, (void *)(uintptr_t)listenPort3,
  	    PR_PRIORITY_NORMAL, PR_GLOBAL_BOUND_THREAD,
  	    PR_UNJOINABLE_THREAD, 0);
+--- ../pr/tests/prfz.c.orig	2015-10-16 13:22:19 UTC
++++ ../pr/tests/prfz.c
+@@ -7,7 +7,7 @@
+  */
+ 
+ #include "prprf.h"
+-#include <sys/types.h>
++#include <stdint.h>
+ #include <limits.h>
+ #include <string.h>
+ 
 --- ../pr/tests/ranfile.c	Sun Apr 25 11:01:02 2004
 +++ ../pr/tests/ranfile.c	Mon Jul 25 21:13:44 2005
 @@ -169,5 +169,5 @@


More information about the svn-ports-all mailing list