diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-21 15:46:52 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-21 15:46:52 -0700 |
commit | 8fa3682c14fc40a06f3af9a462301f39739a26bd (patch) | |
tree | 9ccd742df79644879a098874cd90549663e528cd /configure.ac | |
parent | 75ad621cfcf3c2591b7b9602bc0934d445153c6a (diff) |
Assume all target platforms have strcasecmp() now
It's a standard part of Unix98/SUSv2 and later
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/app/xedit/-/merge_requests/10>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 8b66bcc..869dd4f 100644 --- a/configure.ac +++ b/configure.ac @@ -54,8 +54,6 @@ AC_CHECK_FUNCS([getpagesize]) AC_CHECK_FUNC(realpath, [], [have_realpath=yes]) AM_CONDITIONAL(NEED_REALPATH, test x$have_realpath = xyes) -AC_CHECK_FUNC(strcasecmp, [], [have_strcasecmp=yes]) -AM_CONDITIONAL(NEED_STRCASECMP, test x$have_strcasecmp = xyes) AC_CHECK_FUNC(unsetenv, [], [have_unsetenv=yes]) AM_CONDITIONAL(NEED_UNSETENV, test x$have_unsetenv = xyes) |