diff options
author | Patrick von Reth <vonreth@kde.org> | 2014-04-01 12:20:58 +0200 |
---|---|---|
committer | Patrick von Reth <vonreth@kde.org> | 2014-04-01 12:20:58 +0200 |
commit | 44b46c7ae47b653b091436c3517eb875d5c17366 (patch) | |
tree | b9a5f2865e82dad84a54ea392c6a939893c9790a | |
parent | ec85e2ac41742ba3eb219afc3d6be700c84e1e02 (diff) | |
download | kconfig-44b46c7ae47b653b091436c3517eb875d5c17366.tar.gz kconfig-44b46c7ae47b653b091436c3517eb875d5c17366.tar.bz2 |
fixed mingw build
-rw-r--r-- | src/core/kconfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/kconfig.cpp b/src/core/kconfig.cpp index 247a4c23..ea9746c0 100644 --- a/src/core/kconfig.cpp +++ b/src/core/kconfig.cpp @@ -26,7 +26,7 @@ #include <cstdlib> #include <fcntl.h> -#ifdef Q_OS_WIN +#ifdef _MSC_VER static inline FILE *popen(const char *cmd, const char *mode) { return _popen(cmd, mode); |