diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-01-09 23:52:27 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-01-09 23:52:27 +0000 |
commit | f2c6d1760ac6971fcc63c9dbde8752dc721c6bc3 (patch) | |
tree | 251a33e19b731b58c186720db6545f71e5dca1bc /Makefile.in | |
parent | cbf36a2ce0a919e4c8efc0b43efdb5a19e28839c (diff) | |
download | fetchmail-f2c6d1760ac6971fcc63c9dbde8752dc721c6bc3.tar.gz fetchmail-f2c6d1760ac6971fcc63c9dbde8752dc721c6bc3.tar.bz2 fetchmail-f2c6d1760ac6971fcc63c9dbde8752dc721c6bc3.zip |
Henrik's fix for mimedecode.
svn path=/trunk/; revision=2345
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 98e86efd..e71237b2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,7 +4,7 @@ # So just uncomment all the lines marked QNX. PACKAGE = fetchmail -VERSION = 4.7.5 +VERSION = 4.7.6 SUBDIRS = @INTLSUB@ @POSUB@ @@ -121,8 +121,8 @@ rfc822: rfc822.c gcc -DTESTMAIN -g rfc822.c -o rfc822 # Stand-alone MIME decoder -unmime: unmime.c base64.c rfc822.c xmalloc.c error.c memmove.c - $(CC) -DSTANDALONE -g -o $@ $^ +unmime: unmime.c base64.c rfc822.c xmalloc.c error.c + $(CC) -DSTANDALONE -DHAVE_CONFIG_H -I. -g -o $@ $^ .c.o: $(CC) $(defines) -c $(CPFLAGS) -I$(srcdir) -I. $(CEFLAGS) $(CFLAGS) $< |