diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-22 12:52:26 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-22 12:52:26 -0700 |
commit | b4c6069ecc1a6b03051e06aecba04e828fb0d945 (patch) | |
tree | 5bd853a4fe507c27b9846bb4de3e79e904c8c9ee /meson.build | |
parent | 948cbfb38a76df395e7d9458c472901bcfefb969 (diff) |
Assume target platforms have strcasecmp now
It has been required since Unix98/SUSv2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxkbfile/-/merge_requests/18>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 22ded80..749c106 100644 --- a/meson.build +++ b/meson.build @@ -7,7 +7,6 @@ project('libxkbfile', 'c', cc = meson.get_compiler('c') cc_conf = configuration_data({ - 'HAVE_STRCASECMP': cc.has_function('strcasecmp') ? '1' : false, 'HAVE_STRNDUP': cc.has_function('strndup') and cc.has_header_symbol('string.h', 'strndup') ? '1' : false, 'HAVE_UNLOCKED_STDIO': cc.has_function('getc_unlocked') ? '1' : false |