diff options
author | Daniel Stone <daniel@fooishbar.org> | 2008-07-16 02:03:36 +0300 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2008-07-16 03:02:12 +0300 |
commit | 69b57dc651e12a0d9a5a4295b185c62d5c0df63f (patch) | |
tree | f574b1ea2d40d9195a14be6cd4917834f8a60a77 /include/dix-config.h.in | |
parent | dcf6293030126509d7d6c61d131222037d5ed7db (diff) |
dix: Actually build str(n)casecmp if we don't have it
Remember to add stuff to dix-config.h when you add new AC_DEFINES,
people ...
Diffstat (limited to 'include/dix-config.h.in')
-rw-r--r-- | include/dix-config.h.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/dix-config.h.in b/include/dix-config.h.in index e853aa93b..ed664a92c 100644 --- a/include/dix-config.h.in +++ b/include/dix-config.h.in @@ -202,9 +202,6 @@ /* Define to 1 if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H -/* Define to 1 if you have the `strcasestr' function. */ -#undef HAVE_STRCASESTR - /* Define to 1 if you have the `strchr' function. */ #undef HAVE_STRCHR @@ -498,4 +495,10 @@ /* Define to 64-bit byteswap macro */ #undef bswap_64 +/* Need the strcasecmp function. */ +#undef NEED_STRCASECMP + +/* Need the strncasecmp function. */ +#undef NEED_STRNCASECMP + #endif /* _DIX_CONFIG_H_ */ |