Skip to content

Commit 5dbaba5

Browse files
committed
fix header env vars and disable them by default
1 parent 87bc716 commit 5dbaba5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ THEME=auto
2323
# These are FFI headers not original ones from the Tcl/Tk source distribution.
2424
# Normally headers are in `src/headers` directory but you can
2525
# override to yours.
26-
TCL_C_HEADER=tcl86.h
27-
TK_C_HEADER=tk86.h
26+
# TCL_HEADER=tcl86.h
27+
# TK_HEADER=tk86.h
2828

2929
# Windows Tcl/Tk shared libs (dll).
3030
#

tests/TclInterp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
$env = DotEnv::create($rootDir);
2525

2626
$os = OS::family();
27-
$hFile = $env->getValue('TCL_C_HEADER', $defaultTclH);
27+
$hFile = $env->getValue('TCL_HEADER', $defaultTclH);
2828
$shared = $env->getValue($os . '_LIB_TCL');
2929
if (empty($shared)) {
3030
switch ($os) {

0 commit comments

Comments
 (0)