Skip to content

Commit

Permalink
Various cygwin portability fixes
Browse files Browse the repository at this point in the history
--HG--
branch : HEAD
  • Loading branch information
bcully committed Mar 16, 2005
1 parent b3d2026 commit 61dbb8a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Use aclocal -I m4; automake --foreign

AUTOMAKE_OPTIONS = 1.6 foreign
EXTRA_PROGRAMS = mutt_dotlock pgpring makedoc
EXTRA_PROGRAMS = mutt_dotlock pgpring pgpewrap makedoc

if BUILD_IMAP
IMAP_SUBDIR = imap
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ else
if test x$have_pgp != xno ; then
AC_DEFINE(CRYPT_BACKEND_CLASSIC_PGP,1,
[ Define if you want classic PGP support. ])
PGPAUX_TARGET="pgpring pgpewrap"
PGPAUX_TARGET="pgpring\$(EXEEXT) pgpewrap\$(EXEEXT)"
MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS pgp.o pgpinvoke.o pgpkey.o pgplib.o gnupgparse.o pgpmicalg.o pgppacket.o crypt-mod-pgp-classic.o"
fi

Expand Down
3 changes: 2 additions & 1 deletion doc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ VPATH = @srcdir@
INSTALL = @INSTALL@
CC = @CC@
CPP = @CPP@
EXEEXT = @EXEEXT@
XCPPFLAGS = -I. @CPPFLAGS@
CFLAGS = @CFLAGS@ $(XCPPFLAGS)
LDFLAGS = @LDFLAGS@
Expand Down Expand Up @@ -150,7 +151,7 @@ dist distdir: Makefile $(DISTFILES)
done

../makedoc: $(top_srcdir)/makedoc.c
(cd .. && $(MAKE) makedoc)
(cd .. && $(MAKE) makedoc$(EXEEXT))

# hack around autoconf mixing up patterns.
at = @
Expand Down
3 changes: 3 additions & 0 deletions hcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@

#include <errno.h>
#include <fcntl.h>
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#include "mutt.h"
#ifdef USE_IMAP
#include "message.h"
Expand Down

0 comments on commit 61dbb8a

Please sign in to comment.