svn commit: r545108 - head/multimedia/php-pHash

Piotr Kubaj pkubaj at FreeBSD.org
Sun Aug 16 13:07:43 UTC 2020


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
 


More information about the svn-ports-all mailing list