mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix cppflags and muttlibs duplication with --with-gss.

When krb5-config was found, MUTT_AM_PATH_GSSAPI included CFLAGS in
GSSAPI_CFLAGS and MUTTLIBS in GSSAPI_LIBS. However, configure.ac
afterwards sets:
CPPFLAGS="$CPPFLAGS $GSSAPI_CFLAGS"
MUTTLIBS="$MUTTLIBS $GSSAPI_LIBS"
This caused the flags and libs to be duplicated.

+2 -2
+2 -2
m4/gssapi.m4
··· 23 23 AC_PATH_PROG(KRB5CFGPATH, krb5-config, none, $krb5_path) 24 24 if test "$KRB5CFGPATH" != "none" 25 25 then 26 - GSSAPI_CFLAGS="$CPPFLAGS `$KRB5CFGPATH --cflags gssapi`" 27 - GSSAPI_LIBS="$MUTTLIBS `$KRB5CFGPATH --libs gssapi`" 26 + GSSAPI_CFLAGS="`$KRB5CFGPATH --cflags gssapi`" 27 + GSSAPI_LIBS="`$KRB5CFGPATH --libs gssapi`" 28 28 case "`$KRB5CFGPATH --version`" in 29 29 "Kerberos 5 "*) GSSAPI_IMPL="MIT";; 30 30 ?eimdal*) GSSAPI_IMPL="Heimdal";;