Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Jul 2019 20:13:27 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r507529 - head/databases/freetds-devel
Message-ID:  <201907282013.x6SKDR0Y031055@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907282013.x6SKDR0Y031055>