Index: build/web/kitcreator.vfs/index.rvt ================================================================== --- build/web/kitcreator.vfs/index.rvt +++ build/web/kitcreator.vfs/index.rvt @@ -122,10 +122,13 @@ set build_options(minbuild) 1 } "option_staticlibssl" { set build_options(staticlibssl) 1 } + "option_buildlibssl" { + set build_options(buildlibssl) 1 + } "option_staticpkgs" { set build_options(staticpkgs) 1 } "option_tclutfmax6" { set build_options(tclutfmax6) 1 @@ -369,11 +372,12 @@ Kit: Build Library (KitDLL)
Kit: Always link Tk dynamically (if Tk is built)
Kit: "Minimal" build (remove extra packages shipped as part of Tcl and reduce encodings)
Kit: Statically link packages in pkgs directory
Kit: TCL_UTF_MAX=6 (incompatibility with standard Tcl)
- TLS: Statically link to LibSSL + TLS: Statically link to LibSSL
+ TLS: Build LibreSSL for this platform Kit Storage: Index: build/web/process_queue ================================================================== --- build/web/process_queue +++ build/web/process_queue @@ -106,10 +106,15 @@ } "staticlibssl" { if {$value} { set ::env(KC_TLS_LINKSSLSTATIC) 1 } + } + "buildlibssl" { + if {$value} { + set ::env(KC_TLS_BUILDSSL) 1 + } } "staticpkgs" { if {$value} { set ::env(KC_TCL_STATICPKGS) 1 } @@ -135,11 +140,11 @@ catch { set cmd [list $script $buildinfo(tcl_version) {*}$args] set fd [open "${outfile}.log" w+] puts $fd "Running: export KITCREATOR_PKGS=\"$::env(KITCREATOR_PKGS)\"" - foreach variable [list STRIP STATICTK KITCREATOR_MINENCODINGS KITCREATOR_MINBUILD KC_TLS_LINKSSLSTATIC KC_TCL_STATICPKGS KC_TCL_UTF_MAX] { + foreach variable [list STRIP STATICTK KITCREATOR_MINENCODINGS KITCREATOR_MINBUILD KC_TLS_LINKSSLSTATIC KC_TLS_BUILDSSL KC_TCL_STATICPKGS KC_TCL_UTF_MAX] { if {[info exists ::env($variable)]} { puts $fd "Running: export $variable=\"$::env($variable)\"" } }