From e0cce4558d3e879b37b40fae00ecc3f5a40aae4b Mon Sep 17 00:00:00 2001 From: rocky Date: Sat, 22 Jan 2005 22:21:36 +0000 Subject: [PATCH] Version information now includes build. --- src/cd-drive.c | 4 ++-- src/cd-info.c | 4 ++-- src/iso-info.c | 6 +++--- src/iso-read.c | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/cd-drive.c b/src/cd-drive.c index dbbfd46e..b26290e6 100644 --- a/src/cd-drive.c +++ b/src/cd-drive.c @@ -1,5 +1,5 @@ /* - $Id: cd-drive.c,v 1.16 2005/01/13 19:58:17 rocky Exp $ + $Id: cd-drive.c,v 1.17 2005/01/22 22:21:36 rocky Exp $ Copyright (C) 2004, 2005 Rocky Bernstein @@ -171,7 +171,7 @@ main(int argc, const char *argv[]) be reflected in `arguments'. */ parse_options(argc, argv); - print_version(program_name, VERSION, false, opts.version_only); + print_version(program_name, CDIO_VERSION, false, opts.version_only); if (opts.debug_level == 3) { cdio_loglevel_default = CDIO_LOG_INFO; diff --git a/src/cd-info.c b/src/cd-info.c index dedfa7b8..f583e844 100644 --- a/src/cd-info.c +++ b/src/cd-info.c @@ -1,5 +1,5 @@ /* - $Id: cd-info.c,v 1.109 2005/01/12 11:34:52 rocky Exp $ + $Id: cd-info.c,v 1.110 2005/01/22 22:21:36 rocky Exp $ Copyright (C) 2003, 2004, 2005 Rocky Bernstein Copyright (C) 1996, 1997, 1998 Gerd Knorr @@ -860,7 +860,7 @@ main(int argc, const char *argv[]) be reflected in `arguments'. */ parse_options(argc, argv); - print_version(program_name, VERSION, opts.no_header, opts.version_only); + print_version(program_name, CDIO_VERSION, opts.no_header, opts.version_only); if (opts.debug_level == 3) { cdio_loglevel_default = CDIO_LOG_INFO; diff --git a/src/iso-info.c b/src/iso-info.c index fbb82ca4..4a93e9e2 100644 --- a/src/iso-info.c +++ b/src/iso-info.c @@ -1,7 +1,7 @@ /* - $Id: iso-info.c,v 1.19 2005/01/12 11:34:52 rocky Exp $ + $Id: iso-info.c,v 1.20 2005/01/22 22:21:36 rocky Exp $ - Copyright (C) 2004 Rocky Bernstein + Copyright (C) 2004, 2005 Rocky Bernstein This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -291,7 +291,7 @@ main(int argc, const char *argv[]) be reflected in `arguments'. */ parse_options(argc, argv); - print_version(program_name, VERSION, opts.no_header, opts.version_only); + print_version(program_name, CDIO_VERSION, opts.no_header, opts.version_only); if (opts.debug_level == 3) { cdio_loglevel_default = CDIO_LOG_INFO; diff --git a/src/iso-read.c b/src/iso-read.c index 8fbbe27a..08e992ce 100644 --- a/src/iso-read.c +++ b/src/iso-read.c @@ -1,7 +1,7 @@ /* - $Id: iso-read.c,v 1.7 2004/11/04 10:08:23 rocky Exp $ + $Id: iso-read.c,v 1.8 2005/01/22 22:21:36 rocky Exp $ - Copyright (C) 2004 Rocky Bernstein + Copyright (C) 2004, 2005 Rocky Bernstein This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -99,7 +99,7 @@ parse_options (int argc, const char *argv[]) switch (opt) { case OP_VERSION: - print_version(program_name, VERSION, 0, true); + print_version(program_name, CDIO_VERSION, 0, true); poptFreeContext(optCon); free(program_name); exit (EXIT_SUCCESS);