Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Jul 2019 12:16:24 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r507636 - head/net-mgmt/openbmp/files
Message-ID:  <201907301216.x6UCGOMu050299@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue Jul 30 12:16:23 2019
New Revision: 507636
URL: https://svnweb.freebsd.org/changeset/ports/507636

Log:
  net-mgmt/openbmp: fix build with GCC architectures
  
  Building with GCC requires include sys/types.h in Server/src/Logger.h.
  
  /wrkdirs/usr/ports/net-mgmt/openbmp/work/openbmp-0.14.0/Server/src/Logger.h:99:27: error: 'u_char' has not been declared
       void setWidthFunction(u_char width);
  
  PR:		239329
  Approved by:	pizzamig (maintainer), linimon (mentor)
  Differential Revision:	https://reviews.freebsd.org/D21026

Added:
  head/net-mgmt/openbmp/files/patch-Server_src_Logger.h   (contents, props changed)

Added: head/net-mgmt/openbmp/files/patch-Server_src_Logger.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/openbmp/files/patch-Server_src_Logger.h	Tue Jul 30 12:16:23 2019	(r507636)
@@ -0,0 +1,10 @@
+--- Server/src/Logger.h.orig	2019-07-20 08:42:40 UTC
++++ Server/src/Logger.h
+@@ -13,6 +13,7 @@
+ #include <iostream>
+ #include <cstdint>
+ 
++#include <sys/types.h>
+ 
+ /*
+  * DEBUG is a macro for DebugPrint with FILE, LINE, FUNCTION added



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