diff options
author | tijl <tijl@FreeBSD.org> | 2016-04-25 03:20:10 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2016-04-25 03:20:10 +0800 |
commit | 12a8f8617999033eec647723ee17ca40059bc45a (patch) | |
tree | e2a33a5e25dcb2c3cdd6facdf8a1021b3518facc /Mk | |
parent | ea3ffd5606be8b16a54989ede118e57f73cb1df8 (diff) | |
download | freebsd-ports-gnome-12a8f8617999033eec647723ee17ca40059bc45a.tar.gz freebsd-ports-gnome-12a8f8617999033eec647723ee17ca40059bc45a.tar.zst freebsd-ports-gnome-12a8f8617999033eec647723ee17ca40059bc45a.zip |
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.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Uses/pkgconfig.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/Uses/pkgconfig.mk b/Mk/Uses/pkgconfig.mk index 723aaca47568..61c89bdec6d1 100644 --- a/Mk/Uses/pkgconfig.mk +++ b/Mk/Uses/pkgconfig.mk @@ -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 |