svn commit: r547283 - branches/2020Q3/lang/libobjc2

Fernando Apesteguía fernape at FreeBSD.org
Tue Sep 1 16:51:59 UTC 2020


Author: fernape
Date: Tue Sep  1 16:51:58 2020
New Revision: 547283
URL: https://svnweb.freebsd.org/changeset/ports/547283

Log:
  MFH: r547282
  
  lang/libobjc2: Fix build in 11.3
  
  We need -lm in order to use the ceilf function.
  
  PR:	249046
  Reported by:	brad at facefault.org
  
  Approved by:	ports-secteam (blanket, runtime fix)

Modified:
  branches/2020Q3/lang/libobjc2/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/lang/libobjc2/Makefile
==============================================================================
--- branches/2020Q3/lang/libobjc2/Makefile	Tue Sep  1 16:41:37 2020	(r547282)
+++ branches/2020Q3/lang/libobjc2/Makefile	Tue Sep  1 16:51:58 2020	(r547283)
@@ -19,6 +19,9 @@ GH_ACCOUNT=	gnustep
 GH_TAGNAME=	0db500a
 
 SSP_UNSAFE=	yes
+
+LDFLAGS+=	-lm
+
 LDFLAGS_armv7=	-Wl,-znotext
 
 SHLIB_MAJOR=	4


More information about the svn-ports-all mailing list