We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dead5b2 + 070f068 commit 0cc57caCopy full SHA for 0cc57ca
generic/tkIcu.c
@@ -287,6 +287,11 @@ Icu_Init(
287
icu_fns.name = (fn_icu_ ## name) \
288
Tcl_FindSymbol(NULL, icu_fns.lib, symbol)
289
ICU_SYM(open);
290
+ if (!icu_fns.open && *icuversion) {
291
+ /* FreeBSD doesn't append the ICU version to the symbol name, see [1da19a69f8] */
292
+ *icuversion = 0;
293
+ ICU_SYM(open); /* try again without version suffix */
294
+ }
295
ICU_SYM(close);
296
ICU_SYM(preceding);
297
ICU_SYM(following);
macosx/tkMacOSXTest.c
@@ -52,7 +52,7 @@ TkplatformtestInit(
52
*/
53
54
testsAreRunning = 1;
55
-
+
56
/*
57
* Add commands for platform specific tests on MacOS here.
58
0 commit comments