1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

Move setenv compat code to porting.h

This commit is contained in:
sfan5 2024-01-10 19:21:16 +01:00
parent 133f706bf3
commit 6f494a968d
3 changed files with 9 additions and 17 deletions

View file

@ -23,6 +23,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#pragma once
#if (defined(__linux__) || defined(__GNU__)) && !defined(_GNU_SOURCE)
#define _GNU_SOURCE
#endif
#include <string>
#include <vector>
#include "irrlicht.h"
@ -43,12 +47,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define sleep_ms(x) Sleep(x)
#define sleep_us(x) Sleep((x)/1000)
#define setenv(n,v,o) _putenv_s(n,v)
#define unsetenv(n) _putenv_s(n,"")
#else
#include <unistd.h>
#if (defined(__linux__) || defined(__GNU__)) && !defined(_GNU_SOURCE)
#define _GNU_SOURCE
#endif
#include <cstdlib> // setenv
#define sleep_ms(x) usleep((x)*1000)
#define sleep_us(x) usleep(x)