diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-11 20:37:49 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-11 20:37:49 +0000 |
commit | 11b1030f103f77b25c496b6c70b25b5edc47c0bc (patch) | |
tree | a11369ffce30a64597d211b51167e4a6d37dd180 /Makefile.in | |
parent | de10444111d8158b3bddc4b456cad732c3608a5b (diff) | |
download | fetchmail-11b1030f103f77b25c496b6c70b25b5edc47c0bc.tar.gz fetchmail-11b1030f103f77b25c496b6c70b25b5edc47c0bc.tar.bz2 fetchmail-11b1030f103f77b25c496b6c70b25b5edc47c0bc.zip |
Eliminate bug reported by Steven Trainoff
svn path=/trunk/; revision=743
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in index f57f98cc..b25fd272 100644 --- a/Makefile.in +++ b/Makefile.in @@ -156,7 +156,7 @@ clean: -rm -f fetchmail *.o core fetchmail.dvi \ rcfile_l.c rcfile_y.h rcfile_y.c \ fetchmail.tar fetchmail.tar.gz \ - linetext[12] + rfc822 distclean: clean -rm -f Makefile config.h @@ -221,11 +221,9 @@ fetchmail-$(VERS).tar: $(all) fetchmail-$(VERS).tar.gz: fetchmail-$(VERS).tar gzip -f fetchmail-$(VERS).tar -# Test for stdio line-buffering lossage on sockets -linetest1: socket.c - $(CC) -g -I. -DMAIN socket.c -o linetest1 # Use setlinebuf -linetest2: socket.c - $(CC) -g -I. -DMAIN -DUSE_STDIO socket.c -o linetest2 # Use setvnbuf +# Tester for address parsing +rfc822: rfc822.c + gcc -DTESTMAIN -g rfc822.c -o rfc822 # The automatically generated dependencies below may omit config.h # because it is included with ``#include <config.h>'' rather than |