• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/
1/*
2 * Name:        wx/mac/chkconf.h
3 * Purpose:     Compiler-specific configuration checking
4 * Author:      Julian Smart
5 * Modified by:
6 * Created:     01/02/97
7 * RCS-ID:      $Id: chkconf.h 27408 2004-05-23 20:53:33Z JS $
8 * Copyright:   (c) Julian Smart
9 * Licence:     wxWindows licence
10 */
11
12#ifndef _WX_MAC_CHKCONF_H_
13#define _WX_MAC_CHKCONF_H_
14
15/*
16 * disable the settings which don't work for some compilers
17 */
18
19/*
20 * wxUSE_DEBUG_NEW_ALWAYS doesn't work with CodeWarrior
21 */
22
23#if defined(__MWERKS__)
24    #undef wxUSE_DEBUG_NEW_ALWAYS
25    #define wxUSE_DEBUG_NEW_ALWAYS      0
26#endif
27
28#endif
29    /* _WX_MAC_CHKCONF_H_ */
30
31