diff options
author | Jertzukka <Jertzukka@gmail.com> | 2023-06-14 00:11:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-13 23:11:23 +0200 |
commit | 444152b286788edaab4428bd3ccc1922709da623 (patch) | |
tree | 8677d0f07bd026f4993220ab52f416c11551b09c /src | |
parent | b0d0fbbcfdf71dfd8a4b013e64a3c951953a03b6 (diff) | |
download | VeraCrypt-444152b286788edaab4428bd3ccc1922709da623.tar.gz VeraCrypt-444152b286788edaab4428bd3ccc1922709da623.zip |
Fix WXSTATIC building on latest wxWidgets stable 3.2.2.1 (#1103)
Changes to be able to build latest wxWidgets stable 3.2.2.1.
Removed in 3.1.5, needs to be removed.
--disable-webkit
Added in 3.1.0, needs to be added.
--disable-addremovectrl
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index c1ea2bae..a5e68590 100644 --- a/src/Makefile +++ b/src/Makefile @@ -453,7 +453,7 @@ WX_CONFIGURE_FLAGS += --enable-unicode -disable-shared --disable-dependency-trac ifdef VC_WX_MINIMAL WX_CONFIGURE_FLAGS += --disable-protocol --disable-protocols --disable-url --disable-ipc --disable-sockets --disable-fs_inet --disable-ole --disable-docview --disable-clipboard \ - --disable-help --disable-html --disable-mshtmlhelp --disable-htmlhelp --disable-mdi --disable-metafile --disable-webkit --disable-webview \ + --disable-help --disable-html --disable-mshtmlhelp --disable-htmlhelp --disable-mdi --disable-metafile --disable-addremovectrl --disable-webview \ --disable-xrc --disable-aui --disable-postscript --disable-printarch \ --disable-arcstream --disable-fs_archive --disable-fs_zip --disable-tarstream --disable-zipstream \ --disable-animatectrl --disable-bmpcombobox --disable-calendar --disable-caret --disable-checklst --disable-collpane --disable-colourpicker --disable-comboctrl \ |