From 289d766e079dc9c695bee7c5a6655ece26b3555d Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 30 Sep 1997 22:20:54 +0000 Subject: Indicate the compiled-in features. svn path=/trunk/; revision=1449 --- fetchmail.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/fetchmail.c b/fetchmail.c index 80856024..a64a61c1 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -115,7 +115,14 @@ int main (int argc, char **argv) if (versioninfo) { - printf("This is fetchmail release %s\n", RELEASE_ID); + printf("This is fetchmail release %s", RELEASE_ID); +#ifdef POP2_ENABLE + printf("+POP2"); +#endif /* POP2_ENABLE */ +#ifdef RPA_ENABLE + printf("+RPA"); +#endif /* RPA_ENABLE */ + putchar('\n'); /* this is an attempt to help remote debugging */ system("uname -a"); -- cgit v1.2.3