From: <laz...@us...> - 2004-03-08 20:19:56
|
Update of /cvsroot/rtk/rtk/rtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2834/rtk Modified Files: conf.h Log Message: More dev-cpp fixes: - Do not compile with profiling enabled (lots of linker errors) - Emulate lsearch in Array Index: conf.h =================================================================== RCS file: /cvsroot/rtk/rtk/rtk/conf.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** conf.h 8 Mar 2004 08:28:50 -0000 1.10 --- conf.h 8 Mar 2004 19:55:23 -0000 1.11 *************** *** 60,78 **** // Define this, if the platform uses UNICODE // RTK_BC_UNICODE is (like all *_BC_* macros) set by CMake/autotools ! #define RTK_UNICODE 1 ! #if (RTK_UNICODE == 1) ! # define UNICODE 1 ! #else ! # undef UNICODE ! #endif ! #if defined(_RTK_WIN32_) ! // UNICODE is default WIN32, but not must ! # define UNICODE 1 #endif ! #if defined(_RTK_WINCE_) && !defined(UNICODE) ! // UNICODE is MUST under WinCE ! # define UNICODE 1 #endif --- 60,74 ---- // Define this, if the platform uses UNICODE // RTK_BC_UNICODE is (like all *_BC_* macros) set by CMake/autotools ! // #define RTK_UNICODE 1 ! #if defined(_RTK_WINCE_) && !defined(RTK_UNICODE) ! // UNICODE is MUST under WinCE ! # define RTK_UNICODE 1 #endif ! #ifdef RTK_UNICODE ! # define UNICODE 1 ! #else ! # undef UNICODE #endif |