On Thu, Mar 31, 2016, at 07:20 PM, Kevin J. McCarthy wrote: > On Thu, Mar 31, 2016, at 06:57 PM, Will Yardley wrote: > > On Thu, Mar 31, 2016 at 03:55:15PM -0700, Kevin J. McCarthy wrote: > > > If you have a chance, I'd appreciate any/all testing. I will push this > > > up first thing tomorrow. > > > > I still get an error after applyihng the patch, re-running configure, > > and running 'make'. Config.log attached. > > > > ( echo '#include "config.h"'; echo '#include "mutt.h"'; ) \ > > | gcc -E -DPKGDATADIR=\"/usr/local/share/mutt\" > > -DSYSCONFDIR=\"/usr/local/etc\" -DBINDIR=\"/usr/local/bin\" > > -DMUTTLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H=1 -I. -I. -I. > > -I./imap -Iintl -I/usr/local/include -I./intl - | sh ./hcachever.sh > > hcversion.h > > Try running 'make clean' or 'make maintainter-clean' (run the latter > only if you are compiling from hg and have autotools installed). Your > Makefile wasn't regenerated for some reason.
Sorry, actually for this patch, you _need_ autotools. Automake has to regenerate Makefile.in from Makefile.am. If you have autotools installed, run make maintainer-clean, and then use the prepare script. Otherwise, you could try splicing the change into your Makefile.in. Look for the (echo #include...) line in Makefile.in and make the change in the patch. -Kevin