updates to reflect fixes to wx-config

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22522 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2003-08-03 18:45:17 +00:00
parent 03206f17a6
commit 0c5852cb0e

View File

@ -197,13 +197,13 @@ d) Add files to multilib build: add foolib and foodll targets. Don't use
e) Regenerate all makefiles (don't forget to run autoconf)
f) Update wx-config.in to contain information about the library and needed
linker flags:
* Add "foo" to either CORE_BASE_LIBS or CORE_GUI_LIBS so that wxFoo is
not treated as contrib library in monolithic build.
f) Update configure.in and wx-config.in to contain information about
the library and needed linker flags:
* Add "foo" to either CORE_BASE_LIBS or CORE_GUI_LIBS in configure.in so
that wxFoo is not treated as contrib library in monolithic build.
* If wxFoo links against additional libraries, add neccessary linker
flags and libraries to ldflags_foo and ldlibs_foo variables (both are
optional).
flags and libraries to ldflags_foo and ldlibs_foo variables in
wx-config.in (both are optional).
g) Update defs.h to define WXMAKINGDLL_FOO if WXMAKINGDLL is defined (add
#define WXMAKINGDLL_FOO inside first "#ifdef WXMAKINGDLL" block in defs.h)