svn commit: r389017 - head/net/pen

Danilo Egea Gondolfo danilo at FreeBSD.org
Wed Jun 10 01:43:28 UTC 2015


Author: danilo
Date: Wed Jun 10 01:43:28 2015
New Revision: 389017
URL: https://svnweb.freebsd.org/changeset/ports/389017

Log:
  - Enable DSR only when the needed version of netmap is available.

Modified:
  head/net/pen/Makefile

Modified: head/net/pen/Makefile
==============================================================================
--- head/net/pen/Makefile	Wed Jun 10 01:00:42 2015	(r389016)
+++ head/net/pen/Makefile	Wed Jun 10 01:43:28 2015	(r389017)
@@ -39,7 +39,8 @@ DEBUG_CONFIGURE_ENABLE=	debugging
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} < 901000
+# DSR needs a newer version of the netmap's API
+.if ${OSVERSION} < 903000 || (${OSVERSION} >= 1000000 && ${OSVERSION} < 1001000)
 CONFIGURE_ARGS+=	--without-dsr
 .endif
 


More information about the svn-ports-all mailing list