VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2019-12-11 17:54:55 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2019-12-11 23:53:47 +0100
commit14bee5e6a227701e78c5fec04064c0494f6361f0 (patch)
treefa872d52a411e2a9f0120deebdd8494f5c7471eb
parent8942b3eff3729d6c754c233d8b1fe272c6ea5eed (diff)
downloadVeraCrypt-14bee5e6a227701e78c5fec04064c0494f6361f0.tar.gz
VeraCrypt-14bee5e6a227701e78c5fec04064c0494f6361f0.zip
Linux: fix compilation error when building console-only version of VeraCrypt that is statically linked to wxWidgets
-rwxr-xr-xsrc/Main/Main.make8
-rw-r--r--src/Makefile1
2 files changed, 0 insertions, 9 deletions
diff --git a/src/Main/Main.make b/src/Main/Main.make
index a154a846..0cb4e15d 100755
--- a/src/Main/Main.make
+++ b/src/Main/Main.make
@@ -81,15 +81,7 @@ CXXFLAGS += -I$(BASE_DIR)/Main
#------ wxWidgets configuration ------
-ifdef TC_NO_GUI
-ifdef VC_WX_STATIC
-WX_CONFIG_LIBS := base
-else
-WX_CONFIG_LIBS := adv,core,base
-endif
-else
WX_CONFIG_LIBS := adv,core,base
-endif
ifeq "$(TC_BUILD_CONFIG)" "Release"
diff --git a/src/Makefile b/src/Makefile
index f102a28c..1b084421 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -70,7 +70,6 @@ endif
ifeq "$(origin NOGUI)" "command line"
export TC_NO_GUI := 1
C_CXX_FLAGS += -DTC_NO_GUI
- WX_CONFIGURE_FLAGS += --disable-gui
endif
ifdef PKCS11_INC