X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fmisc.h;h=45cd396cc1b3dc788a578136ffaa4b5c55371cc3;hb=af52dd8fd91fd0ef3dcd0faff524b4508c946aef;hp=508a9b0cf6a0fd0b48c876c91742df1695ac69b2;hpb=242c55b17e6608b29a77ca17a5b677e202a3ca90;p=builder.git diff --git a/source/misc.h b/source/misc.h index 508a9b0..45cd396 100644 --- a/source/misc.h +++ b/source/misc.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MISC_H_ #define MISC_H_ @@ -15,17 +8,14 @@ Distributed under the LGPL enum LibMode { - ALL_STATIC, - LOCAL_STATIC, - DYNAMIC + FORCE_STATIC, + STATIC, + DYNAMIC, + FORCE_DYNAMIC }; typedef std::list StringList; typedef std::list PathList; typedef std::map StringMap; -/** Runs a command and returns its output as a string. The exit status of the -command is lost. */ -std::string run_command(const StringList &); - #endif