Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Aug 2020 12:39:08 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r546336 - head/multimedia/libcec/files
Message-ID:  <202008271239.07RCd8WC084646@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tcberner
Date: Thu Aug 27 12:39:08 2020
New Revision: 546336
URL: https://svnweb.freebsd.org/changeset/ports/546336

Log:
  multimedia/libcec: fix build on recent current

Added:
  head/multimedia/libcec/files/patch-include_cecloader.h   (contents, props changed)

Added: head/multimedia/libcec/files/patch-include_cecloader.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/libcec/files/patch-include_cecloader.h	Thu Aug 27 12:39:08 2020	(r546336)
@@ -0,0 +1,20 @@
+--- include/cecloader.h.orig	2020-07-13 10:18:33 UTC
++++ include/cecloader.h
+@@ -172,7 +172,7 @@ bool LibCecBootloader(const char *strLib = NULL)
+     if (!g_libCEC)
+     {
+       std::cout << dlerror() << std::endl;
+-      return NULL;
++      return false;
+     }
+   }
+ 
+@@ -181,7 +181,7 @@ bool LibCecBootloader(const char *strLib = NULL)
+   if (!LibCecBootloader)
+   {
+     std::cout << "cannot find CECStartBootloader" << std::endl;
+-    return NULL;
++    return false;
+   }
+ 
+   bool bReturn = LibCecBootloader();



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