bae8d23e6fa9f50917fa72e97af8a2f753bff718
[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 #include "libradius.h"
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include "radiusd.h"
33
34 /*
35  *      Version number. This should ideally be created by autoconf
36  *      or similar, so that this would always be up to date.
37  */
38 #define VERSION "FreeRADIUS ALPHA, built on " __DATE__ " at " __TIME__
39
40 /*
41  *      Display the revision number for this program
42  */
43 void version(void)
44 {
45
46         fprintf(stderr, "%s: RADIUS version " VERSION ".\n", progname);
47         fprintf(stderr, "Compilation flags: ");
48
49         /* here are all the conditional feature flags */
50 #if defined(OSFC2)
51         fprintf(stderr," OSFC2");
52 #endif
53 #if defined(WITH_DICT_NOCASE)
54         fprintf(stderr," WITH_DICT_NOCASE");
55 #endif
56 #if defined(WITH_SNMP)
57         fprintf(stderr," WITH_SNMP");
58 #endif
59         fprintf(stderr,"\n");
60         exit (0);
61 }
62