mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
FreeBSD already have strcasestr() and mkstemps() functions and compat stubs are always skipped so declare local functions in map file is false positive. LLVM >= 17 is more restrictive with declared but missed functions which lead to linker error. Drop local stubs stoken__strcasestr() and stoken__mkstemps() from library map file to unbreak. Reported by: poudriere failure Approved by: portmgr blanket (trivial build fix)
12 lines
276 B
Plaintext
12 lines
276 B
Plaintext
--- libstoken.map.orig 2023-03-09 18:40:27 UTC
|
|
+++ libstoken.map
|
|
@@ -58,8 +58,6 @@ global:
|
|
__stoken_read_rcfile;
|
|
__stoken_write_rcfile;
|
|
__stoken_zap_rcfile_data;
|
|
- stoken__strcasestr;
|
|
- stoken__mkstemps;
|
|
/* NOTE: this can break non-GNU toolchains */
|
|
Java_*;
|
|
local:
|