From fa48fc5ada2e5190a1b83a6b0ef4482adc67feae Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 27 May 2014 23:59:03 +0000 Subject: [PATCH] Don't advise people to make new libraries standard. Update the instructions for adding the new library to not recommend to make the new library standard, this is rarely, if ever, needed. See #16291. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76615 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/tech/tn0016.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/tech/tn0016.txt b/docs/tech/tn0016.txt index e8b7a67cf7..6b142b0603 100644 --- a/docs/tech/tn0016.txt +++ b/docs/tech/tn0016.txt @@ -185,7 +185,9 @@ e) Regenerate all makefiles (don't forget to run autoconf) f) Update configure.in and wx-config.in to contain information about the library and needed linker flags: - * Add "foo" to either STD_BASE_LIBS or STD_GUI_LIBS in configure.in. + * Add "foo" to BUILT_WX_LIBS in configure.in. + * If appropriate, but it rarely is, so normally this should _not_ be done, + add "foo" to either STD_BASE_LIBS or STD_GUI_LIBS in configure.in. * If wxFoo links against additional libraries, add necessary linker flags and libraries to ldflags_foo and ldlibs_foo variables in wx-config.in (both are optional).