xref: /freebsd/contrib/tcsh/tc.vers.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /* $Header: /src/pub/tcsh/tc.vers.c,v 3.46 1999/05/11 13:07:54 christos Exp $ */
2 /*
3  * tc.vers.c: Version dependent stuff
4  */
5 /*-
6  * Copyright (c) 1980, 1991 The Regents of the University of California.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *	This product includes software developed by the University of
20  *	California, Berkeley and its contributors.
21  * 4. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  */
37 #include "sh.h"
38 #include "tw.h"
39 
40 RCSID("$Id: tc.vers.c,v 3.46 1999/05/11 13:07:54 christos Exp $")
41 
42 #include "patchlevel.h"
43 
44 
45 /* fix_version():
46  *	Print a reasonable version string, printing all compile time
47  *	options that might affect the user.
48  */
49 void
50 fix_version()
51 {
52 #ifdef SHORT_STRINGS
53 # define SSSTR "8b"
54 #else
55 # define SSSTR "7b"
56 #endif
57 #ifdef NLS
58 # define NLSSTR ",nls"
59 #else
60 # define NLSSTR ""
61 #endif
62 #ifdef LOGINFIRST
63 # define LFSTR ",lf"
64 #else
65 # define LFSTR ""
66 #endif
67 #ifdef DOTLAST
68 # define DLSTR ",dl"
69 #else
70 # define DLSTR ""
71 #endif
72 #ifdef VIDEFAULT
73 # define VISTR ",vi"
74 #else
75 # define VISTR ""
76 #endif
77 #ifdef TESLA
78 # define DTRSTR ",dtr"
79 #else
80 # define DTRSTR ""
81 #endif
82 #ifdef KAI
83 # define BYESTR ",bye"
84 #else
85 # define BYESTR ""
86 #endif
87 #ifdef AUTOLOGOUT
88 # define ALSTR ",al"
89 #else
90 # define ALSTR ""
91 #endif
92 #ifdef KANJI
93 # define KANSTR ",kan"
94 #else
95 # define KANSTR ""
96 #endif
97 #ifdef SYSMALLOC
98 # define SMSTR	",sm"
99 #else
100 # define SMSTR  ""
101 #endif
102 #ifdef HASHBANG
103 # define HBSTR	",hb"
104 #else
105 # define HBSTR  ""
106 #endif
107 #ifdef NEWGRP
108 # define NGSTR	",ng"
109 #else
110 # define NGSTR	""
111 #endif
112 #ifdef REMOTEHOST
113 # define RHSTR	",rh"
114 #else
115 # define RHSTR	""
116 #endif
117 #ifdef AFS
118 # define AFSSTR	",afs"
119 #else
120 # define AFSSTR	""
121 #endif
122 #ifdef NODOT
123 # define NDSTR	",nd"
124 #else
125 # define NDSTR	""
126 #endif
127 #ifdef COLOR_LS_F
128 # define COLORSTR ",color"
129 #else /* ifndef COLOR_LS_F */
130 # define COLORSTR ""
131 #endif /* COLOR_LS_F */
132 #ifdef DSPMBYTE
133 # define DSPMSTR ",dspm"
134 #else
135 # define DSPMSTR ""
136 #endif
137 #ifdef COLORCAT
138 # define CCATSTR ",ccat"
139 #else
140 # define CCATSTR ""
141 #endif
142 /* if you want your local version to say something */
143 #ifndef LOCALSTR
144 # define LOCALSTR ""
145 #endif /* LOCALSTR */
146     char    version[BUFSIZE];
147     Char    *machtype = tgetenv(STRMACHTYPE);
148     Char    *vendor   = tgetenv(STRVENDOR);
149     Char    *ostype   = tgetenv(STROSTYPE);
150 
151     if (vendor == NULL)
152 	vendor = STRunknown;
153     if (machtype == NULL)
154 	machtype = STRunknown;
155     if (ostype == NULL)
156 	ostype = STRunknown;
157 
158 
159     (void) xsnprintf(version, sizeof(version),
160 "tcsh %d.%.2d.%.2d (%s) %s (%S-%S-%S) options %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
161 	     REV, VERS, PATCHLEVEL, ORIGIN, DATE, machtype, vendor, ostype,
162 	     SSSTR, NLSSTR, LFSTR, DLSTR, VISTR, DTRSTR, BYESTR,
163 	     ALSTR, KANSTR, SMSTR, HBSTR, NGSTR, RHSTR, AFSSTR, NDSTR,
164 	     COLORSTR, DSPMSTR, CCATSTR, LOCALSTR);
165     set(STRversion, SAVE(version), VAR_READWRITE);
166     (void) xsnprintf(version, sizeof(version), "%d.%.2d.%.2d",
167 		     REV, VERS, PATCHLEVEL);
168     set(STRtcsh, SAVE(version), VAR_READWRITE);
169 }
170