blob: b1db0f0704e8b5f8f450dec618a431a68e934194 (
plain)
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
|
#!/bin/sh
#sysname=$1
while [ $# != 0 ]; do
if [ x$1 = x--with-nsupdate ]; then
echo "nsupdate is always built now."
elif [ x$1 = x--print-sysname ]; then
print_sysname=yes
elif [ x$1 = x--work-dir ]; then
workname=$2
shift
elif [ x$1 = x--dirs ]; then
dirs=$2
shift
elif [ x$1 = x--no-links ]; then
nolinks=YES
elif [ x$1 = x--copts ]; then
copts=$2
shift
elif [ x$sysname = x ]; then
sysname=$1
else
echo "Unexpected argument: $1"
fi
shift
done
uname=`uname -s`
machine=`uname -m`
if [ "$sysname" = "" ]; then
case $uname in
SCO_SV)
IFS=":"
for foo in $PATH; do
if [ x$gcc_path = x ] && [ -x $foo/gcc ]; then
gcc_path=$foo/gcc
fi
done
IFS=" "
if [ x$gcc_path = x ]; then
sysname=sco-cc
sysname_print=sco
else
sysname=sco-gcc
sysname_print=sco
fi
;;
AIX)
sysname=aix;;
Darwin)
sysname=darwin;;
Rhapsody)
sysname=rhapsody;;
ULTRIX)
sysname=ultrix;;
BSD/OS)
release=`uname -r`
minor=`echo $release |sed -e 's/[0-9]*\.\([0-9][0-9]*\)\(\..*\)*$/\1/'`
major=`echo $release |sed -e 's/\([0-9][0-9]*\)\..*$/\1/'`
case $major in
[123]) sysname=bsdos ;;
*) case $minor in
0) sysname=bsdos ;;
*) sysname=bsdos-4.1 ;;
esac;;
esac;;
OSF1)
if [ $machine = 'alpha' ]; then
sysname=alphaosf
fi;;
Linux)
release=`uname -r`
minor=`echo $release |sed -e 's/[0-9]*\.\([0-9][0-9]*\)\(\..*\)*$/\1/'`
major=`echo $release |sed -e 's/\([0-9][0-9]*\)\..*$/\1/'`
case $major in
1) sysname=linux-1 ;;
2) case $minor in
0) sysname=linux-2.0 ;;
1) sysname=linux-2.1 ;;
2) sysname=linux-2.2 ;;
*) sysname=linux-2.2 ;;
esac;;
esac;;
SunOS)
release=`uname -r`
minor=`echo $release |sed -e 's/.*[0-9]*\.\([0-9][0-9]*\).*$/\1/'`
major=`echo $release |sed -e 's/\([0-9][0-9]*\)\..*$/\1/'`
IFS=":"
for foo in $PATH; do
if [ x$gcc_path = x ] && [ -x $foo/gcc ]; then
gcc_path=$foo/gcc
fi
done
IFS=" "
case $major in
4)
if [ x$gcc_path = x ]; then
echo SunOS 4 build will not work without the GNU C Compiler.
exit 1
fi
sysname=sunos4;;
5)
if [ x$gcc_path = x ]; then
sysname=sunos5-cc
sysname_print=sunos5
else
sysname=sunos5-gcc
sysname_print=sunos5
fi;;
esac;;
NetBSD)
hw=`uname -m`
case $hw in
arm32) sysname=netbsd-nocast;;
alpha) sysname=netbsd-nocast;;
sparc) sysname=netbsd-nocast;;
*) sysname=netbsd;;
esac;;
OpenBSD)
sysname=openbsd;;
FreeBSD)
sysname=freebsd;;
hpux)
IFS=":"
for foo in $PATH; do
if [ x$gcc_path = x ] && [ -x $foo/gcc ]; then
gcc_path=$foo/gcc
fi
done
IFS=" "
if [ x$gcc_path = x ]; then
sysname=hpux-cc
sysname_print=hpux
else
sysname=hpux-gcc
sysname_print=hpux
fi;;
HP-UX)
IFS=":"
for foo in $PATH; do
if [ x$gcc_path = x ] && [ -x $foo/gcc ]; then
gcc_path=$foo/gcc
fi
done
IFS=" "
if [ x$gcc_path = x ]; then
sysname=hpux-cc
sysname_print=hpux
else
sysname=hpux-gcc
sysname_print=hpux
fi;;
QNX)
release=`uname -r`
major=`echo $release |sed -e 's/\([0-9][0-9]*\)\..*$/\1/'`
case $major in
6)
sysname=qnxnto;;
*)
sysname=qnx;;
esac;;
NEXTSTEP)
sysname=nextstep;;
UnixWare)
sysname=uw7;;
esac
fi
if [ "$sysname" = "" ]; then
if [ x$print_sysname = xyes ]; then
echo "unknown"
else
echo "UNIX name: $uname machine: $machine"
echo
echo "Unknown system. If this is an SCO system running ODT 3.0 or"
echo "higher, type \`\`./configure sco''. Otherwise, this is a"
echo "configuration that isn't supported or hasn't been tested."
echo
echo "Supported configurations are:"
echo " aix AIX 4.1.5.0"
echo " ultrix ULTRIX 4.2A or higher"
echo " bsdos BSDI BSD/OS 2.1"
echo " alphaosf DEC Alpha OSF/1"
echo " linux Linux"
echo " sunos4 Sunos 4.1.4 (earlier releases may work)"
echo " sunos5-cc Solaris 2.4 or higher with Sun cc"
echo " sunos5-gcc Solaris 2.4 or higher with gcc"
echo " netbsd NetBSD 1.1 or higher"
echo " freebsd FreeBSD"
echo " openbsd OpenBSD (i386/alpha)"
echo " hpux HP-UX"
echo " qnx QNX 4.2 or higher"
echo " NEXTSTEP NeXTSTEP"
echo " sco SCO Open Server"
exit 1;
fi
fi
if [ x$print_sysname = xyes ]; then
if [ x$sysname_print != x ]; then
echo $sysname_print
else
echo $sysname
fi
exit 0
fi
if [ x$workname = x ]; then
if [ x$sysname_print != x ]; then
workname=work.${sysname_print}
else
workname=work.${sysname}
fi
fi
echo "System Type: $sysname"
if [ x$major != x ] && [ x$minor != x ]; then
majversubst="-e /^##--majver--/,/^##--majver--/s/MajorVersion/$major/"
minversubst="-e /^##--minver--/,/^##--minver--/s/MinorVersion/$minor/"
fi
if [ ! -d $workname ]; then
mkdir $workname
fi
if [ x"$dirs" = x ]; then
dirs=". client server relay common omapip dhcpctl minires dst"
fi
for foo in $dirs; do
bar=`basename $foo`
if [ ! -d ${workname}/$bar ]; then
mkdir ${workname}/$bar
fi
(sed $majversubst $minversubst \
-e "/^##--${sysname}--/,/^##--${sysname}--/s/^#//" \
<Makefile.conf; \
cat site.conf; \
echo "TOP = `pwd`"; \
echo CC_OPTIONS = $copts; \
cat $foo/Makefile.dist) \
>${workname}/$bar/Makefile
done
# Make the link tree in which to actually build.
if [ x$nolinks = x ]; then
make links
fi
exit 0
|