X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpackage.cpp;h=19ee511a814cf34bf46efd20f9409c7394b5d879;hb=c75c89d2425ab0c69e94d45a5d956286838bbc67;hp=05bebcc55f929971cb5d1780ba98200b6730bcca;hpb=5ed38947b3fabd977a7f68b512115fe1456ea096;p=builder.git diff --git a/source/package.cpp b/source/package.cpp index 05bebcc..19ee511 100644 --- a/source/package.cpp +++ b/source/package.cpp @@ -1,6 +1,7 @@ #include #include #include +#include "booleanevaluator.h" #include "builder.h" #include "package.h" @@ -38,7 +39,8 @@ Package::Loader::Loader(Package &p): void Package::Loader::if_arch(const string &cond) { - bool match = obj.builder.get_current_arch().match_name(cond); + BooleanEvaluator eval(sigc::hide<1>(sigc::mem_fun(&obj.builder.get_current_arch(), &Architecture::match_name)), false); + bool match = eval.evaluate(cond); obj.builder.get_logger().log("configure", format("%s: arch %s %smatched", obj.name, cond, (match ? "" : "not "))); if(match) load_sub_with(*this); @@ -49,4 +51,6 @@ void Package::Loader::require(const string &n) Package *req = obj.builder.get_package_manager().find_package(n); if(req) obj.requires.push_back(req); + else + obj.problems.push_back(format("Required package %s not found", n)); }