svn commit: r538514 - head/databases/libdrizzle

Piotr Kubaj pkubaj at FreeBSD.org
Thu Jun 11 17:30:22 UTC 2020


Author: pkubaj
Date: Thu Jun 11 17:30:21 2020
New Revision: 538514
URL: https://svnweb.freebsd.org/changeset/ports/538514

Log:
  databases/libdrizzle: switch to GCC on powerpc*
  
  GCC-only parameter is necessary:
  cc: error: unknown argument: '-mno-fused-madd'

Modified:
  head/databases/libdrizzle/Makefile

Modified: head/databases/libdrizzle/Makefile
==============================================================================
--- head/databases/libdrizzle/Makefile	Thu Jun 11 17:29:56 2020	(r538513)
+++ head/databases/libdrizzle/Makefile	Thu Jun 11 17:30:21 2020	(r538514)
@@ -36,6 +36,8 @@ ALL_TARGET=	all doxygen
 
 .if ${ARCH} == "i386"
 CONFIGURE_ARGS+=--disable-64bit
+.elif ${ARCH:Mpowerpc*}
+USES+=		compiler:gcc-c++11-lib
 .endif
 
 post-install:


More information about the svn-ports-head mailing list