diff options
-rw-r--r-- | autogen/config.in | 6 | ||||
-rwxr-xr-x | autogen/configure | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/autogen/config.in b/autogen/config.in index 20fe0874c45..7f50d0b89c1 100644 --- a/autogen/config.in +++ b/autogen/config.in @@ -738,6 +738,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ /* Define to 1 if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H +/* Define to 1 if you have the `strcasecmp' function. */ +#undef HAVE_STRCASECMP + /* Define to 1 if you have the `strerror' function. */ #undef HAVE_STRERROR @@ -747,6 +750,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ /* Define to 1 if you have the <string.h> header file. */ #undef HAVE_STRING_H +/* Define to 1 if you have the `strncasecmp' function. */ +#undef HAVE_STRNCASECMP + /* Define to 1 if you have the `strsignal' function. */ #undef HAVE_STRSIGNAL diff --git a/autogen/configure b/autogen/configure index 321e9d5ca54..bb69633a8c6 100755 --- a/autogen/configure +++ b/autogen/configure @@ -20948,6 +20948,7 @@ gai_strerror mkstemp getline getdelim fsync sync \ difftime posix_memalign \ getpwent endpwent getgrent endgrent \ touchlock \ +strcasecmp strncasecmp \ cfmakeraw cfsetspeed copysign __executable_start do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` |