moved dynamic loader option checks to chkconf.h
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13125 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -19,8 +19,30 @@
|
|||||||
*/
|
*/
|
||||||
#define wxABORT_ON_CONFIG_ERROR
|
#define wxABORT_ON_CONFIG_ERROR
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
all these tests are for GUI onlu
|
tests for non GUI features
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef wxUSE_DYNLIB_CLASS
|
||||||
|
# ifdef wxABORT_ON_CONFIG_ERROR
|
||||||
|
# error "wxUSE_DYNLIB_CLASS must be defined."
|
||||||
|
# else
|
||||||
|
# define wxUSE_DYNLIB_CLASS 0
|
||||||
|
# endif
|
||||||
|
#endif /* !defined(wxUSE_DYNLIB_CLASS) */
|
||||||
|
|
||||||
|
#ifndef wxUSE_DYNAMIC_LOADER
|
||||||
|
# ifdef wxABORT_ON_CONFIG_ERROR
|
||||||
|
# error "wxUSE_DYNAMIC_LOADER must be defined."
|
||||||
|
# else
|
||||||
|
# define wxUSE_DYNAMIC_LOADER 0
|
||||||
|
# endif
|
||||||
|
#endif /* !defined(wxUSE_DYNAMIC_LOADER) */
|
||||||
|
|
||||||
|
/*
|
||||||
|
all these tests are for GUI only
|
||||||
*/
|
*/
|
||||||
#if wxUSE_GUI
|
#if wxUSE_GUI
|
||||||
|
|
||||||
@@ -541,14 +563,6 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif /* !defined(wxUSE_UNICODE) */
|
#endif /* !defined(wxUSE_UNICODE) */
|
||||||
|
|
||||||
#if defined(__WXMSW__) && !defined(wxUSE_UNICODE_MSLU)
|
|
||||||
# ifdef wxABORT_ON_CONFIG_ERROR
|
|
||||||
# error "wxUSE_UNICODE_MSLU must be defined."
|
|
||||||
# else
|
|
||||||
# define wxUSE_UNICODE_MSLU 0
|
|
||||||
# endif
|
|
||||||
#endif /* !defined(wxUSE_UNICODE) */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
check consistency of the settings
|
check consistency of the settings
|
||||||
*/
|
*/
|
||||||
@@ -669,6 +683,48 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif /* wxGTK && !wxUniv */
|
#endif /* wxGTK && !wxUniv */
|
||||||
|
|
||||||
|
/* wxMSW-specific dependencies */
|
||||||
|
#ifdef __WXMSW__
|
||||||
|
# ifndef wxUSE_UNICODE_MSLU
|
||||||
|
# ifdef wxABORT_ON_CONFIG_ERROR
|
||||||
|
# error "wxUSE_UNICODE_MSLU must be defined."
|
||||||
|
# else
|
||||||
|
# define wxUSE_UNICODE_MSLU 0
|
||||||
|
# endif
|
||||||
|
# endif /* wxUSE_UNICODE_MSLU */
|
||||||
|
# ifndef wxUSE_MS_HTML_HELP
|
||||||
|
# ifdef wxABORT_ON_CONFIG_ERROR
|
||||||
|
# error "wxUSE_MS_HTML_HELP must be defined."
|
||||||
|
# else
|
||||||
|
# define wxUSE_MS_HTML_HELP 0
|
||||||
|
# endif
|
||||||
|
# endif /* !defined(wxUSE_MS_HTML_HELP) */
|
||||||
|
# ifndef wxUSE_DIALUP_MANAGER
|
||||||
|
# ifdef wxABORT_ON_CONFIG_ERROR
|
||||||
|
# error "wxUSE_DIALUP_MANAGER must be defined."
|
||||||
|
# else
|
||||||
|
# define wxUSE_DIALUP_MANAGER 0
|
||||||
|
# endif
|
||||||
|
# endif /* !defined(wxUSE_DIALUP_MANAGER) */
|
||||||
|
|
||||||
|
# if !(wxUSE_DYNAMIC_LOADER || wxUSE_DYNLIB_CLASS)
|
||||||
|
# if wxUSE_MS_HTML_HELP
|
||||||
|
# ifdef wxABORT_ON_CONFIG_ERROR
|
||||||
|
# error "wxUSE_MS_HTML_HELP requires wxUSE_DYNAMIC_LOADER."
|
||||||
|
# else
|
||||||
|
# define wxUSE_DYNAMIC_LOADER 1
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if wxUSE_DIALUP_MANAGER
|
||||||
|
# ifdef wxABORT_ON_CONFIG_ERROR
|
||||||
|
# error "wxUSE_DIALUP_MANAGER requires wxUSE_DYNAMIC_LOADER."
|
||||||
|
# else
|
||||||
|
# define wxUSE_DYNAMIC_LOADER 1
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif /* wxUSE_DYNAMIC_LOADER */
|
||||||
|
#endif /* wxMSW */
|
||||||
|
|
||||||
/* wxMotif-specific dependencies */
|
/* wxMotif-specific dependencies */
|
||||||
#if defined(__WXMOTIF__) && wxUSE_NOTEBOOK && !wxUSE_TAB_DIALOG
|
#if defined(__WXMOTIF__) && wxUSE_NOTEBOOK && !wxUSE_TAB_DIALOG
|
||||||
# undef wxUSE_TAB_DIALOG
|
# undef wxUSE_TAB_DIALOG
|
||||||
@@ -853,7 +909,7 @@
|
|||||||
# error "wxUSE_DYNAMIC_CLASSES must be defined as 1"
|
# error "wxUSE_DYNAMIC_CLASSES must be defined as 1"
|
||||||
# else
|
# else
|
||||||
# undef wxUSE_DYNAMIC_CLASSES
|
# undef wxUSE_DYNAMIC_CLASSES
|
||||||
# define wxUSE_DYNAMIC_CLASSES
|
# define wxUSE_DYNAMIC_CLASSES 1
|
||||||
# endif
|
# endif
|
||||||
#endif /* wxUSE_DYNAMIC_CLASSES */
|
#endif /* wxUSE_DYNAMIC_CLASSES */
|
||||||
|
|
||||||
|
@@ -82,10 +82,7 @@
|
|||||||
#include "wx/config.h" // for wxExpandEnvVars
|
#include "wx/config.h" // for wxExpandEnvVars
|
||||||
#include "wx/utils.h"
|
#include "wx/utils.h"
|
||||||
#include "wx/file.h"
|
#include "wx/file.h"
|
||||||
|
//#include "wx/dynlib.h" // see GetLongPath below, code disabled.
|
||||||
#if wxUSE_DYNAMIC_LOADER || wxUSE_DYNLIB_CLASS
|
|
||||||
#include "wx/dynlib.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// For GetShort/LongPathName
|
// For GetShort/LongPathName
|
||||||
#ifdef __WIN32__
|
#ifdef __WIN32__
|
||||||
|
@@ -44,12 +44,7 @@
|
|||||||
|
|
||||||
#include "wx/msw/private.h" // must be before #include "dynlib.h"
|
#include "wx/msw/private.h" // must be before #include "dynlib.h"
|
||||||
|
|
||||||
#if wxUSE_DYNAMIC_LOADER || wxUSE_DYNLIB_CLASS
|
|
||||||
#include "wx/dynlib.h"
|
#include "wx/dynlib.h"
|
||||||
#else
|
|
||||||
#error You need wxUSE_DYNAMIC_LOADER to be 1 to compile dialup.cpp.
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "wx/dialup.h"
|
#include "wx/dialup.h"
|
||||||
|
|
||||||
DEFINE_EVENT_TYPE(wxEVT_DIALUP_CONNECTED)
|
DEFINE_EVENT_TYPE(wxEVT_DIALUP_CONNECTED)
|
||||||
|
@@ -29,9 +29,7 @@
|
|||||||
#if wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__)
|
#if wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__)
|
||||||
#include "wx/msw/helpchm.h"
|
#include "wx/msw/helpchm.h"
|
||||||
|
|
||||||
#if wxUSE_DYNAMIC_LOADER || wxUSE_DYNLIB_CLASS
|
|
||||||
#include "wx/dynlib.h"
|
#include "wx/dynlib.h"
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef WX_PRECOMP
|
#ifndef WX_PRECOMP
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
Reference in New Issue
Block a user