summaryrefslogtreecommitdiffstats
path: root/usr.bin/sgmls/configure
blob: 7fd1968373e2e83eca40b75f0595cfba1142a9d4 (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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
#!/bin/sh
# Generate config.h from unix.cfg.

trap 'rm -f doit doit.c doit.o doit.log config.out; exit 1' 1 2 3 15

on=
off=
CC=${CC-cc}

# Normally we use VARARGS if __STDC__ is not defined.
# Test whether this assumption is wrong.

cat >doit.c <<\EOF
#ifdef __STDC__
#include <stdarg.h>
int foo(char *s,...)
{
  va_list ap;

  va_start(ap, s);
  va_end(ap);
  return 0;
}
#else
int foo = 0;
#endif
EOF

$CC $CFLAGS -c doit.c >/dev/null 2>&1
if test $? -ne 0
then
	on="$on VARARGS"
fi

cat >doit.c <<\EOF
#include <stddef.h>
int foo = 0;
EOF

if $CC $CFLAGS -c doit.c >/dev/null 2>&1
then
	off="$off STDDEF_H_MISSING"
else
	on="$on STDDEF_H_MISSING"
fi

cat >doit.c <<\EOF
#include <stdlib.h>
int foo = 0;
EOF

if $CC $CFLAGS -c doit.c >/dev/null 2>&1
then
	off="$off STDLIB_H_MISSING"
else
	on="$on STDLIB_H_MISSING"
fi

cat >doit.c <<\EOF
#include <limits.h>
int foo = 0;
EOF

if $CC $CFLAGS -c doit.c >/dev/null 2>&1
then
	off="$off LIMITS_H_MISSING"
else
	on="$on LIMITS_H_MISSING"
fi

cat >doit.c <<\EOF
#include <vfork.h>
int foo = 0;
EOF

if $CC $CFLAGS -c doit.c >/dev/null 2>&1
then
	on="$on HAVE_VFORK_H"
else
	off="$off HAVE_VFORK_H"
fi

cat >doit.c <<\EOF
#include <unistd.h>
int foo = 0;
EOF

if $CC $CFLAGS -c doit.c >/dev/null 2>&1
then
	on="$on HAVE_UNISTD_H"
else
	off="$off HAVE_UNISTD_H"
fi

cat >doit.c <<\EOF
#include <sys/types.h>
#include <sys/stat.h>
int foo = 0;
EOF

if $CC $CFLAGS -c doit.c >/dev/null 2>&1
then
	on="$on HAVE_SYS_STAT_H"
else
	off="$off HAVE_SYS_STAT_H"
fi

cat >doit.c <<\EOF
/* Exit normally unless we need to use isascii. */

#include <ctype.h>
#include <signal.h>

static int whoops()
{
  _exit(1);
}

main()
{
  int c;
#ifdef isascii
#ifdef SIGSEGV
  signal(SIGSEGV, whoops);
#endif
#ifdef SIGBUS
  signal(SIGBUS, whoops);
#endif
#ifdef SIGIOT
  signal(SIGIOT, whoops);
#endif

  for (c = 128; c < 256; c++) {
    if (c == '0' || c == '1' || c == '2' || c == '3' || c == '4' || c == '5'
	|| c == '6' || c == '7' || c == '8' || c == '9') {
      if (!isdigit(c) || isalpha(c) || iscntrl(c) || isspace(c) || ispunct(c))
	exit(1);
    }
    else if (isdigit(c))
      exit(1);
    else if (isalpha(c)) {
      if (iscntrl(c) || isspace(c) || ispunct(c)
	  || (islower(c) && toupper(c) != c && !isupper(toupper(c)))
	  || (isupper(c) && tolower(c) != c && !islower(tolower(c))))
	exit(1);
    }
    else if (islower(c) || isupper(c))
      exit(1);
    else if (iscntrl(c)) {
      if (ispunct(c))
	exit(1);
    }
  }
#endif /* isascii */
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	# This tries to find the symbol that looks like the array
	# used by <ctype.h>, and sees if its length appears to be 128
	# rather than 256.
	if test 1 = `(nm -n doit 2>/dev/null) | awk '
BEGIN {
	weight["0"] = 0;
	weight["1"] = 1;
	weight["2"] = 2;
	weight["3"] = 3;
	weight["4"] = 4;
	weight["5"] = 5;
	weight["6"] = 6;
	weight["7"] = 7;
	weight["8"] = 8;
	weight["9"] = 9;
	weight["a"] = weight["A"] = 10;
	weight["b"] = weight["B"] = 11;
	weight["c"] = weight["C"] = 12;
	weight["d"] = weight["D"] = 13;
	weight["e"] = weight["E"] = 14;
	weight["f"] = weight["F"] = 15;
}

/^[0-9a-zA-Z]* D .*ctype/ && ctype_nr == 0 {
	ctype_nr = NR;
	addr = 0;
	len = length($1);
	for (i = 1; i <= len; i++)
		addr = addr*16 + weight[substr($1, i, 1)];
}

/^[0-9a-zA-Z]* D / && NR == ctype_nr + 1 {
	next_addr = 0;
	len = length($1);
	for (i = 1; i <= len; i++)
		next_addr = next_addr*16 + weight[substr($1, i, 1)];
}

END {
	size = next_addr - addr;
	if (size >= 128 && size < 256)
		print "1";
	else
		print "0";
}'`
	then
		on="$on USE_ISASCII"
	else
		if ((yes | man 3 ctype) 2>/dev/null) \
		     | sed -e 's/.//g' -e 's/ *$//' -e '/de-$/N' \
                           -e 's/-\n//g' -e '/defined$/N' -e '/only$/N' \
	   		   -e '/where$/N' -e '/isascii$/N' -e '/is$/N' \
			   -e 's/\n/ /g' -e 's/  */ /g' \
		     | grep "defined only where isascii is true" >/dev/null
		then
			on="$on USE_ISASCII"
		else
			off="$off USE_ISASCII"
		fi
	fi
else
	on="$on USE_ISASCII"
fi

cat >doit.c <<\EOF
main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0)
    remove("foo");  
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	off="$off REMOVE_MISSING"
else
	on="$on REMOVE_MISSING"
fi

cat >doit.c <<\EOF
main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0)
    getopt(argc, argv, "v");  
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	on="$on HAVE_GETOPT"
else
	off="$off HAVE_GETOPT"
fi

cat >doit.c <<\EOF
main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0)
    access("foo", 4);
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	on="$on HAVE_ACCESS"
else
	off="$off HAVE_ACCESS"
fi

cat >doit.c <<\EOF
main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0)
    vfork();
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	on="$on HAVE_VFORK"
else
	off="$off HAVE_VFORK"
fi

cat >doit.c <<\EOF
main(argc, argv)
int argc;
char **argv;
{
  
  if (argc == 0) {
    int status;
    waitpid(-1, &status, 0);
  }
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	on="$on HAVE_WAITPID"
else
	off="$off HAVE_WAITPID"
fi

cat >doit.c <<\EOF
#include <string.h>
main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0)
    strerror(0);
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	off="$off STRERROR_MISSING"
else
	on="$on STRERROR_MISSING"
fi

cat >doit.c <<\EOF
#include <strings.h>
main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0)
	bcopy((char *)0, (char *)0, 0);
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	# Only use BSD_STRINGS if ANSI string functions don't work.
	cat >doit.c <<\EOF
#include <string.h>
main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0)
	memcpy((char *)0, (char *)0, 0);
  exit(0);
}
EOF

	if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
	then
		off="$off BSD_STRINGS"
	else
		on="$on BSD_STRINGS"
	fi
else
	off="$off BSD_STRINGS"
fi

cat >doit.c <<\EOF
#include <signal.h>
main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0)
    raise(SIGINT);  
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	off="$off RAISE_MISSING"
else
	on="$on RAISE_MISSING"
fi

cat >doit.c <<\EOF
#include <stdio.h>
main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0) {
    fpos_t pos;
    fsetpos(stdin, &pos);
    fgetpos(stdin, &pos);
  }  
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	off="$off FPOS_MISSING"
else
	on="$on FPOS_MISSING"
fi

cat >doit.c <<\EOF
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>

main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0) {
    pid_t pid;
    int status;
    long n = sysconf(_SC_OPEN_MAX);
    pid = waitpid(-1, &status, 0);
    WIFSTOPPED(status);
    WIFSIGNALED(status);
    WIFEXITED(status);
    WEXITSTATUS(status);
    WTERMSIG(status);
    WSTOPSIG(status);
  }
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	on="$on POSIX"
else
	off="$off POSIX"
fi

cat >doit.c <<\EOF
#include <stdio.h>
#include <signal.h>

static int whoops()
{
  _exit(1);
}

main()
{
  char buf[30];
#ifdef SIGSEGV
  signal(SIGSEGV, whoops);
#endif
#ifdef SIGBUS
  signal(SIGBUS, whoops);
#endif
#ifdef SIGIOT
  signal(SIGIOT, whoops);
#endif
  sprintf(buf, "%2$s%2$s%1$s%1$s", "bar", "foo");
  exit(!!strcmp(buf, "foofoobarbar"));
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	on="$on HAVE_EXTENDED_PRINTF"
else
	off="$off HAVE_EXTENDED_PRINTF"
fi

cat >doit.c <<\EOF
#include <nl_types.h>

main(argc, argv)
int argc;
char **argv;
{
  if (argc == 0) {
    nl_catd d = catopen("foo", 0);
    catgets(d, 1, 1, "default");
    catclose(d);
  }
  exit(0);
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	on="$on HAVE_CAT"
else
	off="$off HAVE_CAT"
fi

cat >doit.c <<\EOF
#include <limits.h>

char c = UCHAR_MAX;

main(argc, argv)
int argc;
char **argv;
{
#if CHAR_MIN < 0
  exit(!(c < 0));
#else
  exit(!(c > 0));
#endif
}
EOF

if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
then
	char_signed=
else
	cat >doit.c <<\EOF
main()
{
  int i;

  for (i = 0; i < 512; i++) {
    char c = (char)i;
    if (c < 0)
	exit(1);
  }
  exit(0);
}
EOF

	if $CC $CFLAGS -o doit doit.c $LIBS >/dev/null 2>&1 && ./doit 2>/dev/null
	then
		char_signed=0
	else
		char_signed=1
	fi
fi

cat >doit.c <<\EOF

typedef void VOID;

extern VOID bar();

VOID foo()
{
}
EOF

if $CC $CFLAGS -c doit.c >/dev/null 2>&1
then
	void_ret=void
else
	void_ret=int
fi


cat >doit.c <<\EOF

void *foo()
{
  static char *buf;
  return buf;
}
EOF

if $CC $CFLAGS -c doit.c >doit.log 2>&1
then
	if test -s doit.log
	then
		void_star="char \*"
	else
		void_star="void \*"
	fi

else
	void_star="char \*"
fi

edit=

rm -f doit.c doit doit.log doit.o

for var in $on
do
	edit="$edit -e 's;^/\\* *\\(#define $var [^/]*\\) *\\*/;\\1;'"
done
for var in $off
do
	edit="$edit -e 's;^#define $var [^/]*;/* & */;'"
done

if test -n "$char_signed"
then
	edit="$edit -e 's;^/\\* *\\(#define CHAR_SIGNED $char_signed\\) *\\*/;\\1;'"
fi

edit="$edit -e 's/^typedef .*VOID;/typedef $void_ret VOID;/'"
edit="$edit -e 's/^typedef .*UNIV;/typedef ${void_star}UNIV;/'"

if test "X$(PREFIX)" != "X/usr/local"
then
	edit="$edit -e '/DEFAULT_PATH/s;/usr/local;$PREFIX;g'"
fi

eval sed $edit unix.cfg ">config.out"

mv config.out config.h

exit 0
OpenPOWER on IntegriCloud