mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-24 20:22:33 -06:00
26 lines
435 B
C
26 lines
435 B
C
#ifndef Py_CONFIG_H
|
|
#define Py_CONFIG_H
|
|
|
|
// No shared (Nirai builds to static executable)
|
|
#ifndef Py_NO_ENABLE_SHARED
|
|
#define Py_NO_ENABLE_SHARED
|
|
#endif
|
|
|
|
#ifndef Py_ENABLE_SHARED
|
|
#define Py_ENABLE_SHARED 0
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
#include "pyconfig_windows.h"
|
|
|
|
#elif __APPLE__
|
|
#include "pyconfig_mac.h"
|
|
/*
|
|
#elif __linux
|
|
#include "pyconfig_linux.h"
|
|
*/
|
|
#else
|
|
#error "No pyconfig for your OS could be found."
|
|
#endif
|
|
|
|
#endif
|