diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-12-21 02:45:08 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-12-21 02:46:50 +0100 |
commit | f8beac6ebd00ac8b8e1286a34dfb52ef92d7e89c (patch) | |
tree | 302821f96fe5faafb528bf56a3b8765e70ffff85 /src/Build/build_cmake_deb.sh | |
parent | de52f51f5bac0a25df78c071d9038f0232b45ca6 (diff) | |
download | VeraCrypt-f8beac6ebd00ac8b8e1286a34dfb52ef92d7e89c.tar.gz VeraCrypt-f8beac6ebd00ac8b8e1286a34dfb52ef92d7e89c.zip |
Linux: Fix building and packaging console-only version to remove dependency on GTK
Diffstat (limited to 'src/Build/build_cmake_deb.sh')
-rwxr-xr-x | src/Build/build_cmake_deb.sh | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/Build/build_cmake_deb.sh b/src/Build/build_cmake_deb.sh index 3be23dda..7b546fdd 100755 --- a/src/Build/build_cmake_deb.sh +++ b/src/Build/build_cmake_deb.sh @@ -19,15 +19,24 @@ make clean || exit 1 make || exit 1 make install DESTDIR="$PARENTDIR/VeraCrypt_Setup/GUI" || exit 1 -echo "Building console version of VeraCrypt for DEB using system wxWidgets" +echo "Building console version of VeraCrypt for DEB using wxWidgets static libraries" # This is to avoid " Error: Unable to initialize GTK+, is DISPLAY set properly?" # when building over SSH without X11 Forwarding # export DISPLAY=:0.0 -make NOGUI=1 clean || exit 1 -make NOGUI=1 || exit 1 -make NOGUI=1 install DESTDIR="$PARENTDIR/VeraCrypt_Setup/Console" || exit 1 +# The sources of wxWidgets 3.0.4 must be extracted to the parent directory +export WX_ROOT=$PARENTDIR/wxWidgets-3.0.4 +echo "Using wxWidgets sources in $WX_ROOT" + +# This will be the temporary wxWidgets directory +export WX_BUILD_DIR=$PARENTDIR/wxBuildConsole + +# To build wxWidgets without GUI +make WXSTATIC=1 NOGUI=1 wxbuild || exit 1 +make WXSTATIC=1 NOGUI=1 clean || exit 1 +make WXSTATIC=1 NOGUI=1 || exit 1 +make WXSTATIC=1 NOGUI=1 install DESTDIR="$PARENTDIR/VeraCrypt_Setup/Console" || exit 1 echo "Creating VeraCrypt DEB packages" |