import from HEAD:
[freeradius.git] / src / main / version.c
1 /*
2  * version.c    Print version number and exit.
3  *
4  * Version:     $Id$
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation; either version 2 of the License, or
9  *   (at your option) any later version.
10  *
11  *   This program is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with this program; if not, write to the Free Software
18  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * Copyright 2000  The FreeRADIUS server project
21  * Copyright 2000  Alan DeKok <aland@ox.org>
22  * Copyright 2000  Chris Parker <cparker@starnetusa.com>
23  */
24
25 static const char rcsid[] = "$Id$";
26
27 #include "autoconf.h"
28
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include "radiusd.h"
32
33 /*
34  *      Display the revision number for this program
35  */
36 void NEVER_RETURNS version(void)
37 {
38
39         printf("%s: %s\n", progname, radiusd_version);
40 #if 0
41         printf("Compilation flags: ");
42
43         /* here are all the conditional feature flags */
44 #if defined(OSFC2)
45         printf(" OSFC2");
46 #endif
47 #if defined(WITH_SNMP)
48         printf(" WITH_SNMP");
49 #endif
50         printf("\n");
51 #endif
52         printf("Copyright (C) 2000-2006 The FreeRADIUS server project.\n");
53         printf("There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n");
54         printf("PARTICULAR PURPOSE.\n");
55         printf("You may redistribute copies of FreeRADIUS under the terms of the\n");
56         printf("GNU General Public License.\n");
57         printf("For more information about these matters, see the file named COPYRIGHT.\n");
58         exit (0);
59 }
60