svn commit: r541425 - head/sysutils/nss_ndb

Piotr Kubaj pkubaj at FreeBSD.org
Tue Jul 7 15:08:24 UTC 2020


Author: pkubaj
Date: Tue Jul  7 15:08:23 2020
New Revision: 541425
URL: https://svnweb.freebsd.org/changeset/ports/541425

Log:
  sysutils/nss_ndb: fix build on GCC architectures
  
  Use newer GCC to workaround GCC 4.2 bug:
  cc -fstack-protector-strong -g -o makendb makendb.o nss_ndb.o  -lpthread -ldl
  cc: Internal error: Segmentation fault (program ld)
  
  MFH:		2020Q3 (fix build blanket)

Modified:
  head/sysutils/nss_ndb/Makefile

Modified: head/sysutils/nss_ndb/Makefile
==============================================================================
--- head/sysutils/nss_ndb/Makefile	Tue Jul  7 14:47:51 2020	(r541424)
+++ head/sysutils/nss_ndb/Makefile	Tue Jul  7 15:08:23 2020	(r541425)
@@ -51,6 +51,7 @@ DB4_USE_LDCONFIG+=	yes
 DB4_LIB_DEPENDS=	libdb-4.8.so:databases/db48
 DB4_CONFIGURE_ON=	--with-db=4
 
+USES=			compiler:c11
 USE_GITHUB=		yes
 GH_ACCOUNT=		ptrrkssn
 


More information about the svn-ports-all mailing list