From e025a5823560453ccabbe75a68694a723f56362a Mon Sep 17 00:00:00 2001 From: moritz Date: Sun, 4 Mar 2007 14:27:37 +0000 Subject: [PATCH] Add -V command line parameter to print the version number and exit. git-svn-id: https://svn.xiph.org/trunk/ezstream@12626 0101bb08-14d6-0310-b084-bc0e0c8e3800 --- doc/ezstream.1.in | 6 +++++- src/ezstream.c | 8 ++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/doc/ezstream.1.in b/doc/ezstream.1.in index 1f9e630..ba8b5e9 100644 --- a/doc/ezstream.1.in +++ b/doc/ezstream.1.in @@ -12,7 +12,7 @@ .Sh SYNOPSIS .Nm .Bk -words -.Op Fl hqv +.Op Fl hqVv .Op Fl c Ar configfile .Ek .Sh DESCRIPTION @@ -39,6 +39,10 @@ and exit. .It Fl q Be more quiet. Suppress the output that external programs send to standard error. +.It Fl V +Print the +.Nm +version number and exit. .It Fl v Produce more verbose output from .Nm . diff --git a/src/ezstream.c b/src/ezstream.c index eddda78..00d0b10 100644 --- a/src/ezstream.c +++ b/src/ezstream.c @@ -882,7 +882,7 @@ getProgname(const char *argv0) void usage(void) { - printf("usage: %s [-hqv] [-c configfile]\n", __progname); + printf("usage: %s [-hqVv] [-c configfile]\n", __progname); } void @@ -892,6 +892,7 @@ usageHelp(void) printf(" -c configfile use XML configuration in configfile\n"); printf(" -h display this additional help and exit\n"); printf(" -q suppress STDERR output from external en-/decoders\n"); + printf(" -V print the version number and exit\n"); printf(" -v verbose output (use twice for more effect)\n"); printf("\n"); printf("See the ezstream(1) manual for detailed information.\n"); @@ -919,7 +920,7 @@ main(int argc, char *argv[]) qFlag = 0; vFlag = 0; - while ((c = getopt(argc, argv, "c:hqv")) != -1) { + while ((c = getopt(argc, argv, "c:hqVv")) != -1) { switch (c) { case 'c': if (configFile != NULL) { @@ -936,6 +937,9 @@ main(int argc, char *argv[]) case 'q': qFlag = 1; break; + case 'V': + printf("%s\n", PACKAGE_STRING); + return (0); case 'v': vFlag++; break;