svn commit: r484807 - head/databases/postgresql10-server

Palle Girgensohn girgen at FreeBSD.org
Mon Nov 12 15:54:21 UTC 2018


Author: girgen
Date: Mon Nov 12 15:54:19 2018
New Revision: 484807
URL: https://svnweb.freebsd.org/changeset/ports/484807

Log:
  Fix build problems on i386
  
  Use GCC seems to be proper way to do it. SSE2 would not be available for all
  CPU:s.

Modified:
  head/databases/postgresql10-server/Makefile

Modified: head/databases/postgresql10-server/Makefile
==============================================================================
--- head/databases/postgresql10-server/Makefile	Mon Nov 12 15:50:44 2018	(r484806)
+++ head/databases/postgresql10-server/Makefile	Mon Nov 12 15:54:19 2018	(r484807)
@@ -161,6 +161,10 @@ SUB_LIST+=	PG_GROUP=${PG_GROUP} \
 
 .include <bsd.port.options.mk>
 
+.if ${ARCH} == "i386"
+USES+=		compiler:gcc-c++11-lib
+.endif
+
 .if !defined(SLAVE_ONLY)
 .if ${DISTVERSION:C/([0-9]*).*/\1/} != 10
 .  if ( defined(SERVER_ONLY) && ${PORT_OPTIONS:MICU} ) || make(makesum)


More information about the svn-ports-all mailing list