1 /* version.c -- distribution and version numbers. */
3 /* Copyright (C) 1989-2005 Free Software Foundation, Inc.
5 This file is part of GNU Bash, the Bourne Again SHell.
7 Bash is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License along
18 with Bash; see the file COPYING. If not, write to the Free Software
19 Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
28 #include "patchlevel.h"
29 #include "conftypes.h"
33 extern char *shell_name
;
35 /* Defines from version.h */
36 const char *dist_version
= DISTVERSION
;
37 int patch_level
= PATCHLEVEL
;
38 int build_version
= BUILDVERSION
;
40 const char *release_status
= RELSTATUS
;
42 const char *release_status
= (char *)0;
44 const char *sccs_version
= SCCSVERSION
;
46 /* Functions for getting, setting, and displaying the shell version. */
48 /* Forward declarations so we don't have to include externs.h */
49 extern char *shell_version_string
__P((void));
50 extern void show_shell_version
__P((int));
52 /* Give version information about this shell. */
54 shell_version_string ()
56 static char tt
[32] = { '\0' };
61 #if defined (HAVE_SNPRINTF)
62 snprintf (tt
, sizeof (tt
), "%s.%d(%d)-%s", dist_version
, patch_level
, build_version
, release_status
);
64 sprintf (tt
, "%s.%d(%d)-%s", dist_version
, patch_level
, build_version
, release_status
);
67 #if defined (HAVE_SNPRINTF)
68 snprintf (tt
, sizeof (tt
), "%s.%d(%d)", dist_version
, patch_level
, build_version
);
70 sprintf (tt
, "%s.%d(%d)", dist_version
, patch_level
, build_version
);
77 show_shell_version (extended
)
80 printf ("GNU bash, version %s (%s)\n", shell_version_string (), MACHTYPE
);
82 printf (_("Copyright (C) 2007 Free Software Foundation, Inc.\n"));