diff options
| author | Sam Varshavchik | 2021-05-17 22:48:17 -0400 | 
|---|---|---|
| committer | Sam Varshavchik | 2021-05-19 08:03:46 -0400 | 
| commit | 34b6dbb743654fdb6edccf101c4da7e671b7a92d (patch) | |
| tree | 9328e2bd91c4fb8bf5f5103e97ca3456b1c09943 /sqwebmail/sqwebmail.h | |
| parent | f47a71576c377269f5c5ca6156b2f319256e2738 (diff) | |
| download | courier-libs-34b6dbb743654fdb6edccf101c4da7e671b7a92d.tar.bz2 | |
Tolerate -Wall and -Werror
Fixes to configure scripts and code so that it compiles (hopefully
correctly) with -Wall and -Werror.
Remove support for ancient BSD stricmp and strnicmp functions.
AC_CHECK_FUNC does not work for strcasecmp and strncasecmp under
-Wall, it's simpler to remove it.
Diffstat (limited to 'sqwebmail/sqwebmail.h')
| -rw-r--r-- | sqwebmail/sqwebmail.h | 8 | 
1 files changed, 0 insertions, 8 deletions
| diff --git a/sqwebmail/sqwebmail.h b/sqwebmail/sqwebmail.h index ff2545f..777fe60 100644 --- a/sqwebmail/sqwebmail.h +++ b/sqwebmail/sqwebmail.h @@ -79,14 +79,6 @@ extern void error3(const char *, int, const char *, const char *, int);  extern char *strdup(const char *);  #endif -#ifndef	HAVE_STRCASECMP -extern int strcasecmp(const char *, const char *); -#endif - -#ifndef	HAVE_STRNCASECMP -extern int strncasecmp(const char *, const char *, size_t); -#endif -  extern void cleanup();  extern void http_redirect_argu(const char *, unsigned long); | 
