bmx-ng / pub.mod

BlitzMax NG Pub modules port.
7 stars 8 forks source link

Replace __linux with __linux__ #52

Closed GWRon closed 1 year ago

GWRon commented 1 year ago

Interestingly physfs was using __linux too

GWRon commented 1 year ago

SDL_platform.h redefines:

#if (defined(linux) || defined(__linux) || defined(__linux__))
#undef __LINUX__
#define __LINUX__   1

Dunno if such a thing would be the better approach to also support __linux ?