Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31593/src
Modified Files: Tag: devel_0_39 m_pd.h Log Message: auto-define NT on Windows (#if defined(_WIN32)...)
Index: m_pd.h =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_pd.h,v retrieving revision 1.4.4.11.2.15 retrieving revision 1.4.4.11.2.16 diff -C2 -d -r1.4.4.11.2.15 -r1.4.4.11.2.16 *** m_pd.h 24 Nov 2005 11:14:42 -0000 1.4.4.11.2.15 --- m_pd.h 22 Dec 2005 00:44:40 -0000 1.4.4.11.2.16 *************** *** 16,20 **** /* old name for "MSW" flag -- we have to take it for the sake of many old "nmakefiles" for externs, which will define NT and not MSW */ ! #if defined(NT) && !defined(MSW) #define MSW #endif --- 16,20 ---- /* old name for "MSW" flag -- we have to take it for the sake of many old "nmakefiles" for externs, which will define NT and not MSW */ ! #if (defined(_WIN32) || defined(NT)) && !defined(MSW) #define MSW #endif