aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/common.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-09-24 02:29:13 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-09-25 00:30:49 +0300
commit6779ea02fb07ba39d162300dd18297ba2027846a (patch)
tree2543cfd4a4afd2113e2f298a8ede4019cc795ae1 /build2/cc/common.hxx
parent984a0217af64c734938c330b09ed21d1253dea8d (diff)
Get rid of pkgconfig module
Diffstat (limited to 'build2/cc/common.hxx')
-rw-r--r--build2/cc/common.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/build2/cc/common.hxx b/build2/cc/common.hxx
index 5a245ca..3c4b693 100644
--- a/build2/cc/common.hxx
+++ b/build2/cc/common.hxx
@@ -120,7 +120,6 @@ namespace build2
bool modules; // x.features.modules
bool symexport; // x.features.symexport
- const process_path* pkgconfig; // pkgconfig.path (can be NULL).
const dir_paths& sys_lib_dirs; // x.sys_lib_dirs
const dir_paths& sys_inc_dirs; // x.sys_inc_dirs
@@ -163,7 +162,6 @@ namespace build2
const strings& std,
bool fm,
bool fs,
- const process_path* pkgc,
const dir_paths& sld,
const dir_paths& sid,
const target_type& src,
@@ -180,7 +178,7 @@ namespace build2
tstd (std),
modules (fm),
symexport (fs),
- pkgconfig (pkgc), sys_lib_dirs (sld), sys_inc_dirs (sid),
+ sys_lib_dirs (sld), sys_inc_dirs (sid),
x_src (src), x_mod (mod), x_hdr (hdr), x_inc (inc) {}
};