diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-06-11 04:28:16 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-06-11 04:28:16 +0000 |
commit | 5c60df97af1da3cf699a78ba0bd7f9f9d751d8b0 (patch) | |
tree | 657366d4a2494cb92c1e1dfd0cbc36e2fa893abb /pop2.c | |
parent | 566cab9427e5d6ce8bdff82d911ec76662ca7927 (diff) | |
download | fetchmail-5c60df97af1da3cf699a78ba0bd7f9f9d751d8b0.tar.gz fetchmail-5c60df97af1da3cf699a78ba0bd7f9f9d751d8b0.tar.bz2 fetchmail-5c60df97af1da3cf699a78ba0bd7f9f9d751d8b0.zip |
Normal build is now with POP2 disabled and optimization on.
svn path=/trunk/; revision=1080
Diffstat (limited to 'pop2.c')
-rw-r--r-- | pop2.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* - * pop2.c -- POP@ protocol methods + * pop2.c -- POP2 protocol methods * * Copyright 1996 by Eric S. Raymond * All rights reserved. @@ -7,6 +7,7 @@ */ #include <config.h> +#ifdef POP2_ENABLE #include <stdio.h> #if defined(STDC_HEADERS) #include <stdlib.h> @@ -137,5 +138,6 @@ int doPOP2 (struct query *ctl) peek_capable = FALSE; return(do_protocol(ctl, &pop2)); } +#endif /* POP2_ENABLE */ /* pop2.c ends here */ |