diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-30 22:20:54 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-30 22:20:54 +0000 |
commit | 289d766e079dc9c695bee7c5a6655ece26b3555d (patch) | |
tree | b5fbd669f029c37db1c63e9ff7d47744ad845e41 | |
parent | 0e6a306ee65ea3c0346cd57a40303cddf4d35b5a (diff) | |
download | fetchmail-289d766e079dc9c695bee7c5a6655ece26b3555d.tar.gz fetchmail-289d766e079dc9c695bee7c5a6655ece26b3555d.tar.bz2 fetchmail-289d766e079dc9c695bee7c5a6655ece26b3555d.zip |
Indicate the compiled-in features.
svn path=/trunk/; revision=1449
-rw-r--r-- | fetchmail.c | 9 |
1 files changed, 8 insertions, 1 deletions
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"); |