From e170895bc6241e933c6c6e85dc800fef5ed44615 Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Mon, 30 Mar 2009 21:17:43 +0200 Subject: 2009-03-30 Tollef Fog Heen * pkg.c (add_virtual_pkgconfig_package): Add pc_path as a variable which you can use to get at the compiled-in PKG_CONFIG_PC_PATH. --- ChangeLog | 3 +++ pkg.c | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 84a3f43..40869bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-03-30 Tollef Fog Heen + * pkg.c (add_virtual_pkgconfig_package): Add pc_path as a variable + which you can use to get at the compiled-in PKG_CONFIG_PC_PATH. + * pkg.h: Fix up path to glib.h * pkg.c (add_virtual_pkgconfig_package): Fix URL to pkg-config. diff --git a/pkg.c b/pkg.c index 73061ca..320ca64 100644 --- a/pkg.c +++ b/pkg.c @@ -234,6 +234,10 @@ add_virtual_pkgconfig_package (void) "compile/link flags for libraries"); pkg->url = g_strdup ("http://pkg-config.freedesktop.org/"); + if (pkg->vars == NULL) + pkg->vars = g_hash_table_new (g_str_hash, g_str_equal); + g_hash_table_insert (pkg->vars, "pc_path", PKG_CONFIG_PC_PATH); + debug_spew ("Adding virtual 'pkg-config' package to list of known packages\n"); g_hash_table_insert (packages, pkg->key, pkg); -- cgit v1.2.1