3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
/*
|
|
* Name: wx/os2/chkconf.h
|
|
* Purpose: Compiler-specific configuration checking
|
|
* Author: Julian Smart
|
|
* Modified by:
|
|
* Created: 01/02/97
|
|
* Copyright: (c) Julian Smart
|
|
* Licence: wxWindows licence
|
|
*/
|
|
|
|
/* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
|
|
|
|
#ifndef _WX_OS2_CHKCONF_H_
|
|
#define _WX_OS2_CHKCONF_H_
|
|
|
|
/*
|
|
wxDisplay is not implemented for OS/2, use stub common version instead.
|
|
*/
|
|
#if wxUSE_DISPLAY
|
|
# undef wxUSE_DISPLAY
|
|
# define wxUSE_DISPLAY 0
|
|
#endif /* wxUSE_DISPLAY */
|
|
|
|
/* Watcom builds for OS/2 port are setup.h driven and setup.h is
|
|
automatically generated from include/wx/setup_inc.h so we have
|
|
to disable here features not supported currently or enable
|
|
features required */
|
|
#ifdef __WATCOMC__
|
|
|
|
#if wxUSE_STACKWALKER
|
|
# undef wxUSE_STACKWALKER
|
|
# define wxUSE_STACKWALKER 0
|
|
#endif /* wxUSE_STACKWALKER */
|
|
|
|
#if !wxUSE_POSTSCRIPT
|
|
# undef wxUSE_POSTSCRIPT
|
|
# define wxUSE_POSTSCRIPT 1
|
|
#endif
|
|
|
|
#if wxUSE_MS_HTML_HELP
|
|
# undef wxUSE_MS_HTML_HELP
|
|
# define wxUSE_MS_HTML_HELP 0
|
|
#endif
|
|
|
|
#endif /* __WATCOM__ */
|
|
|
|
#endif /* _WX_OS2_CHKCONF_H_ */
|