svn commit: r413955 - head/Mk/Uses

Tijl Coosemans tijl at FreeBSD.org
Sun Apr 24 19:20:11 UTC 2016


Author: tijl
Date: Sun Apr 24 19:20:10 2016
New Revision: 413955
URL: https://svnweb.freebsd.org/changeset/ports/413955

Log:
  Require at least version 0.9.10 of pkgconf.  This version fixed a problem
  with parsing comments.
  
  Several users reported a problem building security/gnutls because
  hogweed.pc (provided by security/nettle) contains the following line:
  
  Requires: # nettle
  
  Older versions of pkgconf try to look for a package named "#" and fail.

Modified:
  head/Mk/Uses/pkgconfig.mk

Modified: head/Mk/Uses/pkgconfig.mk
==============================================================================
--- head/Mk/Uses/pkgconfig.mk	Sun Apr 24 19:14:17 2016	(r413954)
+++ head/Mk/Uses/pkgconfig.mk	Sun Apr 24 19:20:10 2016	(r413955)
@@ -11,7 +11,7 @@
 .if !defined(_INCLUDE_USES_PKGCONFIG_MK)
 _INCLUDE_USES_PKGCONFIG_MK=	yes
 
-_PKGCONFIG_DEPENDS=	pkgconf:devel/pkgconf
+_PKGCONFIG_DEPENDS=	pkgconf>=0.9.10:devel/pkgconf
 
 .if empty(pkgconfig_ARGS)
 pkgconfig_ARGS=	build


More information about the svn-ports-all mailing list