- Patch fixing build errors on 10.0-CURRENT New Directories --------------- (none) New Files --------- files/patch-ui-basewindow.cc files/patch-ui-secstring.h Updated Files ------------- (none) Deleted Files ------------- (none)
Responsible Changed From-To: freebsd-ports-bugs->wg I'll take it.
Author: wg Date: Thu Sep 19 16:15:30 2013 New Revision: 327637 URL: http://svnweb.freebsd.org/changeset/ports/327637 Log: security/yapet: fix build on CURRENT - Fix build on CURRENT PR: ports/182211 Submitted by: Rafael Ostertag <rafi guengel.ch> (maintainer) Added: head/security/yapet/files/patch-ui-basewindow.cc (contents, props changed) head/security/yapet/files/patch-ui-secstring.h (contents, props changed) Added: head/security/yapet/files/patch-ui-basewindow.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/yapet/files/patch-ui-basewindow.cc Thu Sep 19 16:15:30 2013 (r327637) @@ -0,0 +1,13 @@ +--- ui/basewindow.cc.orig 2013-09-17 22:04:34.000000000 +0200 ++++ ui/basewindow.cc 2013-09-17 22:05:18.000000000 +0200 +@@ -33,6 +33,10 @@ + # include <stdio.h> + #endif + ++#ifdef HAVE_STDLIB_H ++# include <stdlib.h> ++#endif ++ + #ifdef HAVE_ALGORITHM + # include <algorithm> + #endif Added: head/security/yapet/files/patch-ui-secstring.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/yapet/files/patch-ui-secstring.h Thu Sep 19 16:15:30 2013 (r327637) @@ -0,0 +1,11 @@ +--- ui/secstring.h.orig 2013-09-18 19:44:08.000000000 +0200 ++++ ui/secstring.h 2013-09-18 19:44:30.000000000 +0200 +@@ -61,7 +61,7 @@ + public: + void deallocate (typename std::allocator<T>::pointer p, + typename std::allocator<T>::size_type n) { +- memset (p, '0', n*sizeof (std::allocator<T>::value_type) ); ++ memset (p, '0', n*sizeof (typename std::allocator<T>::value_type) ); + std::allocator<T>::deallocate (p, n); + } + _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!