svn commit: r507529 - head/databases/freetds-devel

Piotr Kubaj pkubaj at FreeBSD.org
Sun Jul 28 20:13:28 UTC 2019


Author: pkubaj
Date: Sun Jul 28 20:13:27 2019
New Revision: 507529
URL: https://svnweb.freebsd.org/changeset/ports/507529

Log:
  databases/freetds-devel: fix build with GCC-based architectures
  
  Base GCC doesn't have __builtin_bswap16:
  ./.libs/libtdssrv.a(lt1-login.o):(.text+0x166c): undefined reference to `__builtin_bswap16'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/databases/freetds-devel/Makefile

Modified: head/databases/freetds-devel/Makefile
==============================================================================
--- head/databases/freetds-devel/Makefile	Sun Jul 28 20:08:31 2019	(r507528)
+++ head/databases/freetds-devel/Makefile	Sun Jul 28 20:13:27 2019	(r507529)
@@ -14,7 +14,8 @@ COMMENT=	Sybase/Microsoft TDS protocol library
 
 LICENSE=	LGPL20
 
-USES=		autoreconf gettext-tools gmake iconv libtool:keepla pkgconfig tar:bzip2
+USES=		autoreconf compiler:c11 gettext-tools gmake iconv \
+		libtool:keepla pkgconfig tar:bzip2
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-dev.${PORTVERSION}
 TDS_VER?=	7.4


More information about the svn-ports-head mailing list