From 7927c9abc023b319489b2a47f638d959b42a2633 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 27 Oct 2022 02:50:26 +0100 Subject: [PATCH] Stop mentioning --disable-unicode in build instructions This option doesn't exist any more. --- docs/gtk/install.md | 3 --- docs/wine/install.txt | 7 +------ 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/docs/gtk/install.md b/docs/gtk/install.md index 68b51e2f6d..5900e3a5ff 100644 --- a/docs/gtk/install.md +++ b/docs/gtk/install.md @@ -194,9 +194,6 @@ Some other general compilation options: Do not optimise the code. Can be useful for debugging but shouldn't be used for production builds. - * `--disable-unicode` \n - Disable Unicode support. Not recommended. - * `--enable-no_rtti` \n Enable compilation without creation of C++ RTTI information in object files. This will speed-up compilation and reduce binary size. diff --git a/docs/wine/install.txt b/docs/wine/install.txt index 12d3347685..bb4e09289c 100644 --- a/docs/wine/install.txt +++ b/docs/wine/install.txt @@ -16,7 +16,7 @@ On all variants of Unix except Linux (and maybe except *BSD), shared libraries are not supported out of the box due to the utter stupidity of libtool, so you'll have to do this to get shared library support: -> ./configure --with-wine --disable-unicode --disable-static --enable-shared +> ./configure --with-wine --disable-static --enable-shared Then you'll have to edit the wrongly created libtool script. There are two important entries with respect to shared library creation, which are @@ -378,8 +378,3 @@ and compile options to use. It's probable that the wxWINE library will need recompiling with different options. Any progress on this front will be very welcome. - -Note that while wxWINE builds with --enable-unicode, samples -don't run. Some samples will run when built with ---disable-unicode, and others (such as auidemo) fail. -