From 2d481381691cf9696eb33db63f608cfb94152aa0 Mon Sep 17 00:00:00 2001 From: David Preece Date: Thu, 2 Feb 2017 14:56:05 +1300 Subject: [PATCH] Add pkg-config to build-essential I was just attempting to build a project that uses autogen and was failing in a non-obvious manner (error: possibly undefined macro). The fix was to install pkg-config and adding this to build-essential would have prevented the problem occurring in the first place. --- build-essential/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/build-essential/Makefile b/build-essential/Makefile index a7823590..c2213a47 100644 --- a/build-essential/Makefile +++ b/build-essential/Makefile @@ -29,6 +29,7 @@ DEPENDS+= gmake-[0-9]*:../../devel/gmake DEPENDS+= libtool-[0-9]*:../../devel/libtool DEPENDS+= m4-[0-9]*:../../devel/m4 DEPENDS+= patch-[0-9]*:../../devel/patch +DEPENDS+= pkg-config-[0-9]*:../../devel/pkg-config .if exists(../../devel/git/Makefile) DEPENDS+= git-base-[0-9]*:../../devel/git-base DEPENDS+= git-docs-[0-9]*:../../devel/git-docs