svn commit: r487844 - head/devel/ptlib

Mark Linimon linimon at FreeBSD.org
Thu Dec 20 06:18:58 UTC 2018


Author: linimon
Date: Thu Dec 20 06:18:56 2018
New Revision: 487844
URL: https://svnweb.freebsd.org/changeset/ports/487844

Log:
  USES=compiler:c11 is necessary to build on GCC-based architectures.
  
  While here, add ldflags to simplify Makefile.
  
  PR:		233928
  Submitted by:	Piotr Kubaj
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/devel/ptlib/Makefile

Modified: head/devel/ptlib/Makefile
==============================================================================
--- head/devel/ptlib/Makefile	Thu Dec 20 06:04:01 2018	(r487843)
+++ head/devel/ptlib/Makefile	Thu Dec 20 06:18:56 2018	(r487844)
@@ -16,11 +16,12 @@ LIB_DEPENDS=	libexpat.so:textproc/expat2
 
 CONFLICTS=	pwlib-1.*
 
-USES=		autoreconf:build bison gmake pathfix pkgconfig ssl tar:xz
+USES=		autoreconf:build bison compiler:c11 gmake localbase:ldflags \
+		pathfix pkgconfig ssl tar:xz
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
-CPPFLAGS+=	-I${OPENSSLINC} -I${LOCALBASE}/include
-LDFLAGS+=	-L${OPENSSLLIB} -L${LOCALBASE}/lib
+CPPFLAGS+=	-I${OPENSSLINC}
+LDFLAGS+=	-L${OPENSSLLIB}
 
 CONFIGURE_ARGS+=--enable-audio \
 		--enable-ipv6 \


More information about the svn-ports-all mailing list