From 01c9a906d7eefdbcada3eece9ceefd202d6016aa Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Sun, 25 Aug 2002 18:26:31 +0000 Subject: [PATCH] EMX (OS/2) defines _MAX_PATH only git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16782 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filename.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 155a9ecdd4..732a3f9562 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -124,6 +124,10 @@ #endif #endif +#ifdef __EMX__ +#define MAX_PATH _MAX_PATH +#endif + // ---------------------------------------------------------------------------- // private classes // ---------------------------------------------------------------------------- -- 2.45.2