aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-08-30 07:33:37 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-08-30 07:33:37 +0200
commite1b3025e3a86c5b501d64900f61eb15a48541fb6 (patch)
tree4670e761fed20667295901063aabc3ce01e8c1db
parent2720b45ef0ca9fd58c11fd9b4f000e1cf3a0819d (diff)
On FreeBSD also search in libdata/pkgconfig/
-rw-r--r--build2/cc/pkgconfig.cxx93
1 files changed, 60 insertions, 33 deletions
diff --git a/build2/cc/pkgconfig.cxx b/build2/cc/pkgconfig.cxx
index b9c6cda..08d5fef 100644
--- a/build2/cc/pkgconfig.cxx
+++ b/build2/cc/pkgconfig.cxx
@@ -51,52 +51,79 @@ namespace build2
assert (pkgconfig != nullptr);
assert (at != nullptr || st != nullptr);
- // Check if we have the pkgconfig/ subdirectory in this library's
- // directory.
+ // When it comes to looking for .pc files we have to decide where to
+ // search (which directory(ies)) as well as what to search for (which
+ // names).
//
- dir_path pkgd (dir_path (libd) /= "pkgconfig");
+ path f;
+ auto search = [&f, proj, &stem, &libd] (const dir_path& dir) -> bool
+ {
+ // Check if we have this directory inrelative to this library's
+ // directory.
+ //
+ dir_path pkgd (dir_path (libd) /= dir);
- if (!dir_exists (pkgd))
- return false;
+ if (!dir_exists (pkgd))
+ return false;
- // Now see if there is a corresponding .pc file. About half of them
- // called foo.pc and half libfoo.pc (and one of the pkg-config's authors
- // suggests that some of you should call yours foolib.pc, just to keep
- // things interesting, you know).
- //
- // Given the (general) import in the form <proj>%lib{<stem>}, we will
- // first try <stem>.pc, then lib<stem>.pc. Maybe it also makes sense to
- // try <proj>.pc, just in case. Though, according to pkg-config docs,
- // the .pc file should correspond to a library, not project. But then
- // you get something like zlib which calls it zlib.pc. So let's just do
- // it.
- //
- path f;
- f = pkgd;
- f /= stem;
- f += ".pc";
+ // See if there is a corresponding .pc file. About half of them called
+ // foo.pc and half libfoo.pc (and one of the pkg-config's authors
+ // suggests that some of you should call yours foolib.pc, just to keep
+ // things interesting, you know).
+ //
+ // Given the (general) import in the form <proj>%lib{<stem>}, we will
+ // first try <stem>.pc, then lib<stem>.pc. Maybe it also makes sense
+ // to try <proj>.pc, just in case. Though, according to pkg-config
+ // docs, the .pc file should correspond to a library, not project. But
+ // then you get something like zlib which calls it zlib.pc. So let's
+ // just do it.
+ //
+ f = pkgd;
+ f /= stem;
+ f += ".pc";
+
+ if (file_exists (f))
+ return true;
- if (!file_exists (f))
- {
f = pkgd;
f /= "lib";
f += stem;
f += ".pc";
- if (!file_exists (f))
+ if (file_exists (f))
+ return true;
+
+ if (proj != nullptr)
{
- if (proj != nullptr)
- {
- f = pkgd;
- f /= *proj;
- f += ".pc";
+ f = pkgd;
+ f /= *proj;
+ f += ".pc";
- if (!file_exists (f))
- return false;
- }
- else
+ if (file_exists (f))
+ return true;
+ }
+
+ return false;
+ };
+
+ // First always check the pkgconfig/ subdirectory in this library's
+ // directory. Even on platforms where this is not the canonical place,
+ // .pc files of autotools-based packages installed by the user often
+ // still end up there.
+ //
+ if (!search (dir_path ("pkgconfig")))
+ {
+ // Platform-specific locations.
+ //
+ if (tclass == "freebsd")
+ {
+ // On FreeBSD .pc files go to libdata/pkgconfig/, not lib/pkgconfig/.
+ //
+ if (!search ((dir_path ("..") /= "libdata") /= "pkgconfig"))
return false;
}
+ else
+ return false;
}
// Ok, we are in business. Time to run pkg-config. To keep things