greatly helps portability ...
@@ -6,7 +6,7 @@ AM_MAINTAINER_MODE
AM_PROG_CC_STDC
if test "$GCC" = yes; then
- CFLAGS="$CFLAGS -pipe -W -Wall -Wshadow -Wstrict-prototypes"
+ CFLAGS="$CFLAGS -pipe -W -Wall -Wshadow -Wstrict-prototypes -ansi -pedantic -Wno-overlength-strings"
fi
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
@@ -160,24 +160,24 @@ struct imap_cmd_refcounted {
enum CAPABILITY {
NOLOGIN = 0,
- UIDPLUS,
- LITERALPLUS,
- NAMESPACE,
#ifdef HAVE_LIBSSL
CRAM,
STARTTLS,
#endif
+ UIDPLUS,
+ LITERALPLUS,
+ NAMESPACE
};
static const char *cap_list[] = {
"LOGINDISABLED",
- "UIDPLUS",
- "LITERAL+",
- "NAMESPACE",
"AUTH=CRAM-MD5",
"STARTTLS",
+ "UIDPLUS",
+ "LITERAL+",
+ "NAMESPACE"
#define RESP_OK 0
@@ -54,7 +54,7 @@ static const char *subdirs[] = { "cur", "new" };
static struct flock lck;
static DBT key, value;
-static inline int
+static int
convert( const char *box, int altmap )
{
DB *db;