diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-09-25 23:22:08 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-06 07:39:33 +0200 |
commit | dbb06eac9bae1b8dbc50275b66c975da09b1d09a (patch) | |
tree | 4cfa3cc326a11aa8cd8b7ff83d8afb1b2754f150 /include | |
parent | c4d1491af938a12a0167dae4fd3ea8f1810c752a (diff) |
Fix build with msvc (windows)
Fix freeze when sub process (exec) returns a lot of data (in stdout)
Diffstat (limited to 'include')
-rw-r--r-- | include/PkgConfig.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/PkgConfig.hpp b/include/PkgConfig.hpp index 43f7d91..2a52f2b 100644 --- a/include/PkgConfig.hpp +++ b/include/PkgConfig.hpp @@ -2,7 +2,6 @@ #define SIBS_PKGCONFIG_HPP #include "env.hpp" -#if OS_FAMILY == OS_FAMILY_POSIX #include "Result.hpp" #include <string> #include <vector> @@ -28,6 +27,5 @@ namespace sibs static Result<PkgConfigFlags> getDynamicLibsFlags(const std::vector<PackageListDependency*> &libs); }; } -#endif // OS_FAMILY_POSIX #endif // SIBS_PKGCONFIG_HPP |