svn commit: r547282 - head/lang/libobjc2

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


Author: fernape
Date: Tue Sep  1 16:41:37 2020
New Revision: 547282
URL: https://svnweb.freebsd.org/changeset/ports/547282

Log:
  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
  MFH:	2020Q3 (blanket, build fix)

Modified:
  head/lang/libobjc2/Makefile

Modified: head/lang/libobjc2/Makefile
==============================================================================
--- head/lang/libobjc2/Makefile	Tue Sep  1 16:24:58 2020	(r547281)
+++ head/lang/libobjc2/Makefile	Tue Sep  1 16:41:37 2020	(r547282)
@@ -20,6 +20,9 @@ GH_ACCOUNT=	gnustep
 GH_TUPLE=	Tessil:robin-map:757de82:robin_map/third_party/robin-map
 
 USE_LDCONFIG=	yes
+
+LDFLAGS+=	-lm
+
 TEST_TARGET=	test
 
 CMAKE_ARGS+=	-DLIB_INSTALL_PATH=lib


More information about the svn-ports-all mailing list