#include "binarypackage.h"
#include "builder.h"
#include "copy.h"
+#include "externaltask.h"
#include "gnuarchiver.h"
#include "gnuccompiler.h"
#include "gnucxxcompiler.h"
#include "gnulinker.h"
#include "installedfile.h"
-#include "misc.h"
#include "package.h"
#include "pkgconfigfile.h"
#include "pkgconfiggenerator.h"
string Builder::run_pkgconfig(const string &pkg, const string &what)
{
- list<string> argv;
+ vector<string> argv;
argv.push_back("pkg-config");
if(what=="cflags" || what=="libs")
argv.push_back("--"+what);
if(verbose>=4)
IO::print("Running %s\n", join(argv.begin(), argv.end()));
- int status;
- string res = run_command(argv, &status);
- if(status)
+ ExternalTask task(argv, FS::Path());
+ task.set_stdout(ExternalTask::CAPTURE);
+ task.set_stderr(ExternalTask::IGNORE);
+ task.start();
+ Task::Status status;
+ while((status=task.check())==Task::RUNNING)
+ Time::sleep(10*Time::msec);
+ if(status==Task::ERROR)
throw runtime_error(format("pkg-config for package %s failed", pkg));
- return res;
+ return task.get_output();
}
Package *Builder::get_package(const string &name)