CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2026/01/06 07:08:59
Modified files:
security/john-jumbo: Makefile
Log message:
Set _BSD_SOURCE=1 via CFLAGS to ensure BSD functions remain visible.
os.h sets _XOPEN_SOURCE and with that functions like strcasestr() no
longer show up and with that compilers do silly things.
The build system is so arcane that it seems best to just pass
-D_BSD_SOURCE=1 via CFLAGS to override the _XOPEN_SOURCE exclude.
With this CFLAGS_base-clang is no longer needed.
OK sthen@ tb@