diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-07-10 00:17:40 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-07-10 00:18:28 +0200 |
commit | b7e1614b586e52bea6c9e85029492a9696787ca9 (patch) | |
tree | 3290a5ed8b99df86a046eee01b39fd6fc87dd9a8 /src/Build/build_veracrypt_freebsd.sh | |
parent | bc9e7222111260843aec9cb1501d0f988b5831d0 (diff) | |
download | VeraCrypt-b7e1614b586e52bea6c9e85029492a9696787ca9.tar.gz VeraCrypt-b7e1614b586e52bea6c9e85029492a9696787ca9.zip |
FreeBSD: enable wxWidgets static build by default in official build script
Diffstat (limited to 'src/Build/build_veracrypt_freebsd.sh')
-rw-r--r-- | src/Build/build_veracrypt_freebsd.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Build/build_veracrypt_freebsd.sh b/src/Build/build_veracrypt_freebsd.sh index 4d50076e..30c3c69e 100644 --- a/src/Build/build_veracrypt_freebsd.sh +++ b/src/Build/build_veracrypt_freebsd.sh @@ -32,17 +32,17 @@ echo "Building GUI version of VeraCrypt" # this will be the temporary wxWidgets directory export WX_BUILD_DIR=$PARENTDIR/wxBuildGui -#gmake WXSTATIC=1 wxbuild && gmake WXSTATIC=1 clean && gmake WXSTATIC=1 && gmake WXSTATIC=1 package +gmake WXSTATIC=1 wxbuild && gmake WXSTATIC=1 clean && gmake WXSTATIC=1 && gmake WXSTATIC=1 package # Uncomment below and comment line above to reuse existing wxWidgets build -gmake WXSTATIC=1 clean && gmake WXSTATIC=1 && gmake WXSTATIC=1 package +#gmake WXSTATIC=1 clean && gmake WXSTATIC=1 && gmake WXSTATIC=1 package echo "Building console version of VeraCrypt" # this will be the temporary wxWidgets directory export WX_BUILD_DIR=$PARENTDIR/wxBuildConsole -#gmake WXSTATIC=1 NOGUI=1 wxbuild && gmake WXSTATIC=1 NOGUI=1 clean && gmake WXSTATIC=1 NOGUI=1 && gmake WXSTATIC=1 NOGUI=1 package +gmake WXSTATIC=1 NOGUI=1 wxbuild && gmake WXSTATIC=1 NOGUI=1 clean && gmake WXSTATIC=1 NOGUI=1 && gmake WXSTATIC=1 NOGUI=1 package # Uncomment below and comment line above to reuse existing wxWidgets build -gmake WXSTATIC=1 NOGUI=1 clean && gmake WXSTATIC=1 NOGUI=1 && gmake WXSTATIC=1 NOGUI=1 package +#gmake WXSTATIC=1 NOGUI=1 clean && gmake WXSTATIC=1 NOGUI=1 && gmake WXSTATIC=1 NOGUI=1 package |