Massively cleaned up #include's, so they're in a consistent
[freeradius.git] / src / main / version.c
index 295d411..d5cff45 100644 (file)
@@ -3,57 +3,55 @@
  *
  * Version:    $Id$
  *
+ *   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
+ *   the Free Software Foundation; either version 2 of the License, or
+ *   (at your option) any later version.
+ *
+ *   This program is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with this program; if not, write to the Free Software
+ *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ *
+ * Copyright 2000,2006  The FreeRADIUS server project
+ * Copyright 2000  Alan DeKok <aland@ox.org>
+ * Copyright 2000  Chris Parker <cparker@starnetusa.com>
  */
-static const char rcsid[] = "$Id$";
 
-#include       "autoconf.h"
+#include <freeradius-devel/ident.h>
+RCSID("$Id$")
 
-#include        <sys/types.h>
-#include       <stdio.h>
-#include       <stdlib.h>
-#include       "radiusd.h"
-
-/*
- *     Version number. This should ideally be created by autoconf
- *     or similar, so that this would always be up to date.
- */
-#define                VERSION         "FreeRADIUS ALPHA, built on " __DATE__ 
+#include <freeradius-devel/radiusd.h>
 
 /*
  *     Display the revision number for this program
  */
-void version(void)
+void NEVER_RETURNS version(void)
 {
 
-       fprintf(stderr, "%s: RADIUS version " VERSION ".\n", progname);
-       fprintf(stderr, "Compilation flags: ");
+       printf("%s: %s\n", progname, radiusd_version);
+#if 0
+       printf("Compilation flags: ");
 
        /* here are all the conditional feature flags */
-#if defined(WITH_DBM)
-       fprintf(stderr," WITH_DBM");
-#endif
-#if defined(WITH_NDBM)
-       fprintf(stderr," WITH_NDBM");
-#endif
 #if defined(OSFC2)
-       fprintf(stderr," OSFC2");
-#endif
-#if defined(WITH_NTDOMAIN_HACK)
-       fprintf(stderr," WITH_NTDOMAIN_HACK");
-#endif
-#if defined(WITH_SPECIALIX_JETSTREAM_HACK)
-       fprintf(stderr," WITH_SPECIALIX_JETSTREAM_HACK");
-#endif
-#if defined(WITH_ASCEND_HACK)
-       fprintf(stderr," WITH_ASCEND_HACK");
+       printf(" OSFC2");
 #endif
-#if defined(WITH_DICT_NOCASE)
-       fprintf(stderr," WITH_DICT_NOCASE");
+#if defined(WITH_SNMP)
+       printf(" WITH_SNMP");
 #endif
-#if defined(ATTRIB_NMC)
-       fprintf(stderr, " ATTRIB_NMC");
+       printf("\n");
 #endif
-       fprintf(stderr,"\n");
+       printf("Copyright (C) 2000-2003 The FreeRADIUS server project.\n");
+       printf("There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n");
+       printf("PARTICULAR PURPOSE.\n");
+       printf("You may redistribute copies of FreeRADIUS under the terms of the\n");
+       printf("GNU General Public License.\n");
+       printf("For more information about these matters, see the file named COPYRIGHT.\n");
        exit (0);
 }