Fix compilation on Windows due to lack of setenvt(). #2973

This commit is contained in:
Alessandro Ranellucci 2015-07-10 16:01:45 +02:00
parent c65c9d876e
commit 9ac4fc9034

View file

@ -1,6 +1,10 @@
#include "Config.hpp"
#include <stdlib.h> // for setenv()
#ifdef _WIN32
#define setenv(k, v, o) _putenv_s(k, v)
#endif
namespace Slic3r {
bool