svn commit: r527857 - head/devel/ptlib

Cy Schubert cy at FreeBSD.org
Fri Mar 6 05:43:56 UTC 2020


Author: cy
Date: Fri Mar  6 05:43:55 2020
New Revision: 527857
URL: https://svnweb.freebsd.org/changeset/ports/527857

Log:
  Fix build under 13-CURRENT as of the removal of bktr(4) (r358497).
  
  This commit does not affect __FreeBSD_version < 1300082.

Modified:
  head/devel/ptlib/Makefile   (contents, props changed)

Modified: head/devel/ptlib/Makefile
==============================================================================
--- head/devel/ptlib/Makefile	Fri Mar  6 04:06:59 2020	(r527856)
+++ head/devel/ptlib/Makefile	Fri Mar  6 05:43:55 2020	(r527857)
@@ -3,7 +3,7 @@
 
 PORTNAME=	ptlib
 PORTVERSION=	2.10.11
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	devel
 MASTER_SITES=	GNOME
 
@@ -36,13 +36,18 @@ CONFIGURE_ARGS+=--disable-lua \
 CONFIGURE_ENV+=	OPENSSL_CFLAGS="-I${OPENSSLINC}" \
 		OPENSSL_LIBS="-L${OPENSSLLIB} -lssl"
 
-OPTIONS_DEFINE=	BSDVIDEO DEBUG ODBC ALSA JABBER V4L SDL LDAP PULSEAUDIO
-OPTIONS_DEFAULT=BSDVIDEO SDL V4L JABBER
+OPTIONS_DEFINE=	DEBUG ODBC ALSA JABBER V4L SDL LDAP PULSEAUDIO
+OPTIONS_DEFAULT=SDL V4L JABBER
 
 BSDVIDEO_DESC=	BSD video support
 DEBUG_DESC=	Install debug library
 
 .include <bsd.port.options.mk>
+
+.if (${OPSYS} == FreeBSD && ${OSVERSION} < 1300082)
+OPTIONS_DEFINE+=	BSDVIDEO
+OPTIONS_DEFAULT+=	BSDVIDEO
+.endif
 
 .if (${OPSYS} == FreeBSD && ${OSVERSION} > 1200085 && ${SSL_DEFAULT} == base) || ${SSL_DEFAULT} == openssl
 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_ptclib_pssl.cxx-openssl111


More information about the svn-ports-all mailing list