1 /*
2  *   version.h - Common version number header file for the xmcd package
3  *
4  *	xmcd  - Motif(R) CD Audio Player/Ripper
5  *	cda   - Command-line CD Audio Player/Ripper
6  *	libdi - CD Audio Device Interface Library
7  *	cdda  - CD Digital Audio support
8  *
9  *
10  *   Copyright (C) 1993-2004  Ti Kan
11  *   E-mail: xmcd@amb.org
12  *
13  *   This program is free software; you can redistribute it and/or modify
14  *   it under the terms of the GNU General Public License as published by
15  *   the Free Software Foundation; either version 2 of the License, or
16  *   (at your option) any later version.
17  *
18  *   This program is distributed in the hope that it will be useful,
19  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
20  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  *   GNU General Public License for more details.
22  *
23  *   You should have received a copy of the GNU General Public License
24  *   along with this program; if not, write to the Free Software
25  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26  *
27  */
28 #ifndef __VERSION_H__
29 #define __VERSION_H__
30 
31 #ifndef lint
32 static char *_version_h_ident_ = "@(#)version.h	7.29 04/04/20";
33 #endif
34 
35 #define VERSION_MAJ	"3"		/* Major version */
36 #define VERSION_MIN	"3"		/* Minor version */
37 #define VERSION_TEENY	"2"		/* Teeny version */
38 #define COPYRIGHT	"Copyright \251 1993-2004  Ti Kan"
39 #define EMAIL		"xmcd@amb.org"
40 #define XMCD_URL	"http://www.amb.org/xmcd/"
41 #define GNU_BANNER	\
42 "This is free software and comes with no warranty.\n\
43 See the GNU General Public License for details."
44 #define CDDB_BANNER	\
45 "This software contains support for the Gracenote\n\
46 CDDB\256 Music Recognition Service.  Please see\n\
47 the \"CDDB\" file for information."
48 
49 #endif	/* __VERSION_H__ */
50