Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Aug 2020 13:07:43 +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: r545108 - head/multimedia/php-pHash
Message-ID:  <202008161307.07GD7hUu078734@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sun Aug 16 13:07:42 2020
New Revision: 545108
URL: https://svnweb.freebsd.org/changeset/ports/545108

Log:
  multimedia/php-pHash: fix build on GCC architectures
  
  x265 requires C++11 compiler:
  /usr/local/lib/libx265.so.179: undefined reference to `std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::reserve(unsigned long)@GLIBCXX_3.4.21'
  
  MFH:		2020Q3 (fix build blanket)

Modified:
  head/multimedia/php-pHash/Makefile

Modified: head/multimedia/php-pHash/Makefile
==============================================================================
--- head/multimedia/php-pHash/Makefile	Sun Aug 16 13:06:15 2020	(r545107)
+++ head/multimedia/php-pHash/Makefile	Sun Aug 16 13:07:42 2020	(r545108)
@@ -17,7 +17,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 LIB_DEPENDS=	libpHash.so:multimedia/pHash
 
-USES=		php:ext
+USES=		compiler:c++11-lang php:ext
 
 WRKSRC_SUBDIR=	bindings/php
 



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