forked from s3lase/v6shell
-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkconfig
123 lines (112 loc) · 3.18 KB
/
mkconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#!/bin/sh -
#
# @(#)$Id$
#
# Write out an appropriate "config.h" file.
# This script is invoked automatically from the Makefile.
# Thus, the user does not need to run it manually.
#
# Exit w/ a status of 0 on success.
# Exit w/ a status of 1 on error.
# --
# Jeffrey Allen Neitzel
#
CONFIG_H="config.h"
rm -f $CONFIG_H
trap 'status=$? ; rm -f $CONFIG_H ; exit $status' HUP INT QUIT TERM
#
# This function searches for the pathname of utility and defines
# constant w/ the resulting value. If utility cannot be found,
# constant is defined as the empty string.
#
# usage: definePathnameConstant constant utility
#
definePathnameConstant()
{
const="$1" ; util="$2"
dirlist="/bin /sbin /usr/bin /usr/sbin /usr/libexec /usr/games"
moderr=" Modify value in \"$CONFIG_H\" if this is incorrect."
modout=" /* Modify value if incorrect. */"
for dir in $dirlist ; do
if test -f "$dir/$util" -a -x "$dir/$util" ; then
pname="$dir/$util" ; break
else
pname=""
fi
done
#echo "$PATH" >&2
wpname="`which $util </dev/null 2>/dev/null | grep -v 'not found'`"
#echo "$wpname" >&2
if test X"$pname" != X -a \( \
X"$wpname" = X -o X"$wpname" = X"$pname" \
\) ; then
(echo "$PROGNAME: $const == \"$pname\"";echo "$moderr") >&2
def="#define $const \"$pname\"$modout"
elif test X"$wpname" != X ; then
(echo "$PROGNAME: $const == \"$wpname\"";echo "$moderr") >&2
def="#define $const \"$wpname\"$modout"
else
# This should rarely be true, but it is possible.
(echo "$PROGNAME: $const == \"\"";echo "$moderr") >&2
def="#define $const \"\"$modout"
fi
echo "$def"
}
UNAME_S="`uname -s`"
UNAME_SRM="`uname -srm`"
PROGNAME="`basename $0`"
if test $# -ne 0 ; then echo 'usage: $(SHELL) ./'"$PROGNAME" >&2 ; exit 1 ; fi
if test X"$UNAME_S" = X -o X"$UNAME_SRM" = X ; then
echo "$PROGNAME: Fatal uname(1) error" >&2 ; exit 1
fi
cat <<EOI >$CONFIG_H
/*
* osh - an enhanced port of the Sixth Edition (V6) UNIX Thompson shell
*/
/*
* _XOPEN_SOURCE and/or _BSD_SOURCE should be defined only if needed
* to avoid compilation errors or warnings for the osh package on a
* given system. The systems where these feature test macros are
* (known to be) needed are defined in the mkconfig script.
*
* This includes only Linux and SunOS (Solaris/OpenSolaris)
* at the present time.
*
* Configured for: $UNAME_SRM
*/
#ifndef CONFIG_H
#define CONFIG_H
`definePathnameConstant PATH_LOGIN login`
`definePathnameConstant PATH_NEWGRP newgrp`
#define OSH_UNAME_SRM "$UNAME_SRM"
EOI
case "$UNAME_S" in
*BSD|Darwin|DragonFly)
echo "/* $UNAME_S: No need for _XOPEN_SOURCE or _BSD_SOURCE */" \
>>$CONFIG_H
;;
Linux)
echo '#define _XOPEN_SOURCE 600L' >>$CONFIG_H
echo '#define _BSD_SOURCE' >>$CONFIG_H
;;
SunOS)
( echo '#define CONFIG_SUNOS' ; echo ) >>$CONFIG_H
echo '#define _XOPEN_SOURCE 600L' >>$CONFIG_H
;;
*)
#
# This may or may not cause a compilation error.
# Simply try it to see if it works or not.
#
echo "$PROGNAME: WARNING: Check \"$CONFIG_H\" if compilation fails." >&2
cat <<EOI >>$CONFIG_H
/*
* WARNING: $UNAME_SRM: Unknown system
*
* Please report this result to the developer if possible.
*/
EOI
;;
esac
echo >>$CONFIG_H
echo '#endif /* !CONFIG_H */' >>$CONFIG_H