diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index e7dea005..21153574 100644 --- a/Makefile.in +++ b/Makefile.in @@ -154,6 +154,7 @@ fetchmail.spec: $(srcdir)/Makefile.in $(srcdir)/specgen.sh clean: -rm -f fetchmail *.o core fetchmail.dvi \ rcfile_l.c rcfile_y.h rcfile_y.c fetchmail.tar fetchmail.tar.gz + -rm -f linetest[12] distclean: clean -rm -f Makefile config.h @@ -179,6 +180,9 @@ stamp-config: config.status $(srcdir)/config.h.in configure: configure.in autoconf $(ACFLAGS) +config.h.in: acconfig.h + autoheader $(ACFLAGS) + # This tells versions [3.59,3.63) of GNU make not to export all variables. .NOEXPORT: @@ -215,6 +219,13 @@ 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 -D__SETVBUF_WORKS_OK__=1 socket.c -o linetest2 # Use setvnbuf + + # The automatically generated dependencies below may omit config.h # because it is included with ``#include <config.h>'' rather than # ``#include "config.h"''. So we add the explicit dependency to make sure. |