mutt stable branch with some hacks
0
fork

Configure Feed

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

No need to set CPP, OPS manually in Makefile.am. Include stdlib.h in autoconf tests that use exit.

+4 -4
-4
Makefile.am
··· 48 48 # @rm -rf makedoc 49 49 # $(HOST_CC) $(AM_CFLAGS) $(LDFLAGS) $(makedoc_LDFLAGS) $(makedoc_OBJECTS) $(makedoc_LDADD) -o makedoc 50 50 51 - CPP=@CPP@ 52 - 53 51 DEFS=-DPKGDATADIR=\"$(pkgdatadir)\" -DSYSCONFDIR=\"$(sysconfdir)\" \ 54 52 -DBINDIR=\"$(bindir)\" -DMUTTLOCALEDIR=\"$(datadir)/locale\" \ 55 53 -DHAVE_CONFIG_H=1 ··· 104 102 ACLOCAL_AMFLAGS = -I m4 105 103 106 104 LDADD = @LIBOBJS@ @INTLLIBS@ 107 - 108 - OPS=@OPS@ 109 105 110 106 flea: muttbug.sh 111 107 cp muttbug.sh flea
+3
configure.in
··· 183 183 AC_ARG_WITH(slang, AC_HELP_STRING([--with-slang[=DIR]], [Use S-Lang instead of ncurses]), 184 184 [AC_CACHE_CHECK([if this is a BSD system], mutt_cv_bsdish, 185 185 [AC_TRY_RUN([#include <sys/param.h> 186 + #include <stdlib.h> 186 187 187 188 main () 188 189 { ··· 465 466 466 467 AC_CACHE_CHECK(if $mutt_cv_mailpath is world writable, mutt_cv_worldwrite, [AC_TRY_RUN([#include <sys/types.h> 467 468 #include <sys/stat.h> 469 + #include <stdlib.h> 468 470 469 471 int main (int argc, char **argv) 470 472 { ··· 482 484 483 485 AC_CACHE_CHECK(if $mutt_cv_mailpath is group writable, mutt_cv_groupwrite, [AC_TRY_RUN([#include <sys/types.h> 484 486 #include <sys/stat.h> 487 + #include <stdlib.h> 485 488 486 489 int main (int argc, char **argv) 487 490 {
+1
doc/instdoc.sh.in
··· 6 6 libdir=@libdir@ 7 7 mandir=@mandir@ 8 8 srcdir=@srcdir@ 9 + datarootdir=@datarootdir@ 9 10 docdir=@docdir@ 10 11 includedir=@includedir@ 11 12 top_srcdir=@top_srcdir@