Now the test should be really testing what it's supposed to.
[p5sagit/p5-mst-13.2.git] / Configure
1 #! /bin/sh
2 #
3 # If these # comments don't work, trim them. Don't worry about any other
4 # shell scripts, Configure will trim # comments from them for you.
5 #
6 # (If you are trying to port this package to a machine without sh,
7 # I would suggest you have a look at the prototypical config_h.SH file
8 # and edit it to reflect your system. Some packages may include samples
9 # of config.h for certain machines, so you might look for one of those.)
10 #
11 # Yes, you may rip this off to use in other distribution packages. This
12 # script belongs to the public domain and cannot be copyrighted.
13 #
14 # (Note: this Configure script was generated automatically. Rather than
15 # working with this copy of Configure, you may wish to get metaconfig.
16 # The dist-3.0 package (which contains metaconfig) was posted in
17 # comp.sources.misc and is available on CPAN under authors/id/RAM so
18 # you may fetch it yourself from your nearest archive site.)
19 #
20
21 # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
22 #
23 # Generated on Fri Aug  1 14:45:20 EEST 2003 [metaconfig 3.0 PL70]
24 # (with additional metaconfig patches by perlbug@perl.org)
25
26 cat >c1$$ <<EOF
27 ARGGGHHHH!!!!!
28
29 SCO csh still thinks true is false.  Write to SCO today and tell them that next
30 year Configure ought to "rm /bin/csh" unless they fix their blasted shell. :-)
31
32 (Actually, Configure ought to just patch csh in place.  Hmm.  Hmmmmm.  All
33 we'd have to do is go in and swap the && and || tokens, wherever they are.)
34
35 [End of diatribe. We now return you to your regularly scheduled programming...]
36 EOF
37 cat >c2$$ <<EOF
38
39 OOPS!  You naughty creature!  You didn't run Configure with sh!
40 I will attempt to remedy the situation by running sh for you...
41 EOF
42
43 true || cat c1$$ c2$$
44 true || exec sh $0 $argv:q
45
46 (exit $?0) || cat c2$$
47 (exit $?0) || exec sh $0 $argv:q
48 rm -f c1$$ c2$$
49
50 if test -f /dev/cputype -a -f /dev/drivers -a -f /dev/osversion; then
51         cat >&4 <<EOF
52 ***
53 *** I'm sorry but this system looks like Plan 9 and Plan 9 doesn't do
54 *** Configure that well.  (Plan 9 is close to UNIX but not close enough.)
55 *** Please read the README.plan9 for further instructions.
56 *** Cannot continue, aborting.
57 ***
58 EOF
59         exit 1
60 fi
61
62 : compute my invocation name
63 me=$0
64 case "$0" in
65 */*)
66         me=`echo $0 | sed -e 's!.*/\(.*\)!\1!' 2>/dev/null`
67         test "$me" || me=$0
68         ;;
69 esac
70
71 : Proper separator for the PATH environment variable
72 p_=:
73 : On OS/2 this directory should exist if this is not floppy only system :-]
74 if test -d c:/. || ( uname -a | grep -i 'os\(/\|\)2' ) 2>&1 >/dev/null ; then
75     if test -n "$OS2_SHELL"; then
76                 p_=\;
77                 PATH=`cmd /c "echo %PATH%" | tr '\\\\' / `
78                 OS2_SHELL=`cmd /c "echo %OS2_SHELL%" | tr '\\\\' / | tr '[A-Z]' '[a-z]'`
79                 is_os2=yes
80         elif test -n "$DJGPP"; then
81                 case "X${MACHTYPE:-nonesuchmach}" in
82                 *cygwin) ;;
83                 *) p_=\; ;;
84                 esac
85         fi
86 fi
87
88 : Proper PATH setting
89 paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin'
90 paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin"
91 paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin"
92 paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
93 paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
94 paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /usr/ccs/bin"
95 paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
96 paths="$paths /sbin /usr/sbin /usr/libexec"
97 paths="$paths /system/gnu_library/bin"
98
99 for p in $paths
100 do
101         case "$p_$PATH$p_" in
102         *$p_$p$p_*) ;;
103         *) test -d $p && PATH=$PATH$p_$p ;;
104         esac
105 done
106
107 PATH=.$p_$PATH
108 export PATH
109
110 : shall we be using ksh?
111 inksh=''
112 needksh=''
113 avoidksh=''
114 newsh=/bin/ksh
115 changesh=''
116 if (PATH=.; alias -x) >/dev/null 2>&1; then
117                 inksh=true
118 fi
119 if test -f /hp-ux -a -f /bin/ksh; then
120         needksh='to avoid sh bug in "here document" expansion'
121 fi
122 if test -d /usr/lpp -a -f /usr/bin/bsh -a -f /usr/bin/uname; then
123         if test X`/usr/bin/uname -v` = X4; then
124                 avoidksh="to avoid AIX 4's /bin/sh"
125                 newsh=/usr/bin/bsh
126         fi
127 fi
128 if test -f /osf_boot -a -f /usr/sbin/setld; then
129         if test X`/usr/bin/uname -s` = XOSF1; then
130                 avoidksh="to avoid Digital UNIX' ksh"
131                 newsh=/bin/sh
132                 unset BIN_SH # if this is 'xpg4' sh will start up ksh
133         fi
134 fi
135 case "$inksh/$needksh" in
136 /[a-z]*)
137                 ENV=''
138                 changesh=true
139                 reason="$needksh"
140         ;;
141 esac
142 case "$inksh/$avoidksh" in
143 true/[a-z]*)
144         changesh=true
145         reason="$avoidksh"
146         ;;
147 esac
148 case "$inksh/$needksh-$avoidksh-" in
149 true/--)
150                 cat <<EOM
151 (I see you are using the Korn shell.  Some ksh's blow up on $me,
152 mainly on older exotic systems.  If yours does, try the Bourne shell instead.)
153 EOM
154         ;;
155 esac
156 case "$changesh" in
157 true)
158         export newsh
159         echo "(Feeding myself to $newsh $reason.)"
160         case "$0" in
161         Configure|*/Configure) exec $newsh $0 "$@";;
162         *) exec $newsh Configure "$@";;
163         esac
164         ;;
165 esac
166
167 : if needed set CDPATH to a harmless value that is not chatty
168 : avoid bash 2.02 problems with empty CDPATH.
169 case "$CDPATH" in
170 '')     ;;
171 *)      case "$SHELL" in
172         *bash*) CDPATH='.' ;;
173         *)              CDPATH='' ;;
174         esac
175         ;;
176 esac
177 : Configure runs within the UU subdirectory
178 test -d UU || mkdir UU
179 cd UU && rm -f ./*
180
181 ccname=''
182 ccversion=''
183 ccsymbols=''
184 cppccsymbols=''
185 cppsymbols=''
186 from=''
187 run=''
188 targetarch=''
189 to=''
190 usecrosscompile=''
191 mistrustnm=''
192 perllibs=''
193 dynamic_ext=''
194 extensions=''
195 known_extensions=''
196 nonxs_ext=''
197 static_ext=''
198 useopcode=''
199 useposix=''
200 extras=''
201 d_bsd=''
202 d_eunice=''
203 d_xenix=''
204 eunicefix=''
205 Mcc=''
206 ar=''
207 awk=''
208 bash=''
209 bison=''
210 byacc=''
211 cat=''
212 chgrp=''
213 chmod=''
214 chown=''
215 comm=''
216 compress=''
217 cp=''
218 cpio=''
219 cpp=''
220 csh=''
221 date=''
222 echo=''
223 egrep=''
224 emacs=''
225 expr=''
226 find=''
227 flex=''
228 gmake=''
229 grep=''
230 gzip=''
231 inews=''
232 ksh=''
233 less=''
234 line=''
235 lint=''
236 ln=''
237 lp=''
238 lpr=''
239 ls=''
240 mail=''
241 mailx=''
242 make=''
243 mkdir=''
244 more=''
245 mv=''
246 nm=''
247 nroff=''
248 perl=''
249 pg=''
250 pmake=''
251 pr=''
252 rm=''
253 rmail=''
254 sed=''
255 sendmail=''
256 shar=''
257 sleep=''
258 smail=''
259 sort=''
260 submit=''
261 tail=''
262 tar=''
263 tbl=''
264 tee=''
265 test=''
266 touch=''
267 tr=''
268 troff=''
269 uname=''
270 uniq=''
271 uuname=''
272 vi=''
273 zcat=''
274 zip=''
275 full_ar=''
276 full_sed=''
277 libswanted=''
278 hint=''
279 myuname=''
280 osname=''
281 osvers=''
282 Author=''
283 Date=''
284 Header=''
285 Id=''
286 Locker=''
287 Log=''
288 RCSfile=''
289 Revision=''
290 Source=''
291 State=''
292 _a=''
293 _exe=''
294 _o=''
295 archobjs=''
296 exe_ext=''
297 firstmakefile=''
298 lib_ext=''
299 obj_ext=''
300 path_sep=''
301 afs=''
302 afsroot=''
303 alignbytes=''
304 ansi2knr=''
305 archlib=''
306 archlibexp=''
307 d_archlib=''
308 installarchlib=''
309 archname=''
310 myarchname=''
311 d_atolf=''
312 d_atoll=''
313 baserev=''
314 bin=''
315 binexp=''
316 installbin=''
317 byteorder=''
318 cc=''
319 ccflags=''
320 cppflags=''
321 ldflags=''
322 lkflags=''
323 locincpth=''
324 optimize=''
325 cf_email=''
326 cf_by=''
327 cf_time=''
328 charsize=''
329 contains=''
330 cpp_stuff=''
331 cpplast=''
332 cppminus=''
333 cpprun=''
334 cppstdin=''
335 d__fwalk=''
336 d_access=''
337 d_accessx=''
338 d_aintl=''
339 d_alarm=''
340 asctime_r_proto=''
341 d_asctime_r=''
342 d_attribut=''
343 d_bcmp=''
344 d_bcopy=''
345 d_bzero=''
346 d_casti32=''
347 castflags=''
348 d_castneg=''
349 d_chown=''
350 d_chroot=''
351 d_chsize=''
352 d_class=''
353 d_closedir=''
354 d_void_closedir=''
355 d_cmsghdr_s=''
356 d_const=''
357 d_copysignl=''
358 cryptlib=''
359 d_crypt=''
360 crypt_r_proto=''
361 d_crypt_r=''
362 d_csh=''
363 full_csh=''
364 ctermid_r_proto=''
365 d_ctermid_r=''
366 ctime_r_proto=''
367 d_ctime_r=''
368 d_cuserid=''
369 d_dbl_dig=''
370 d_dbminitproto=''
371 d_difftime=''
372 d_dirfd=''
373 d_dlerror=''
374 d_dlopen=''
375 d_dlsymun=''
376 d_dosuid=''
377 d_suidsafe=''
378 d_drand48_r=''
379 drand48_r_proto=''
380 d_drand48proto=''
381 d_dup2=''
382 d_eaccess=''
383 d_endgrent=''
384 d_endgrent_r=''
385 endgrent_r_proto=''
386 d_endhent=''
387 d_endhostent_r=''
388 endhostent_r_proto=''
389 d_endnent=''
390 d_endnetent_r=''
391 endnetent_r_proto=''
392 d_endpent=''
393 d_endprotoent_r=''
394 endprotoent_r_proto=''
395 d_endpwent=''
396 d_endpwent_r=''
397 endpwent_r_proto=''
398 d_endsent=''
399 d_endservent_r=''
400 endservent_r_proto=''
401 d_faststdio=''
402 d_fchdir=''
403 d_fchmod=''
404 d_fchown=''
405 d_fcntl=''
406 d_fcntl_can_lock=''
407 d_fd_macros=''
408 d_fd_set=''
409 d_fds_bits=''
410 d_fgetpos=''
411 d_finite=''
412 d_finitel=''
413 d_flexfnam=''
414 d_flock=''
415 d_flockproto=''
416 d_fork=''
417 d_fp_class=''
418 d_fpclass=''
419 d_fpclassify=''
420 d_fpclassl=''
421 d_fpos64_t=''
422 d_frexpl=''
423 d_fs_data_s=''
424 d_fseeko=''
425 d_fsetpos=''
426 d_fstatfs=''
427 d_fsync=''
428 d_ftello=''
429 d_ftime=''
430 d_gettimeod=''
431 d_Gconvert=''
432 d_getcwd=''
433 d_getespwnam=''
434 d_getfsstat=''
435 d_getgrent=''
436 d_getgrent_r=''
437 getgrent_r_proto=''
438 d_getgrgid_r=''
439 getgrgid_r_proto=''
440 d_getgrnam_r=''
441 getgrnam_r_proto=''
442 d_getgrps=''
443 d_gethbyaddr=''
444 d_gethbyname=''
445 d_gethent=''
446 aphostname=''
447 d_gethname=''
448 d_phostname=''
449 d_uname=''
450 d_gethostbyaddr_r=''
451 gethostbyaddr_r_proto=''
452 d_gethostbyname_r=''
453 gethostbyname_r_proto=''
454 d_gethostent_r=''
455 gethostent_r_proto=''
456 d_gethostprotos=''
457 d_getitimer=''
458 d_getlogin=''
459 d_getlogin_r=''
460 getlogin_r_proto=''
461 d_getmnt=''
462 d_getmntent=''
463 d_getnbyaddr=''
464 d_getnbyname=''
465 d_getnent=''
466 d_getnetbyaddr_r=''
467 getnetbyaddr_r_proto=''
468 d_getnetbyname_r=''
469 getnetbyname_r_proto=''
470 d_getnetent_r=''
471 getnetent_r_proto=''
472 d_getnetprotos=''
473 d_getpagsz=''
474 d_getpent=''
475 d_getpgid=''
476 d_getpgrp2=''
477 d_bsdgetpgrp=''
478 d_getpgrp=''
479 d_getppid=''
480 d_getprior=''
481 d_getpbyname=''
482 d_getpbynumber=''
483 d_getprotobyname_r=''
484 getprotobyname_r_proto=''
485 d_getprotobynumber_r=''
486 getprotobynumber_r_proto=''
487 d_getprotoent_r=''
488 getprotoent_r_proto=''
489 d_getprotoprotos=''
490 d_getprpwnam=''
491 d_getpwent=''
492 d_getpwent_r=''
493 getpwent_r_proto=''
494 d_getpwnam_r=''
495 getpwnam_r_proto=''
496 d_getpwuid_r=''
497 getpwuid_r_proto=''
498 d_getsent=''
499 d_getservbyname_r=''
500 getservbyname_r_proto=''
501 d_getservbyport_r=''
502 getservbyport_r_proto=''
503 d_getservent_r=''
504 getservent_r_proto=''
505 d_getservprotos=''
506 d_getspnam=''
507 d_getspnam_r=''
508 getspnam_r_proto=''
509 d_getsbyname=''
510 d_getsbyport=''
511 d_gmtime_r=''
512 gmtime_r_proto=''
513 d_gnulibc=''
514 gnulibc_version=''
515 d_hasmntopt=''
516 d_htonl=''
517 d_ilogbl=''
518 d_inetaton=''
519 d_int64_t=''
520 d_isascii=''
521 d_isfinite=''
522 d_isinf=''
523 d_isnan=''
524 d_isnanl=''
525 d_killpg=''
526 d_lchown=''
527 d_ldbl_dig=''
528 d_link=''
529 d_localtime_r=''
530 localtime_r_proto=''
531 d_locconv=''
532 d_lockf=''
533 d_longdbl=''
534 longdblsize=''
535 d_longlong=''
536 longlongsize=''
537 d_lseekproto=''
538 d_lstat=''
539 d_madvise=''
540 d_mblen=''
541 d_mbstowcs=''
542 d_mbtowc=''
543 d_memchr=''
544 d_memcmp=''
545 d_memcpy=''
546 d_memmove=''
547 d_memset=''
548 d_mkdir=''
549 d_mkdtemp=''
550 d_mkfifo=''
551 d_mkstemp=''
552 d_mkstemps=''
553 d_mktime=''
554 d_mmap=''
555 mmaptype=''
556 d_modfl=''
557 d_modfl_pow32_bug=''
558 d_modflproto=''
559 d_mprotect=''
560 d_msg=''
561 d_msgctl=''
562 d_msgget=''
563 d_msghdr_s=''
564 d_msgrcv=''
565 d_msgsnd=''
566 d_msync=''
567 d_munmap=''
568 d_nice=''
569 d_nl_langinfo=''
570 d_off64_t=''
571 d_open3=''
572 d_fpathconf=''
573 d_pathconf=''
574 d_pause=''
575 d_pipe=''
576 d_poll=''
577 d_portable=''
578 d_procselfexe=''
579 procselfexe=''
580 d_old_pthread_create_joinable=''
581 old_pthread_create_joinable=''
582 d_pthread_atfork=''
583 d_pthread_attr_setscope=''
584 d_pthread_yield=''
585 d_sched_yield=''
586 sched_yield=''
587 d_qgcvt=''
588 d_random_r=''
589 random_r_proto=''
590 d_readdir64_r=''
591 readdir64_r_proto=''
592 d_readdir=''
593 d_rewinddir=''
594 d_seekdir=''
595 d_telldir=''
596 d_readdir_r=''
597 readdir_r_proto=''
598 d_readlink=''
599 d_readv=''
600 d_recvmsg=''
601 d_rename=''
602 d_rmdir=''
603 d_safebcpy=''
604 d_safemcpy=''
605 d_sanemcmp=''
606 d_sbrkproto=''
607 d_scalbnl=''
608 d_select=''
609 d_sem=''
610 d_semctl=''
611 d_semget=''
612 d_semop=''
613 d_sendmsg=''
614 d_setegid=''
615 d_seteuid=''
616 d_setgrent=''
617 d_setgrent_r=''
618 setgrent_r_proto=''
619 d_setgrps=''
620 d_sethent=''
621 d_sethostent_r=''
622 sethostent_r_proto=''
623 d_setitimer=''
624 d_setlinebuf=''
625 d_setlocale=''
626 d_setlocale_r=''
627 setlocale_r_proto=''
628 d_setnent=''
629 d_setnetent_r=''
630 setnetent_r_proto=''
631 d_setpent=''
632 d_setpgid=''
633 d_setpgrp2=''
634 d_bsdsetpgrp=''
635 d_setpgrp=''
636 d_setprior=''
637 d_setproctitle=''
638 d_setprotoent_r=''
639 setprotoent_r_proto=''
640 d_setpwent=''
641 d_setpwent_r=''
642 setpwent_r_proto=''
643 d_setregid=''
644 d_setresgid=''
645 d_setresuid=''
646 d_setreuid=''
647 d_setrgid=''
648 d_setruid=''
649 d_setsent=''
650 d_setservent_r=''
651 setservent_r_proto=''
652 d_setsid=''
653 d_setvbuf=''
654 d_sfio=''
655 usesfio=''
656 d_shm=''
657 d_shmat=''
658 d_shmatprototype=''
659 shmattype=''
660 d_shmctl=''
661 d_shmdt=''
662 d_shmget=''
663 d_sigaction=''
664 d_sigprocmask=''
665 d_sigsetjmp=''
666 d_sockatmark=''
667 d_sockatmarkproto=''
668 d_msg_ctrunc=''
669 d_msg_dontroute=''
670 d_msg_oob=''
671 d_msg_peek=''
672 d_msg_proxy=''
673 d_oldsock=''
674 d_scm_rights=''
675 d_socket=''
676 d_sockpair=''
677 sockethdr=''
678 socketlib=''
679 d_socklen_t=''
680 d_socks5_init=''
681 d_sqrtl=''
682 d_srand48_r=''
683 srand48_r_proto=''
684 d_srandom_r=''
685 srandom_r_proto=''
686 d_sresgproto=''
687 d_sresuproto=''
688 d_statblks=''
689 d_statfs_f_flags=''
690 d_statfs_s=''
691 d_fstatvfs=''
692 d_statvfs=''
693 d_stdio_cnt_lval=''
694 d_stdio_ptr_lval=''
695 d_stdio_ptr_lval_nochange_cnt=''
696 d_stdio_ptr_lval_sets_cnt=''
697 d_stdiobase=''
698 d_stdstdio=''
699 stdio_base=''
700 stdio_bufsiz=''
701 stdio_cnt=''
702 stdio_filbuf=''
703 stdio_ptr=''
704 d_index=''
705 d_strchr=''
706 d_strcoll=''
707 d_strctcpy=''
708 d_strerrm=''
709 d_strerror=''
710 d_sysernlst=''
711 d_syserrlst=''
712 d_strerror_r=''
713 strerror_r_proto=''
714 d_strftime=''
715 d_strtod=''
716 d_strtol=''
717 d_strtold=''
718 d_strtoll=''
719 d_strtoq=''
720 d_strtoul=''
721 d_strtoull=''
722 d_strtouq=''
723 d_strxfrm=''
724 d_symlink=''
725 d_syscall=''
726 d_syscallproto=''
727 d_sysconf=''
728 d_system=''
729 d_tcgetpgrp=''
730 d_tcsetpgrp=''
731 d_telldirproto=''
732 d_time=''
733 timetype=''
734 clocktype=''
735 d_times=''
736 d_tmpnam_r=''
737 tmpnam_r_proto=''
738 d_truncate=''
739 d_ttyname_r=''
740 ttyname_r_proto=''
741 d_tzname=''
742 d_u32align=''
743 d_ualarm=''
744 d_umask=''
745 d_semctl_semid_ds=''
746 d_semctl_semun=''
747 d_union_semun=''
748 d_unordered=''
749 d_usleep=''
750 d_usleepproto=''
751 d_ustat=''
752 d_vfork=''
753 usevfork=''
754 d_voidsig=''
755 signal_t=''
756 d_volatile=''
757 d_charvspr=''
758 d_vprintf=''
759 d_wait4=''
760 d_waitpid=''
761 d_wcstombs=''
762 d_wctomb=''
763 d_writev=''
764 dlext=''
765 cccdlflags=''
766 ccdlflags=''
767 dlsrc=''
768 ld=''
769 lddlflags=''
770 usedl=''
771 doublesize=''
772 ebcdic=''
773 fflushNULL=''
774 fflushall=''
775 fpossize=''
776 fpostype=''
777 gccansipedantic=''
778 gccosandvers=''
779 gccversion=''
780 gidformat=''
781 gidsign=''
782 gidsize=''
783 gidtype=''
784 groupstype=''
785 h_fcntl=''
786 h_sysfile=''
787 html1dir=''
788 html1direxp=''
789 installhtml1dir=''
790 html3dir=''
791 html3direxp=''
792 installhtml3dir=''
793 i_arpainet=''
794 i_crypt=''
795 db_hashtype=''
796 db_prefixtype=''
797 db_version_major=''
798 db_version_minor=''
799 db_version_patch=''
800 i_db=''
801 i_dbm=''
802 i_rpcsvcdbm=''
803 d_dirnamlen=''
804 direntrytype=''
805 i_dirent=''
806 i_dld=''
807 i_dlfcn=''
808 i_fcntl=''
809 i_float=''
810 i_fp=''
811 i_fp_class=''
812 i_gdbm=''
813 d_grpasswd=''
814 i_grp=''
815 i_ieeefp=''
816 i_inttypes=''
817 i_langinfo=''
818 i_libutil=''
819 i_limits=''
820 i_locale=''
821 i_machcthr=''
822 i_malloc=''
823 i_math=''
824 i_memory=''
825 i_mntent=''
826 i_ndbm=''
827 i_netdb=''
828 i_neterrno=''
829 i_netinettcp=''
830 i_niin=''
831 i_sysin=''
832 i_poll=''
833 i_prot=''
834 i_pthread=''
835 d_pwage=''
836 d_pwchange=''
837 d_pwclass=''
838 d_pwcomment=''
839 d_pwexpire=''
840 d_pwgecos=''
841 d_pwpasswd=''
842 d_pwquota=''
843 i_pwd=''
844 i_sfio=''
845 i_shadow=''
846 i_socks=''
847 i_stddef=''
848 i_stdlib=''
849 i_string=''
850 strings=''
851 i_sunmath=''
852 i_sysaccess=''
853 i_sysdir=''
854 i_sysfile=''
855 d_voidtty=''
856 i_bsdioctl=''
857 i_sysfilio=''
858 i_sysioctl=''
859 i_syssockio=''
860 i_syslog=''
861 i_sysmman=''
862 i_sysmode=''
863 i_sysmount=''
864 i_sysndir=''
865 i_sysparam=''
866 i_sysresrc=''
867 i_syssecrt=''
868 i_sysselct=''
869 i_sysstat=''
870 i_sysstatfs=''
871 i_sysstatvfs=''
872 i_systimes=''
873 i_systypes=''
874 i_sysuio=''
875 i_sysun=''
876 i_sysutsname=''
877 i_sysvfs=''
878 i_syswait=''
879 i_sgtty=''
880 i_termio=''
881 i_termios=''
882 d_tm_tm_gmtoff=''
883 d_tm_tm_zone=''
884 i_systime=''
885 i_systimek=''
886 i_time=''
887 timeincl=''
888 i_unistd=''
889 i_ustat=''
890 i_utime=''
891 i_values=''
892 i_stdarg=''
893 i_varargs=''
894 i_varhdr=''
895 i_vfork=''
896 inc_version_list=''
897 inc_version_list_init=''
898 installprefix=''
899 installprefixexp=''
900 installstyle=''
901 installusrbinperl=''
902 intsize=''
903 longsize=''
904 shortsize=''
905 issymlink=''
906 libc=''
907 ldlibpthname=''
908 libperl=''
909 shrpenv=''
910 useshrplib=''
911 glibpth=''
912 libpth=''
913 loclibpth=''
914 plibpth=''
915 xlibpth=''
916 ignore_versioned_solibs=''
917 libs=''
918 libsdirs=''
919 libsfiles=''
920 libsfound=''
921 libspath=''
922 lns=''
923 d_PRIEUldbl=''
924 d_PRIFUldbl=''
925 d_PRIGUldbl=''
926 d_PRIeldbl=''
927 d_PRIfldbl=''
928 d_PRIgldbl=''
929 d_SCNfldbl=''
930 sPRIEUldbl=''
931 sPRIFUldbl=''
932 sPRIGUldbl=''
933 sPRIeldbl=''
934 sPRIfldbl=''
935 sPRIgldbl=''
936 sSCNfldbl=''
937 lseeksize=''
938 lseektype=''
939 make_set_make=''
940 d_mymalloc=''
941 freetype=''
942 mallocobj=''
943 mallocsrc=''
944 malloctype=''
945 usemymalloc=''
946 installman1dir=''
947 man1dir=''
948 man1direxp=''
949 man1ext=''
950 installman3dir=''
951 man3dir=''
952 man3direxp=''
953 man3ext=''
954 modetype=''
955 multiarch=''
956 mydomain=''
957 myhostname=''
958 phostname=''
959 c=''
960 n=''
961 d_eofnblk=''
962 eagain=''
963 o_nonblock=''
964 rd_nodata=''
965 need_va_copy=''
966 netdb_hlen_type=''
967 netdb_host_type=''
968 netdb_name_type=''
969 netdb_net_type=''
970 groupcat=''
971 hostcat=''
972 passcat=''
973 orderlib=''
974 ranlib=''
975 d_perl_otherlibdirs=''
976 otherlibdirs=''
977 package=''
978 spackage=''
979 pager=''
980 api_revision=''
981 api_subversion=''
982 api_version=''
983 api_versionstring=''
984 patchlevel=''
985 perl_patchlevel=''
986 revision=''
987 subversion=''
988 version=''
989 version_patchlevel_string=''
990 perl5=''
991 perladmin=''
992 perlpath=''
993 d_nv_preserves_uv=''
994 i16size=''
995 i16type=''
996 i32size=''
997 i32type=''
998 i64size=''
999 i64type=''
1000 i8size=''
1001 i8type=''
1002 ivsize=''
1003 ivtype=''
1004 nv_preserves_uv_bits=''
1005 nvsize=''
1006 nvtype=''
1007 u16size=''
1008 u16type=''
1009 u32size=''
1010 u32type=''
1011 u64size=''
1012 u64type=''
1013 u8size=''
1014 u8type=''
1015 uvsize=''
1016 uvtype=''
1017 ivdformat=''
1018 nvEUformat=''
1019 nvFUformat=''
1020 nvGUformat=''
1021 nveformat=''
1022 nvfformat=''
1023 nvgformat=''
1024 uvXUformat=''
1025 uvoformat=''
1026 uvuformat=''
1027 uvxformat=''
1028 pidtype=''
1029 prefix=''
1030 prefixexp=''
1031 installprivlib=''
1032 privlib=''
1033 privlibexp=''
1034 prototype=''
1035 ptrsize=''
1036 d_PRIXU64=''
1037 d_PRId64=''
1038 d_PRIi64=''
1039 d_PRIo64=''
1040 d_PRIu64=''
1041 d_PRIx64=''
1042 sPRIXU64=''
1043 sPRId64=''
1044 sPRIi64=''
1045 sPRIo64=''
1046 sPRIu64=''
1047 sPRIx64=''
1048 d_quad=''
1049 quadkind=''
1050 quadtype=''
1051 uquadtype=''
1052 drand01=''
1053 randbits=''
1054 randfunc=''
1055 randseedtype=''
1056 seedfunc=''
1057 installscript=''
1058 scriptdir=''
1059 scriptdirexp=''
1060 selectminbits=''
1061 selecttype=''
1062 sh=''
1063 sig_count=''
1064 sig_name=''
1065 sig_name_init=''
1066 sig_num=''
1067 sig_num_init=''
1068 sig_size=''
1069 installsitearch=''
1070 sitearch=''
1071 sitearchexp=''
1072 installsitebin=''
1073 sitebin=''
1074 sitebinexp=''
1075 installsitehtml1dir=''
1076 sitehtml1dir=''
1077 sitehtml1direxp=''
1078 installsitehtml3dir=''
1079 sitehtml3dir=''
1080 sitehtml3direxp=''
1081 installsitelib=''
1082 sitelib=''
1083 sitelib_stem=''
1084 sitelibexp=''
1085 installsiteman1dir=''
1086 siteman1dir=''
1087 siteman1direxp=''
1088 installsiteman3dir=''
1089 siteman3dir=''
1090 siteman3direxp=''
1091 siteprefix=''
1092 siteprefixexp=''
1093 installsitescript=''
1094 sitescript=''
1095 sitescriptexp=''
1096 sizesize=''
1097 sizetype=''
1098 so=''
1099 socksizetype=''
1100 sharpbang=''
1101 shsharp=''
1102 spitshell=''
1103 src=''
1104 ssizetype=''
1105 startperl=''
1106 startsh=''
1107 stdchar=''
1108 d_stdio_stream_array=''
1109 stdio_stream_array=''
1110 sysman=''
1111 trnl=''
1112 uidformat=''
1113 uidsign=''
1114 uidsize=''
1115 uidtype=''
1116 archname64=''
1117 use64bitall=''
1118 use64bitint=''
1119 usefaststdio=''
1120 ccflags_uselargefiles=''
1121 ldflags_uselargefiles=''
1122 libswanted_uselargefiles=''
1123 uselargefiles=''
1124 uselongdouble=''
1125 usemorebits=''
1126 usemultiplicity=''
1127 nm_opt=''
1128 nm_so_opt=''
1129 runnm=''
1130 usenm=''
1131 useperlio=''
1132 usesocks=''
1133 d_oldpthreads=''
1134 use5005threads=''
1135 useithreads=''
1136 usereentrant=''
1137 usethreads=''
1138 incpath=''
1139 mips_type=''
1140 usrinc=''
1141 d_vendorarch=''
1142 installvendorarch=''
1143 vendorarch=''
1144 vendorarchexp=''
1145 d_vendorbin=''
1146 installvendorbin=''
1147 vendorbin=''
1148 vendorbinexp=''
1149 installvendorhtml1dir=''
1150 vendorhtml1dir=''
1151 vendorhtml1direxp=''
1152 installvendorhtml3dir=''
1153 vendorhtml3dir=''
1154 vendorhtml3direxp=''
1155 d_vendorlib=''
1156 installvendorlib=''
1157 vendorlib=''
1158 vendorlib_stem=''
1159 vendorlibexp=''
1160 installvendorman1dir=''
1161 vendorman1dir=''
1162 vendorman1direxp=''
1163 installvendorman3dir=''
1164 vendorman3dir=''
1165 vendorman3direxp=''
1166 usevendorprefix=''
1167 vendorprefix=''
1168 vendorprefixexp=''
1169 d_vendorscript=''
1170 installvendorscript=''
1171 vendorscript=''
1172 vendorscriptexp=''
1173 versiononly=''
1174 defvoidused=''
1175 voidflags=''
1176 pm_apiversion=''
1177 xs_apiversion=''
1178 yacc=''
1179 yaccflags=''
1180 CONFIG=''
1181
1182 define='define'
1183 undef='undef'
1184 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
1185 rmlist=''
1186
1187 : We must find out about Eunice early
1188 eunicefix=':'
1189 if test -f /etc/unixtovms; then
1190         eunicefix=/etc/unixtovms
1191 fi
1192 if test -f /etc/unixtovms.exe; then
1193         eunicefix=/etc/unixtovms.exe
1194 fi
1195
1196 : Set executable suffix now -- needed before hints available
1197 if test -f "/libs/version.library"; then
1198 : Amiga OS
1199     _exe=""
1200 elif test -f "/system/gnu_library/bin/ar.pm"; then
1201 : Stratus VOS
1202     _exe=".pm"
1203 elif test -n "$DJGPP"; then
1204 : DOS DJGPP
1205     _exe=".exe"
1206 elif test -d c:/. -o -n "$is_os2" ; then
1207 : OS/2 or cygwin
1208     _exe=".exe"
1209 fi
1210
1211 i_whoami=''
1212 : Possible local include directories to search.
1213 : Set locincpth to "" in a hint file to defeat local include searches.
1214 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1215 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1216 :
1217 : no include file wanted by default
1218 inclwanted=''
1219
1220 siteman1dir=''
1221 siteman3dir=''
1222 sitescript=''
1223 : Trailing extension.  Override this in a hint file, if needed.
1224 : Extra object files, if any, needed on this platform.
1225 archobjs=''
1226 groupstype=''
1227 libnames=''
1228 : change the next line if compiling for Xenix/286 on Xenix/386
1229 xlibpth='/usr/lib/386 /lib/386'
1230 : Possible local library directories to search.
1231 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1232 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1233
1234 : general looking path for locating libraries
1235 glibpth="/lib /usr/lib $xlibpth"
1236 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1237 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1238 test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1239
1240 : Private path used by Configure to find libraries.  Its value
1241 : is prepended to libpth. This variable takes care of special
1242 : machines, like the mips.  Usually, it should be empty.
1243 plibpth=''
1244
1245 : default library list
1246 libswanted=''
1247 : some systems want to use only the non-versioned libso:s
1248 ignore_versioned_solibs=''
1249 : full support for void wanted by default
1250 defvoidused=15
1251
1252 ccname=''
1253 ccversion=''
1254 perllibs=''
1255 : set useposix=false in your hint file to disable the POSIX extension.
1256 useposix=true
1257 : set useopcode=false in your hint file to disable the Opcode extension.
1258 useopcode=true
1259 archname64=''
1260 ccflags_uselargefiles=''
1261 ldflags_uselargefiles=''
1262 libswanted_uselargefiles=''
1263 : set usemultiplicity on the Configure command line to enable multiplicity.
1264 : set usesocks on the Configure command line to enable socks.
1265 archname=''
1266 : set usethreads on the Configure command line to enable threads.
1267 usereentrant='undef'
1268 : List of libraries we want.
1269 : If anyone needs extra -lxxx, put those in a hint file.
1270 libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun"
1271 libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD"
1272 : We probably want to search /usr/shlib before most other libraries.
1273 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1274 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1275 glibpth="/usr/shlib $glibpth"
1276 : Do not use vfork unless overridden by a hint file.
1277 usevfork=false
1278
1279 : Find the basic shell for Bourne shell scripts
1280 case "$sh" in
1281 '')
1282         case "$SYSTYPE" in
1283         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1284         *) xxx='/bin/sh';;
1285         esac
1286         if test -f "$xxx"; then
1287                 sh="$xxx"
1288         else
1289                 : Build up a list and do a single loop so we can 'break' out.
1290                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1291                 for xxx in sh bash ksh pdksh ash; do
1292                         for p in $pth; do
1293                                 try="$try ${p}/${xxx}"
1294                         done
1295                 done
1296                 for xxx in $try; do
1297                         if test -f "$xxx"; then
1298                                 sh="$xxx";
1299                                 break
1300                         elif test "X$_exe" != X -a -f "$xxx$_exe"; then
1301                                 sh="$xxx";
1302                                 break
1303                         elif test -f "$xxx.exe"; then
1304                                 sh="$xxx";
1305                                 break
1306                         fi
1307                 done
1308         fi
1309         ;;
1310 esac
1311
1312 case "$sh" in
1313 '')     cat >&2 <<EOM
1314 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
1315
1316 Usually it's in /bin/sh.  How did you even get this far?
1317 Please contact me (Perl Maintainers) at perlbug@perl.org and 
1318 we'll try to straighten this all out.
1319 EOM
1320         exit 1
1321         ;;
1322 esac
1323
1324 : see if sh knows # comments
1325 if `$sh -c '#' >/dev/null 2>&1`; then
1326         shsharp=true
1327         spitshell=cat
1328         xcat=/bin/cat
1329         test -f $xcat$_exe || xcat=/usr/bin/cat
1330         if test ! -f $xcat$_exe; then
1331                 for p in `echo $PATH | sed -e "s/$p_/ /g"` $paths; do
1332                         if test -f $p/cat$_exe; then
1333                                 xcat=$p/cat
1334                                 break
1335                         fi
1336                 done
1337                 if test ! -f $xcat$_exe; then
1338                         echo "Can't find cat anywhere!"
1339                         exit 1
1340                 fi
1341         fi
1342         echo "#!$xcat" >sharp
1343         $eunicefix sharp
1344         chmod +x sharp
1345         ./sharp > today
1346         if test -s today; then
1347                 sharpbang='#!'
1348         else
1349                 echo "#! $xcat" > sharp
1350                 $eunicefix sharp
1351                 chmod +x sharp
1352                 ./sharp > today
1353                 if test -s today; then
1354                         sharpbang='#! '
1355                 else
1356                         sharpbang=': use '
1357                 fi
1358         fi
1359 else
1360         echo " "
1361         echo "Your $sh doesn't grok # comments--I will strip them later on."
1362         shsharp=false
1363         cd ..
1364         echo "exec grep -v '^[  ]*#'" >spitshell
1365         chmod +x spitshell
1366         $eunicefix spitshell
1367         spitshell=`pwd`/spitshell
1368         cd UU
1369         echo "I presume that if # doesn't work, #! won't work either!"
1370         sharpbang=': use '
1371 fi
1372 rm -f sharp today
1373
1374 : figure out how to guarantee sh startup
1375 case "$startsh" in
1376 '') startsh=${sharpbang}${sh} ;;
1377 *)
1378 esac
1379 cat >sharp <<EOSS
1380 $startsh
1381 set abc
1382 test "$?abc" != 1
1383 EOSS
1384
1385 chmod +x sharp
1386 $eunicefix sharp
1387 if ./sharp; then
1388         : echo "Yup, it does."
1389 else
1390         echo "Hmm... '$startsh' does not guarantee sh startup..."
1391         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1392 fi
1393 rm -f sharp
1394
1395
1396 : Save command line options in file UU/cmdline.opt for later use in
1397 : generating config.sh.
1398 cat > cmdline.opt <<EOSH
1399 # Configure command line arguments.
1400 config_arg0='$0'
1401 config_args='$*'
1402 config_argc=$#
1403 EOSH
1404 argn=1
1405 args_exp=''
1406 args_sep=''
1407 for arg in "$@"; do
1408         cat >>cmdline.opt <<EOSH
1409 config_arg$argn='$arg'
1410 EOSH
1411         # Extreme backslashitis: replace each ' by '"'"'
1412         cat <<EOC | sed -e "s/'/'"'"'"'"'"'"'/g" > cmdl.opt
1413 $arg
1414 EOC
1415         arg_exp=`cat cmdl.opt`
1416         args_exp="$args_exp$args_sep'$arg_exp'"
1417         argn=`expr $argn + 1`
1418         args_sep=' '
1419 done
1420 # args_exp is good for restarting self: eval "set X $args_exp"; shift; $0 "$@"
1421 # used by ./hints/os2.sh
1422 rm -f cmdl.opt
1423
1424 : produce awk script to parse command line options
1425 cat >options.awk <<'EOF'
1426 BEGIN {
1427         optstr = "A:dD:eEf:hKOrsSU:V";  # getopt-style specification
1428
1429         len = length(optstr);
1430         for (i = 1; i <= len; i++) {
1431                 c = substr(optstr, i, 1);
1432                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1433                 if (a == ":") {
1434                         arg[c] = 1;
1435                         i++;
1436                 }
1437                 opt[c] = 1;
1438         }
1439 }
1440 {
1441         expect = 0;
1442         str = $0;
1443         if (substr(str, 1, 1) != "-") {
1444                 printf("'%s'\n", str);
1445                 next;
1446         }
1447         len = length($0);
1448         for (i = 2; i <= len; i++) {
1449                 c = substr(str, i, 1);
1450                 if (!opt[c]) {
1451                         printf("-%s\n", substr(str, i));
1452                         next;
1453                 }
1454                 printf("-%s\n", c);
1455                 if (arg[c]) {
1456                         if (i < len)
1457                                 printf("'%s'\n", substr(str, i + 1));
1458                         else
1459                                 expect = 1;
1460                         next;
1461                 }
1462         }
1463 }
1464 END {
1465         if (expect)
1466                 print "?";
1467 }
1468 EOF
1469
1470 : process the command line options
1471 set X `for arg in "$@"; do echo "X$arg"; done |
1472         sed -e s/X// | awk -f options.awk`
1473 eval "set $*"
1474 shift
1475 rm -f options.awk
1476
1477 : set up default values
1478 fastread=''
1479 reuseval=false
1480 config_sh=''
1481 alldone=''
1482 error=''
1483 silent=''
1484 extractsh=''
1485 override=''
1486 knowitall=''
1487 rm -f optdef.sh posthint.sh
1488 cat >optdef.sh <<EOS
1489 $startsh
1490 EOS
1491
1492
1493 : option parsing
1494 while test $# -gt 0; do
1495         case "$1" in
1496         -d) shift; fastread=yes;;
1497         -e) shift; alldone=cont;;
1498         -f)
1499                 shift
1500                 cd ..
1501                 if test -r "$1"; then
1502                         config_sh="$1"
1503                 else
1504                         echo "$me: cannot read config file $1." >&2
1505                         error=true
1506                 fi
1507                 cd UU
1508                 shift;;
1509         -h) shift; error=true;;
1510         -r) shift; reuseval=true;;
1511         -s) shift; silent=true; realsilent=true;;
1512         -E) shift; alldone=exit;;
1513         -K) shift; knowitall=true;;
1514         -O) shift; override=true;;
1515         -S) shift; silent=true; extractsh=true;;
1516         -D)
1517                 shift
1518                 case "$1" in
1519                 *=)
1520                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1521                         echo "$me: ignoring -D $1" >&2
1522                         ;;
1523                 *=*) echo "$1" | \
1524                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1525                 *) echo "$1='define'" >> optdef.sh;;
1526                 esac
1527                 shift
1528                 ;;
1529         -U)
1530                 shift
1531                 case "$1" in
1532                 *=) echo "$1" >> optdef.sh;;
1533                 *=*)
1534                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1535                         echo "$me: ignoring -U $1" >&2
1536                         ;;
1537                 *) echo "$1='undef'" >> optdef.sh;;
1538                 esac
1539                 shift
1540                 ;;
1541         -A)
1542             shift
1543             xxx=''
1544             yyy="$1"
1545             zzz=''
1546             uuu=undef
1547             case "$yyy" in
1548             *=*) zzz=`echo "$yyy"|sed 's!=.*!!'`
1549                  case "$zzz" in
1550                  *:*) zzz='' ;;
1551                  *)   xxx=append
1552                       zzz=" "`echo "$yyy"|sed 's!^[^=]*=!!'` 
1553                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1554                  esac
1555                  ;;
1556             esac
1557             case "$xxx" in
1558             '')  case "$yyy" in
1559                  *:*) xxx=`echo "$yyy"|sed 's!:.*!!'`
1560                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'`
1561                       zzz=`echo "$yyy"|sed 's!^[^=]*=!!'`
1562                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1563                  *)   xxx=`echo "$yyy"|sed 's!:.*!!'`
1564                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'` ;;
1565                  esac
1566                  ;;       
1567             esac
1568             case "$xxx" in
1569             append)
1570                 echo "$yyy=\"\${$yyy}$zzz\""    >> posthint.sh ;;
1571             clear)
1572                 echo "$yyy=''"                  >> posthint.sh ;;
1573             define)
1574                 case "$zzz" in
1575                 '') zzz=define ;;
1576                 esac
1577                 echo "$yyy='$zzz'"              >> posthint.sh ;;
1578             eval)
1579                 echo "eval \"$yyy=$zzz\""       >> posthint.sh ;;
1580             prepend)
1581                 echo "$yyy=\"$zzz\${$yyy}\""    >> posthint.sh ;;
1582             undef)
1583                 case "$zzz" in
1584                 '') zzz="$uuu" ;;
1585                 esac
1586                 echo "$yyy=$zzz"                >> posthint.sh ;;
1587             *)  echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1588             esac
1589             shift
1590             ;;
1591         -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1592             exit 0;;
1593         --) break;;
1594         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1595         *) break;;
1596         esac
1597 done
1598
1599 case "$error" in
1600 true)
1601         cat >&2 <<EOM
1602 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1603                  [-U symbol] [-U symbol=] [-A command:symbol...]
1604   -d : use defaults for all answers.
1605   -e : go on without questioning past the production of config.sh.
1606   -f : specify an alternate default configuration file.
1607   -h : print this help message and exit (with an error status).
1608   -r : reuse C symbols value if possible (skips costly nm extraction).
1609   -s : silent mode, only echoes questions and essential information.
1610   -D : define symbol to have some value:
1611          -D symbol         symbol gets the value 'define'
1612          -D symbol=value   symbol gets the value 'value'
1613   -E : stop at the end of questions, after having produced config.sh.
1614   -K : do not use unless you know what you are doing.
1615   -O : let -D and -U override definitions from loaded configuration file.
1616   -S : perform variable substitutions on all .SH files (can mix with -f)
1617   -U : undefine symbol:
1618          -U symbol    symbol gets the value 'undef'
1619          -U symbol=   symbol gets completely empty
1620   -A : manipulate symbol after the platform specific hints have been applied:
1621          -A symbol=value                append " "value to symbol
1622          -A append:symbol=value         append value to symbol
1623          -A define:symbol=value         define symbol to have value
1624          -A clear:symbol                define symbol to be ''
1625          -A define:symbol               define symbol to be 'define'
1626          -A eval:symbol=value           define symbol to be eval of value
1627          -A prepend:symbol=value        prepend value to symbol
1628          -A undef:symbol                define symbol to be 'undef'
1629          -A undef:symbol=               define symbol to be ''
1630   -V : print version number and exit (with a zero status).
1631 EOM
1632         exit 1
1633         ;;
1634 esac
1635
1636 : Sanity checks
1637 case "$fastread$alldone" in
1638 yescont|yesexit) ;;
1639 *)
1640         case "$extractsh" in
1641         true) ;;
1642         *)
1643                 if test ! -t 0; then
1644                         echo "Say 'sh Configure', not 'sh <Configure'"
1645                         exit 1
1646                 fi
1647                 ;;
1648         esac
1649         ;;
1650 esac
1651
1652 exec 4>&1
1653 case "$silent" in
1654 true) exec 1>/dev/null;;
1655 esac
1656
1657 : run the defines and the undefines, if any, but leave the file out there...
1658 touch optdef.sh
1659 . ./optdef.sh
1660 : create the posthint manipulation script and leave the file out there...
1661 touch posthint.sh
1662
1663 : set package name
1664 package=perl5
1665 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1666 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1667 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1668 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1669 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1670 esac
1671
1672 : Some greps do not return status, grrr.
1673 echo "grimblepritz" >grimble
1674 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1675         contains=contains
1676 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1677         contains=grep
1678 else
1679         contains=contains
1680 fi
1681 rm -f grimble
1682 : the following should work in any shell
1683 case "$contains" in
1684 contains*)
1685         echo " "
1686         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1687         cat >contains <<'EOSS'
1688 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1689 EOSS
1690 chmod +x contains
1691 esac
1692
1693 : Find the path to the source tree
1694 case "$src" in
1695 '') case "$0" in
1696     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1697          case "$src" in
1698          /*)    ;;
1699          .)     ;;
1700          *)     src=`cd ../$src && pwd` ;;
1701          esac
1702          ;;
1703     *)   src='.';;
1704     esac;;
1705 esac
1706 case "$src" in
1707 '')     src=/
1708         rsrc=/
1709         ;;
1710 /*) rsrc="$src";;
1711 *) rsrc="../$src";;
1712 esac
1713 if test -f $rsrc/Configure && \
1714         $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1715 then
1716    : found it, so we are ok.
1717 else
1718         rsrc=''
1719         for src in . .. ../.. ../../.. ../../../..; do
1720                 if test -f ../$src/Configure && \
1721                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1722                 then
1723                         rsrc=../$src
1724                         break
1725                 fi
1726         done
1727 fi
1728 case "$rsrc" in
1729 '')
1730         cat <<EOM >&4
1731
1732 Sorry, I can't seem to locate the source dir for $package.  Please start
1733 Configure with an explicit path -- i.e. /some/path/Configure.
1734
1735 EOM
1736         exit 1
1737         ;;
1738 ../.)   rsrc='..';;
1739 *)
1740         echo " "
1741         echo "Sources for $package found in \"$src\"." >&4
1742         ;;
1743 esac
1744
1745 : script used to extract .SH files with variable substitutions
1746 cat >extract <<'EOS'
1747 PERL_CONFIG_SH=true
1748 echo "Doing variable substitutions on .SH files..."
1749 if test -f MANIFEST; then
1750         set x `awk '{print $1}' < MANIFEST | grep '\.SH$'`
1751 else
1752         echo "(Looking for .SH files under the source directory.)"
1753         set x `(cd "$src"; find . -name "*.SH" -print)`
1754 fi
1755 shift
1756 case $# in
1757 0) set x `(cd "$src"; echo *.SH)`; shift;;
1758 esac
1759 if test ! -f "$src/$1"; then
1760         shift
1761 fi
1762 mkdir_p='
1763 name=$1;
1764 create="";
1765 while test $name; do
1766         if test ! -d "$name"; then
1767                 create="$name $create";
1768                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1769                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1770         else
1771                 name="";
1772         fi;
1773 done;
1774 for file in $create; do
1775         mkdir $file;
1776 done
1777 '
1778 for file in $*; do
1779         case "$src" in
1780         ".")
1781                 case "$file" in
1782                 */*)
1783                         dir=`expr X$file : 'X\(.*\)/'`
1784                         file=`expr X$file : 'X.*/\(.*\)'`
1785                         (cd "$dir" && . ./$file)
1786                         ;;
1787                 *)
1788                         . ./$file
1789                         ;;
1790                 esac
1791                 ;;
1792         *)
1793                 case "$file" in
1794                 */*)
1795                         dir=`expr X$file : 'X\(.*\)/'`
1796                         file=`expr X$file : 'X.*/\(.*\)'`
1797                         (set x $dir; shift; eval $mkdir_p)
1798                         sh <"$src/$dir/$file"
1799                         ;;
1800                 *)
1801                         sh <"$src/$file"
1802                         ;;
1803                 esac
1804                 ;;
1805         esac
1806 done
1807 if test -f "$src/config_h.SH"; then
1808         if test ! -f config.h; then
1809         : oops, they left it out of MANIFEST, probably, so do it anyway.
1810         . "$src/config_h.SH"
1811         fi
1812 fi
1813 EOS
1814
1815 : extract files and exit if asked to do so
1816 case "$extractsh" in
1817 true)
1818         case "$realsilent" in
1819         true) ;;
1820         *) exec 1>&4;;
1821         esac
1822         case "$config_sh" in
1823         '') config_sh='config.sh';;
1824         esac
1825         echo " "
1826         echo "Fetching answers from $config_sh..."
1827         cd ..
1828         . $config_sh
1829         test "$override" && . ./optdef.sh
1830         echo " "
1831         . UU/extract
1832         rm -rf UU
1833         echo "Extraction done."
1834         exit 0
1835         ;;
1836 esac
1837
1838 : Eunice requires " " instead of "", can you believe it
1839 echo " "
1840 : Here we go...
1841 echo "Beginning of configuration questions for $package."
1842
1843 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1844
1845 : first determine how to suppress newline on echo command
1846 echo " "
1847 echo "Checking echo to see how to suppress newlines..."
1848 (echo "hi there\c" ; echo " ") >.echotmp
1849 if $contains c .echotmp >/dev/null 2>&1 ; then
1850         echo "...using -n."
1851         n='-n'
1852         c=''
1853 else
1854         cat <<'EOM'
1855 ...using \c
1856 EOM
1857         n=''
1858         c='\c'
1859 fi
1860 echo $n "The star should be here-->$c"
1861 echo '*'
1862 rm -f .echotmp
1863
1864 : Now test for existence of everything in MANIFEST
1865 echo " "
1866 if test -f "$rsrc/MANIFEST"; then
1867         echo "First let's make sure your kit is complete.  Checking..." >&4
1868         awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | (split -l 50 2>/dev/null || split -50)
1869         rm -f missing
1870         tmppwd=`pwd`
1871         for filelist in x??; do
1872                 (cd "$rsrc"; ls `cat "$tmppwd/$filelist"` >/dev/null 2>>"$tmppwd/missing")
1873         done
1874         if test -s missing; then
1875                 cat missing >&4
1876                 cat >&4 <<'EOM'
1877
1878 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1879
1880 You have the option of continuing the configuration process, despite the
1881 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1882 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1883 and contact the author (perlbug@perl.org).
1884
1885 EOM
1886                 echo $n "Continue? [n] $c" >&4
1887                 read ans
1888                 case "$ans" in
1889                 y*)
1890                         echo "Continuing..." >&4
1891                         rm -f missing
1892                         ;;
1893                 *)
1894                         echo "ABORTING..." >&4
1895                         kill $$
1896                         ;;
1897                 esac
1898         else
1899                 echo "Looks good..."
1900         fi
1901 else
1902         echo "There is no MANIFEST file.  I hope your kit is complete !"
1903 fi
1904 rm -f missing x??
1905
1906 echo " "
1907 : Find the appropriate value for a newline for tr
1908 if test -n "$DJGPP"; then
1909        trnl='\012'
1910 fi
1911 if test X"$trnl" = X; then
1912         case "`echo foo|tr '\n' x 2>/dev/null`" in
1913         foox) trnl='\n' ;;
1914         esac
1915 fi
1916 if test X"$trnl" = X; then
1917         case "`echo foo|tr '\012' x 2>/dev/null`" in
1918         foox) trnl='\012' ;;
1919         esac
1920 fi
1921 if test X"$trnl" = X; then
1922        case "`echo foo|tr '\r\n' xy 2>/dev/null`" in
1923        fooxy) trnl='\n\r' ;;
1924        esac
1925 fi
1926 if test X"$trnl" = X; then
1927         cat <<EOM >&2
1928
1929 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1930
1931 EOM
1932         exit 1
1933 fi
1934
1935 : compute the number of columns on the terminal for proper question formatting
1936 case "$COLUMNS" in
1937 '') COLUMNS='80';;
1938 esac
1939
1940 : set up the echo used in my read
1941 myecho="case \"\$xxxm\" in
1942 '') echo $n \"\$rp $c\" >&4;;
1943 *) case \"\$rp\" in
1944         '') echo $n \"[\$xxxm] $c\";;
1945         *)
1946                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
1947                         echo \"\$rp\" >&4
1948                         echo $n \"[\$xxxm] $c\" >&4
1949                 else
1950                         echo $n \"\$rp [\$xxxm] $c\" >&4
1951                 fi
1952                 ;;
1953         esac;;
1954 esac"
1955
1956 : now set up to do reads with possible shell escape and default assignment
1957 cat <<EOSC >myread
1958 $startsh
1959 xxxm=\$dflt
1960 $myecho
1961 ans='!'
1962 case "\$fastread" in
1963 yes) case "\$dflt" in
1964         '') ;;
1965         *) ans='';
1966                 case "\$silent-\$rp" in
1967                 true-) ;;
1968                 *) echo " " >&4;;
1969                 esac;;
1970         esac;;
1971 *) case "\$silent" in
1972         true) case "\$rp" in
1973                 '') ans='';;
1974                 esac;;
1975         esac;;
1976 esac
1977 while expr "X\$ans" : "X!" >/dev/null; do
1978         read answ
1979         set x \$xxxm
1980         shift
1981         aok=''; eval "ans=\\"\$answ\\"" && aok=y
1982         case  "\$answ" in
1983         "!")
1984                 sh 1>&4
1985                 echo " "
1986                 $myecho
1987                 ;;
1988         !*)
1989                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
1990                 shift
1991                 sh 1>&4 -c "\$*"
1992                 echo " "
1993                 $myecho
1994                 ;;
1995         "\$ans")
1996                 case "\$ans" in
1997                 \\&*)
1998                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
1999                         shift
2000                         case "\$1" in
2001                         -d)
2002                                 fastread=yes
2003                                 echo "(OK, I'll run with -d after this question.)" >&4
2004                                 ;;
2005                         -*)
2006                                 echo "*** Sorry, \$1 not supported yet." >&4
2007                                 ;;
2008                         esac
2009                         $myecho
2010                         ans=!
2011                         ;;
2012                 esac;;
2013         *)
2014                 case "\$aok" in
2015                 y)
2016                         echo "*** Substitution done -- please confirm."
2017                         xxxm="\$ans"
2018                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
2019                         xxxm="\$ans"
2020                         ans=!
2021                         ;;
2022                 *)
2023                         echo "*** Error -- try again."
2024                         ans=!
2025                         ;;
2026                 esac
2027                 $myecho
2028                 ;;
2029         esac
2030         case "\$ans\$xxxm\$nostick" in
2031         '')
2032                 ans=!
2033                 $myecho
2034                 ;;
2035         esac
2036 done
2037 case "\$ans" in
2038 '') ans="\$xxxm";;
2039 esac
2040 EOSC
2041
2042 : create .config dir to save info across Configure sessions
2043 test -d ../.config || mkdir ../.config
2044 cat >../.config/README <<EOF
2045 This directory created by Configure to save information that should
2046 persist across sessions for $package.
2047
2048 You may safely delete it if you wish.
2049 EOF
2050
2051 xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
2052 case "$usedevel" in
2053 $define|true|[yY]*) ;;
2054 *) case "$xversion" in
2055    *[13579])
2056         cat >&4 <<EOH
2057 *** WHOA THERE!!! ***
2058
2059     This is an UNSTABLE DEVELOPMENT release.
2060     The version of this $package distribution is $xversion, that is, odd,
2061     (as opposed to even) and that signifies a development release.
2062     If you want a maintenance release, you want an even-numbered version.
2063
2064     Do ***NOT*** install this into production use.
2065     Data corruption and crashes are possible.
2066
2067     It is most seriously suggested that you do not continue any further
2068     unless you want to help in developing and debugging Perl.
2069
2070     If you *still* want to build perl, you can answer 'y' now,
2071     or pass -Dusedevel to Configure.
2072
2073 EOH
2074         rp='Do you really want to continue?'
2075         dflt='n'
2076         . ./myread
2077         case "$ans" in
2078         [yY]) echo >&4 "Okay, continuing."
2079               usedevel="$define" ;;
2080         *) echo >&4 "Okay, bye."
2081            exit 1
2082            ;;
2083         esac
2084         ;;
2085     esac
2086     ;;
2087 esac
2088 case "$usedevel" in
2089 $define|true|[yY]*)
2090         case "$versiononly" in
2091         '') versiononly="$define" ;;
2092         esac
2093         case "$installusrbinperl" in
2094         '') installusrbinperl="$undef" ;;
2095         esac
2096         ;;
2097 esac
2098
2099 : general instructions
2100 needman=true
2101 firsttime=true
2102 user=`(logname) 2>/dev/null`
2103 case "$user" in
2104 '') user=`whoami 2>&1`;;
2105 esac
2106 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2107         firsttime=false
2108         echo " "
2109         rp='Would you like to see the instructions?'
2110         dflt=n
2111         . ./myread
2112         case "$ans" in
2113         [yY]*) ;;
2114         *) needman=false;;
2115         esac
2116 fi
2117 if $needman; then
2118         cat <<EOH
2119
2120 This installation shell script will examine your system and ask you questions
2121 to determine how the perl5 package should be installed. If you get
2122 stuck on a question, you may use a ! shell escape to start a subshell or
2123 execute a command.  Many of the questions will have default answers in square
2124 brackets; typing carriage return will give you the default.
2125
2126 On some of the questions which ask for file or directory names you are allowed
2127 to use the ~name construct to specify the login directory belonging to "name",
2128 even if you don't have a shell which knows about that.  Questions where this is
2129 allowed will be marked "(~name ok)".
2130
2131 EOH
2132         rp=''
2133         dflt='Type carriage return to continue'
2134         . ./myread
2135         cat <<'EOH'
2136
2137 The prompter used in this script allows you to use shell variables and
2138 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
2139 in the default answer, as if the default line was a set of arguments given to a
2140 script shell.  This means you may also use $* to repeat the whole default line,
2141 so you do not have to re-type everything to add something to the default.
2142
2143 Everytime there is a substitution, you will have to confirm.  If there is an
2144 error (e.g. an unmatched backtick), the default answer will remain unchanged
2145 and you will be prompted again.
2146
2147 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
2148 the questions and use the computed defaults (or the previous answers if there
2149 was already a config.sh file). Type 'Configure -h' for a list of options.
2150 You may also start interactively and then answer '& -d' at any prompt to turn
2151 on the non-interactive behaviour for the remainder of the execution.
2152
2153 EOH
2154         . ./myread
2155         cat <<EOH
2156
2157 Much effort has been expended to ensure that this shell script will run on any
2158 Unix system.  If despite that it blows up on yours, your best bet is to edit
2159 Configure and run it again.  If you can't run Configure for some reason,
2160 you'll have to generate a config.sh file by hand.  Whatever problems you
2161 have, let me (perlbug@perl.org) know how I blew it.
2162
2163 This installation script affects things in two ways:
2164
2165 1) it may do direct variable substitutions on some of the files included
2166    in this kit.
2167 2) it builds a config.h file for inclusion in C programs.  You may edit
2168    any of these files as the need arises after running this script.
2169
2170 If you make a mistake on a question, there is no easy way to back up to it
2171 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
2172 files.  Configure will offer to let you do this before it runs the SH files.
2173
2174 EOH
2175         dflt='Type carriage return to continue'
2176         . ./myread
2177         case "$firsttime" in
2178         true) echo $user >>../.config/instruct;;
2179         esac
2180 fi
2181
2182 : find out where common programs are
2183 echo " "
2184 echo "Locating common programs..." >&4
2185 cat <<EOSC >loc
2186 $startsh
2187 case \$# in
2188 0) exit 1;;
2189 esac
2190 thing=\$1
2191 shift
2192 dflt=\$1
2193 shift
2194 for dir in \$*; do
2195         case "\$thing" in
2196         .)
2197         if test -d \$dir/\$thing; then
2198                 echo \$dir
2199                 exit 0
2200         fi
2201         ;;
2202         *)
2203         for thisthing in \$dir/\$thing; do
2204                 : just loop through to pick last item
2205         done
2206         if test -f \$thisthing; then
2207                 echo \$thisthing
2208                 exit 0
2209         elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2210                 echo \$thisthing
2211                 exit 0
2212         elif test -f \$dir/\$thing.exe; then
2213                 if test -n "$DJGPP"; then
2214                         echo \$dir/\$thing.exe
2215                 elif test "$eunicefix" != ":"; then
2216                         : on Eunice apparently
2217                         echo \$dir/\$thing
2218                         exit 0
2219                 fi
2220                 exit 0
2221         fi
2222         ;;
2223         esac
2224 done
2225 echo \$dflt
2226 exit 1
2227 EOSC
2228 chmod +x loc
2229 $eunicefix loc
2230 loclist="
2231 awk
2232 cat
2233 chmod
2234 comm
2235 cp
2236 echo
2237 expr
2238 grep
2239 ls
2240 mkdir
2241 rm
2242 sed
2243 sort
2244 touch
2245 tr
2246 uniq
2247 "
2248 trylist="
2249 Mcc
2250 ar
2251 bison
2252 byacc
2253 cpp
2254 csh
2255 date
2256 egrep
2257 gmake
2258 gzip
2259 less
2260 ln
2261 make
2262 more
2263 nm
2264 nroff
2265 pg
2266 test
2267 uname
2268 zip
2269 "
2270 pth=`echo $PATH | sed -e "s/$p_/ /g"`
2271 pth="$pth /lib /usr/lib"
2272 for file in $loclist; do
2273         eval xxx=\$$file
2274         case "$xxx" in
2275         /*|?:[\\/]*)
2276                 if test -f "$xxx"; then
2277                         : ok
2278                 else
2279                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2280                         xxx=`./loc $file $file $pth`
2281                 fi
2282                 ;;
2283         '') xxx=`./loc $file $file $pth`;;
2284         *) xxx=`./loc $xxx $xxx $pth`;;
2285         esac
2286         eval $file=$xxx$_exe
2287         eval _$file=$xxx
2288         case "$xxx" in
2289         /*)
2290                 echo $file is in $xxx.
2291                 ;;
2292         ?:[\\/]*)
2293                 echo $file is in $xxx.
2294                 ;;
2295         *)
2296                 echo "I don't know where '$file' is, and my life depends on it." >&4
2297                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2298                 exit 1
2299                 ;;
2300         esac
2301 done
2302 echo " "
2303 echo "Don't worry if any of the following aren't found..."
2304 say=offhand
2305 for file in $trylist; do
2306         eval xxx=\$$file
2307         case "$xxx" in
2308         /*|?:[\\/]*)
2309                 if test -f "$xxx"; then
2310                         : ok
2311                 else
2312                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2313                         xxx=`./loc $file $file $pth`
2314                 fi
2315                 ;;
2316         '') xxx=`./loc $file $file $pth`;;
2317         *) xxx=`./loc $xxx $xxx $pth`;;
2318         esac
2319         eval $file=$xxx$_exe
2320         eval _$file=$xxx
2321         case "$xxx" in
2322         /*)
2323                 echo $file is in $xxx.
2324                 ;;
2325         ?:[\\/]*)
2326                 echo $file is in $xxx.
2327                 ;;
2328         *)
2329                 echo "I don't see $file out there, $say."
2330                 say=either
2331                 ;;
2332         esac
2333 done
2334 case "$egrep" in
2335 egrep)
2336         echo "Substituting grep for egrep."
2337         egrep=$grep
2338         _egrep=$grep
2339         ;;
2340 esac
2341 case "$ln" in
2342 ln)
2343         echo "Substituting cp for ln."
2344         ln=$cp
2345         _ln=$cp
2346         ;;
2347 esac
2348 case "$make" in
2349 make)   
2350         case "$gmake" in
2351         gmake)
2352         echo "I can't find make or gmake, and my life depends on it." >&4
2353         echo "Go find a public domain implementation or fix your PATH setting!" >&4
2354         exit 1
2355         ;;
2356         esac
2357         ;;
2358 esac    
2359 case "$gmake" in
2360 gmake)  ;;
2361 *)      # We can't have osname yet.
2362         if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2363                 # Assume that gmake, if found, is definitely GNU make
2364                 # and prefer it over the system make.
2365                 echo "Substituting gmake for make."
2366                 make=$gmake
2367                 _make=$gmake
2368         fi
2369         ;;
2370 esac
2371 case "$test" in
2372 test)
2373         echo "Hopefully test is built into your sh."
2374         ;;
2375 *)
2376         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2377                 echo "Using the test built into your sh."
2378                 test=test
2379                 _test=test
2380         fi
2381         ;;
2382 esac
2383 case "$echo" in
2384 echo)
2385         echo "Hopefully echo is built into your sh."
2386         ;;
2387 '') ;;
2388 *)
2389         echo " "
2390 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2391         $echo $n "hi there$c" >foo1
2392         echo $n "hi there$c" >foo2
2393         if cmp foo1 foo2 >/dev/null 2>&1; then
2394                 echo "They are compatible.  In fact, they may be identical."
2395         else
2396                 case "$n" in
2397                 '-n') n='' c='\c';;
2398                 *) n='-n' c='';;
2399                 esac
2400                 cat <<FOO
2401 They are not compatible!  You are probably running ksh on a non-USG system.
2402 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2403 have echo built in and we may have to run some Bourne shell scripts.  That
2404 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2405
2406 FOO
2407                 $echo $n "The star should be here-->$c"
2408                 $echo "*"
2409         fi
2410         $rm -f foo1 foo2
2411         ;;
2412 esac
2413
2414 cat <<EOS >trygcc
2415 $startsh
2416 EOS
2417 cat <<'EOSC' >>trygcc
2418 case "$cc" in
2419 '') ;;
2420 *)  $rm -f try try.*
2421     $cat >try.c <<EOM
2422 int main(int argc, char *argv[]) {
2423   return 0;
2424 }
2425 EOM
2426     if $cc -o try $ccflags $ldflags try.c; then
2427        :
2428     else
2429         echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2430         despair=yes
2431         trygcc=yes
2432         case "$cc" in
2433         *gcc*) trygcc=no ;;
2434         esac
2435         case "`$cc -v -c try.c 2>&1`" in
2436         *gcc*) trygcc=no ;;
2437         esac
2438         if $test X"$trygcc" = Xyes; then
2439             if gcc -o try -c try.c; then
2440                 echo " "
2441                 echo "You seem to have a working gcc, though." >&4
2442                 rp="Would you like to use it?"
2443                 dflt=y
2444                 if $test -f myread; then
2445                     . ./myread
2446                 else
2447                     if $test -f UU/myread; then
2448                         . ./UU/myread
2449                     else
2450                         echo "Cannot find myread, sorry.  Aborting." >&2
2451                         exit 1
2452                     fi
2453                 fi  
2454                 case "$ans" in
2455                 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2456                        if $test -f usethreads.cbu; then
2457                            $cat >&4 <<EOM 
2458
2459 *** However, any setting of the C compiler flags (e.g. for thread support)
2460 *** has been lost.  It may be necessary to pass -Dcc=gcc to Configure
2461 *** (together with e.g. -Dusethreads).
2462
2463 EOM
2464                        fi;;
2465                 esac
2466             fi
2467         fi
2468     fi
2469     $rm -f try try.*
2470     ;;
2471 esac
2472 EOSC
2473
2474 cat <<EOS >checkcc
2475 $startsh
2476 EOS
2477 cat <<'EOSC' >>checkcc
2478 case "$cc" in        
2479 '') ;;
2480 *)  $rm -f try try.*              
2481     $cat >try.c <<EOM
2482 int main(int argc, char *argv[]) {
2483   return 0;
2484 }
2485 EOM
2486     if $cc -o try $ccflags $ldflags try.c; then
2487        :
2488     else
2489         if $test X"$despair" = Xyes; then
2490            echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2491         fi
2492         $cat >&4 <<EOM         
2493 You need to find a working C compiler.
2494 Either (purchase and) install the C compiler supplied by your OS vendor,
2495 or for a free C compiler try http://gcc.gnu.org/
2496 I cannot continue any further, aborting.
2497 EOM
2498         exit 1
2499     fi
2500     $rm -f try try.*
2501     ;;
2502 esac
2503 EOSC
2504
2505 : determine whether symbolic links are supported
2506 echo " "
2507 $touch blurfl
2508 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2509         echo "Symbolic links are supported." >&4
2510         lns="$ln -s"
2511 else
2512         echo "Symbolic links are NOT supported." >&4
2513         lns="$ln"
2514 fi
2515 $rm -f blurfl sym
2516
2517 : determine whether symbolic links are supported
2518 echo " "
2519 case "$lns" in
2520 *"ln"*" -s")
2521         echo "Checking how to test for symbolic links..." >&4
2522         $lns blurfl sym
2523         if $test "X$issymlink" = X; then
2524                 case "$newsh" in
2525                 '') sh     -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2526                 *)  $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2527                 esac
2528                 if test $? = 0; then
2529                         issymlink="test -h"
2530                 else
2531                         echo "Your builtin 'test -h' may be broken." >&4
2532                         case "$test" in
2533                         /*)     ;;
2534                         *)      pth=`echo $PATH | sed -e "s/$p_/ /g"`
2535                                 for p in $pth
2536                                 do
2537                                         if test -f "$p/$test"; then
2538                                                 test="$p/$test"
2539                                                 break
2540                                         fi
2541                                 done
2542                                 ;;
2543                         esac
2544                         case "$test" in
2545                         /*)
2546                                 echo "Trying external '$test -h'." >&4
2547                                 issymlink="$test -h"
2548                                 if $test ! -h sym >/dev/null 2>&1; then
2549                                         echo "External '$test -h' is broken, too." >&4
2550                                         issymlink=''
2551                                 fi
2552                                 ;;
2553                         *)      issymlink='' ;;
2554                         esac
2555                 fi              
2556         fi
2557         if $test "X$issymlink" = X; then
2558                 if $test -L sym 2>/dev/null; then
2559                         issymlink="$test -L"
2560                         echo "The builtin '$test -L' worked." >&4
2561                 fi
2562         fi
2563         if $test "X$issymlink" != X; then
2564                 echo "You can test for symbolic links with '$issymlink'." >&4
2565         else
2566                 echo "I do not know how you can test for symbolic links." >&4
2567         fi
2568         $rm -f blurfl sym
2569         ;;
2570 *)      echo "No symbolic links, so not testing for their testing..." >&4
2571         ;;
2572 esac
2573 echo " "
2574
2575
2576 case "$mksymlinks" in
2577 $define|true|[yY]*)
2578         case "$src" in
2579         ''|'.') echo "Cannot create symlinks in the original directory." >&4
2580                 exit 1
2581                 ;;
2582         *)      case "$lns:$issymlink" in
2583                 *"ln"*" -s:"*"test -"?)
2584                         echo "Creating the symbolic links..." >&4
2585                         echo "(First creating the subdirectories...)" >&4
2586                         cd ..
2587                         awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2588                                 read directory
2589                                 test -z "$directory" && break
2590                                 mkdir -p $directory
2591                         done
2592                         # Sanity check 1.
2593                         if test ! -d t/base; then
2594                                 echo "Failed to create the subdirectories.  Aborting." >&4
2595                                 exit 1
2596                         fi
2597                         echo "(Then creating the symlinks...)" >&4
2598                         awk '{print $1}' $src/MANIFEST | while true; do
2599                                 read filename
2600                                 test -z "$filename" && break
2601                                 if test -f $filename; then
2602                                         if $issymlink $filename; then
2603                                                 rm -f $filename
2604                                         fi
2605                                 fi
2606                                 if test -f $filename; then
2607                                         echo "$filename already exists, not symlinking."
2608                                 else
2609                                         ln -s $src/$filename $filename
2610                                 fi
2611                         done
2612                         # Sanity check 2.
2613                         if test ! -f t/base/lex.t; then
2614                                 echo "Failed to create the symlinks (t/base/lex.t missing).  Aborting." >&4
2615                                 exit 1
2616                         fi
2617                         cd UU
2618                         ;;
2619                 *)      echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2620                         ;;
2621                 esac
2622                 ;;
2623         esac
2624         ;;
2625 esac
2626
2627
2628 case "$usecrosscompile" in
2629 $define|true|[yY]*)
2630         $echo "Cross-compiling..."
2631         croak=''
2632         case "$cc" in
2633         *-*-gcc) # A cross-compiling gcc, probably.
2634             targetarch=`$echo $cc|$sed 's/-gcc$//'`
2635             ar=$targetarch-ar
2636             # leave out ld, choosing it is more complex
2637             nm=$targetarch-nm
2638             ranlib=$targetarch-ranlib
2639             $echo 'extern int foo;' > try.c
2640             set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2641             shift
2642             if $test $# -gt 0; then
2643                 incpth="$incpth $*"
2644                 incpth="`$echo $incpth|$sed 's/^ //'`"
2645                 echo "Guessing incpth '$incpth'." >&4
2646                 for i in $*; do
2647                     j="`$echo $i|$sed 's,/include$,/lib,'`"
2648                     if $test -d $j; then
2649                         libpth="$libpth $j"
2650                     fi
2651                 done   
2652                 libpth="`$echo $libpth|$sed 's/^ //'`"
2653                 echo "Guessing libpth '$libpth'." >&4
2654             fi
2655             $rm -f try.c
2656             ;;
2657         esac
2658         case "$targetarch" in
2659         '') echo "Targetarch not defined." >&4; croak=y ;;
2660         *)  echo "Using targetarch $targetarch." >&4 ;;
2661         esac
2662         case "$incpth" in
2663         '') echo "Incpth not defined." >&4; croak=y ;;
2664         *)  echo "Using incpth '$incpth'." >&4 ;;
2665         esac
2666         case "$libpth" in
2667         '') echo "Libpth not defined." >&4; croak=y ;;
2668         *)  echo "Using libpth '$libpth'." >&4 ;;
2669         esac
2670         case "$usrinc" in
2671         '') for i in $incpth; do
2672                 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2673                     usrinc=$i
2674                     echo "Guessing usrinc $usrinc." >&4
2675                     break
2676                 fi
2677             done
2678             case "$usrinc" in
2679             '') echo "Usrinc not defined." >&4; croak=y ;;
2680             esac
2681             ;;
2682         *)  echo "Using usrinc $usrinc." >&4 ;;
2683         esac
2684         case "$targethost" in
2685         '') echo "Targethost not defined." >&4; croak=y ;;
2686         *)  echo "Using targethost $targethost." >&4
2687         esac
2688         locincpth=' '
2689         loclibpth=' '
2690         case "$croak" in
2691         y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2692         esac
2693         case "$src" in
2694         /*) run=$src/Cross/run
2695             targetmkdir=$src/Cross/mkdir
2696             to=$src/Cross/to
2697             from=$src/Cross/from
2698             ;;
2699         *)  pwd=`$test -f ../Configure & cd ..; pwd`
2700             run=$pwd/Cross/run
2701             targetmkdir=$pwd/Cross/mkdir
2702             to=$pwd/Cross/to
2703             from=$pwd/Cross/from
2704             ;;
2705         esac
2706         case "$targetrun" in
2707         '') targetrun=ssh ;;
2708         esac
2709         case "$targetto" in
2710         '') targetto=scp ;;
2711         esac
2712         case "$targetfrom" in
2713         '') targetfrom=scp ;;
2714         esac
2715         run=$run-$targetrun
2716         to=$to-$targetto
2717         from=$from-$targetfrom
2718         case "$targetdir" in
2719         '')  targetdir=/tmp
2720              echo "Guessing targetdir $targetdir." >&4
2721              ;;
2722         esac
2723         case "$targetuser" in
2724         '')  targetuser=root
2725              echo "Guessing targetuser $targetuser." >&4
2726              ;;
2727         esac
2728         case "$targetfrom" in
2729         scp)    q=-q ;;
2730         *)      q='' ;;
2731         esac
2732         case "$targetrun" in
2733         ssh|rsh)
2734             cat >$run <<EOF
2735 #!/bin/sh
2736 case "\$1" in
2737 -cwd)
2738   shift
2739   cwd=\$1
2740   shift
2741   ;;
2742 esac
2743 case "\$cwd" in
2744 '') cwd=$targetdir ;;
2745 esac
2746 exe=\$1
2747 shift
2748 if $test ! -f \$exe.xok; then
2749   $to \$exe
2750   $touch \$exe.xok
2751 fi
2752 $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2753 EOF
2754             ;;
2755         *)  echo "Unknown targetrun '$targetrun'" >&4
2756             exit 1
2757             ;;
2758         esac
2759         case "$targetmkdir" in
2760         */Cross/mkdir)
2761             cat >$targetmkdir <<EOF
2762 #!/bin/sh
2763 $targetrun -l $targetuser $targethost "mkdir -p \$@"
2764 EOF
2765             $chmod a+rx $targetmkdir
2766             ;;
2767         *)  echo "Unknown targetmkdir '$targetmkdir'" >&4
2768             exit 1
2769             ;;
2770         esac
2771         case "$targetto" in
2772         scp|rcp)
2773             cat >$to <<EOF
2774 #!/bin/sh
2775 for f in \$@
2776 do
2777   case "\$f" in
2778   /*)
2779     $targetmkdir \`dirname \$f\`
2780     $targetto $q \$f $targetuser@$targethost:\$f            || exit 1
2781     ;;
2782   *)
2783     $targetmkdir $targetdir/\`dirname \$f\`
2784     $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2785     ;;
2786   esac
2787 done
2788 exit 0
2789 EOF
2790             ;;
2791         cp) cat >$to <<EOF
2792 #!/bin/sh
2793 for f in \$@
2794 do
2795   case "\$f" in
2796   /*)
2797     $mkdir -p $targetdir/\`dirname \$f\`
2798     $cp \$f $targetdir/\$f || exit 1
2799     ;;
2800   *)
2801     $targetmkdir $targetdir/\`dirname \$f\`
2802     $cp \$f $targetdir/\$f || exit 1
2803     ;;
2804   esac
2805 done
2806 exit 0
2807 EOF
2808             ;;
2809         *)  echo "Unknown targetto '$targetto'" >&4
2810             exit 1
2811             ;;
2812         esac
2813         case "$targetfrom" in
2814         scp|rcp)
2815           cat >$from <<EOF
2816 #!/bin/sh
2817 for f in \$@
2818 do
2819   $rm -f \$f
2820   $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2821 done
2822 exit 0
2823 EOF
2824             ;;
2825         cp) cat >$from <<EOF
2826 #!/bin/sh
2827 for f in \$@
2828 do
2829   $rm -f \$f
2830   cp $targetdir/\$f . || exit 1
2831 done
2832 exit 0
2833 EOF
2834             ;;
2835         *)  echo "Unknown targetfrom '$targetfrom'" >&4
2836             exit 1
2837             ;;
2838         esac
2839         if $test ! -f $run; then
2840             echo "Target 'run' script '$run' not found." >&4
2841         else
2842             $chmod a+rx $run
2843         fi
2844         if $test ! -f $to; then
2845             echo "Target 'to' script '$to' not found." >&4
2846         else
2847             $chmod a+rx $to
2848         fi
2849         if $test ! -f $from; then
2850             echo "Target 'from' script '$from' not found." >&4
2851         else
2852             $chmod a+rx $from
2853         fi
2854         if $test ! -f $run -o ! -f $to -o ! -f $from; then
2855             exit 1
2856         fi
2857         cat >&4 <<EOF
2858 Using '$run' for remote execution,
2859 and '$from' and '$to'
2860 for remote file transfer.
2861 EOF
2862         ;;
2863 *)      run=''
2864         to=:
2865         from=:
2866         usecrosscompile='undef'
2867         targetarch=''
2868         ;;
2869 esac
2870
2871 : see whether [:lower:] and [:upper:] are supported character classes
2872 echo " "
2873 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2874 ABYZ)
2875         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2876         up='[:upper:]'
2877         low='[:lower:]'
2878         ;;
2879 *)      # There is a discontinuity in EBCDIC between 'I' and 'J'
2880         # (0xc9 and 0xd1), therefore that is a nice testing point.
2881         if test "X$up" = X -o "X$low" = X; then
2882             case "`echo IJ | $tr '[I-J]' '[i-j]' 2>/dev/null`" in
2883             ij) up='[A-Z]'
2884                 low='[a-z]'
2885                 ;;
2886             esac
2887         fi
2888         if test "X$up" = X -o "X$low" = X; then
2889             case "`echo IJ | $tr I-J i-j 2>/dev/null`" in
2890             ij) up='A-Z'
2891                 low='a-z'
2892                 ;;
2893             esac
2894         fi
2895         if test "X$up" = X -o "X$low" = X; then
2896             case "`echo IJ | od -x 2>/dev/null`" in
2897             *C9D1*|*c9d1*)
2898                 echo "Hey, this might be EBCDIC." >&4
2899                 if test "X$up" = X -o "X$low" = X; then
2900                     case "`echo IJ | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2901                     ij) up='[A-IJ-RS-Z]'
2902                         low='[a-ij-rs-z]'
2903                         ;;
2904                     esac
2905                 fi
2906                 if test "X$up" = X -o "X$low" = X; then
2907                     case "`echo IJ | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2908                     ij) up='A-IJ-RS-Z'
2909                         low='a-ij-rs-z'
2910                         ;;
2911                     esac
2912                 fi
2913                 ;;
2914             esac
2915         fi
2916 esac
2917 case "`echo IJ | $tr \"$up\" \"$low\" 2>/dev/null`" in
2918 ij)
2919     echo "Using $up and $low to convert case." >&4
2920     ;;
2921 *)
2922     echo "I don't know how to translate letters from upper to lower case." >&4
2923     echo "Your tr is not acting any way I know of." >&4
2924     exit 1
2925     ;;
2926 esac
2927 : set up the translation script tr, must be called with ./tr of course
2928 cat >tr <<EOSC
2929 $startsh
2930 case "\$1\$2" in
2931 '[A-Z][a-z]') exec $tr '$up' '$low';;
2932 '[a-z][A-Z]') exec $tr '$low' '$up';;
2933 esac
2934 exec $tr "\$@"
2935 EOSC
2936 chmod +x tr
2937 $eunicefix tr
2938
2939 : Try to determine whether config.sh was made on this system
2940 case "$config_sh" in
2941 '')
2942 myuname=`$uname -a 2>/dev/null`
2943 $test -z "$myuname" && myuname=`hostname 2>/dev/null`
2944 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
2945 # because the A-Z/a-z are not consecutive.
2946 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
2947         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
2948 newmyuname="$myuname"
2949 dflt=n
2950 case "$knowitall" in
2951 '')
2952         if test -f ../config.sh; then
2953                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
2954                         eval "`grep myuname= ../config.sh`"
2955                 fi
2956                 if test "X$myuname" = "X$newmyuname"; then
2957                         dflt=y
2958                 fi
2959         fi
2960         ;;
2961 *) dflt=y;;
2962 esac
2963
2964 : Get old answers from old config file if Configure was run on the
2965 : same system, otherwise use the hints.
2966 hint=default
2967 cd ..
2968 if test -f config.sh; then
2969         echo " "
2970         rp="I see a config.sh file.  Shall I use it to set the defaults?"
2971         . UU/myread
2972         case "$ans" in
2973         n*|N*) echo "OK, I'll ignore it."
2974                 mv config.sh config.sh.old
2975                 myuname="$newmyuname"
2976                 ;;
2977         *)  echo "Fetching default answers from your old config.sh file..." >&4
2978                 tmp_n="$n"
2979                 tmp_c="$c"
2980                 tmp_sh="$sh"
2981                 . ./config.sh
2982                 cp config.sh UU
2983                 n="$tmp_n"
2984                 c="$tmp_c"
2985                 : Older versions did not always set $sh.  Catch re-use of such
2986                 : an old config.sh.
2987                 case "$sh" in
2988                 '') sh="$tmp_sh" ;;
2989                 esac
2990                 hint=previous
2991                 ;;
2992         esac
2993 fi
2994 . ./UU/checkcc
2995 if test ! -f config.sh; then
2996         $cat <<EOM
2997
2998 First time through, eh?  I have some defaults handy for some systems
2999 that need some extra help getting the Configure answers right:
3000
3001 EOM
3002         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
3003         dflt=''
3004         : Half the following guesses are probably wrong... If you have better
3005         : tests or hints, please send them to perlbug@perl.org
3006         : The metaconfig authors would also appreciate a copy...
3007         $test -f /irix && osname=irix
3008         $test -f /xenix && osname=sco_xenix
3009         $test -f /dynix && osname=dynix
3010         $test -f /dnix && osname=dnix
3011         $test -f /lynx.os && osname=lynxos
3012         $test -f /unicos && osname=unicos && osvers=`$uname -r`
3013         $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
3014         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
3015         $test -f /bin/mips && /bin/mips && osname=mips
3016         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
3017                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
3018         $test -d /usr/apollo/bin && osname=apollo
3019         $test -f /etc/saf/_sactab && osname=svr4
3020         $test -d /usr/include/minix && osname=minix
3021         $test -f /system/gnu_library/bin/ar.pm && osname=vos
3022         if $test -d /MachTen -o -d /MachTen_Folder; then
3023                 osname=machten
3024                 if $test -x /sbin/version; then
3025                         osvers=`/sbin/version | $awk '{print $2}' |
3026                         $sed -e 's/[A-Za-z]$//'`
3027                 elif $test -x /usr/etc/version; then
3028                         osvers=`/usr/etc/version | $awk '{print $2}' |
3029                         $sed -e 's/[A-Za-z]$//'`
3030                 else
3031                         osvers="$2.$3"
3032                 fi
3033         fi
3034
3035         $test -f /sys/posix.dll &&
3036                 $test -f /usr/bin/what &&
3037                 set X `/usr/bin/what /sys/posix.dll` &&
3038                 $test "$3" = UWIN &&
3039                 osname=uwin &&
3040                 osvers="$5"
3041
3042         if $test -f $uname; then
3043                 set X $myuname
3044                 shift
3045
3046                 case "$5" in
3047                 fps*) osname=fps ;;
3048                 mips*)
3049                         case "$4" in
3050                         umips) osname=umips ;;
3051                         *) osname=mips ;;
3052                         esac;;
3053                 [23]100) osname=mips ;;
3054                 next*) osname=next ;;
3055                 i386*)
3056                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
3057                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
3058                                 osname='sco'
3059                                 osvers=$tmp
3060                         elif $test -f /etc/kconfig; then
3061                                 osname=isc
3062                                 if test "$lns" = "$ln -s"; then
3063                                         osvers=4
3064                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3065                                         osvers=3
3066                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3067                                         osvers=2
3068                                 fi
3069                         fi
3070                         tmp=''
3071                         ;;
3072                 pc*)
3073                         if test -n "$DJGPP"; then
3074                                 osname=dos
3075                                 osvers=djgpp
3076                         fi
3077                         ;;
3078                 esac
3079
3080                 case "$1" in
3081                 aix) osname=aix
3082                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3083                         case "$tmp" in
3084                         'not found') osvers="$4"."$3" ;;
3085                         '<3240'|'<>3240') osvers=3.2.0 ;;
3086                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3087                         '=3250'|'>3250') osvers=3.2.5 ;;
3088                         *) osvers=$tmp;;
3089                         esac
3090                         ;;
3091                 bsd386) osname=bsd386
3092                         osvers=`$uname -r`
3093                         ;;
3094                 cygwin*) osname=cygwin
3095                         osvers="$3"
3096                         ;;
3097                 *dc.osx) osname=dcosx
3098                         osvers="$3"
3099                         ;;
3100                 dnix) osname=dnix
3101                         osvers="$3"
3102                         ;;
3103                 domainos) osname=apollo
3104                         osvers="$3"
3105                         ;;
3106                 dgux) osname=dgux 
3107                         osvers="$3"
3108                         ;;
3109                 dynixptx*) osname=dynixptx
3110                         osvers=`echo "$4"|sed 's/^v//'`
3111                         ;;
3112                 freebsd) osname=freebsd 
3113                         osvers="$3" ;;
3114                 genix) osname=genix ;;
3115                 hp*) osname=hpux 
3116                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3117                         ;;
3118                 irix*) osname=irix
3119                         case "$3" in
3120                         4*) osvers=4 ;;
3121                         5*) osvers=5 ;;
3122                         *)      osvers="$3" ;;
3123                         esac
3124                         ;;
3125                 linux) osname=linux
3126                         case "$3" in
3127                         *)      osvers="$3" ;;
3128                         esac
3129                         ;;
3130                 MiNT) osname=mint
3131                         ;;
3132                 netbsd*) osname=netbsd
3133                         osvers="$3"
3134                         ;;
3135                 news-os) osvers="$3"
3136                         case "$3" in
3137                         4*) osname=newsos4 ;;
3138                         *) osname=newsos ;;
3139                         esac
3140                         ;;
3141                 next*) osname=next ;;
3142                 nonstop-ux) osname=nonstopux ;;
3143                 openbsd) osname=openbsd
3144                         osvers="$3"
3145                         ;;
3146                 os2)    osname=os2
3147                         osvers="$4"
3148                         ;;
3149                 POSIX-BC | posix-bc ) osname=posix-bc
3150                         osvers="$3"
3151                         ;;
3152                 powerux | power_ux | powermax_os | powermaxos | \
3153                 powerunix | power_unix) osname=powerux
3154                         osvers="$3"
3155                         ;;
3156                 qnx) osname=qnx
3157                         osvers="$4"
3158                         ;;
3159                 solaris) osname=solaris
3160                         case "$3" in
3161                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3162                         *)      osvers="$3" ;;
3163                         esac
3164                         ;;
3165                 sunos) osname=sunos
3166                         case "$3" in
3167                         5*) osname=solaris
3168                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3169                         *)      osvers="$3" ;;
3170                         esac
3171                         ;;
3172                 titanos) osname=titanos
3173                         case "$3" in
3174                         1*) osvers=1 ;;
3175                         2*) osvers=2 ;;
3176                         3*) osvers=3 ;;
3177                         4*) osvers=4 ;;
3178                         *)      osvers="$3" ;;
3179                         esac
3180                         ;;
3181                 ultrix) osname=ultrix
3182                         osvers="$3"
3183                         ;;
3184                 osf1|mls+)      case "$5" in
3185                                 alpha)
3186                                         osname=dec_osf
3187                                         osvers=`sizer -v | awk -FUNIX '{print $2}' | awk '{print $1}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3188                                         case "$osvers" in
3189                                         [1-9].[0-9]*) ;;
3190                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3191                                         esac
3192                                         ;;
3193                         hp*)    osname=hp_osf1  ;;
3194                         mips)   osname=mips_osf1 ;;
3195                         esac
3196                         ;;
3197                 # UnixWare 7.1.2 is known as Open UNIX 8
3198                 openunix|unixware) osname=svr5
3199                         osvers="$4"
3200                         ;;
3201                 uts)    osname=uts
3202                         osvers="$3"
3203                         ;;
3204                 vos) osvers="$3"
3205                         ;;
3206                 $2) case "$osname" in
3207                         *isc*) ;;
3208                         *freebsd*) ;;
3209                         svr*)
3210                                 : svr4.x or possibly later
3211                                 case "svr$3" in 
3212                                 ${osname}*)
3213                                         osname=svr$3
3214                                         osvers=$4
3215                                         ;;
3216                                 esac
3217                                 case "$osname" in
3218                                 svr4.0)
3219                                         : Check for ESIX
3220                                         if test -f /stand/boot ; then
3221                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3222                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3223                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3224                                                         if test -n "$isesix"; then
3225                                                                 osname=esix4
3226                                                         fi
3227                                                 fi
3228                                         fi
3229                                         ;;
3230                                 esac
3231                                 ;;
3232                         *)      if test -f /etc/systemid; then
3233                                         osname=sco
3234                                         set `echo $3 | $sed 's/\./ /g'` $4
3235                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3236                                                 osvers=$1.$2.$3
3237                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3238                                                 osvers=$1.$2
3239                                         elif $test -f $src/hints/sco_$1.sh; then
3240                                                 osvers=$1
3241                                         fi
3242                                 else
3243                                         case "$osname" in
3244                                         '') : Still unknown.  Probably a generic Sys V.
3245                                                 osname="sysv"
3246                                                 osvers="$3"
3247                                                 ;;
3248                                         esac
3249                                 fi
3250                                 ;;
3251                         esac
3252                         ;;
3253                 *)      case "$osname" in
3254                         '') : Still unknown.  Probably a generic BSD.
3255                                 osname="$1"
3256                                 osvers="$3"
3257                                 ;;
3258                         esac
3259                         ;;
3260                 esac
3261         else
3262                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3263                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3264                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3265                                 osname=news_os
3266                         fi
3267                         $rm -f UU/kernel.what
3268                 elif test -d c:/. -o -n "$is_os2" ; then
3269                         set X $myuname
3270                         osname=os2
3271                         osvers="$5"
3272                 fi
3273         fi
3274         
3275         case "$targetarch" in
3276         '') ;;
3277         *)  hostarch=$osname
3278             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3279             osvers=''
3280             ;;
3281         esac
3282
3283         : Now look for a hint file osname_osvers, unless one has been
3284         : specified already.
3285         case "$hintfile" in
3286         ''|' ')
3287                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3288                 : Also try without trailing minor version numbers.
3289                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3290                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3291                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3292                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3293                 case "$file" in
3294                 '') dflt=none ;;
3295                 *)  case "$osvers" in
3296                         '') dflt=$file
3297                                 ;;
3298                         *)  if $test -f $src/hints/$file.sh ; then
3299                                         dflt=$file
3300                                 elif $test -f $src/hints/$xfile.sh ; then
3301                                         dflt=$xfile
3302                                 elif $test -f $src/hints/$xxfile.sh ; then
3303                                         dflt=$xxfile
3304                                 elif $test -f $src/hints/$xxxfile.sh ; then
3305                                         dflt=$xxxfile
3306                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3307                                         dflt=$xxxxfile
3308                                 elif $test -f "$src/hints/${osname}.sh" ; then
3309                                         dflt="${osname}"
3310                                 else
3311                                         dflt=none
3312                                 fi
3313                                 ;;
3314                         esac
3315                         ;;
3316                 esac
3317                 if $test -f Policy.sh ; then
3318                         case "$dflt" in
3319                         *Policy*) ;;
3320                         none) dflt="Policy" ;;
3321                         *) dflt="Policy $dflt" ;;
3322                         esac
3323                 fi
3324                 ;;
3325         *)
3326                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3327                 ;;
3328         esac
3329
3330         if $test -f Policy.sh ; then
3331                 $cat <<EOM
3332
3333 There's also a Policy hint file available, which should make the
3334 site-specific (policy) questions easier to answer.
3335 EOM
3336
3337         fi
3338
3339         $cat <<EOM
3340
3341 You may give one or more space-separated answers, or "none" if appropriate.
3342 A well-behaved OS will have no hints, so answering "none" or just "Policy"
3343 is a good thing.  DO NOT give a wrong version or a wrong OS.
3344
3345 EOM
3346
3347         rp="Which of these apply, if any?"
3348         . UU/myread
3349         tans=$ans
3350         for file in $tans; do
3351                 if $test X$file = XPolicy -a -f Policy.sh; then
3352                         . Policy.sh
3353                         $cat Policy.sh >> UU/config.sh
3354                 elif $test -f $src/hints/$file.sh; then
3355                         . $src/hints/$file.sh
3356                         $cat $src/hints/$file.sh >> UU/config.sh
3357                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3358                         : nothing
3359                 else
3360                         : Give one chance to correct a possible typo.
3361                         echo "$file.sh does not exist"
3362                         dflt=$file
3363                         rp="hint to use instead?"
3364                         . UU/myread
3365                         for file in $ans; do
3366                                 if $test -f "$src/hints/$file.sh"; then
3367                                         . $src/hints/$file.sh
3368                                         $cat $src/hints/$file.sh >> UU/config.sh
3369                                 elif $test X$ans = X -o X$ans = Xnone ; then
3370                                         : nothing
3371                                 else
3372                                         echo "$file.sh does not exist -- ignored."
3373                                 fi
3374                         done
3375                 fi
3376         done
3377
3378         hint=recommended
3379         : Remember our hint file for later.
3380         if $test -f "$src/hints/$file.sh" ; then
3381                 hintfile="$file"
3382         else
3383                 hintfile=''
3384         fi
3385 fi
3386 cd UU
3387 ;;
3388 *)
3389         echo " "
3390         echo "Fetching default answers from $config_sh..." >&4
3391         tmp_n="$n"
3392         tmp_c="$c"
3393         cd ..
3394         cp $config_sh config.sh 2>/dev/null
3395         chmod +w config.sh
3396         . ./config.sh
3397         cd UU
3398         cp ../config.sh .
3399         n="$tmp_n"
3400         c="$tmp_c"
3401         hint=previous
3402         ;;
3403 esac
3404 test "$override" && . ./optdef.sh
3405
3406 : Restore computed paths
3407 for file in $loclist $trylist; do
3408         eval $file="\$_$file"
3409 done
3410
3411 cat << EOM
3412
3413 Configure uses the operating system name and version to set some defaults.
3414 The default value is probably right if the name rings a bell. Otherwise,
3415 since spelling matters for me, either accept the default or answer "none"
3416 to leave it blank.
3417
3418 EOM
3419 case "$osname" in
3420         ''|' ')
3421                 case "$hintfile" in
3422                 ''|' '|none) dflt=none ;;
3423                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3424                 esac
3425                 ;;
3426         *) dflt="$osname" ;;
3427 esac
3428 rp="Operating system name?"
3429 . ./myread
3430 case "$ans" in
3431 none)  osname='' ;;
3432 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3433 esac
3434 echo " "
3435 case "$osvers" in
3436         ''|' ')
3437                 case "$hintfile" in
3438                 ''|' '|none) dflt=none ;;
3439                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3440                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3441                         case "$dflt" in
3442                         ''|' ') dflt=none ;;
3443                         esac
3444                         ;;
3445                 esac
3446                 ;;
3447         *) dflt="$osvers" ;;
3448 esac
3449 rp="Operating system version?"
3450 . ./myread
3451 case "$ans" in
3452 none)  osvers='' ;;
3453 *) osvers="$ans" ;;
3454 esac
3455
3456
3457 . ./posthint.sh
3458
3459 : who configured the system
3460 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3461 cf_by=`(logname) 2>/dev/null`
3462 case "$cf_by" in
3463 "")
3464         cf_by=`(whoami) 2>/dev/null`
3465         case "$cf_by" in
3466         "") cf_by=unknown ;;
3467         esac ;;
3468 esac
3469
3470 : set up the script used to warn in case of inconsistency
3471 cat <<EOS >whoa
3472 $startsh
3473 EOS
3474 cat <<'EOSC' >>whoa
3475 dflt=y
3476 echo " "
3477 echo "*** WHOA THERE!!! ***" >&4
3478 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
3479 rp="    Keep the $hint value?"
3480 . ./myread
3481 case "$ans" in
3482 y) td=$was; tu=$was;;
3483 esac
3484 EOSC
3485
3486 : function used to set $1 to $val
3487 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3488 case "$val$was" in
3489 $define$undef) . ./whoa; eval "$var=\$td";;
3490 $undef$define) . ./whoa; eval "$var=\$tu";;
3491 *) eval "$var=$val";;
3492 esac'
3493
3494 case "$usesocks" in
3495 $define|true|[yY]*)     dflt='y';;
3496 *) dflt='n';;
3497 esac
3498 cat <<EOM
3499
3500 Perl can be built to use the SOCKS proxy protocol library.  To do so,
3501 Configure must be run with -Dusesocks.  If you use SOCKS you also need
3502 to use the PerlIO abstraction layer, this will be implicitly selected.
3503
3504 If this doesn't make any sense to you, just accept the default '$dflt'.
3505 EOM
3506 rp='Build Perl for SOCKS?'
3507 . ./myread
3508 case "$ans" in
3509 y|Y)    val="$define" ;;     
3510 *)      val="$undef" ;;
3511 esac
3512 set usesocks
3513 eval $setvar
3514
3515 case "$usesocks" in
3516 $define|true|[yY]*) useperlio="$define";;
3517 esac
3518
3519 case "$useperlio" in
3520 $define|true|[yY]*|'')  dflt='y';;
3521 *) dflt='n';;
3522 esac
3523 cat <<EOM
3524
3525 Previous version of $package used the standard IO mechanisms as
3526 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
3527 alternate IO mechanisms via the PerlIO abstraction layer, but the
3528 stdio mechanism is still available if needed.  The abstraction layer
3529 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
3530 Using PerlIO with sfio may cause problems with some extension modules.
3531
3532 If this doesn't make any sense to you, just accept the default '$dflt'.
3533 EOM
3534 rp='Use the PerlIO abstraction layer?'
3535 . ./myread
3536 case "$ans" in
3537 y|Y) 
3538         val="$define"
3539         ;;
3540 *)      
3541         echo "Ok, doing things the stdio way."
3542         val="$undef"
3543         ;;
3544 esac
3545 set useperlio
3546 eval $setvar 
3547
3548 case "$usesocks" in
3549 $define|true|[yY]*)
3550         case "$useperlio" in
3551         $define|true|[yY]*) ;;
3552         *)      cat >&4 <<EOM
3553
3554 You are using the SOCKS proxy protocol library which means that you
3555 should also use the PerlIO layer.  You may be headed for trouble.
3556
3557 EOM
3558                 ;;
3559         esac
3560         ;;
3561 esac
3562
3563         
3564 case "$usethreads" in
3565 $define|true|[yY]*)     dflt='y';;
3566 *)     # Catch case where user specified ithreads or 5005threads but
3567        # forgot -Dusethreads (A.D. 4/2002)
3568        case "$useithreads$use5005threads" in
3569        *$define*)      
3570                 case "$useperlio" in
3571                 "$define")      dflt='y' ;;
3572                 *)              dflt='n' ;;
3573                 esac
3574                 ;;
3575        *)       dflt='n';;
3576        esac
3577        ;;
3578 esac
3579 cat <<EOM
3580
3581 Perl can be built to take advantage of threads on some systems.
3582 To do so, Configure can be run with -Dusethreads.
3583
3584 Note that Perl built with threading support runs slightly slower
3585 and uses more memory than plain Perl. The current implementation
3586 is believed to be stable, but it is fairly new, and so should be
3587 treated with caution.
3588
3589 If this doesn't make any sense to you, just accept the default '$dflt'.
3590 EOM
3591 rp='Build a threading Perl?'
3592 . ./myread
3593 case "$ans" in
3594 y|Y)    val="$define" ;;
3595 *)      val="$undef" ;;
3596 esac
3597 set usethreads
3598 eval $setvar
3599
3600 case "$usethreads" in
3601 $define)
3602         $cat <<EOM
3603
3604 Since release 5.6, Perl has had two different threading implementations,
3605 the newer interpreter-based version (ithreads) with one interpreter per
3606 thread, and the older 5.005 version (5005threads).
3607 The 5005threads version is effectively unmaintained and will probably be
3608 removed in Perl 5.10, so there should be no need to build a Perl using it
3609 unless needed for backwards compatibility with some existing 5.005threads
3610 code.
3611
3612 EOM
3613         : Default to ithreads unless overridden on command line or with
3614         : old config.sh
3615         dflt='y'
3616         case "$use5005threads" in
3617                 $define|true|[yY]*) dflt='n';;
3618         esac
3619         case "$useithreads" in
3620                 $undef|false|[nN]*) dflt='n';;
3621         esac
3622         rp='Use the newer interpreter-based ithreads?'
3623         . ./myread
3624         case "$ans" in
3625         y|Y)    val="$define" ;;
3626         *)      val="$undef" ;;
3627         esac
3628         set useithreads
3629         eval $setvar
3630         : Now set use5005threads to the opposite value.
3631         case "$useithreads" in
3632         $define) val="$undef" ;;
3633         *) val="$define" ;;
3634         esac
3635         set use5005threads
3636         eval $setvar
3637         ;;
3638 *)
3639         useithreads="$undef"
3640         use5005threads="$undef"
3641         ;;
3642 esac
3643
3644 case "$useithreads$use5005threads" in
3645 "$define$define")
3646         $cat >&4 <<EOM
3647
3648 You cannot have both the ithreads and the 5.005 threads enabled
3649 at the same time.  Disabling the 5.005 threads since they are
3650 much less stable than the ithreads.
3651
3652 EOM
3653         use5005threads="$undef"
3654         ;;
3655 esac
3656
3657 if test X"$usethreads" = "X$define" -a "X$useperlio" = "Xundef"; then
3658         cat >&4 <<EOF
3659 ***
3660 *** To build with ithreads you must also use the PerlIO layer.
3661 *** Cannot continue, aborting.
3662 ***
3663 EOF
3664         exit 1
3665 fi
3666
3667 case "$d_oldpthreads" in
3668 '')     : Configure tests would be welcome here.  For now, assume undef.
3669         val="$undef" ;;
3670 *)      val="$d_oldpthreads" ;;
3671 esac
3672 set d_oldpthreads
3673 eval $setvar
3674
3675
3676 case "$usethreads" in
3677 "$define"|true|[yY]*)
3678 : Look for a hint-file generated 'call-back-unit'.  If the
3679 : user has specified that a threading perl is to be built,
3680 : we may need to set or change some other defaults.
3681         if $test -f usethreads.cbu; then
3682                 echo "Your platform has some specific hints for threaded builds, using them..."
3683                 . ./usethreads.cbu
3684         else
3685                 $cat <<EOM
3686 (Your platform doesn't have any specific hints for threaded builds.
3687  Assuming POSIX threads, then.)
3688 EOM
3689         fi
3690         ;;
3691 esac
3692
3693 cat <<EOM
3694
3695 Perl can be built so that multiple Perl interpreters can coexist
3696 within the same Perl executable.
3697 EOM
3698
3699 case "$useithreads" in
3700 $define)
3701         cat <<EOM
3702 This multiple interpreter support is required for interpreter-based threads.
3703 EOM
3704         val="$define"
3705         ;;
3706 *)      case "$usemultiplicity" in
3707         $define|true|[yY]*)     dflt='y';;
3708         *) dflt='n';;
3709         esac
3710         echo " "
3711         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
3712         rp='Build Perl for multiplicity?'
3713         . ./myread
3714         case "$ans" in
3715         y|Y)    val="$define" ;;
3716         *)      val="$undef" ;;
3717         esac
3718         ;;
3719 esac
3720 set usemultiplicity
3721 eval $setvar
3722
3723
3724 case "$usemorebits" in
3725 "$define"|true|[yY]*)
3726         use64bitint="$define"
3727         uselongdouble="$define"
3728         usemorebits="$define"
3729         ;;
3730 *)      usemorebits="$undef"
3731         ;;
3732 esac
3733
3734 : make some quick guesses about what we are up against
3735 echo " "
3736 $echo $n "Hmm...  $c"
3737 echo exit 1 >bsd
3738 echo exit 1 >usg
3739 echo exit 1 >v7
3740 echo exit 1 >osf1
3741 echo exit 1 >eunice
3742 echo exit 1 >xenix
3743 echo exit 1 >venix
3744 echo exit 1 >os2
3745 d_bsd="$undef"
3746 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3747 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3748 then
3749         echo "Looks kind of like an OSF/1 system, but we'll see..."
3750         echo exit 0 >osf1
3751 elif test `echo abc | $tr a-z A-Z` = Abc ; then
3752         xxx=`./loc addbib blurfl $pth`
3753         if $test -f $xxx; then
3754         echo "Looks kind of like a USG system with BSD features, but we'll see..."
3755                 echo exit 0 >bsd
3756                 echo exit 0 >usg
3757         else
3758                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3759                         echo "Looks kind of like an extended USG system, but we'll see..."
3760                 else
3761                         echo "Looks kind of like a USG system, but we'll see..."
3762                 fi
3763                 echo exit 0 >usg
3764         fi
3765 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3766         echo "Looks kind of like a BSD system, but we'll see..."
3767         d_bsd="$define"
3768         echo exit 0 >bsd
3769 else
3770         echo "Looks kind of like a Version 7 system, but we'll see..."
3771         echo exit 0 >v7
3772 fi
3773 case "$eunicefix" in
3774 *unixtovms*)
3775         $cat <<'EOI'
3776 There is, however, a strange, musty smell in the air that reminds me of
3777 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3778 EOI
3779         echo exit 0 >eunice
3780         d_eunice="$define"
3781 : it so happens the Eunice I know will not run shell scripts in Unix format
3782         ;;
3783 *)
3784         echo " "
3785         echo "Congratulations.  You aren't running Eunice."
3786         d_eunice="$undef"
3787         ;;
3788 esac
3789 : Detect OS2.  The p_ variable is set above in the Head.U unit.
3790 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
3791 : semicolon as a patch separator
3792 case "$p_" in
3793 :) ;;
3794 *)
3795         $cat <<'EOI'
3796 I have the feeling something is not exactly right, however...don't tell me...
3797 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3798 (Or you may be running DOS with DJGPP.)
3799 EOI
3800         echo exit 0 >os2
3801         ;;
3802 esac
3803 if test -f /xenix; then
3804         echo "Actually, this looks more like a XENIX system..."
3805         echo exit 0 >xenix
3806         d_xenix="$define"
3807 else
3808         echo " "
3809         echo "It's not Xenix..."
3810         d_xenix="$undef"
3811 fi
3812 chmod +x xenix
3813 $eunicefix xenix
3814 if test -f /venix; then
3815         echo "Actually, this looks more like a VENIX system..."
3816         echo exit 0 >venix
3817 else
3818         echo " "
3819         if ./xenix; then
3820                 : null
3821         else
3822                 echo "Nor is it Venix..."
3823         fi
3824 fi
3825 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3826 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3827 $rm -f foo
3828
3829 case "$cc" in
3830 '') dflt=cc;;
3831 *) dflt="$cc";;
3832 esac
3833 rp="Use which C compiler?"
3834 . ./myread
3835 cc="$ans"
3836
3837 : See if they have not cc but they do have gcc
3838 . ./trygcc
3839 : Look for a hint-file generated 'call-back-unit'.  Now that the
3840 : user has specified the compiler, we may need to set or change some
3841 : other defaults.
3842 if $test -f cc.cbu; then
3843     . ./cc.cbu
3844 fi
3845 . ./checkcc
3846
3847 echo " "
3848 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3849 $cat >try.c <<EOM
3850 #include <stdio.h>
3851 int main() {
3852 #ifdef __GNUC__
3853 #ifdef __VERSION__
3854         printf("%s\n", __VERSION__);
3855 #else
3856         printf("%s\n", "1");
3857 #endif
3858 #endif
3859         return(0);
3860 }
3861 EOM
3862 if $cc -o try $ccflags $ldflags try.c; then
3863         gccversion=`$run ./try`
3864         case "$gccversion" in
3865         '') echo "You are not using GNU cc." ;;
3866         *)  echo "You are using GNU cc $gccversion."
3867             ccname=gcc
3868             ;;
3869         esac
3870 else
3871         echo " "
3872         echo "*** WHOA THERE!!! ***" >&4
3873         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3874         case "$knowitall" in
3875         '')
3876         echo "    You'd better start hunting for one and let me know about it." >&4
3877                 exit 1
3878                 ;;
3879         esac
3880 fi
3881 $rm -f try try.*
3882 case "$gccversion" in
3883 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3884 esac
3885 case "$gccversion" in
3886 '') gccosandvers='' ;;
3887 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
3888    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
3889    gccshortvers=''
3890    case "$gccosandvers" in
3891    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
3892    $osname$osvers) ;; # looking good
3893    $osname*) cat <<EOM >&4
3894
3895 *** WHOA THERE!!! ***
3896
3897     Your gcc has not been compiled for the exact release of
3898     your operating system ($gccosandvers versus $osname$osvers).
3899
3900     In general it is a good idea to keep gcc synchronized with
3901     the operating system because otherwise serious problems
3902     may ensue when trying to compile software, like Perl.
3903
3904     I'm trying to be optimistic here, though, and will continue.
3905     If later during the configuration and build icky compilation
3906     problems appear (headerfile conflicts being the most common
3907     manifestation), I suggest reinstalling the gcc to match
3908     your operating system release.
3909
3910 EOM
3911       ;;
3912    *) gccosandvers='' ;; # failed to parse, better be silent
3913    esac
3914    ;;
3915 esac
3916 case "$ccname" in
3917 '') ccname="$cc" ;;
3918 esac
3919
3920 # gcc 3.* complain about adding -Idirectories that they already know about,
3921 # so we will take those off from locincpth.
3922 case "$gccversion" in
3923 3*)
3924     echo "main(){}">try.c
3925     for incdir in $locincpth; do
3926        warn=`$cc $ccflags -I$incdir -c try.c 2>&1 | \
3927              grep '^c[cp]p*[01]: warning: changing search order '`
3928        if test "X$warn" != X; then
3929            locincpth=`echo " $locincpth " | sed "s! $incdir ! !"`
3930        fi
3931     done
3932     $rm -f try try.*
3933 esac
3934
3935 : decide how portable to be.  Allow command line overrides.
3936 case "$d_portable" in
3937 "$undef") ;;
3938 *)      d_portable="$define" ;;
3939 esac
3940
3941 : set up shell script to do ~ expansion
3942 cat >filexp <<EOSS
3943 $startsh
3944 : expand filename
3945 case "\$1" in
3946  ~/*|~)
3947         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3948         ;;
3949  ~*)
3950         if $test -f /bin/csh; then
3951                 /bin/csh -f -c "glob \$1"
3952                 failed=\$?
3953                 echo ""
3954                 exit \$failed
3955         else
3956                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3957                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3958                 if $test ! -d "\$dir"; then
3959                         me=\`basename \$0\`
3960                         echo "\$me: can't locate home directory for: \$name" >&2
3961                         exit 1
3962                 fi
3963                 case "\$1" in
3964                 */*)
3965                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3966                         ;;
3967                 *)
3968                         echo \$dir
3969                         ;;
3970                 esac
3971         fi
3972         ;;
3973 *)
3974         echo \$1
3975         ;;
3976 esac
3977 EOSS
3978 chmod +x filexp
3979 $eunicefix filexp
3980
3981 : now set up to get a file name
3982 cat <<EOS >getfile
3983 $startsh
3984 EOS
3985 cat <<'EOSC' >>getfile
3986 tilde=''
3987 fullpath=''
3988 already=''
3989 skip=''
3990 none_ok=''
3991 exp_file=''
3992 nopath_ok=''
3993 orig_rp="$rp"
3994 orig_dflt="$dflt"
3995 case "$gfpth" in
3996 '') gfpth='.' ;;
3997 esac
3998
3999 case "$fn" in
4000 *\(*)
4001         : getfile will accept an answer from the comma-separated list
4002         : enclosed in parentheses even if it does not meet other criteria.
4003         expr "$fn" : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
4004         fn=`echo $fn | sed 's/(.*)//'`
4005         ;;
4006 esac
4007
4008 case "$fn" in
4009 *:*)
4010         loc_file=`expr $fn : '.*:\(.*\)'`
4011         fn=`expr $fn : '\(.*\):.*'`
4012         ;;
4013 esac
4014
4015 case "$fn" in
4016 *~*) tilde=true;;
4017 esac
4018 case "$fn" in
4019 */*) fullpath=true;;
4020 esac
4021 case "$fn" in
4022 *+*) skip=true;;
4023 esac
4024 case "$fn" in
4025 *n*) none_ok=true;;
4026 esac
4027 case "$fn" in
4028 *e*) exp_file=true;;
4029 esac
4030 case "$fn" in
4031 *p*) nopath_ok=true;;
4032 esac
4033
4034 case "$fn" in
4035 *f*) type='File';;
4036 *d*) type='Directory';;
4037 *l*) type='Locate';;
4038 esac
4039
4040 what="$type"
4041 case "$what" in
4042 Locate) what='File';;
4043 esac
4044
4045 case "$exp_file" in
4046 '')
4047         case "$d_portable" in
4048         "$define") ;;
4049         *) exp_file=true;;
4050         esac
4051         ;;
4052 esac
4053
4054 cd ..
4055 while test "$type"; do
4056         redo=''
4057         rp="$orig_rp"
4058         dflt="$orig_dflt"
4059         case "$tilde" in
4060         true) rp="$rp (~name ok)";;
4061         esac
4062         . UU/myread
4063         if test -f UU/getfile.ok && \
4064                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
4065         then
4066                 value="$ans"
4067                 ansexp="$ans"
4068                 break
4069         fi
4070         case "$ans" in
4071         none)
4072                 value=''
4073                 ansexp=''
4074                 case "$none_ok" in
4075                 true) type='';;
4076                 esac
4077                 ;;
4078         *)
4079                 case "$tilde" in
4080                 '') value="$ans"
4081                         ansexp="$ans";;
4082                 *)
4083                         value=`UU/filexp $ans`
4084                         case $? in
4085                         0)
4086                                 if test "$ans" != "$value"; then
4087                                         echo "(That expands to $value on this system.)"
4088                                 fi
4089                                 ;;
4090                         *) value="$ans";;
4091                         esac
4092                         ansexp="$value"
4093                         case "$exp_file" in
4094                         '') value="$ans";;
4095                         esac
4096                         ;;
4097                 esac
4098                 case "$fullpath" in
4099                 true)
4100                         case "$ansexp" in
4101                         /*) value="$ansexp" ;;
4102                         [a-zA-Z]:/*) value="$ansexp" ;;
4103                         *)
4104                                 redo=true
4105                                 case "$already" in
4106                                 true)
4107                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
4108                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
4109                                         ;;
4110                                 *)
4111                                 echo "Please give a full path name, starting with slash." >&4
4112                                         case "$tilde" in
4113                                         true)
4114                                 echo "Note that using ~name is ok provided it expands well." >&4
4115                                                 already=true
4116                                                 ;;
4117                                         esac
4118                                 esac
4119                                 ;;
4120                         esac
4121                         ;;
4122                 esac
4123                 case "$redo" in
4124                 '')
4125                         case "$type" in
4126                         File)
4127                                 for fp in $gfpth; do
4128                                         if test "X$fp" = X.; then
4129                                             pf="$ansexp"
4130                                         else    
4131                                             pf="$fp/$ansexp"
4132                                         fi
4133                                         if test -f "$pf"; then
4134                                                 type=''
4135                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
4136                                         then
4137                                                 echo "($value is not a plain file, but that's ok.)"
4138                                                 type=''
4139                                         fi
4140                                         if test X"$type" = X; then
4141                                             value="$pf"
4142                                             break
4143                                         fi
4144                                 done
4145                                 ;;
4146                         Directory)
4147                                 for fp in $gfpth; do
4148                                         if test "X$fp" = X.; then
4149                                             dir="$ans"
4150                                             direxp="$ansexp"
4151                                         else    
4152                                             dir="$fp/$ansexp"
4153                                             direxp="$fp/$ansexp"
4154                                         fi
4155                                         if test -d "$direxp"; then
4156                                                 type=''
4157                                                 value="$dir"
4158                                                 break
4159                                         fi
4160                                 done
4161                                 ;;
4162                         Locate)
4163                                 if test -d "$ansexp"; then
4164                                         echo "(Looking for $loc_file in directory $value.)"
4165                                         value="$value/$loc_file"
4166                                         ansexp="$ansexp/$loc_file"
4167                                 fi
4168                                 if test -f "$ansexp"; then
4169                                         type=''
4170                                 fi
4171                                 case "$nopath_ok" in
4172                                 true)   case "$value" in
4173                                         */*) ;;
4174                                         *)      echo "Assuming $value will be in people's path."
4175                                                 type=''
4176                                                 ;;
4177                                         esac
4178                                         ;;
4179                                 esac
4180                                 ;;
4181                         esac
4182
4183                         case "$skip" in
4184                         true) type='';
4185                         esac
4186
4187                         case "$type" in
4188                         '') ;;
4189                         *)
4190                                 if test "$fastread" = yes; then
4191                                         dflt=y
4192                                 else
4193                                         dflt=n
4194                                 fi
4195                                 rp="$what $value doesn't exist.  Use that name anyway?"
4196                                 . UU/myread
4197                                 dflt=''
4198                                 case "$ans" in
4199                                 y*) type='';;
4200                                 *) echo " ";;
4201                                 esac
4202                                 ;;
4203                         esac
4204                         ;;
4205                 esac
4206                 ;;
4207         esac
4208 done
4209 cd UU
4210 ans="$value"
4211 rp="$orig_rp"
4212 dflt="$orig_dflt"
4213 rm -f getfile.ok
4214 test "X$gfpthkeep" != Xy && gfpth=""
4215 EOSC
4216
4217 : What should the include directory be ?
4218 echo " "
4219 $echo $n "Hmm...  $c"
4220 dflt='/usr/include'
4221 incpath=''
4222 mips_type=''
4223 if $test -f /bin/mips && /bin/mips; then
4224         echo "Looks like a MIPS system..."
4225         $cat >usr.c <<'EOCP'
4226 #ifdef SYSTYPE_BSD43
4227 /bsd43
4228 #endif
4229 EOCP
4230         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4231                 dflt='/bsd43/usr/include'
4232                 incpath='/bsd43'
4233                 mips_type='BSD 4.3'
4234         else
4235                 mips_type='System V'
4236         fi
4237         $rm -f usr.c usr.out
4238         echo "and you're compiling with the $mips_type compiler and libraries."
4239         xxx_prompt=y
4240         echo "exit 0" >mips
4241 else
4242         echo "Doesn't look like a MIPS system."
4243         xxx_prompt=n
4244         echo "exit 1" >mips
4245 fi
4246 chmod +x mips
4247 $eunicefix mips
4248 case "$usrinc" in
4249 '') ;;
4250 *) dflt="$usrinc";;
4251 esac
4252 case "$xxx_prompt" in
4253 y)      fn=d/
4254         echo " "
4255         rp='Where are the include files you want to use?'
4256         . ./getfile
4257         usrinc="$ans"
4258         ;;
4259 *)      usrinc="$dflt"
4260         ;;
4261 esac
4262
4263 : see how we invoke the C preprocessor
4264 echo " "
4265 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4266 cat <<'EOT' >testcpp.c
4267 #define ABC abc
4268 #define XYZ xyz
4269 ABC.XYZ
4270 EOT
4271 cd ..
4272 if test ! -f cppstdin; then
4273         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4274                 # AIX cc -E doesn't show the absolute headerfile
4275                 # locations but we'll cheat by using the -M flag.
4276                 echo 'cat >.$$.c; rm -f .$$.u; '"$cc"' ${1+"$@"} -M -c .$$.c 2>/dev/null; test -s .$$.u && awk '"'"'$2 ~ /\.h$/ { print "# 0 \""$2"\"" }'"'"' .$$.u; rm -f .$$.o .$$.u; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' > cppstdin
4277         else
4278                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4279         fi
4280 else
4281         echo "Keeping your $hint cppstdin wrapper."
4282 fi
4283 chmod 755 cppstdin
4284 wrapper=`pwd`/cppstdin
4285 ok='false'
4286 cd UU
4287
4288 if $test "X$cppstdin" != "X" && \
4289         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4290         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4291 then
4292         echo "You used to use $cppstdin $cppminus so we'll use that again."
4293         case "$cpprun" in
4294         '') echo "But let's see if we can live without a wrapper..." ;;
4295         *)
4296                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4297                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4298                 then
4299                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4300                         ok='true'
4301                 else
4302                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4303                 fi
4304                 ;;
4305         esac
4306 else
4307         case "$cppstdin" in
4308         '') ;;
4309         *)
4310                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4311                 ;;
4312         esac
4313 fi
4314
4315 if $ok; then
4316         : nothing
4317 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4318         $cc -E <testcpp.c >testcpp.out 2>&1; \
4319         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4320         echo "Yup, it does."
4321         x_cpp="$cc -E"
4322         x_minus='';
4323 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4324         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4325         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4326         echo "Yup, it does."
4327         x_cpp="$cc -E"
4328         x_minus='-';
4329 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4330         $cc -P <testcpp.c >testcpp.out 2>&1; \
4331         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4332         echo "Yipee, that works!"
4333         x_cpp="$cc -P"
4334         x_minus='';
4335 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4336         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4337         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4338         echo "At long last!"
4339         x_cpp="$cc -P"
4340         x_minus='-';
4341 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4342         $cpp <testcpp.c >testcpp.out 2>&1; \
4343         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4344         echo "It works!"
4345         x_cpp="$cpp"
4346         x_minus='';
4347 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4348         $cpp - <testcpp.c >testcpp.out 2>&1; \
4349         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4350         echo "Hooray, it works!  I was beginning to wonder."
4351         x_cpp="$cpp"
4352         x_minus='-';
4353 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4354         $wrapper <testcpp.c >testcpp.out 2>&1; \
4355         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4356         x_cpp="$wrapper"
4357         x_minus=''
4358         echo "Eureka!"
4359 else
4360         dflt=''
4361         rp="No dice.  I can't find a C preprocessor.  Name one:"
4362         . ./myread
4363         x_cpp="$ans"
4364         x_minus=''
4365         $x_cpp <testcpp.c >testcpp.out 2>&1
4366         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4367                 echo "OK, that will do." >&4
4368         else
4369 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4370                 exit 1
4371         fi
4372 fi
4373
4374 case "$ok" in
4375 false)
4376         cppstdin="$x_cpp"
4377         cppminus="$x_minus"
4378         cpprun="$x_cpp"
4379         cpplast="$x_minus"
4380         set X $x_cpp
4381         shift
4382         case "$1" in
4383         "$cpp")
4384                 echo "Perhaps can we force $cc -E using a wrapper..."
4385                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4386                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4387                 then
4388                         echo "Yup, we can."
4389                         cppstdin="$wrapper"
4390                         cppminus='';
4391                 else
4392                         echo "Nope, we'll have to live without it..."
4393                 fi
4394                 ;;
4395         esac
4396         case "$cpprun" in
4397         "$wrapper")
4398                 cpprun=''
4399                 cpplast=''
4400                 ;;
4401         esac
4402         ;;
4403 esac
4404
4405 case "$cppstdin" in
4406 "$wrapper"|'cppstdin') ;;
4407 *) $rm -f $wrapper;;
4408 esac
4409 $rm -f testcpp.c testcpp.out
4410
4411 : Set private lib path
4412 case "$plibpth" in
4413 '') if ./mips; then
4414                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4415         fi;;
4416 esac
4417 case "$libpth" in
4418 ' ') dlist='';;
4419 '') dlist="$loclibpth $plibpth $glibpth";;
4420 *) dlist="$libpth";;
4421 esac
4422
4423 : Now check and see which directories actually exist, avoiding duplicates
4424 libpth=''
4425 for xxx in $dlist
4426 do
4427     if $test -d $xxx; then
4428                 case " $libpth " in
4429                 *" $xxx "*) ;;
4430                 *) libpth="$libpth $xxx";;
4431                 esac
4432     fi
4433 done
4434 $cat <<'EOM'
4435
4436 Some systems have incompatible or broken versions of libraries.  Among
4437 the directories listed in the question below, please remove any you
4438 know not to be holding relevant libraries, and add any that are needed.
4439 Say "none" for none.
4440
4441 EOM
4442 case "$libpth" in
4443 '') dflt='none';;
4444 *)
4445         set X $libpth
4446         shift
4447         dflt=${1+"$@"}
4448         ;;
4449 esac
4450 rp="Directories to use for library searches?"
4451 . ./myread
4452 case "$ans" in
4453 none) libpth=' ';;
4454 *) libpth="$ans";;
4455 esac
4456
4457 : compute shared library extension
4458 case "$so" in
4459 '')
4460         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4461                 dflt='sl'
4462         else
4463                 dflt='so'
4464         fi
4465         ;;
4466 *) dflt="$so";;
4467 esac
4468 $cat <<EOM
4469
4470 On some systems, shared libraries may be available.  Answer 'none' if
4471 you want to suppress searching of shared libraries for the remainder
4472 of this configuration.
4473
4474 EOM
4475 rp='What is the file extension used for shared libraries?'
4476 . ./myread
4477 so="$ans"
4478
4479 : Define several unixisms.
4480 : Hints files or command line option can be used to override them.
4481 : The convoluted testing is in case hints files set either the old
4482 : or the new name.
4483 case "$_exe" in
4484 '')     case "$exe_ext" in
4485         '')     ;;
4486         *)      _exe="$exe_ext" ;;
4487         esac
4488         ;;
4489 esac
4490 case "$_a" in
4491 '')     case "$lib_ext" in
4492     '') _a='.a';;
4493         *)      _a="$lib_ext" ;;
4494         esac
4495         ;;
4496 esac
4497 case "$_o" in
4498 '') case "$obj_ext" in
4499         '')     _o='.o';;
4500         *)      _o="$obj_ext";;
4501         esac
4502         ;;
4503 esac
4504 case "$p_" in
4505 '') case "$path_sep" in
4506         '')     p_=':';;
4507         *)      p_="$path_sep";;
4508         esac
4509         ;;
4510 esac
4511 exe_ext=$_exe
4512 lib_ext=$_a
4513 obj_ext=$_o
4514 path_sep=$p_
4515
4516 : Which makefile gets called first.  This is used by make depend.
4517 case "$firstmakefile" in
4518 '') firstmakefile='makefile';;
4519 esac
4520
4521 case "$ccflags" in
4522 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
4523 esac
4524
4525 case "$uselongdouble" in
4526 $define|true|[yY]*)     dflt='y';;
4527 *) dflt='n';;
4528 esac
4529 cat <<EOM
4530
4531 Perl can be built to take advantage of long doubles which
4532 (if available) may give more accuracy and range for floating point numbers.
4533
4534 If this doesn't make any sense to you, just accept the default '$dflt'.
4535 EOM
4536 rp='Try to use long doubles if available?'
4537 . ./myread
4538 case "$ans" in
4539 y|Y)    val="$define"   ;;
4540 *)      val="$undef"    ;;
4541 esac
4542 set uselongdouble
4543 eval $setvar
4544
4545 case "$uselongdouble" in
4546 true|[yY]*) uselongdouble="$define" ;;
4547 esac
4548
4549 case "$uselongdouble" in
4550 $define)
4551 : Look for a hint-file generated 'call-back-unit'.  If the
4552 : user has specified that long doubles should be used,
4553 : we may need to set or change some other defaults.
4554         if $test -f uselongdouble.cbu; then
4555                 echo "Your platform has some specific hints for long doubles, using them..."
4556                 . ./uselongdouble.cbu
4557         else
4558                 $cat <<EOM
4559 (Your platform doesn't have any specific hints for long doubles.)
4560 EOM
4561         fi
4562         ;;
4563 esac
4564
4565 : Looking for optional libraries
4566 echo " "
4567 echo "Checking for optional libraries..." >&4
4568 case "$libs" in
4569 ' '|'') dflt='';;
4570 *) dflt="$libs";;
4571 esac
4572 case "$libswanted" in
4573 '') libswanted='c_s';;
4574 esac
4575 case "$usesocks" in
4576 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4577 esac
4578 libsfound=''
4579 libsfiles=''
4580 libsdirs=''
4581 libspath=''
4582 for thisdir in $libpth $xlibpth; do
4583   test -d $thisdir && libspath="$libspath $thisdir"
4584 done
4585 for thislib in $libswanted; do
4586         for thisdir in $libspath; do
4587             xxx=''
4588             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4589                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4590                 $test -f "$xxx" && eval $libscheck
4591                 $test -f "$xxx" && libstyle=shared
4592             fi
4593             if test ! -f "$xxx"; then
4594                 xxx=$thisdir/lib$thislib.$so
4595                 $test -f "$xxx" && eval $libscheck
4596                 $test -f "$xxx" && libstyle=shared
4597             fi  
4598             if test ! -f "$xxx"; then
4599                 xxx=$thisdir/lib$thislib$_a
4600                 $test -f "$xxx" && eval $libscheck
4601                 $test -f "$xxx" && libstyle=static
4602             fi
4603             if test ! -f "$xxx"; then
4604                 xxx=$thisdir/$thislib$_a
4605                 $test -f "$xxx" && eval $libscheck
4606                 $test -f "$xxx" && libstyle=static
4607             fi
4608             if test ! -f "$xxx"; then
4609                 xxx=$thisdir/lib${thislib}_s$_a
4610                 $test -f "$xxx" && eval $libscheck
4611                 $test -f "$xxx" && libstyle=static
4612                 $test -f "$xxx" && thislib=${thislib}_s
4613             fi
4614             if test ! -f "$xxx"; then
4615                 xxx=$thisdir/Slib$thislib$_a
4616                 $test -f "$xxx" && eval $libscheck
4617                 $test -f "$xxx" && libstyle=static
4618             fi
4619             if $test -f "$xxx"; then
4620                 case "$libstyle" in
4621                 shared) echo "Found -l$thislib (shared)." ;;
4622                 static) echo "Found -l$thislib." ;;
4623                 *)      echo "Found -l$thislib ($libstyle)." ;;
4624                 esac
4625                 case " $dflt " in
4626                 *"-l$thislib "*);;
4627                 *) dflt="$dflt -l$thislib"
4628                    libsfound="$libsfound $xxx"
4629                    yyy=`basename $xxx`
4630                    libsfiles="$libsfiles $yyy"
4631                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4632                    case " $libsdirs " in
4633                    *" $yyy "*) ;;
4634                    *) libsdirs="$libsdirs $yyy" ;;
4635                    esac
4636                    ;;
4637                 esac
4638                 break
4639             fi  
4640         done
4641         if $test ! -f "$xxx"; then
4642             echo "No -l$thislib."
4643         fi
4644 done
4645 set X $dflt
4646 shift
4647 dflt="$*"
4648 case "$libs" in
4649 '') dflt="$dflt";;
4650 *) dflt="$libs";;
4651 esac
4652 case "$dflt" in
4653 ' '|'') dflt='none';;
4654 esac
4655
4656 $cat <<EOM
4657
4658 In order to compile $package on your machine, a number of libraries
4659 are usually needed.  Include any other special libraries here as well.
4660 Say "none" for none.  The default list is almost always right.
4661 EOM
4662
4663 echo " "
4664 rp="What libraries to use?"
4665 . ./myread
4666 case "$ans" in
4667 none) libs=' ';;
4668 *) libs="$ans";;
4669 esac
4670
4671 : determine optimization, if desired, or use for debug flag also
4672 case "$optimize" in
4673 ' '|$undef) dflt='none';;
4674 '') dflt='-O';;
4675 *) dflt="$optimize";;
4676 esac
4677 $cat <<EOH
4678
4679 By default, $package compiles with the -O flag to use the optimizer.
4680 Alternately, you might want to use the symbolic debugger, which uses
4681 the -g flag (on traditional Unix systems).  Either flag can be
4682 specified here.  To use neither flag, specify the word "none".
4683
4684 EOH
4685 rp="What optimizer/debugger flag should be used?"
4686 . ./myread
4687 optimize="$ans"
4688 case "$optimize" in
4689 'none') optimize=" ";;
4690 esac
4691
4692 dflt=''
4693 : We will not override a previous value, but we might want to
4694 : augment a hint file
4695 case "$hint" in
4696 default|recommended)
4697         case "$gccversion" in
4698         1*) dflt='-fpcc-struct-return' ;;
4699         esac
4700         case "$optimize" in
4701         *-g*) dflt="$dflt -DDEBUGGING";;
4702         esac
4703         case "$gccversion" in
4704         2*) if test -d /etc/conf/kconfig.d &&
4705                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
4706                 then
4707                         dflt="$dflt -posix"
4708                 fi
4709                 ;;
4710         esac
4711         case "$gccversion" in
4712         1*) ;;
4713         2.[0-8]*) ;;
4714         ?*)     echo " "
4715                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
4716                 echo 'int main(void) { return 0; }' > gcctest.c
4717                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
4718                         echo "Yes, it does." 2>&1
4719                         case "$ccflags" in
4720                         *strict-aliasing*) 
4721                                 echo "Leaving current flags $ccflags alone." 2>&1
4722                                 ;;
4723                         *) dflt="$dflt -fno-strict-aliasing" ;;
4724                         esac
4725                 else
4726                         echo "Nope, it doesn't, but that's ok." 2>&1
4727                 fi
4728                 ;;
4729         esac
4730         ;;
4731 esac
4732
4733 case "$mips_type" in
4734 *BSD*|'') inclwanted="$locincpth $usrinc";;
4735 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
4736 esac
4737 for thisincl in $inclwanted; do
4738         if $test -d $thisincl; then
4739                 if $test x$thisincl != x$usrinc; then
4740                         case "$dflt" in
4741                         *" -I$thisincl "*);;
4742                         *) dflt="$dflt -I$thisincl ";;
4743                         esac
4744                 fi
4745         fi
4746 done
4747
4748 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
4749         xxx=true;
4750 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
4751         xxx=true;
4752 else
4753         xxx=false;
4754 fi;
4755 if $xxx; then
4756         case "$dflt" in
4757         *$2*);;
4758         *) dflt="$dflt -D$2";;
4759         esac;
4760 fi'
4761
4762 set signal.h LANGUAGE_C; eval $inctest
4763
4764 case "$usesocks" in
4765 $define)
4766         ccflags="$ccflags -DSOCKS"
4767         ;;
4768 esac
4769
4770 case "$hint" in
4771 default|recommended) dflt="$ccflags $dflt" ;;
4772 *) dflt="$ccflags";;
4773 esac
4774
4775 case "$dflt" in
4776 ''|' ') dflt=none;;
4777 esac
4778
4779 $cat <<EOH
4780
4781 Your C compiler may want other flags.  For this question you should include
4782 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4783 but you should NOT include libraries or ld flags like -lwhatever.  If you
4784 want $package to honor its debug switch, you should include -DDEBUGGING here.
4785 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4786
4787 To use no flags, specify the word "none".
4788
4789 EOH
4790 set X $dflt
4791 shift
4792 dflt=${1+"$@"}
4793 rp="Any additional cc flags?"
4794 . ./myread
4795 case "$ans" in
4796 none) ccflags='';;
4797 *) ccflags="$ans";;
4798 esac
4799
4800 : the following weeds options from ccflags that are of no interest to cpp
4801 case "$cppflags" in
4802 '') cppflags="$ccflags" ;;
4803 *)  cppflags="$cppflags $ccflags" ;;
4804 esac
4805 case "$gccversion" in
4806 1*) cppflags="$cppflags -D__GNUC__"
4807 esac
4808 case "$mips_type" in
4809 '');;
4810 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4811 esac
4812 case "$cppflags" in
4813 '');;
4814 *)
4815         echo " "
4816         echo "Let me guess what the preprocessor flags are..." >&4
4817         set X $cppflags
4818         shift
4819         cppflags=''
4820         $cat >cpp.c <<'EOM'
4821 #define BLURFL foo
4822
4823 BLURFL xx LFRULB
4824 EOM
4825         previous=''
4826         for flag in $*
4827         do
4828                 case "$flag" in
4829                 -*) ftry="$flag";;
4830                 *) ftry="$previous $flag";;
4831                 esac
4832                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4833                         >cpp1.out 2>/dev/null && \
4834                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4835                         >cpp2.out 2>/dev/null && \
4836                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4837                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4838                 then
4839                         cppflags="$cppflags $ftry"
4840                         previous=''
4841                 else
4842                         previous="$flag"
4843                 fi
4844         done
4845         set X $cppflags
4846         shift
4847         cppflags=${1+"$@"}
4848         case "$cppflags" in
4849         *-*)  echo "They appear to be: $cppflags";;
4850         esac
4851         $rm -f cpp.c cpp?.out
4852         ;;
4853 esac
4854
4855 : flags used in final linking phase
4856 case "$ldflags" in
4857 '') if ./venix; then
4858                 dflt='-i -z'
4859         else
4860                 dflt=''
4861         fi
4862         case "$ccflags" in
4863         *-posix*) dflt="$dflt -posix" ;;
4864         esac
4865         ;;
4866 *) dflt="$ldflags";;
4867 esac
4868
4869 : Try to guess additional flags to pick up local libraries.
4870 for thislibdir in $libpth; do
4871         case " $loclibpth " in
4872         *" $thislibdir "*)
4873                 case "$dflt " in 
4874                 *"-L$thislibdir "*) ;;
4875                 *)  dflt="$dflt -L$thislibdir" ;;
4876                 esac
4877                 ;;
4878         esac
4879 done
4880
4881 case "$dflt" in
4882 '') dflt='none' ;;
4883 esac
4884
4885 $cat <<EOH
4886
4887 Your C linker may need flags.  For this question you should
4888 include -L/whatever and any other flags used by the C linker, but you
4889 should NOT include libraries like -lwhatever.
4890
4891 Make sure you include the appropriate -L/path flags if your C linker
4892 does not normally search all of the directories you specified above,
4893 namely
4894         $libpth
4895 To use no flags, specify the word "none".
4896
4897 EOH
4898
4899 rp="Any additional ld flags (NOT including libraries)?"
4900 . ./myread
4901 case "$ans" in
4902 none) ldflags='';;
4903 *) ldflags="$ans";;
4904 esac
4905 rmlist="$rmlist pdp11"
4906
4907 : coherency check
4908 echo " "
4909 echo "Checking your choice of C compiler and flags for coherency..." >&4
4910 $cat > try.c <<'EOF'
4911 #include <stdio.h>
4912 int main() { printf("Ok\n"); return(0); }
4913 EOF
4914 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
4915 shift
4916 $cat >try.msg <<'EOM'
4917 I've tried to compile and run the following simple program:
4918
4919 EOM
4920 $cat try.c >> try.msg
4921
4922 $cat >> try.msg <<EOM
4923
4924 I used the command:
4925
4926         $*
4927         $run ./try
4928
4929 and I got the following output:
4930
4931 EOM
4932 dflt=y
4933 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
4934         if $sh -c "$run ./try" >>try.msg 2>&1; then
4935                 xxx=`$run ./try`
4936                 case "$xxx" in
4937                 "Ok") dflt=n ;;
4938                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4939                         case " $libs " in
4940                         *" -lsfio "*)
4941                                 cat >> try.msg <<'EOQS'
4942 If $libs contains -lsfio, and sfio is mis-configured, then it
4943 sometimes (apparently) runs and exits with a 0 status, but with no
4944 output!  It may have to do with sfio's use of _exit vs. exit.
4945
4946 EOQS
4947                                 rp="You have a big problem.  Shall I abort Configure"
4948                                 dflt=y
4949                                 ;;
4950                         esac
4951                         ;;
4952                 esac
4953         else
4954                 echo "The program compiled OK, but exited with status $?." >>try.msg
4955                 rp="You have a problem.  Shall I abort Configure"
4956                 dflt=y
4957         fi
4958 else
4959         echo "I can't compile the test program." >>try.msg
4960         rp="You have a BIG problem.  Shall I abort Configure"
4961         dflt=y
4962 fi
4963 case "$dflt" in
4964 y)
4965         $cat try.msg >&4
4966         case "$knowitall" in
4967         '')
4968                 echo "(The supplied flags or libraries might be incorrect.)"
4969                 ;;
4970         *) dflt=n;;
4971         esac
4972         echo " "
4973         . ./myread
4974         case "$ans" in
4975         n*|N*) ;;
4976         *)      echo "Ok.  Stopping Configure." >&4
4977                 exit 1
4978                 ;;
4979         esac
4980         ;;
4981 n) echo "OK, that should do.";;
4982 esac
4983 $rm -f try try.* core
4984
4985 : define a shorthand compile call
4986 compile='
4987 mc_file=$1;
4988 shift;
4989 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
4990 : define a shorthand compile call for compilations that should be ok.
4991 compile_ok='
4992 mc_file=$1;
4993 shift;
4994 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
4995
4996 : determine filename position in cpp output
4997 echo " "
4998 echo "Computing filename position in cpp output for #include directives..." >&4
4999 case "$osname" in
5000 vos) testaccess=-e ;;
5001 *)   testaccess=-r ;;
5002 esac
5003 echo '#include <stdio.h>' > foo.c
5004 $cat >fieldn <<EOF
5005 $startsh
5006 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5007 $grep '^[       ]*#.*stdio\.h' | \
5008 while read cline; do
5009         pos=1
5010         set \$cline
5011         while $test \$# -gt 0; do
5012                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5013                         echo "\$pos"
5014                         exit 0
5015                 fi
5016                 shift
5017                 pos=\`expr \$pos + 1\`
5018         done
5019 done
5020 EOF
5021 chmod +x fieldn
5022 fieldn=`./fieldn`
5023 $rm -f foo.c fieldn
5024 case $fieldn in
5025 '') pos='???';;
5026 1) pos=first;;
5027 2) pos=second;;
5028 3) pos=third;;
5029 *) pos="${fieldn}th";;
5030 esac
5031 echo "Your cpp writes the filename in the $pos field of the line."
5032
5033 case "$osname" in
5034 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5035 os2) cppfilter="sed -e 's|\\\\\\\\|/|g' |" ;; # path component separator is \
5036 *)   cppfilter='' ;;
5037 esac
5038 : locate header file
5039 $cat >findhdr <<EOF
5040 $startsh
5041 wanted=\$1
5042 name=''
5043 for usrincdir in $usrinc
5044 do
5045         if test -f \$usrincdir/\$wanted; then
5046                 echo "\$usrincdir/\$wanted"
5047                 exit 0
5048         fi
5049 done
5050 awkprg='{ print \$$fieldn }'
5051 echo "#include <\$wanted>" > foo\$\$.c
5052 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5053 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5054 while read cline; do
5055         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5056         case "\$name" in
5057         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5058         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5059         *) exit 2;;
5060         esac;
5061 done;
5062 #
5063 # status = 0: grep returned 0 lines, case statement not executed
5064 # status = 1: headerfile found
5065 # status = 2: while loop executed, no headerfile found
5066 #
5067 status=\$?
5068 $rm -f foo\$\$.c;
5069 if test \$status -eq 1; then
5070         exit 0;
5071 fi
5072 exit 1
5073 EOF
5074 chmod +x findhdr
5075
5076 : define an alternate in-header-list? function
5077 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5078 cont=true; xxf="echo \"<\$1> found.\" >&4";
5079 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5080 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5081 esac;
5082 case $# in 4) instead=instead;; *) instead="at last";; esac;
5083 while $test "$cont"; do
5084         xxx=`./findhdr $1`
5085         var=$2; eval "was=\$$2";
5086         if $test "$xxx" && $test -r "$xxx";
5087         then eval $xxf;
5088         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5089                 cont="";
5090         else eval $xxnf;
5091         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5092         set $yyy; shift; shift; yyy=$@;
5093         case $# in 0) cont="";;
5094         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5095                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5096         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5097                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5098         esac;
5099 done;
5100 while $test "$yyy";
5101 do set $yyy; var=$2; eval "was=\$$2";
5102         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5103         set $yyy; shift; shift; yyy=$@;
5104 done'
5105
5106 : see if stdlib is available
5107 set stdlib.h i_stdlib
5108 eval $inhdr
5109
5110 : check for lengths of integral types
5111 echo " "
5112 case "$intsize" in
5113 '')
5114         echo "Checking to see how big your integers are..." >&4
5115         $cat >try.c <<EOCP
5116 #include <stdio.h>
5117 #$i_stdlib I_STDLIB
5118 #ifdef I_STDLIB
5119 #include <stdlib.h>
5120 #endif
5121 int main()
5122 {
5123         printf("intsize=%d;\n", (int)sizeof(int));
5124         printf("longsize=%d;\n", (int)sizeof(long));
5125         printf("shortsize=%d;\n", (int)sizeof(short));
5126         exit(0);
5127 }
5128 EOCP
5129         set try
5130         if eval $compile_ok && $run ./try > /dev/null; then
5131                 eval `$run ./try`
5132                 echo "Your integers are $intsize bytes long."
5133                 echo "Your long integers are $longsize bytes long."
5134                 echo "Your short integers are $shortsize bytes long."
5135         else
5136                 $cat >&4 <<EOM
5137 !
5138 Help! I can't compile and run the intsize test program: please enlighten me!
5139 (This is probably a misconfiguration in your system or libraries, and
5140 you really ought to fix it.  Still, I'll try anyway.)
5141 !
5142 EOM
5143                 dflt=4
5144                 rp="What is the size of an integer (in bytes)?"
5145                 . ./myread
5146                 intsize="$ans"
5147                 dflt=$intsize
5148                 rp="What is the size of a long integer (in bytes)?"
5149                 . ./myread
5150                 longsize="$ans"
5151                 dflt=2
5152                 rp="What is the size of a short integer (in bytes)?"
5153                 . ./myread
5154                 shortsize="$ans"
5155         fi
5156         ;;
5157 esac
5158 $rm -f try try.*
5159
5160 : check for long long
5161 echo " "
5162 echo "Checking to see if you have long long..." >&4
5163 echo 'int main() { long long x = 7; return 0; }' > try.c
5164 set try
5165 if eval $compile; then
5166         val="$define"
5167         echo "You have long long."
5168 else
5169         val="$undef"
5170         echo "You do not have long long."
5171 fi
5172 $rm try.*
5173 set d_longlong
5174 eval $setvar
5175
5176 : check for length of long long
5177 case "${d_longlong}${longlongsize}" in
5178 $define)
5179         echo " "
5180         echo "Checking to see how big your long longs are..." >&4
5181         $cat >try.c <<'EOCP'
5182 #include <stdio.h>
5183 int main()
5184 {
5185     printf("%d\n", (int)sizeof(long long));
5186     return(0);
5187 }
5188 EOCP
5189         set try
5190         if eval $compile_ok; then
5191                 longlongsize=`$run ./try`
5192                 echo "Your long longs are $longlongsize bytes long."
5193         else
5194                 dflt='8'
5195                 echo " "
5196                 echo "(I can't seem to compile the test program.  Guessing...)"
5197                 rp="What is the size of a long long (in bytes)?"
5198                 . ./myread
5199                 longlongsize="$ans"
5200         fi
5201         if $test "X$longsize" = "X$longlongsize"; then
5202                 echo "(That isn't any different from an ordinary long.)"
5203         fi      
5204         ;;
5205 esac
5206 $rm -f try.* try
5207
5208 : see if inttypes.h is available
5209 : we want a real compile instead of Inhdr because some systems
5210 : have an inttypes.h which includes non-existent headers
5211 echo " "
5212 $cat >try.c <<EOCP
5213 #include <inttypes.h>
5214 int main() {
5215         static int32_t foo32 = 0x12345678;
5216 }
5217 EOCP
5218 set try
5219 if eval $compile; then
5220         echo "<inttypes.h> found." >&4
5221         val="$define"
5222 else
5223         echo "<inttypes.h> NOT found." >&4
5224         val="$undef"
5225 fi
5226 $rm -f try.c try
5227 set i_inttypes
5228 eval $setvar
5229
5230 : check for int64_t
5231 echo " "
5232 echo "Checking to see if you have int64_t..." >&4
5233 $cat >try.c <<EOCP
5234 #include <sys/types.h>
5235 #$i_inttypes I_INTTYPES
5236 #ifdef I_INTTYPES
5237 #include <inttypes.h>
5238 #endif
5239 int main() { int64_t x = 7; }
5240 EOCP
5241 set try
5242 if eval $compile; then
5243         val="$define"
5244         echo "You have int64_t."
5245 else
5246         val="$undef"
5247         echo "You do not have int64_t."
5248 fi
5249 $rm -f try try.*
5250 set d_int64_t
5251 eval $setvar
5252
5253
5254 echo " "
5255 echo "Checking which 64-bit integer type we could use..." >&4
5256
5257 case "$intsize" in
5258 8) val=int
5259    set quadtype
5260    eval $setvar
5261    val='"unsigned int"'
5262    set uquadtype
5263    eval $setvar
5264    quadkind=1
5265    ;;
5266 *) case "$longsize" in
5267    8) val=long
5268       set quadtype
5269       eval $setvar
5270       val='"unsigned long"'
5271       set uquadtype
5272       eval $setvar
5273       quadkind=2
5274       ;;
5275    *) case "$d_longlong:$longlongsize" in
5276       define:8)
5277         val='"long long"'
5278         set quadtype
5279         eval $setvar
5280         val='"unsigned long long"'
5281         set uquadtype
5282         eval $setvar
5283         quadkind=3
5284         ;;
5285       *) case "$d_int64_t" in
5286          define)
5287            val=int64_t
5288            set quadtype
5289            eval $setvar
5290            val=uint64_t
5291            set uquadtype
5292            eval $setvar
5293            quadkind=4
5294            ;;
5295          esac
5296          ;;
5297       esac
5298       ;;
5299    esac
5300    ;;
5301 esac
5302
5303 case "$quadtype" in
5304 '')     echo "Alas, no 64-bit integer types in sight." >&4
5305         d_quad="$undef"
5306         ;;
5307 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5308         d_quad="$define"
5309         ;;
5310 esac
5311
5312
5313 case "$uselonglong" in
5314 "$define"|true|[yY]*)
5315         cat <<EOM >&4
5316
5317 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5318 EOM
5319         use64bitint="$define"
5320         ;;
5321 esac                          
5322 case "$use64bits" in
5323 "$define"|true|[yY]*)
5324         cat <<EOM >&4
5325
5326 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5327 EOM
5328         use64bitint="$define"
5329         ;;
5330 esac                          
5331 case "$use64bitints" in
5332 "$define"|true|[yY]*)
5333         cat <<EOM >&4
5334
5335 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5336 EOM
5337         use64bitint="$define"
5338         ;;
5339 esac                          
5340 case "$use64bitsint" in
5341 "$define"|true|[yY]*)
5342         cat <<EOM >&4
5343
5344 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5345 EOM
5346         use64bitint="$define"
5347         ;;
5348 esac                          
5349 case "$uselonglongs" in
5350 "$define"|true|[yY]*)
5351         cat <<EOM >&4
5352
5353 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5354 EOM
5355         use64bitint="$define"
5356         ;;
5357 esac                          
5358 case "$use64bitsall" in
5359 "$define"|true|[yY]*)
5360         cat <<EOM >&4
5361
5362 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5363 EOM
5364         use64bitall="$define"
5365         ;;
5366 esac                          
5367
5368 case "$ccflags" in
5369 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5370 esac
5371 case "$use64bitall" in
5372 "$define"|true|[yY]*) use64bitint="$define" ;;
5373 esac
5374
5375 case "$longsize" in
5376 8) cat <<EOM
5377
5378 You have natively 64-bit long integers.
5379 EOM
5380    val="$define"
5381    ;;
5382 *) case "$use64bitint" in
5383    "$define"|true|[yY]*) dflt='y';;
5384    *) dflt='n';;
5385    esac
5386    case "$d_quad" in
5387    "$define") ;;
5388    *) dflt='n' ;;
5389    esac
5390    cat <<EOM
5391
5392 Perl can be built to take advantage of 64-bit integer types
5393 on some systems.  To do so, Configure can be run with -Duse64bitint.
5394 Choosing this option will most probably introduce binary incompatibilities.
5395
5396 If this doesn't make any sense to you, just accept the default '$dflt'.
5397 (The default has been chosen based on your configuration.)
5398 EOM
5399    rp='Try to use 64-bit integers, if available?'
5400    . ./myread
5401    case "$ans" in
5402    [yY]*) val="$define" ;;
5403    *)     val="$undef"  ;;
5404    esac
5405    ;;
5406 esac
5407 set use64bitint
5408 eval $setvar
5409
5410 case "$use64bitall" in
5411 "$define"|true|[yY]*) dflt='y' ;;
5412 *) case "$longsize" in
5413    8) dflt='y' ;;
5414    *) dflt='n' ;;
5415    esac
5416    ;;
5417 esac    
5418 cat <<EOM
5419
5420 You may also choose to try maximal 64-bitness.  It means using as much
5421 64-bitness as possible on the platform.  This in turn means even more
5422 binary incompatibilities.  On the other hand, your platform may not
5423 have any more 64-bitness available than what you already have chosen.
5424
5425 If this doesn't make any sense to you, just accept the default '$dflt'.
5426 (The default has been chosen based on your configuration.)
5427 EOM
5428 rp='Try to use maximal 64-bit support, if available?'
5429 . ./myread
5430 case "$ans" in
5431 [yY]*) val="$define" ;;
5432 *)     val="$undef"  ;;
5433 esac
5434 set use64bitall
5435 eval $setvar
5436 case "$use64bitall" in
5437 "$define")
5438         case "$use64bitint" in
5439         "$undef")
5440                 cat <<EOM
5441
5442 Since you have chosen a maximally 64-bit build, I'm also turning on
5443 the use of 64-bit integers.
5444 EOM
5445                 use64bitint="$define" ;;
5446         esac
5447         ;;
5448 esac
5449
5450 case "$use64bitint" in
5451 "$define"|true|[yY]*)
5452 : Look for a hint-file generated 'call-back-unit'.  If the
5453 : user has specified that a 64-bit perl is to be built,
5454 : we may need to set or change some other defaults.
5455         if $test -f use64bitint.cbu; then
5456                 echo "Your platform has some specific hints for 64-bit integers, using them..."
5457                 . ./use64bitint.cbu
5458         fi
5459         case "$longsize" in
5460         4) case "$archname64" in
5461            '') archname64=64int ;;
5462            esac
5463            ;;
5464         esac
5465         ;;
5466 esac
5467
5468 case "$use64bitall" in
5469 "$define"|true|[yY]*)
5470 : Look for a hint-file generated 'call-back-unit'.  If the
5471 : user has specified that a maximally 64-bit perl is to be built,
5472 : we may need to set or change some other defaults.
5473         if $test -f use64bitall.cbu; then
5474                 echo "Your platform has some specific hints for 64-bit builds, using them..."
5475                 . ./use64bitall.cbu
5476         fi
5477         case "$longsize" in
5478         4) case "$archname64" in
5479            ''|64int) archname64=64all ;;
5480            esac
5481            ;;
5482         esac
5483         ;;
5484 esac
5485
5486 case "$d_quad:$use64bitint" in
5487 $undef:$define)
5488         cat >&4 <<EOF
5489
5490 *** You have chosen to use 64-bit integers,
5491 *** but none cannot be found.
5492 *** Please rerun Configure without -Duse64bitint and/or -Dusemorebits.
5493 *** Cannot continue, aborting.
5494
5495 EOF
5496         exit 1
5497         ;;
5498 esac
5499
5500 : check for length of double
5501 echo " "
5502 case "$doublesize" in
5503 '')
5504         echo "Checking to see how big your double precision numbers are..." >&4
5505         $cat >try.c <<EOCP
5506 #include <stdio.h>
5507 #$i_stdlib I_STDLIB
5508 #ifdef I_STDLIB
5509 #include <stdlib.h>
5510 #endif
5511 int main()
5512 {
5513     printf("%d\n", (int)sizeof(double));
5514     exit(0);
5515 }
5516 EOCP
5517         set try
5518         if eval $compile_ok; then
5519                 doublesize=`$run ./try`
5520                 echo "Your double is $doublesize bytes long."
5521         else
5522                 dflt='8'
5523                 echo "(I can't seem to compile the test program.  Guessing...)"
5524                 rp="What is the size of a double precision number (in bytes)?"
5525                 . ./myread
5526                 doublesize="$ans"
5527         fi
5528         ;;
5529 esac
5530 $rm -f try.c try
5531
5532 : check for long doubles
5533 echo " "
5534 echo "Checking to see if you have long double..." >&4
5535 echo 'int main() { long double x = 7.0; }' > try.c
5536 set try
5537 if eval $compile; then
5538         val="$define"
5539         echo "You have long double."
5540 else
5541         val="$undef"
5542         echo "You do not have long double."
5543 fi
5544 $rm try.*
5545 set d_longdbl
5546 eval $setvar
5547
5548 : check for length of long double
5549 case "${d_longdbl}${longdblsize}" in
5550 $define)
5551         echo " "
5552         echo "Checking to see how big your long doubles are..." >&4
5553         $cat >try.c <<'EOCP'
5554 #include <stdio.h>
5555 int main()
5556 {
5557         printf("%d\n", sizeof(long double));
5558 }
5559 EOCP
5560         set try
5561         set try
5562         if eval $compile; then
5563                 longdblsize=`$run ./try`
5564                 echo "Your long doubles are $longdblsize bytes long."
5565         else
5566                 dflt='8'
5567                 echo " "
5568                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
5569                 rp="What is the size of a long double (in bytes)?"
5570                 . ./myread
5571                 longdblsize="$ans"
5572         fi
5573         if $test "X$doublesize" = "X$longdblsize"; then
5574                 echo "(That isn't any different from an ordinary double.)"
5575         fi      
5576         ;;
5577 esac
5578 $rm -f try.* try
5579
5580 : determine the architecture name
5581 echo " "
5582 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
5583         tarch=`arch`"-$osname"
5584 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
5585         if uname -m > tmparch 2>&1 ; then
5586                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
5587                         -e 's/$/'"-$osname/" tmparch`
5588         else
5589                 tarch="$osname"
5590         fi
5591         $rm -f tmparch
5592 else
5593         tarch="$osname"
5594 fi
5595 case "$myarchname" in
5596 ''|"$tarch") ;;
5597 *)
5598         echo "(Your architecture name used to be $myarchname.)"
5599         archname=''
5600         ;;
5601 esac
5602 case "$targetarch" in
5603 '') ;;
5604 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
5605 esac
5606 myarchname="$tarch"
5607 case "$archname" in
5608 '') dflt="$tarch";;
5609 *) dflt="$archname";;
5610 esac
5611 rp='What is your architecture name'
5612 . ./myread
5613 archname="$ans"
5614 case "$usethreads" in
5615 $define)
5616         echo "Threads selected." >&4
5617         case "$archname" in
5618         *-thread*) echo "...and architecture name already has -thread." >&4
5619                 ;;
5620         *)      archname="$archname-thread"
5621                 echo "...setting architecture name to $archname." >&4
5622                 ;;
5623         esac
5624         ;;
5625 esac
5626 case "$usemultiplicity" in
5627 $define)
5628         echo "Multiplicity selected." >&4
5629         case "$archname" in
5630         *-multi*) echo "...and architecture name already has -multi." >&4
5631                 ;;
5632         *)      archname="$archname-multi"
5633                 echo "...setting architecture name to $archname." >&4
5634                 ;;
5635         esac
5636         ;;
5637 esac
5638 case "$use64bitint$use64bitall" in
5639 *"$define"*)
5640         case "$archname64" in
5641         '')
5642                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
5643                 ;;
5644         *)
5645                 case "$use64bitint" in
5646                 "$define") echo "64 bit integers selected." >&4 ;;
5647                 esac
5648                 case "$use64bitall" in
5649                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
5650                 esac
5651                 case "$archname" in
5652                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
5653                         ;;
5654                 *)      archname="$archname-$archname64"
5655                         echo "...setting architecture name to $archname." >&4
5656                         ;;
5657                 esac
5658                 ;;
5659         esac
5660 esac
5661 case "$uselongdouble" in
5662 $define)
5663         echo "Long doubles selected." >&4
5664         case "$longdblsize" in
5665         $doublesize)
5666                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
5667                 ;;
5668         *)
5669                 case "$archname" in
5670                 *-ld*) echo "...and architecture name already has -ld." >&4
5671                         ;;
5672                 *)      archname="$archname-ld"
5673                         echo "...setting architecture name to $archname." >&4
5674                         ;;
5675                 esac
5676                 ;;
5677         esac
5678         ;;
5679 esac
5680 case "$useperlio" in
5681 $define)
5682         echo "Perlio selected." >&4
5683         ;;
5684 *)
5685         echo "Perlio not selected, using stdio." >&4
5686         case "$archname" in
5687         *-stdio*) echo "...and architecture name already has -stdio." >&4
5688                 ;;
5689         *)      archname="$archname-stdio"
5690                 echo "...setting architecture name to $archname." >&4
5691                 ;;
5692         esac
5693         ;;
5694 esac
5695 if $test -f archname.cbu; then
5696         echo "Your platform has some specific hints for architecture name, using them..."
5697         . ./archname.cbu
5698 fi
5699
5700 : determine root of directory hierarchy where package will be installed.
5701 case "$prefix" in
5702 '')
5703         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
5704         ;;
5705 *?/)
5706         dflt=`echo "$prefix" | sed 's/.$//'`
5707         ;;
5708 *)
5709         dflt="$prefix"
5710         ;;
5711 esac
5712 $cat <<EOM
5713
5714 By default, $package will be installed in $dflt/bin, manual pages
5715 under $dflt/man, etc..., i.e. with $dflt as prefix for all
5716 installation directories. Typically this is something like /usr/local.
5717 If you wish to have binaries under /usr/bin but other parts of the
5718 installation under /usr/local, that's ok: you will be prompted
5719 separately for each of the installation directories, the prefix being
5720 only used to set the defaults.
5721
5722 EOM
5723 fn=d~
5724 rp='Installation prefix to use?'
5725 . ./getfile
5726 oldprefix=''
5727 case "$prefix" in
5728 '') ;;
5729 *)
5730         case "$ans" in
5731         "$prefix") ;;
5732         *) oldprefix="$prefix";;
5733         esac
5734         ;;
5735 esac
5736 prefix="$ans"
5737 prefixexp="$ansexp"
5738
5739 case "$afsroot" in
5740 '')     afsroot=/afs ;;
5741 *)      afsroot=$afsroot ;;
5742 esac
5743
5744 : is AFS running?
5745 echo " "
5746 case "$afs" in
5747 $define|true)   afs=true ;;
5748 $undef|false)   afs=false ;;
5749 *)      if test -d $afsroot; then
5750                 afs=true
5751         else
5752                 afs=false
5753         fi
5754         ;;
5755 esac
5756 if $afs; then
5757         echo "AFS may be running... I'll be extra cautious then..." >&4
5758 else
5759         echo "AFS does not seem to be running..." >&4
5760 fi
5761
5762 : determine installation prefix for where package is to be installed.
5763 if $afs; then 
5764 $cat <<EOM
5765
5766 Since you are running AFS, I need to distinguish the directory in which
5767 files will reside from the directory in which they are installed (and from
5768 which they are presumably copied to the former directory by occult means).
5769
5770 EOM
5771         case "$installprefix" in
5772         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
5773         *) dflt="$installprefix";;
5774         esac
5775 else
5776 $cat <<EOM
5777
5778 In some special cases, particularly when building $package for distribution,
5779 it is convenient to distinguish the directory in which files should be
5780 installed from the directory ($prefix) in which they will
5781 eventually reside.  For most users, these two directories are the same.
5782
5783 EOM
5784         case "$installprefix" in
5785         '') dflt=$prefix ;;
5786         *) dflt=$installprefix;;
5787         esac
5788 fi
5789 fn=d~
5790 rp='What installation prefix should I use for installing files?'
5791 . ./getfile
5792 installprefix="$ans"
5793 installprefixexp="$ansexp"
5794
5795 : set the prefixit variable, to compute a suitable default value
5796 prefixit='case "$3" in
5797 ""|none)
5798         case "$oldprefix" in
5799         "") eval "$1=\"\$$2\"";;
5800         *)
5801                 case "$3" in
5802                 "") eval "$1=";;
5803                 none)
5804                         eval "tp=\"\$$2\"";
5805                         case "$tp" in
5806                         ""|" ") eval "$1=\"\$$2\"";;
5807                         *) eval "$1=";;
5808                         esac;;
5809                 esac;;
5810         esac;;
5811 *)
5812         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
5813         case "$tp" in
5814         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
5815         /*-$oldprefix/*|\~*-$oldprefix/*)
5816                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
5817         *) eval "$1=\"\$$2\"";;
5818         esac;;
5819 esac'
5820
5821 : get the patchlevel
5822 echo " "
5823 echo "Getting the current patchlevel..." >&4
5824 if $test -r $rsrc/patchlevel.h;then
5825         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
5826         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
5827         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5828         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
5829         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
5830         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5831        perl_patchlevel=`grep ',"DEVEL[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
5832 else
5833         revision=0
5834         patchlevel=0
5835         subversion=0
5836         api_revision=0
5837         api_version=0
5838         api_subversion=0
5839         perl_patchlevel=0
5840         $echo "(You do not have patchlevel.h.  Eek.)"
5841 fi
5842 if $test -r $rsrc/.patch ; then  
5843         if $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
5844                 perl_patchlevel=`cat $rsrc/.patch`
5845         fi
5846 fi
5847 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
5848 version_patchlevel_string="version $patchlevel subversion $subversion"
5849 case "$perl_patchlevel" in
5850 0|'') ;;
5851 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
5852 esac
5853
5854 $echo "(You have $package $version_patchlevel_string.)"
5855
5856 case "$osname" in
5857 dos|vms)
5858         : XXX Should be a Configure test for double-dots in filenames.
5859         version=`echo $revision $patchlevel $subversion | \
5860                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5861         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5862                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5863         ;;
5864 *)
5865         version=`echo $revision $patchlevel $subversion | \
5866                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5867         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5868                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5869         ;;
5870 esac
5871 : Special case the 5.005_xx maintenance series, which used 5.005
5872 : without any subversion label as a subdirectory in $sitelib
5873 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
5874         api_versionstring='5.005'
5875 fi
5876
5877 : determine installation style
5878 : For now, try to deduce it from prefix unless it is already set.
5879 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
5880 case "$installstyle" in
5881 '')     case "$prefix" in
5882                 *perl*) dflt='lib';;
5883                 *) dflt='lib/perl5' ;;
5884         esac
5885         ;;
5886 *)      dflt="$installstyle" ;;
5887 esac
5888 : Probably not worth prompting for this since we prompt for all
5889 : the directories individually, and the prompt would be too long and
5890 : confusing anyway.
5891 installstyle=$dflt
5892
5893 : determine where private library files go
5894 : Usual default is /usr/local/lib/perl5/$version.
5895 : Also allow things like /opt/perl/lib/$version, since 
5896 : /opt/perl/lib/perl5... would be redundant.
5897 : The default "style" setting is made in installstyle.U
5898 case "$installstyle" in
5899 *lib/perl5*) set dflt privlib lib/$package/$version ;;
5900 *)       set dflt privlib lib/$version ;;
5901 esac
5902 eval $prefixit
5903 $cat <<EOM
5904
5905 There are some auxiliary files for $package that need to be put into a
5906 private library directory that is accessible by everyone.
5907
5908 EOM
5909 fn=d~+
5910 rp='Pathname where the private library files will reside?'
5911 . ./getfile
5912 privlib="$ans"
5913 privlibexp="$ansexp"
5914 : Change installation prefix, if necessary.
5915 if $test X"$prefix" != X"$installprefix"; then
5916         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
5917 else
5918         installprivlib="$privlibexp"
5919 fi
5920
5921 : set the prefixup variable, to restore leading tilda escape
5922 prefixup='case "$prefixexp" in
5923 "$prefix") ;;
5924 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
5925 esac'
5926
5927 : determine where public architecture dependent libraries go
5928 set archlib archlib
5929 eval $prefixit
5930 : privlib default is /usr/local/lib/$package/$version
5931 : archlib default is /usr/local/lib/$package/$version/$archname
5932 : privlib may have an optional trailing /share.
5933 tdflt=`echo $privlib | $sed 's,/share$,,'`
5934 tdflt=$tdflt/$archname
5935 case "$archlib" in
5936 '')     dflt=$tdflt
5937         ;;
5938 *)      dflt="$archlib"
5939     ;;
5940 esac
5941 $cat <<EOM
5942
5943 $spackage contains architecture-dependent library files.  If you are
5944 sharing libraries in a heterogeneous environment, you might store
5945 these files in a separate location.  Otherwise, you can just include
5946 them with the rest of the public library files.
5947
5948 EOM
5949 fn=d+~
5950 rp='Where do you want to put the public architecture-dependent libraries?'
5951 . ./getfile
5952 archlib="$ans"
5953 archlibexp="$ansexp"
5954 if $test X"$archlib" = X"$privlib"; then
5955         d_archlib="$undef"
5956 else
5957         d_archlib="$define"
5958 fi
5959 : Change installation prefix, if necessary.
5960 if $test X"$prefix" != X"$installprefix"; then
5961         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
5962 else
5963         installarchlib="$archlibexp"
5964 fi
5965
5966 : see if setuid scripts can be secure
5967 $cat <<EOM
5968
5969 Some kernels have a bug that prevents setuid #! scripts from being
5970 secure.  Some sites have disabled setuid #! scripts because of this.
5971
5972 First let's decide if your kernel supports secure setuid #! scripts.
5973 (If setuid #! scripts would be secure but have been disabled anyway,
5974 don't say that they are secure if asked.)
5975
5976 EOM
5977
5978 val="$undef"
5979 if $test -d /dev/fd; then
5980         echo "#!$ls" >reflect
5981         chmod +x,u+s reflect
5982         ./reflect >flect 2>&1
5983         if $contains "/dev/fd" flect >/dev/null; then
5984                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
5985                 val="$define"
5986         else
5987                 $cat <<EOM
5988 If you are not sure if they are secure, I can check but I'll need a
5989 username and password different from the one you are using right now.
5990 If you don't have such a username or don't want me to test, simply
5991 enter 'none'.
5992
5993 EOM
5994                 rp='Other username to test security of setuid scripts with?'
5995                 dflt='none'
5996                 . ./myread
5997                 case "$ans" in
5998                 n|none)
5999                         case "$d_suidsafe" in
6000                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
6001                                 dflt=n;;
6002                         "$undef")
6003                                 echo "Well, the $hint value is *not* secure." >&4
6004                                 dflt=n;;
6005                         *)      echo "Well, the $hint value *is* secure." >&4
6006                                 dflt=y;;
6007                         esac
6008                         ;;
6009                 *)
6010                         $rm -f reflect flect
6011                         echo "#!$ls" >reflect
6012                         chmod +x,u+s reflect
6013                         echo >flect
6014                         chmod a+w flect
6015                         echo '"su" will (probably) prompt you for '"$ans's password."
6016                         su $ans -c './reflect >flect'
6017                         if $contains "/dev/fd" flect >/dev/null; then
6018                                 echo "Okay, it looks like setuid scripts are secure." >&4
6019                                 dflt=y
6020                         else
6021                                 echo "I don't think setuid scripts are secure." >&4
6022                                 dflt=n
6023                         fi
6024                         ;;
6025                 esac
6026                 rp='Does your kernel have *secure* setuid scripts?'
6027                 . ./myread
6028                 case "$ans" in
6029                 [yY]*)  val="$define";;
6030                 *)      val="$undef";;
6031                 esac
6032         fi
6033 else
6034         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6035         echo "(That's for file descriptors, not floppy disks.)"
6036         val="$undef"
6037 fi
6038 set d_suidsafe
6039 eval $setvar
6040
6041 $rm -f reflect flect
6042
6043 : now see if they want to do setuid emulation
6044 echo " "
6045 val="$undef"
6046 case "$d_suidsafe" in
6047 "$define")
6048         val="$undef"
6049         echo "No need to emulate SUID scripts since they are secure here." >&4
6050         ;;
6051 *)
6052         $cat <<EOM
6053 Some systems have disabled setuid scripts, especially systems where
6054 setuid scripts cannot be secure.  On systems where setuid scripts have
6055 been disabled, the setuid/setgid bits on scripts are currently
6056 useless.  It is possible for $package to detect those bits and emulate
6057 setuid/setgid in a secure fashion.  This emulation will only work if
6058 setuid scripts have been disabled in your kernel.
6059
6060 EOM
6061         case "$d_dosuid" in
6062         "$define") dflt=y ;;
6063         *) dflt=n ;;
6064         esac
6065         rp="Do you want to do setuid/setgid emulation?"
6066         . ./myread
6067         case "$ans" in
6068         [yY]*)  val="$define";;
6069         *)      val="$undef";;
6070         esac
6071         ;;
6072 esac
6073 set d_dosuid
6074 eval $setvar
6075
6076 : see if this is a malloc.h system
6077 : we want a real compile instead of Inhdr because some systems have a
6078 : malloc.h that just gives a compile error saying to use stdlib.h instead
6079 echo " "
6080 $cat >try.c <<EOCP
6081 #include <stdlib.h>
6082 #include <malloc.h>
6083 int main () { return 0; }
6084 EOCP
6085 set try
6086 if eval $compile; then
6087     echo "<malloc.h> found." >&4
6088     val="$define"
6089 else
6090     echo "<malloc.h> NOT found." >&4
6091     val="$undef"
6092 fi
6093 $rm -f try.c try
6094 set i_malloc
6095 eval $setvar
6096
6097 : check for void type
6098 echo " "
6099 echo "Checking to see how well your C compiler groks the void type..." >&4
6100 case "$voidflags" in
6101 '')
6102         $cat >try.c <<EOCP
6103 #$i_stdlib I_STDLIB
6104 #ifdef I_STDLIB
6105 #include <stdlib.h>
6106 #endif
6107 #if TRY & 1
6108 void sub() {
6109 #else
6110 sub() {
6111 #endif
6112         extern void moo();      /* function returning void */
6113         void (*goo)();          /* ptr to func returning void */
6114 #if TRY & 8
6115         void *hue;              /* generic ptr */
6116 #endif
6117 #if TRY & 2
6118         void (*foo[10])();
6119 #endif
6120
6121 #if TRY & 4
6122         if(goo == moo) {
6123                 exit(0);
6124         }
6125 #endif
6126         exit(0);
6127 }
6128 int main() { sub(); }
6129 EOCP
6130         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6131                 voidflags=$defvoidused
6132         echo "Good.  It appears to support void to the level $package wants.">&4
6133                 if $contains warning .out >/dev/null 2>&1; then
6134                         echo "However, you might get some warnings that look like this:"
6135                         $cat .out
6136                 fi
6137         else
6138 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6139                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6140                         echo "It supports 1..."
6141                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6142                                 echo "It also supports 2..."
6143                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6144                                         voidflags=7
6145                                         echo "And it supports 4 but not 8 definitely."
6146                                 else
6147                                         echo "It doesn't support 4..."
6148                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6149                                                 voidflags=11
6150                                                 echo "But it supports 8."
6151                                         else
6152                                                 voidflags=3
6153                                                 echo "Neither does it support 8."
6154                                         fi
6155                                 fi
6156                         else
6157                                 echo "It does not support 2..."
6158                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6159                                         voidflags=13
6160                                         echo "But it supports 4 and 8."
6161                                 else
6162                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6163                                                 voidflags=5
6164                                                 echo "And it supports 4 but has not heard about 8."
6165                                         else
6166                                                 echo "However it supports 8 but not 4."
6167                                         fi
6168                                 fi
6169                         fi
6170                 else
6171                         echo "There is no support at all for void."
6172                         voidflags=0
6173                 fi
6174         fi
6175 esac
6176 case "$voidflags" in
6177 "$defvoidused") ;;
6178 *)      $cat >&4 <<'EOM'
6179   Support flag bits are:
6180     1: basic void declarations.
6181     2: arrays of pointers to functions returning void.
6182     4: operations between pointers to and addresses of void functions.
6183     8: generic void pointers.
6184 EOM
6185         dflt="$voidflags";
6186         rp="Your void support flags add up to what?"
6187         . ./myread
6188         voidflags="$ans"
6189         ;;
6190 esac
6191 $rm -f try.* .out
6192
6193 : check for length of pointer
6194 echo " "
6195 case "$ptrsize" in
6196 '')
6197         echo "Checking to see how big your pointers are..." >&4
6198         if test "$voidflags" -gt 7; then
6199                 echo '#define VOID_PTR char *' > try.c
6200         else
6201                 echo '#define VOID_PTR void *' > try.c
6202         fi
6203         $cat >>try.c <<EOCP
6204 #include <stdio.h>
6205 #$i_stdlib I_STDLIB
6206 #ifdef I_STDLIB
6207 #include <stdlib.h>
6208 #endif
6209 int main()
6210 {
6211     printf("%d\n", (int)sizeof(VOID_PTR));
6212     exit(0);
6213 }
6214 EOCP
6215         set try
6216         if eval $compile_ok; then
6217                 ptrsize=`$run ./try`
6218                 echo "Your pointers are $ptrsize bytes long."
6219         else
6220                 dflt='4'
6221                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6222                 rp="What is the size of a pointer (in bytes)?"
6223                 . ./myread
6224                 ptrsize="$ans"
6225         fi
6226         ;;
6227 esac
6228 $rm -f try.c try
6229 case "$use64bitall" in
6230 "$define"|true|[yY]*)
6231         case "$ptrsize" in
6232         4)      cat <<EOM >&4
6233
6234 *** You have chosen a maximally 64-bit build,
6235 *** but your pointers are only 4 bytes wide.
6236 *** Please rerun Configure without -Duse64bitall.
6237 EOM
6238                 case "$d_quad" in
6239                 define)
6240                         cat <<EOM >&4
6241 *** Since you have quads, you could possibly try with -Duse64bitint.
6242 EOM
6243                         ;;
6244                 esac
6245                 cat <<EOM >&4
6246 *** Cannot continue, aborting.
6247
6248 EOM
6249
6250                 exit 1
6251                 ;;
6252         esac
6253         ;;
6254 esac
6255
6256
6257 : determine which malloc to compile in
6258 echo " "
6259 case "$usemymalloc" in
6260 [yY]*|true|$define)     dflt='y' ;;
6261 [nN]*|false|$undef)     dflt='n' ;;
6262 *)      case "$ptrsize" in
6263         4) dflt='y' ;;
6264         *) dflt='n' ;;
6265         esac
6266         ;;
6267 esac
6268 rp="Do you wish to attempt to use the malloc that comes with $package?"
6269 . ./myread
6270 usemymalloc="$ans"
6271 case "$ans" in
6272 y*|true)
6273         usemymalloc='y'
6274         mallocsrc='malloc.c'
6275         mallocobj="malloc$_o"
6276         d_mymalloc="$define"
6277         case "$libs" in
6278         *-lmalloc*)
6279                 : Remove malloc from list of libraries to use
6280                 echo "Removing unneeded -lmalloc from library list" >&4
6281                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6282                 shift
6283                 libs="$*"
6284                 echo "libs = $libs" >&4
6285                 ;;
6286         esac
6287         ;;
6288 *)
6289         usemymalloc='n'
6290         mallocsrc=''
6291         mallocobj=''
6292         d_mymalloc="$undef"
6293         ;;
6294 esac
6295
6296 : compute the return types of malloc and free
6297 echo " "
6298 $cat >malloc.c <<END
6299 #$i_malloc I_MALLOC
6300 #$i_stdlib I_STDLIB
6301 #include <stdio.h>
6302 #include <sys/types.h>
6303 #ifdef I_MALLOC
6304 #include <malloc.h>
6305 #endif
6306 #ifdef I_STDLIB
6307 #include <stdlib.h>
6308 #endif
6309 #ifdef TRY_MALLOC
6310 void *malloc();
6311 #endif
6312 #ifdef TRY_FREE
6313 void free();
6314 #endif
6315 END
6316 case "$malloctype" in
6317 '')
6318         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6319                 malloctype='void *'
6320         else
6321                 malloctype='char *'
6322         fi
6323         ;;
6324 esac
6325 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6326
6327 case "$freetype" in
6328 '')
6329         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6330                 freetype='void'
6331         else
6332                 freetype='int'
6333         fi
6334         ;;
6335 esac
6336 echo "Your system uses $freetype free(), it would seem." >&4
6337 $rm -f malloc.[co]
6338 $cat <<EOM
6339
6340 After $package is installed, you may wish to install various
6341 add-on modules and utilities.  Typically, these add-ons will
6342 be installed under $prefix with the rest
6343 of this package.  However, you may wish to install such add-ons
6344 elsewhere under a different prefix.
6345
6346 If you do not wish to put everything under a single prefix, that's
6347 ok.  You will be prompted for the individual locations; this siteprefix
6348 is only used to suggest the defaults.
6349
6350 The default should be fine for most people.
6351
6352 EOM
6353 fn=d~+
6354 rp='Installation prefix to use for add-on modules and utilities?'
6355 : XXX Here might be another good place for an installstyle setting.
6356 case "$siteprefix" in
6357 '') dflt=$prefix ;;
6358 *)  dflt=$siteprefix ;;
6359 esac
6360 . ./getfile
6361 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6362 oldsiteprefix=''
6363 case "$siteprefix" in
6364 '') ;;
6365 *)      case "$ans" in
6366         "$prefix") ;;
6367         *) oldsiteprefix="$prefix";;
6368         esac
6369         ;;
6370 esac
6371 siteprefix="$ans"
6372 siteprefixexp="$ansexp"
6373
6374 : determine where site specific libraries go.
6375 : Usual default is /usr/local/lib/perl5/site_perl/$version
6376 : The default "style" setting is made in installstyle.U
6377 : XXX No longer works with Prefixit stuff.
6378 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6379 case "$sitelib" in
6380 '') case "$installstyle" in
6381         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6382         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6383         esac
6384         ;;
6385 *)      dflt="$sitelib"
6386         ;;
6387 esac
6388 $cat <<EOM
6389
6390 The installation process will create a directory for
6391 site-specific extensions and modules.  Most users find it convenient
6392 to place all site-specific files in this directory rather than in the
6393 main distribution directory.
6394
6395 EOM
6396 fn=d~+
6397 rp='Pathname for the site-specific library files?'
6398 . ./getfile
6399 sitelib="$ans"
6400 sitelibexp="$ansexp"
6401 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6402 : Change installation prefix, if necessary.
6403 if $test X"$prefix" != X"$installprefix"; then
6404         installsitelib=`echo $sitelibexp | $sed "s#^$prefix#$installprefix#"`
6405 else
6406         installsitelib="$sitelibexp"
6407 fi
6408
6409 : determine where site specific architecture-dependent libraries go.
6410 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6411 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6412 : sitelib may have an optional trailing /share.
6413 case "$sitearch" in
6414 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6415         dflt="$dflt/$archname"
6416         ;;
6417 *)      dflt="$sitearch"
6418         ;;
6419 esac
6420 set sitearch sitearch none
6421 eval $prefixit
6422 $cat <<EOM
6423
6424 The installation process will also create a directory for
6425 architecture-dependent site-specific extensions and modules.
6426
6427 EOM
6428 fn=d~+
6429 rp='Pathname for the site-specific architecture-dependent library files?'
6430 . ./getfile
6431 sitearch="$ans"
6432 sitearchexp="$ansexp"
6433 : Change installation prefix, if necessary.
6434 if $test X"$prefix" != X"$installprefix"; then
6435         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
6436 else
6437         installsitearch="$sitearchexp"
6438 fi
6439
6440 $cat <<EOM
6441
6442 The installation process will also create a directory for
6443 vendor-supplied add-ons.  Vendors who supply perl with their system
6444 may find it convenient to place all vendor-supplied files in this
6445 directory rather than in the main distribution directory.  This will
6446 ease upgrades between binary-compatible maintenance versions of perl.
6447
6448 Of course you may also use these directories in whatever way you see
6449 fit.  For example, you might use them to access modules shared over a
6450 company-wide network.
6451
6452 The default answer should be fine for most people.
6453 This causes further questions about vendor add-ons to be skipped
6454 and no vendor-specific directories will be configured for perl.
6455
6456 EOM
6457 rp='Do you want to configure vendor-specific add-on directories?'
6458 case "$usevendorprefix" in
6459 define|true|[yY]*) dflt=y ;;
6460 *)      : User may have set vendorprefix directly on Configure command line.
6461         case "$vendorprefix" in
6462         ''|' ') dflt=n ;;
6463         *)      dflt=y ;;
6464         esac
6465         ;;
6466 esac
6467 . ./myread
6468 case "$ans" in
6469 [yY]*)  fn=d~+
6470         rp='Installation prefix to use for vendor-supplied add-ons?'
6471         case "$vendorprefix" in
6472         '') dflt='' ;;
6473         *)  dflt=$vendorprefix ;;
6474         esac
6475         . ./getfile
6476         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6477         oldvendorprefix=''
6478         case "$vendorprefix" in
6479         '') ;;
6480         *)      case "$ans" in
6481                 "$prefix") ;;
6482                 *) oldvendorprefix="$prefix";;
6483                 esac
6484                 ;;
6485         esac
6486         usevendorprefix="$define"
6487         vendorprefix="$ans"
6488         vendorprefixexp="$ansexp"
6489         ;;
6490 *)      usevendorprefix="$undef"
6491         vendorprefix=''
6492         vendorprefixexp=''
6493         ;;
6494 esac
6495
6496 case "$vendorprefix" in
6497 '')     d_vendorlib="$undef"
6498         vendorlib=''
6499         vendorlibexp=''
6500         ;;
6501 *)      d_vendorlib="$define"
6502         : determine where vendor-supplied modules go.
6503         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
6504         case "$vendorlib" in
6505         '')
6506                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6507                 case "$installstyle" in
6508                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
6509                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
6510                 esac
6511                 ;;
6512         *)      dflt="$vendorlib"
6513                 ;;
6514         esac
6515         fn=d~+
6516         rp='Pathname for the vendor-supplied library files?'
6517         . ./getfile
6518         vendorlib="$ans"
6519         vendorlibexp="$ansexp"
6520         ;;
6521 esac
6522 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
6523 : Change installation prefix, if necessary.
6524 if $test X"$prefix" != X"$installprefix"; then
6525         installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
6526 else
6527         installvendorlib="$vendorlibexp"
6528 fi
6529
6530 case "$vendorprefix" in
6531 '')     d_vendorarch="$undef"
6532         vendorarch=''
6533         vendorarchexp=''
6534         ;;
6535 *)      d_vendorarch="$define"
6536         : determine where vendor-supplied architecture-dependent libraries go.
6537         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
6538         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
6539         : vendorlib may have an optional trailing /share.
6540         case "$vendorarch" in
6541         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
6542                 dflt="$dflt/$archname"
6543                 ;;
6544         *)      dflt="$vendorarch" ;;
6545         esac
6546         fn=d~+
6547         rp='Pathname for vendor-supplied architecture-dependent files?'
6548         . ./getfile
6549         vendorarch="$ans"
6550         vendorarchexp="$ansexp"
6551         ;;
6552 esac
6553 : Change installation prefix, if necessary.
6554 if $test X"$prefix" != X"$installprefix"; then
6555         installvendorarch=`echo $vendorarchexp | sed "s#^$prefix#$installprefix#"`
6556 else
6557         installvendorarch="$vendorarchexp"
6558 fi
6559
6560 : Final catch-all directories to search
6561 $cat <<EOM
6562
6563 Lastly, you can have perl look in other directories for extensions and
6564 modules in addition to those already specified.
6565 These directories will be searched after 
6566         $sitearch 
6567         $sitelib 
6568 EOM
6569 test X"$vendorlib" != "X" && echo '     ' $vendorlib
6570 test X"$vendorarch" != "X" && echo '    ' $vendorarch
6571 echo ' '
6572 case "$otherlibdirs" in
6573 ''|' ') dflt='none' ;;
6574 *)      dflt="$otherlibdirs" ;;
6575 esac
6576 $cat <<EOM
6577 Enter a colon-separated set of extra paths to include in perl's @INC
6578 search path, or enter 'none' for no extra paths.
6579
6580 EOM
6581
6582 rp='Colon-separated list of additional directories for perl to search?'
6583 . ./myread
6584 case "$ans" in
6585 ' '|''|none)    otherlibdirs=' ' ;;     
6586 *)      otherlibdirs="$ans" ;;
6587 esac
6588 case "$otherlibdirs" in
6589 ' ') val=$undef ;;
6590 *)      val=$define ;;
6591 esac
6592 set d_perl_otherlibdirs
6593 eval $setvar
6594
6595 : Cruising for prototypes
6596 echo " "
6597 echo "Checking out function prototypes..." >&4
6598 $cat >prototype.c <<EOCP
6599 #$i_stdlib I_STDLIB
6600 #ifdef I_STDLIB
6601 #include <stdlib.h>
6602 #endif
6603 int main(int argc, char *argv[]) {
6604         exit(0);}
6605 EOCP
6606 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
6607         echo "Your C compiler appears to support function prototypes."
6608         val="$define"
6609 else
6610         echo "Your C compiler doesn't seem to understand function prototypes."
6611         val="$undef"
6612 fi
6613 set prototype
6614 eval $setvar
6615 $rm -f prototype*
6616
6617 case "$prototype" in
6618 "$define") ;;
6619 *)      ansi2knr='ansi2knr'
6620         echo " "
6621         cat <<EOM >&4
6622
6623 $me:  FATAL ERROR:
6624 This version of $package can only be compiled by a compiler that 
6625 understands function prototypes.  Unfortunately, your C compiler 
6626         $cc $ccflags
6627 doesn't seem to understand them.  Sorry about that.
6628
6629 If GNU cc is available for your system, perhaps you could try that instead.  
6630
6631 Eventually, we hope to support building Perl with pre-ANSI compilers.
6632 If you would like to help in that effort, please contact <perlbug@perl.org>.
6633
6634 Aborting Configure now.
6635 EOM
6636         exit 2
6637         ;;
6638 esac
6639
6640 : determine where public executables go
6641 echo " "
6642 set dflt bin bin
6643 eval $prefixit
6644 fn=d~
6645 rp='Pathname where the public executables will reside?'
6646 . ./getfile
6647 if $test "X$ansexp" != "X$binexp"; then
6648         installbin=''
6649 fi
6650 bin="$ans"
6651 binexp="$ansexp"
6652 : Change installation prefix, if necessary.
6653 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
6654 if $test X"$prefix" != X"$installprefix"; then
6655         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
6656 else
6657         installbin="$binexp"
6658 fi
6659
6660 echo " "
6661 case "$extras" in
6662 '') dflt='n';;
6663 *) dflt='y';;
6664 esac
6665 cat <<EOM
6666 Perl can be built with extra modules or bundles of modules which
6667 will be fetched from the CPAN and installed alongside Perl.
6668
6669 Notice that you will need access to the CPAN; either via the Internet,
6670 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
6671 be asked later to configure the CPAN.pm module which will in turn do
6672 the installation of the rest of the extra modules or bundles.)
6673
6674 Notice also that if the modules require any external software such as
6675 libraries and headers (the libz library and the zlib.h header for the
6676 Compress::Zlib module, for example) you MUST have any such software
6677 already installed, this configuration process will NOT install such
6678 things for you.
6679
6680 If this doesn't make any sense to you, just accept the default '$dflt'.
6681 EOM
6682 rp='Install any extra modules (y or n)?'
6683 . ./myread
6684 case "$ans" in
6685 y|Y)
6686         cat <<EOM
6687
6688 Please list any extra modules or bundles to be installed from CPAN,
6689 with spaces between the names.  The names can be in any format the
6690 'install' command of CPAN.pm will understand.  (Answer 'none',
6691 without the quotes, to install no extra modules or bundles.)
6692 EOM
6693         rp='Extras?'
6694         dflt="$extras"
6695         . ./myread
6696         extras="$ans"
6697 esac
6698 case "$extras" in
6699 ''|'none')
6700         val=''
6701         $rm -f ../extras.lst
6702         ;;
6703 *)      echo "(Saving the list of extras for later...)"
6704         echo "$extras" > ../extras.lst
6705         val="'$extras'"
6706         ;;
6707 esac
6708 set extras
6709 eval $setvar
6710 echo " "
6711
6712 : determine where html pages for programs go
6713 set html1dir html1dir none
6714 eval $prefixit
6715 $cat <<EOM
6716
6717 If you wish to install html files for programs in $spackage, indicate 
6718 the appropriate directory here.  To skip installing html files,
6719 answer "none".
6720 EOM
6721 case "$html1dir" in
6722 ''|none|$undef|' ') dflt=none ;;
6723 *) dflt=$html1dir ;;
6724 esac
6725 fn=dn+~
6726 rp="Directory for the main $spackage html pages?"
6727 . ./getfile
6728 html1dir="$ans"
6729 html1direxp="$ansexp"
6730 : Use ' ' for none so value is preserved next time through Configure
6731 $test X"$html1dir" = "X" && html1dir=' '
6732 : Change installation prefix, if necessary.
6733 if $test X"$prefix" != X"$installprefix"; then
6734         installhtml1dir=`echo $html1direxp | sed "s#^$prefix#$installprefix#"`
6735 else
6736         installhtml1dir="$html1direxp"
6737 fi
6738
6739 : determine where html pages for libraries and modules go
6740 set html3dir html3dir none
6741 eval $prefixit
6742 $cat <<EOM
6743
6744 If you wish to install html files for modules associated with $spackage,
6745 indicate the appropriate directory here.  To skip installing html files,
6746 answer "none".
6747 EOM
6748 : There is no obvious default.  If they have specified html1dir, then
6749 : try to key off that, possibly changing .../html1 into .../html3.
6750 case "$html3dir" in
6751 '') html3dir=`echo "$html1dir" | $sed 's/1$/3$/'` ;;
6752 *) dflt=$html3dir ;;
6753 esac
6754 fn=dn+~
6755 rp="Directory for the $spackage module html pages?"
6756 . ./getfile
6757 html3dir="$ans"
6758 html3direxp="$ansexp"
6759 : Use ' ' for none so value is preserved next time through Configure
6760 $test X"$html3dir" = "X" && html3dir=' '
6761 : Change installation prefix, if necessary.
6762 if $test X"$prefix" != X"$installprefix"; then
6763         installhtml3dir=`echo $html3direxp | sed "s#^$prefix#$installprefix#"`
6764 else
6765         installhtml3dir="$html3direxp"
6766 fi
6767
6768 : Find perl5.005 or later.
6769 echo "Looking for a previously installed perl5.005 or later... "
6770 case "$perl5" in
6771 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
6772                 : Check if this perl is recent and can load a simple module
6773                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6774                         perl5=$tdir/perl
6775                         break;
6776                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6777                         perl5=$tdir/perl5
6778                         break;
6779                 fi
6780         done
6781         ;;
6782 *)      perl5="$perl5"
6783         ;;
6784 esac
6785 case "$perl5" in
6786 '')     echo "None found.  That's ok.";;
6787 *)      echo "Using $perl5." ;;
6788 esac
6789
6790 : Determine list of previous versions to include in @INC
6791 $cat > getverlist <<EOPL
6792 #!$perl5 -w
6793 use File::Basename;
6794 \$api_versionstring = "$api_versionstring";
6795 \$version = "$version";
6796 \$stem = "$sitelib_stem";
6797 \$archname = "$archname";
6798 EOPL
6799         $cat >> getverlist <<'EOPL'
6800 # Can't have leading @ because metaconfig interprets it as a command!
6801 ;@inc_version_list=();
6802 # XXX Redo to do opendir/readdir? 
6803 if (-d $stem) {
6804     chdir($stem);
6805     ;@candidates = glob("5.*");
6806 }
6807 else {
6808     ;@candidates = ();
6809 }
6810
6811 # XXX ToDo:  These comparisons must be reworked when two-digit
6812 # subversions come along, so that 5.7.10 compares as greater than
6813 # 5.7.3!  By that time, hope that 5.6.x is sufficiently
6814 # widespread that we can use the built-in version vectors rather
6815 # than reinventing them here.  For 5.6.0, however, we must
6816 # assume this script will likely be run by 5.005_0x.  --AD 1/2000.
6817 foreach $d (@candidates) {
6818     if ($d lt $version) {
6819         if ($d ge $api_versionstring) {
6820             unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
6821         }
6822         elsif ($d ge "5.005") {
6823             unshift(@inc_version_list, grep { -d } $d);
6824         }
6825     }
6826     else {
6827         # Skip newer version.  I.e. don't look in
6828         # 5.7.0 if we're installing 5.6.1.
6829     }
6830 }
6831
6832 if (@inc_version_list) {
6833     print join(' ', @inc_version_list);
6834 }
6835 else {
6836     # Blank space to preserve value for next Configure run.
6837     print " ";
6838 }
6839 EOPL
6840 chmod +x getverlist
6841 case "$inc_version_list" in
6842 '')     if test -x "$perl5$exe_ext"; then
6843                 dflt=`$perl5 getverlist`
6844         else
6845                 dflt='none'
6846         fi
6847         ;;
6848 $undef) dflt='none' ;;
6849 *)  eval dflt=\"$inc_version_list\" ;;
6850 esac
6851 case "$dflt" in
6852 ''|' ') dflt=none ;;
6853 esac
6854 case "$dflt" in
6855 5.005) dflt=none ;;
6856 esac
6857 $cat <<EOM
6858
6859 In order to ease the process of upgrading, this version of perl 
6860 can be configured to use modules built and installed with earlier 
6861 versions of perl that were installed under $prefix.  Specify here
6862 the list of earlier versions that this version of perl should check.
6863 If Configure detected no earlier versions of perl installed under
6864 $prefix, then the list will be empty.  Answer 'none' to tell perl
6865 to not search earlier versions.
6866
6867 The default should almost always be sensible, so if you're not sure,
6868 just accept the default.
6869 EOM
6870
6871 rp='List of earlier versions to include in @INC?'
6872 . ./myread
6873 case "$ans" in
6874 [Nn]one|''|' ') inc_version_list=' ' ;;
6875 *) inc_version_list="$ans" ;;
6876 esac
6877 case "$inc_version_list" in
6878 ''|' ') 
6879         inc_version_list_init='0';;
6880 *)      inc_version_list_init=`echo $inc_version_list |
6881                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
6882         ;;
6883 esac
6884 $rm -f getverlist
6885
6886 : determine whether to install perl also as /usr/bin/perl
6887
6888 echo " "
6889 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
6890         $cat <<EOM
6891 Many scripts expect perl to be installed as /usr/bin/perl.
6892
6893 If you want to, I can install the perl you are about to compile
6894 as /usr/bin/perl (in addition to $bin/perl).
6895 EOM
6896         if test -f /usr/bin/perl; then
6897             $cat <<EOM
6898
6899 However, please note that because you already have a /usr/bin/perl,
6900 overwriting that with a new Perl would very probably cause problems.
6901 Therefore I'm assuming you don't want to do that (unless you insist).
6902
6903 EOM
6904             case "$installusrbinperl" in
6905             "$define"|[yY]*)    dflt='y';;
6906             *)                  dflt='n';;
6907             esac
6908         else
6909             $cat <<EOM
6910
6911 Since you don't have a /usr/bin/perl I'm assuming creating one is okay.
6912
6913 EOM
6914             case "$installusrbinperl" in
6915             "$undef"|[nN]*)     dflt='n';;
6916             *)                  dflt='y';;
6917             esac
6918         fi
6919         rp="Do you want to install perl as /usr/bin/perl?"
6920         . ./myread
6921         case "$ans" in
6922         [yY]*)  val="$define";;
6923         *)      val="$undef" ;;
6924         esac
6925 else
6926         val="$undef"
6927 fi
6928 set installusrbinperl
6929 eval $setvar
6930
6931 echo " "
6932 echo "Checking for GNU C Library..." >&4
6933 cat >try.c <<'EOCP'
6934 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
6935    alone are insufficient to distinguish different versions, such as
6936    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
6937    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
6938 */
6939 #include <stdio.h>
6940 int main(void)
6941 {
6942 #ifdef __GLIBC__
6943 #   ifdef __GLIBC_MINOR__
6944 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
6945 #           include <gnu/libc-version.h>
6946             printf("%s\n",  gnu_get_libc_version());
6947 #       else
6948             printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
6949 #       endif
6950 #   else
6951         printf("%d\n",  __GLIBC__);
6952 #   endif
6953     return 0;
6954 #else
6955     return 1;
6956 #endif
6957 }
6958 EOCP
6959 set try
6960 if eval $compile_ok && $run ./try > glibc.ver; then
6961         val="$define"
6962         gnulibc_version=`$cat glibc.ver`
6963         echo "You are using the GNU C Library version $gnulibc_version"
6964 else
6965         val="$undef"
6966         gnulibc_version=''
6967         echo "You are not using the GNU C Library"
6968 fi
6969 $rm -f try try.* glibc.ver
6970 set d_gnulibc
6971 eval $setvar
6972
6973 : see if nm is to be used to determine whether a symbol is defined or not
6974 case "$usenm" in
6975 '')
6976         dflt=''
6977         case "$d_gnulibc" in
6978         "$define")
6979                 echo " "
6980                 echo "nm probably won't work on the GNU C Library." >&4
6981                 dflt=n
6982                 ;;
6983         esac
6984         case "$dflt" in
6985         '') 
6986                 if $test "$osname" = aix -a "X$PASE" != "Xdefine" -a ! -f /lib/syscalls.exp; then
6987                         echo " "
6988                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
6989                         echo "'nm' won't be sufficient on this sytem." >&4
6990                         dflt=n
6991                 fi
6992                 ;;
6993         esac
6994         case "$dflt" in
6995         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
6996                 if $test $dflt -gt 20; then
6997                         dflt=y
6998                 else
6999                         dflt=n
7000                 fi
7001                 ;;
7002         esac
7003         ;;
7004 *)
7005         case "$usenm" in
7006         true|$define) dflt=y;;
7007         *) dflt=n;;
7008         esac
7009         ;;
7010 esac
7011 $cat <<EOM
7012
7013 I can use $nm to extract the symbols from your C libraries. This
7014 is a time consuming task which may generate huge output on the disk (up
7015 to 3 megabytes) but that should make the symbols extraction faster. The
7016 alternative is to skip the 'nm' extraction part and to compile a small
7017 test program instead to determine whether each symbol is present. If
7018 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
7019 this may be the best solution.
7020
7021 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
7022
7023 EOM
7024 rp="Shall I use $nm to extract C symbols from the libraries?"
7025 . ./myread
7026 case "$ans" in
7027 [Nn]*) usenm=false;;
7028 *) usenm=true;;
7029 esac
7030
7031 runnm=$usenm
7032 case "$reuseval" in
7033 true) runnm=false;;
7034 esac
7035
7036 : nm options which may be necessary
7037 case "$nm_opt" in
7038 '') if $test -f /mach_boot; then
7039                 nm_opt=''       # Mach
7040         elif $test -d /usr/ccs/lib; then
7041                 nm_opt='-p'     # Solaris (and SunOS?)
7042         elif $test -f /dgux; then
7043                 nm_opt='-p'     # DG-UX
7044         elif $test -f /lib64/rld; then
7045                 nm_opt='-p'     # 64-bit Irix
7046         else
7047                 nm_opt=''
7048         fi;;
7049 esac
7050
7051 : nm options which may be necessary for shared libraries but illegal
7052 : for archive libraries.  Thank you, Linux.
7053 case "$nm_so_opt" in
7054 '')     case "$myuname" in
7055         *linux*)
7056                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
7057                         nm_so_opt='--dynamic'
7058                 fi
7059                 ;;
7060         esac
7061         ;;
7062 esac
7063
7064 case "$runnm" in
7065 true)
7066 : get list of predefined functions in a handy place
7067 echo " "
7068 case "$libc" in
7069 '') libc=unknown
7070         case "$libs" in
7071         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
7072         esac
7073         ;;
7074 esac
7075 case "$libs" in
7076 '') ;;
7077 *)  for thislib in $libs; do
7078         case "$thislib" in
7079         -lc|-lc_s)
7080                 : Handle C library specially below.
7081                 ;;
7082         -l*)
7083                 thislib=`echo $thislib | $sed -e 's/^-l//'`
7084                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
7085                         :
7086                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
7087                         :
7088                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
7089                         :
7090                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
7091                         :
7092                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
7093                         :
7094                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
7095                         :
7096                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
7097                         :
7098                 else
7099                         try=''
7100                 fi
7101                 libnames="$libnames $try"
7102                 ;;
7103         *) libnames="$libnames $thislib" ;;
7104         esac
7105         done
7106         ;;
7107 esac
7108 xxx=normal
7109 case "$libc" in
7110 unknown)
7111         set /lib/libc.$so
7112         for xxx in $libpth; do
7113                 $test -r $1 || set $xxx/libc.$so
7114                 : The messy sed command sorts on library version numbers.
7115                 $test -r $1 || \
7116                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
7117                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
7118                                 h
7119                                 s/[0-9][0-9]*/0000&/g
7120                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
7121                                 G
7122                                 s/\n/ /' | \
7123                          $sort | $sed -e 's/^.* //'`
7124                 eval set \$$#
7125         done
7126         $test -r $1 || set /usr/ccs/lib/libc.$so
7127         $test -r $1 || set /lib/libsys_s$_a
7128         ;;
7129 *)
7130         set blurfl
7131         ;;
7132 esac
7133 if $test -r "$1"; then
7134         echo "Your (shared) C library seems to be in $1."
7135         libc="$1"
7136 elif $test -r /lib/libc && $test -r /lib/clib; then
7137         echo "Your C library seems to be in both /lib/clib and /lib/libc."
7138         xxx=apollo
7139         libc='/lib/clib /lib/libc'
7140         if $test -r /lib/syslib; then
7141                 echo "(Your math library is in /lib/syslib.)"
7142                 libc="$libc /lib/syslib"
7143         fi
7144 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7145         echo "Your C library seems to be in $libc, as you said before."
7146 elif $test -r $incpath/usr/lib/libc$_a; then
7147         libc=$incpath/usr/lib/libc$_a;
7148         echo "Your C library seems to be in $libc.  That's fine."
7149 elif $test -r /lib/libc$_a; then
7150         libc=/lib/libc$_a;
7151         echo "Your C library seems to be in $libc.  You're normal."
7152 else
7153         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
7154                 :
7155         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
7156                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
7157         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
7158                 :
7159         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7160                 :
7161         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7162                 :
7163         else
7164                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
7165         fi
7166         if $test -r "$tans"; then
7167                 echo "Your C library seems to be in $tans, of all places."
7168                 libc=$tans
7169         else
7170                 libc='blurfl'
7171         fi
7172 fi
7173 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7174         dflt="$libc"
7175         cat <<EOM
7176
7177 If the guess above is wrong (which it might be if you're using a strange
7178 compiler, or your machine supports multiple models), you can override it here.
7179
7180 EOM
7181 else
7182         dflt=''
7183         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
7184         cat >&4 <<EOM
7185 I can't seem to find your C library.  I've looked in the following places:
7186
7187 EOM
7188         $sed 's/^/      /' libpath
7189         cat <<EOM
7190
7191 None of these seems to contain your C library. I need to get its name...
7192
7193 EOM
7194 fi
7195 fn=f
7196 rp='Where is your C library?'
7197 . ./getfile
7198 libc="$ans"
7199
7200 echo " "
7201 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
7202 set X `cat libnames`
7203 shift
7204 xxx=files
7205 case $# in 1) xxx=file; esac
7206 echo "Extracting names from the following $xxx for later perusal:" >&4
7207 echo " "
7208 $sed 's/^/      /' libnames >&4
7209 echo " "
7210 $echo $n "This may take a while...$c" >&4
7211
7212 for file in $*; do
7213         case $file in
7214         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
7215         *) $nm $nm_opt $file 2>/dev/null;;
7216         esac
7217 done >libc.tmp
7218
7219 $echo $n ".$c"
7220 $grep fprintf libc.tmp > libc.ptf
7221 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
7222 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
7223 xxx='[ADTSIW]'
7224 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *//p'";\
7225         eval $xscan;\
7226         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7227                 eval $xrun
7228 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
7229         eval $xscan;\
7230         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7231                 eval $xrun
7232 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
7233         eval $xscan;\
7234         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7235                 eval $xrun
7236 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
7237         eval $xscan;\
7238         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7239                 eval $xrun
7240 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
7241         eval $xscan;\
7242         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7243                 eval $xrun
7244 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
7245         eval $xscan;\
7246         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7247                 eval $xrun
7248 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
7249                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
7250         eval $xscan;\
7251         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7252                 eval $xrun
7253 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
7254         eval $xscan;\
7255         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7256                 eval $xrun
7257 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
7258         eval $xscan;\
7259         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7260                 eval $xrun
7261 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
7262         eval $xscan;\
7263         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7264                 eval $xrun
7265 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
7266         eval $xscan;\
7267         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7268                 eval $xrun
7269 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
7270         eval $xscan;\
7271         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7272                 eval $xrun
7273 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
7274         eval $xscan;\
7275         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7276                 eval $xrun
7277 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
7278         eval $xscan;\
7279         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7280                 eval $xrun
7281 else
7282         $nm -p $* 2>/dev/null >libc.tmp
7283         $grep fprintf libc.tmp > libc.ptf
7284         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
7285                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
7286         then
7287                 nm_opt='-p'
7288                 eval $xrun
7289         else
7290                 echo " "
7291                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
7292                 com=''
7293                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
7294                         for thisname in $libnames $libc; do
7295                                 $ar t $thisname >>libc.tmp
7296                         done
7297                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
7298                         echo "Ok." >&4
7299                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
7300                         # Repeat libc to extract forwarders to DLL entries too
7301                         for thisname in $libnames $libc; do
7302                                 $ar tv $thisname >>libc.tmp
7303                                 # Revision 50 of EMX has bug in $ar.
7304                                 # it will not extract forwarders to DLL entries
7305                                 # Use emximp which will extract exactly them.
7306                                 emximp -o tmp.imp $thisname \
7307                                     2>/dev/null && \
7308                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
7309                                     < tmp.imp >>libc.tmp
7310                                 $rm tmp.imp
7311                         done
7312                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
7313                         echo "Ok." >&4
7314                 else
7315                         echo "$ar didn't seem to work right." >&4
7316                         echo "Maybe this is a Cray...trying bld instead..." >&4
7317                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
7318                         then
7319                                 for thisname in $libnames; do
7320                                         bld t $libnames | \
7321                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
7322                                         $ar t $thisname >>libc.tmp
7323                                 done
7324                                 echo "Ok." >&4
7325                         else
7326                                 echo "That didn't work either.  Giving up." >&4
7327                                 exit 1
7328                         fi
7329                 fi
7330         fi
7331 fi
7332 nm_extract="$com"
7333 case "$PASE" in
7334 define)
7335     echo " "
7336     echo "Since you are compiling for PASE, extracting more symbols from libc.a ...">&4
7337     dump -Tv /lib/libc.a | awk '$7 == "/unix" {print $5 " " $8}' | grep "^SV" | awk '{print $2}' >> libc.list
7338     ;;
7339 *)  if $test -f /lib/syscalls.exp; then
7340         echo " "
7341         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
7342         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
7343     fi
7344     ;;
7345 esac
7346 ;;
7347 esac
7348 $rm -f libnames libpath
7349
7350 : see if dld is available
7351 set dld.h i_dld
7352 eval $inhdr
7353
7354 : is a C symbol defined?
7355 csym='tlook=$1;
7356 case "$3" in
7357 -v) tf=libc.tmp; tc=""; tdc="";;
7358 -a) tf=libc.tmp; tc="[0]"; tdc="[]";;
7359 *) tlook="^$1\$"; tf=libc.list; tc=""; tdc="()";;
7360 esac;
7361 tx=yes;
7362 case "$reuseval-$4" in
7363 true-) ;;
7364 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
7365 esac;
7366 case "$tx" in
7367 yes)
7368         tval=false;
7369         if $test "$runnm" = true; then
7370                 if $contains $tlook $tf >/dev/null 2>&1; then
7371                         tval=true;
7372                 elif $test "$mistrustnm" = compile -o "$mistrustnm" = run; then
7373                         echo "int main() { extern void *$1$tdc; if (&$1$tc) return(0); else return(1); }" > try.c;
7374                         $cc -o try $optimize $ccflags $ldflags try.c >/dev/null 2>&1 $libs && tval=true;
7375                         $test "$mistrustnm" = run -a -x try && { $run ./try >/dev/null 2>&1 || tval=false; };
7376                         $rm -f try try.c core;
7377                 fi;
7378         else
7379                 echo "#include <stdio.h>" > try.c;
7380                 echo "int main() { extern void *$1$tdc; if(&$1$tc) return(0); else return(1); }" > try.c;
7381                 $cc -o try $optimize $ccflags $ldflags try.c $libs >/dev/null 2>&1 && tval=true;
7382                 $rm -f try try.c;
7383         fi;
7384         ;;
7385 *)
7386         case "$tval" in
7387         $define) tval=true;;
7388         *) tval=false;;
7389         esac;
7390         ;;
7391 esac;
7392 eval "$2=$tval"'
7393
7394 : define an is-in-libc? function
7395 inlibc='echo " "; td=$define; tu=$undef;
7396 sym=$1; var=$2; eval "was=\$$2";
7397 tx=yes;
7398 case "$reuseval$was" in
7399 true) ;;
7400 true*) tx=no;;
7401 esac;
7402 case "$tx" in
7403 yes)
7404         set $sym tres -f;
7405         eval $csym;
7406         case "$tres" in
7407         true)
7408                 echo "$sym() found." >&4;
7409                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
7410         *)
7411                 echo "$sym() NOT found." >&4;
7412                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
7413         esac;;
7414 *)
7415         case "$was" in
7416         $define) echo "$sym() found." >&4;;
7417         *) echo "$sym() NOT found." >&4;;
7418         esac;;
7419 esac'
7420
7421 : see if dlopen exists
7422 xxx_runnm="$runnm"
7423 runnm=false
7424 set dlopen d_dlopen
7425 eval $inlibc
7426 runnm="$xxx_runnm"
7427
7428 : determine which dynamic loading, if any, to compile in
7429 echo " "
7430 dldir="ext/DynaLoader"
7431 case "$usedl" in
7432 $define|y|true)
7433         dflt='y'
7434         usedl="$define"
7435         ;;
7436 $undef|n|false)
7437         dflt='n'
7438         usedl="$undef"
7439         ;;
7440 *) 
7441         dflt='n'
7442         case "$d_dlopen" in
7443             $define) dflt='y' ;;
7444         esac
7445         case "$i_dld" in
7446             $define) dflt='y' ;;
7447         esac
7448         : Does a dl_xxx.xs file exist for this operating system
7449         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7450         ;;
7451 esac
7452 rp="Do you wish to use dynamic loading?"
7453 . ./myread
7454 usedl="$ans"
7455 case "$ans" in
7456 y*) usedl="$define"
7457         case "$dlsrc" in
7458         '')
7459                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7460                         dflt="$dldir/dl_${osname}.xs"
7461                 elif $test "$d_dlopen" = "$define" ; then
7462                         dflt="$dldir/dl_dlopen.xs"
7463                 elif $test "$i_dld" = "$define" ; then
7464                         dflt="$dldir/dl_dld.xs"
7465                 else
7466                         dflt=''
7467                 fi
7468                 ;;
7469         *)      dflt="$dldir/$dlsrc"
7470                 ;;
7471         esac
7472     echo "The following dynamic loading files are available:"
7473         : Can not go over to $dldir because getfile has path hard-coded in.
7474         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7475         rp="Source file to use for dynamic loading"
7476         fn="fne"
7477         gfpth="$src"
7478         . ./getfile
7479         usedl="$define"
7480         : emulate basename
7481         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7482
7483         $cat << EOM
7484
7485 Some systems may require passing special flags to $cc -c to
7486 compile modules that will be used to create a shared library.
7487 To use no flags, say "none".
7488
7489 EOM
7490     case "$cccdlflags" in
7491     '') case "$gccversion" in
7492                 '') case "$osname" in
7493                         hpux)   dflt='+z' ;;
7494                         next)   dflt='none' ;;
7495                         irix*)  dflt='-KPIC' ;;
7496                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7497                         sunos)  dflt='-pic' ;;
7498                         *)      dflt='none' ;;
7499                     esac
7500                         ;;
7501                 *)  case "$osname" in
7502                         darwin) dflt='none' ;;
7503                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7504                         *)      dflt='-fpic' ;;
7505                     esac ;;
7506             esac ;;
7507         ' ') dflt='none' ;;
7508     *)  dflt="$cccdlflags" ;;
7509     esac
7510     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7511     . ./myread
7512     case "$ans" in
7513     none) cccdlflags=' ' ;;
7514     *) cccdlflags="$ans" ;;
7515     esac
7516
7517     cat << EOM
7518
7519 Some systems use ld to create libraries that can be dynamically loaded,
7520 while other systems (such as those using ELF) use $cc.
7521
7522 EOM
7523         case "$ld" in
7524         '')     $cat >try.c <<EOM
7525 /* Test for whether ELF binaries are produced */
7526 #include <fcntl.h>
7527 #$i_stdlib I_STDLIB
7528 #ifdef I_STDLIB
7529 #include <stdlib.h>
7530 #endif
7531 int main() {
7532         char b[4];
7533         int i = open("a.out",O_RDONLY);
7534         if(i == -1) 
7535                 exit(1); /* fail */
7536         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7537                 exit(0); /* succeed (yes, it's ELF) */
7538         else
7539                 exit(1); /* fail */
7540 }
7541 EOM
7542                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7543                         cat <<EOM
7544 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7545 EOM
7546                         dflt="$cc"
7547                 else
7548                         echo "I'll use ld to build dynamic libraries."
7549                         dflt='ld'
7550                 fi
7551                 rm -f try.c a.out
7552                 ;;
7553         *)      dflt="$ld"
7554                 ;;
7555         esac
7556
7557     rp="What command should be used to create dynamic libraries?"
7558     . ./myread
7559         ld="$ans"
7560
7561     cat << EOM
7562
7563 Some systems may require passing special flags to $ld to create a
7564 library that can be dynamically loaded.  If your ld flags include
7565 -L/other/path options to locate libraries outside your loader's normal
7566 search path, you may need to specify those -L options here as well.  To
7567 use no flags, say "none".
7568
7569 EOM
7570     case "$lddlflags" in
7571     '') case "$osname" in
7572                         beos) dflt='-nostart' ;;
7573                         hpux) dflt='-b';
7574                               case "$gccversion" in
7575                               '') dflt="$dflt +vnocompatwarnings" ;;
7576                               esac
7577                               ;;        
7578                         linux|irix*)    dflt='-shared' ;;
7579                         next)  dflt='none' ;;
7580                         solaris) dflt='-G' ;;
7581                         sunos) dflt='-assert nodefinitions' ;;
7582                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7583                 *)     dflt='none' ;;
7584                         esac
7585                         ;;
7586     *) dflt="$lddlflags" ;;
7587     esac
7588
7589         : Try to guess additional flags to pick up local libraries.
7590         : Be careful not to append to a plain 'none'
7591         case "$dflt" in
7592         none) dflt='' ;;
7593         esac
7594         for thisflag in $ldflags; do
7595                 case "$thisflag" in
7596                 -L*|-R*|-Wl,-R*)
7597                         case " $dflt " in
7598                         *" $thisflag "*) ;;
7599                         *) dflt="$dflt $thisflag" ;;
7600                         esac
7601                         ;;
7602                 esac
7603         done
7604
7605         case "$dflt" in
7606         ''|' ') dflt='none' ;;
7607         esac
7608
7609     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7610     . ./myread
7611     case "$ans" in
7612     none) lddlflags=' ' ;;
7613     *) lddlflags="$ans" ;;
7614     esac
7615
7616         cat <<EOM
7617
7618 Some systems may require passing special flags to $cc to indicate that
7619 the resulting executable will use dynamic linking.  To use no flags,
7620 say "none".
7621
7622 EOM
7623     case "$ccdlflags" in
7624     '') case "$osname" in
7625                 hpux)   dflt='-Wl,-E' ;;
7626                 linux)  dflt='-rdynamic' ;;
7627                 next)   dflt='none' ;;
7628                 sunos)  dflt='none' ;;
7629                 *)      dflt='none' ;;
7630             esac ;;
7631     ' ')  dflt='none' ;;
7632     *)  dflt="$ccdlflags" ;;
7633     esac
7634     rp="Any special flags to pass to $cc to use dynamic linking?"
7635     . ./myread
7636     case "$ans" in
7637     none) ccdlflags=' ' ;;
7638     *) ccdlflags="$ans" ;;
7639     esac
7640     ;;
7641 *)  usedl="$undef"
7642         ld='ld'
7643     dlsrc='dl_none.xs'
7644     lddlflags=''
7645     ccdlflags=''
7646     ;;
7647 esac
7648
7649 also=''
7650 case "$usedl" in
7651 $undef)
7652         # No dynamic loading being used, so don't bother even to prompt.
7653         useshrplib='false'
7654         ;;
7655 *)      case "$useshrplib" in
7656         '')     case "$osname" in
7657                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7658                         dflt=y
7659                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7660                         ;;
7661                 next*)
7662                         case "$osvers" in
7663                         4*)     dflt=y
7664                                 also='Building a shared libperl is needed for MAB support.'
7665                                 ;;
7666                         *)      dflt=n
7667                                 ;;
7668                         esac
7669                         ;;
7670                 *)      dflt=n
7671                         ;;
7672                 esac
7673                 ;;
7674         $define|true|[Yy]*)
7675                 dflt=y
7676                 ;;
7677         *)      dflt=n
7678                 ;;
7679         esac
7680         $cat << EOM
7681
7682 The perl executable is normally obtained by linking perlmain.c with
7683 libperl${_a}, any static extensions (usually just DynaLoader), and
7684 any other libraries needed on this system (such as -lm, etc.).  Since
7685 your system supports dynamic loading, it is probably possible to build
7686 a shared libperl.$so.  If you will have more than one executable linked
7687 to libperl.$so, this will significantly reduce the size of each
7688 executable, but it may have a noticeable affect on performance.  The
7689 default is probably sensible for your system.
7690 $also
7691
7692 EOM
7693         rp="Build a shared libperl.$so (y/n)"
7694         . ./myread
7695         case "$ans" in
7696         true|$define|[Yy]*)
7697                 useshrplib='true'  ;;
7698         *)      useshrplib='false' ;;
7699         esac
7700         ;;
7701 esac
7702
7703 case "$useshrplib" in
7704 true)
7705         case "$libperl" in
7706         '')
7707                 # Figure out a good name for libperl.so.  Since it gets stored in
7708                 # a version-specific architecture-dependent library, the version
7709                 # number isn't really that important, except for making cc/ld happy.
7710                 #
7711                 # A name such as libperl.so.3.1
7712                 majmin="libperl.$so.$patchlevel.$subversion"
7713                 # A name such as libperl.so.301
7714                 majonly=`echo $patchlevel $subversion |
7715                         $awk '{printf "%d%02d", $1, $2}'`
7716                 majonly=libperl.$so.$majonly
7717                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7718                 # rely on figuring it out from the naming of libc.
7719                 case "${osname}${osvers}" in
7720                 next4*)
7721                         dflt=libperl.5.$so
7722                         # XXX How handle the --version stuff for MAB?
7723                         ;;
7724                 linux*)  # ld won't link with a bare -lperl otherwise.
7725                         dflt=libperl.$so
7726                         ;;
7727                 cygwin*) # ld links against an importlib
7728                         dflt=libperl$lib_ext
7729                         ;;
7730                 *)      # Try to guess based on whether libc has major.minor.
7731                         case "$libc" in
7732                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7733                         *libc.$so.[0-9]*) dflt=$majonly ;;
7734                         *)      dflt=libperl.$so ;;
7735                         esac
7736                         ;;
7737                 esac
7738                 ;;
7739         *)      dflt=$libperl
7740                 ;;
7741         esac
7742         cat << EOM
7743
7744 I need to select a good name for the shared libperl.  If your system uses
7745 library names with major and minor numbers, then you might want something
7746 like $majmin.  Alternatively, if your system uses a single version
7747 number for shared libraries, then you might want to use $majonly.
7748 Or, your system might be quite happy with a simple libperl.$so.
7749
7750 Since the shared libperl will get installed into a version-specific
7751 architecture-dependent directory, the version number of the shared perl
7752 library probably isn't important, so the default should be o.k.
7753
7754 EOM
7755         rp='What name do you want to give to the shared libperl?'
7756         . ./myread
7757         libperl=$ans
7758         echo "Ok, I'll use $libperl"
7759         ;;
7760 *)
7761         libperl="libperl${_a}"
7762         ;;
7763 esac
7764
7765 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
7766 case "$shrpdir" in
7767 '') ;;
7768 *)      $cat >&4 <<EOM
7769 WARNING:  Use of the shrpdir variable for the installation location of
7770 the shared $libperl is not supported.  It was never documented and
7771 will not work in this version.  Let me (perlbug@perl.org)
7772 know of any problems this may cause.
7773
7774 EOM
7775         case "$shrpdir" in
7776         "$archlibexp/CORE")
7777                 $cat >&4 <<EOM
7778 But your current setting of $shrpdir is
7779 the default anyway, so it's harmless.
7780 EOM
7781                 ;;
7782         *)
7783                 $cat >&4 <<EOM
7784 Further, your current attempted setting of $shrpdir
7785 conflicts with the value of $archlibexp/CORE
7786 that installperl will use.
7787 EOM
7788                 ;;
7789         esac
7790         ;;
7791 esac
7792
7793 # How will the perl executable find the installed shared $libperl?
7794 # Add $xxx to ccdlflags.
7795 # If we can't figure out a command-line option, use $shrpenv to
7796 # set env LD_RUN_PATH.  The main perl makefile uses this.
7797 shrpdir=$archlibexp/CORE
7798 xxx=''
7799 tmp_shrpenv=''
7800 if "$useshrplib"; then
7801     case "$osname" in 
7802         aix)
7803                 # We'll set it in Makefile.SH...
7804                 ;;
7805         solaris)
7806                 xxx="-R $shrpdir"
7807                 ;;
7808         freebsd|netbsd|openbsd)
7809                 xxx="-Wl,-R$shrpdir"
7810                 ;;
7811         bsdos|linux|irix*|dec_osf)
7812                 xxx="-Wl,-rpath,$shrpdir"
7813                 ;;
7814         next)
7815                 # next doesn't like the default...
7816                 ;;
7817         beos)
7818                 # beos doesn't like the default, either.
7819                 ;;
7820         hpux*)
7821                 # hpux doesn't like the default, either.
7822                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7823                 ;;
7824         *)
7825                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7826                 ;;
7827         esac
7828         case "$xxx" in
7829         '') ;;
7830         *)      
7831                 # Only add $xxx if it isn't already in ccdlflags.
7832                 case " $ccdlflags " in
7833                 *" $xxx "*)     ;;
7834                 *)      ccdlflags="$ccdlflags $xxx"
7835                         cat <<EOM >&4
7836
7837 Adding $xxx to the flags
7838 passed to $ld so that the perl executable will find the 
7839 installed shared $libperl.
7840
7841 EOM
7842                         ;;
7843                 esac
7844                 ;;
7845         esac
7846 fi
7847 # Fix ccdlflags in AIX for building external extensions.
7848 # (For building Perl itself bare -bE:perl.exp is needed,
7849 #  Makefile.SH takes care of this.)
7850 case "$osname" in
7851 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7852 esac
7853 # Respect a hint or command-line value.
7854 case "$shrpenv" in
7855 '') shrpenv="$tmp_shrpenv" ;;
7856 esac
7857 case "$ldlibpthname" in
7858 '')     ldlibpthname=LD_LIBRARY_PATH ;;
7859 none)   ldlibpthname='' ;;
7860 esac
7861
7862 : determine where manual pages are on this system
7863 echo " "
7864 case "$sysman" in
7865 '') 
7866         syspath='/usr/share/man/man1 /usr/man/man1'
7867         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7868         syspath="$syspath /usr/man/u_man/man1"
7869         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7870         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7871         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7872         sysman=`./loc . /usr/man/man1 $syspath`
7873         ;;
7874 esac
7875 if $test -d "$sysman"; then
7876         echo "System manual is in $sysman." >&4
7877 else
7878         echo "Could not find manual pages in source form." >&4
7879 fi
7880
7881 : determine where manual pages go
7882 set man1dir man1dir none
7883 eval $prefixit
7884 $cat <<EOM
7885
7886 $spackage has manual pages available in source form.
7887 EOM
7888 case "$nroff" in
7889 nroff)
7890         echo "However, you don't have nroff, so they're probably useless to you."
7891         case "$man1dir" in
7892         '') man1dir="none";;
7893         esac;;
7894 esac
7895 echo "If you don't want the manual sources installed, answer 'none'."
7896 case "$man1dir" in
7897 ' ') dflt=none
7898         ;;
7899 '')
7900         lookpath="$prefixexp/share/man/man1"
7901         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
7902         lookpath="$lookpath $prefixexp/man/p_man/man1"
7903         lookpath="$lookpath $prefixexp/man/u_man/man1"
7904         lookpath="$lookpath $prefixexp/man/man.1"
7905         case "$sysman" in
7906         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
7907         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
7908         esac
7909         set dflt
7910         eval $prefixup
7911         ;;
7912 *)  dflt="$man1dir"
7913         ;;
7914 esac
7915 echo " "
7916 fn=dn+~
7917 rp="Where do the main $spackage manual pages (source) go?"
7918 . ./getfile
7919 if $test "X$man1direxp" != "X$ansexp"; then
7920         installman1dir=''
7921 fi
7922 man1dir="$ans"
7923 man1direxp="$ansexp"
7924 case "$man1dir" in
7925 '')     man1dir=' '
7926         installman1dir='';;
7927 esac
7928
7929 : Change installation prefix, if necessary.
7930 if $test X"$prefix" != X"$installprefix"; then
7931         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
7932 else
7933         installman1dir="$man1direxp"
7934 fi
7935
7936 : What suffix to use on installed man pages
7937
7938 case "$man1dir" in
7939 ' ')
7940         man1ext='0'
7941         ;;
7942 *)
7943         rp="What suffix should be used for the main $spackage man pages?"
7944         case "$man1ext" in
7945         '')     case "$man1dir" in
7946                 *1)  dflt=1 ;;
7947                 *1p) dflt=1p ;;
7948                 *1pm) dflt=1pm ;;
7949                 *l) dflt=l;;
7950                 *n) dflt=n;;
7951                 *o) dflt=o;;
7952                 *p) dflt=p;;
7953                 *C) dflt=C;;
7954                 *L) dflt=L;;
7955                 *L1) dflt=L1;;
7956                 *) dflt=1;;
7957                 esac
7958                 ;;
7959         *)      dflt="$man1ext";;
7960         esac
7961         . ./myread
7962         man1ext="$ans"
7963         ;;
7964 esac
7965
7966 : see if we can have long filenames
7967 echo " "
7968 first=123456789abcdef
7969 $rm -f $first
7970 if (echo hi >$first) 2>/dev/null; then
7971         if $test -f 123456789abcde; then
7972                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
7973                 val="$undef"
7974         else
7975                 echo 'You can have filenames longer than 14 characters.'>&4
7976                 val="$define"
7977         fi
7978 else
7979         $cat <<'EOM'
7980 You can't have filenames longer than 14 chars.
7981 You can't even think about them!
7982 EOM
7983         val="$undef"
7984 fi 
7985 set d_flexfnam
7986 eval $setvar
7987 $rm -rf 123456789abcde*
7988
7989 : determine where library module manual pages go
7990 set man3dir man3dir none
7991 eval $prefixit
7992 $cat <<EOM
7993
7994 $spackage has manual pages for many of the library modules.
7995 EOM
7996
7997 case "$nroff" in
7998 nroff)
7999         $cat <<'EOM'
8000 However, you don't have nroff, so they're probably useless to you.
8001 EOM
8002         case "$man3dir" in
8003         '') man3dir="none";;
8004         esac;;
8005 esac
8006
8007 case "$d_flexfnam" in
8008 undef)
8009         $cat <<'EOM'
8010 However, your system can't handle the long file names like File::Basename.3. 
8011 EOM
8012         case "$man3dir" in
8013         '') man3dir="none";;
8014         esac;;
8015 esac
8016
8017 echo "If you don't want the manual sources installed, answer 'none'."
8018 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8019 case "$man3dir" in
8020 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8021         if $test -d "$privlib/man/man3"; then
8022                 cat <<EOM >&4
8023
8024 WARNING:  Previous versions of perl installed man3 pages into
8025 $privlib/man/man3.  This version will suggest a 
8026 new default of $dflt.  
8027 EOM
8028                 tdflt=$dflt
8029                 dflt='n'
8030                 rp='Do you wish to preserve the old behavior?(y/n)'
8031                 . ./myread
8032                 case "$ans" in
8033                 y*) dflt="$privlib/man/man3" ;;
8034                 *)  dflt=$tdflt ;;
8035                 esac
8036     fi
8037         ;;
8038 *)      dflt="$man3dir" ;;
8039 esac
8040 case "$dflt" in
8041 ' ') dflt=none ;;
8042 esac
8043 echo " "
8044 fn=dn+~
8045 rp="Where do the $package library man pages (source) go?"
8046 . ./getfile
8047 man3dir="$ans"
8048 man3direxp="$ansexp"
8049 case "$man3dir" in
8050 '')     man3dir=' '
8051         installman3dir='';;
8052 esac
8053
8054 : Change installation prefix, if necessary.
8055 if $test X"$prefix" != X"$installprefix"; then
8056         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
8057 else
8058         installman3dir="$man3direxp"
8059 fi
8060
8061 : What suffix to use on installed man pages
8062 case "$man3dir" in
8063 ' ')
8064         man3ext='0'
8065         ;;
8066 *)
8067         rp="What suffix should be used for the $package library man pages?"
8068         case "$man3ext" in
8069         '')     case "$man3dir" in
8070                 *3)  dflt=3 ;;
8071                 *3p) dflt=3p ;;
8072                 *3pm) dflt=3pm ;;
8073                 *l) dflt=l;;
8074                 *n) dflt=n;;
8075                 *o) dflt=o;;
8076                 *p) dflt=p;;
8077                 *C) dflt=C;;
8078                 *L) dflt=L;;
8079                 *L3) dflt=L3;;
8080                 *) dflt=3;;
8081                 esac
8082                 ;;
8083         *)      dflt="$man3ext";;
8084         esac
8085         . ./myread
8086         man3ext="$ans"
8087         ;;
8088 esac
8089
8090 : see if we have to deal with yellow pages, now NIS.
8091 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8092         if $test -f /usr/etc/nibindd; then
8093                 echo " "
8094                 echo "I'm fairly confident you're on a NeXT."
8095                 echo " "
8096                 rp='Do you get the hosts file via NetInfo?'
8097                 dflt=y
8098                 case "$hostcat" in
8099                 nidump*) ;;
8100                 '') ;;
8101                 *) dflt=n;;
8102                 esac
8103                 . ./myread
8104                 case "$ans" in
8105                 y*) hostcat='nidump hosts .';;
8106                 *)      case "$hostcat" in
8107                         nidump*) hostcat='';;
8108                         esac
8109                         ;;
8110                 esac
8111         fi
8112         case "$hostcat" in
8113         nidump*) ;;
8114         *)
8115                 case "$hostcat" in
8116                 *ypcat*) dflt=y;;
8117                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8118                                 dflt=y
8119                         else
8120                                 dflt=n
8121                         fi;;
8122                 *) dflt=n;;
8123                 esac
8124                 echo " "
8125                 rp='Are you getting the hosts file via yellow pages?'
8126                 . ./myread
8127                 case "$ans" in
8128                 y*) hostcat='ypcat hosts';;
8129                 *) hostcat='cat /etc/hosts';;
8130                 esac
8131                 ;;
8132         esac
8133 fi
8134 case "$hostcat" in
8135 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8136 esac
8137 case "$groupcat" in
8138 '') test -f /etc/group && groupcat='cat /etc/group';;
8139 esac
8140 case "$passcat" in
8141 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8142 esac
8143
8144 : now get the host name
8145 echo " "
8146 echo "Figuring out host name..." >&4
8147 case "$myhostname" in
8148 '') cont=true
8149         echo 'Maybe "hostname" will work...'
8150         if tans=`sh -c hostname 2>&1` ; then
8151                 myhostname=$tans
8152                 phostname=hostname
8153                 cont=''
8154         fi
8155         ;;
8156 *) cont='';;
8157 esac
8158 if $test "$cont"; then
8159         if ./xenix; then
8160                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8161                 if tans=`cat /etc/systemid 2>&1` ; then
8162                         myhostname=$tans
8163                         phostname='cat /etc/systemid'
8164                         echo "Whadyaknow.  Xenix always was a bit strange..."
8165                         cont=''
8166                 fi
8167         elif $test -r /etc/systemid; then
8168                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8169         fi
8170 fi
8171 if $test "$cont"; then
8172         echo 'No, maybe "uuname -l" will work...'
8173         if tans=`sh -c 'uuname -l' 2>&1` ; then
8174                 myhostname=$tans
8175                 phostname='uuname -l'
8176         else
8177                 echo 'Strange.  Maybe "uname -n" will work...'
8178                 if tans=`sh -c 'uname -n' 2>&1` ; then
8179                         myhostname=$tans
8180                         phostname='uname -n'
8181                 else
8182                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8183                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8184                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8185                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8186                         else
8187                                 case "$myhostname" in
8188                                 '') echo "Does this machine have an identity crisis or something?"
8189                                         phostname='';;
8190                                 *)
8191                                         echo "Well, you said $myhostname before..."
8192                                         phostname='echo $myhostname';;
8193                                 esac
8194                         fi
8195                 fi
8196         fi
8197 fi
8198 case "$myhostname" in
8199 '') myhostname=noname ;;
8200 esac
8201 : you do not want to know about this
8202 set $myhostname
8203 myhostname=$1
8204
8205 : verify guess
8206 if $test "$myhostname" ; then
8207         dflt=y
8208         rp='Your host name appears to be "'$myhostname'".'" Right?"
8209         . ./myread
8210         case "$ans" in
8211         y*) ;;
8212         *) myhostname='';;
8213         esac
8214 fi
8215
8216 : bad guess or no guess
8217 while $test "X$myhostname" = X ; do
8218         dflt=''
8219         rp="Please type the (one word) name of your host:"
8220         . ./myread
8221         myhostname="$ans"
8222 done
8223
8224 : translate upper to lower if necessary
8225 case "$myhostname" in
8226 *[A-Z]*)
8227         echo "(Normalizing case in your host name)"
8228         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8229         ;;
8230 esac
8231
8232 case "$myhostname" in
8233 *.*)
8234         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8235         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8236         echo "(Trimming domain name from host name--host name is now $myhostname)"
8237         ;;
8238 *) case "$mydomain" in
8239         '')
8240                 {
8241                         test "X$hostcat" = "Xypcat hosts" &&
8242                         ypmatch "$myhostname" hosts 2>/dev/null |\
8243                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8244                         $test -s hosts
8245                 } || {
8246                         test "X$hostcat" != "X" &&
8247                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8248                                         /[       ]$myhostname[  . ]/p" > hosts
8249                 }
8250                 tmp_re="[       . ]"
8251                 if $test -f hosts; then
8252                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8253                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8254                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8255                                 hosts | $sort | $uniq | \
8256                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8257                         case `$echo X$dflt` in
8258                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8259                                 dflt=.
8260                                 ;;
8261                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8262                                 ;;
8263                         esac
8264                 else
8265                         echo "(I cannot locate a hosts database anywhere)"
8266                         dflt=.
8267                 fi
8268                 case "$dflt" in
8269                 .)
8270                         tans=`./loc resolv.conf X /etc /usr/etc`
8271                         if $test -f "$tans"; then
8272                                 echo "(Attempting domain name extraction from $tans)"
8273                                 dflt=.`$sed -n -e 's/   / /g' \
8274                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8275                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8276                                 case "$dflt" in
8277                                 .) dflt=.`$sed -n -e 's/        / /g' \
8278                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8279                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8280                                         ;;
8281                                 esac
8282                         fi
8283                         ;;
8284                 esac
8285                 case "$dflt" in
8286                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8287                         dflt=.`sh -c domainname 2>/dev/null`
8288                         case "$dflt" in
8289                         '') dflt='.';;
8290                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8291                         esac
8292                         ;;
8293                 esac
8294                 case "$dflt$osname" in
8295                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8296                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8297                         ;;
8298                 esac
8299                 case "$dflt" in
8300                 .) echo "(Lost all hope -- silly guess then)"
8301                         dflt='.nonet'
8302                         ;;
8303                 esac
8304                 $rm -f hosts
8305                 ;;
8306         *) dflt="$mydomain";;
8307         esac;;
8308 esac
8309 echo " "
8310 rp="What is your domain name?"
8311 . ./myread
8312 tans="$ans"
8313 case "$ans" in
8314 '') ;;
8315 .*) ;;
8316 *) tans=".$tans";;
8317 esac
8318 mydomain="$tans"
8319
8320 : translate upper to lower if necessary
8321 case "$mydomain" in
8322 *[A-Z]*)
8323         echo "(Normalizing case in your domain name)"
8324         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8325         ;;
8326 esac
8327
8328 : a little sanity check here
8329 case "$phostname" in
8330 '') ;;
8331 *)
8332         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8333         $myhostname$mydomain|$myhostname) ;;
8334         *)
8335                 case "$phostname" in
8336                 sed*)
8337                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8338                         ;;
8339                 *)
8340                         echo "(That doesn't agree with your $phostname command, by the way.)"
8341                         ;;
8342                 esac
8343         ;;
8344         esac
8345         ;;
8346 esac
8347
8348 $cat <<EOM
8349
8350 I need to get your e-mail address in Internet format if possible, i.e.
8351 something like user@host.domain. Please answer accurately since I have
8352 no easy means to double check it. The default value provided below
8353 is most probably close to reality but may not be valid from outside
8354 your organization...
8355
8356 EOM
8357 cont=x
8358 while test "$cont"; do
8359         case "$cf_email" in
8360         '') dflt="$cf_by@$myhostname$mydomain";;
8361         *) dflt="$cf_email";;
8362         esac
8363         rp='What is your e-mail address?'
8364         . ./myread
8365         cf_email="$ans"
8366         case "$cf_email" in
8367         *@*.*) cont='' ;;
8368         *)
8369                 rp='Address does not look like an Internet one.  Use it anyway?'
8370                 case "$fastread" in
8371                 yes) dflt=y ;;
8372                 *) dflt=n ;;
8373                 esac
8374                 . ./myread
8375                 case "$ans" in
8376                 y*) cont='' ;;
8377                 *) echo " " ;;
8378                 esac
8379                 ;;
8380         esac
8381 done
8382
8383 $cat <<EOM
8384
8385 If you or somebody else will be maintaining perl at your site, please
8386 fill in the correct e-mail address here so that they may be contacted
8387 if necessary. Currently, the "perlbug" program included with perl
8388 will send mail to this address in addition to perlbug@perl.org. You may
8389 enter "none" for no administrator.
8390
8391 EOM
8392 case "$perladmin" in
8393 '') dflt="$cf_email";;
8394 *) dflt="$perladmin";;
8395 esac
8396 rp='Perl administrator e-mail address'
8397 . ./myread
8398 perladmin="$ans"
8399
8400 : determine whether to only install version-specific parts.
8401 echo " "
8402 $cat <<EOM
8403 Do you want to install only the version-specific parts of the perl
8404 distribution?  Usually you do *not* want to do this.
8405 EOM
8406 case "$versiononly" in
8407 "$define"|[Yy]*|true) dflt='y' ;;
8408 *) dflt='n';
8409 esac
8410 rp="Do you want to install only the version-specific parts of perl?"
8411 . ./myread
8412 case "$ans" in
8413 [yY]*)  val="$define";;
8414 *)      val="$undef" ;;
8415 esac
8416 set versiononly
8417 eval $setvar
8418
8419 case "$versiononly" in
8420 "$define") inc_version_list=''
8421            inc_version_list_init=0
8422            ;;
8423 esac
8424
8425 : figure out how to guarantee perl startup
8426 case "$startperl" in
8427 '')
8428         case "$sharpbang" in
8429         *!)
8430                 $cat <<EOH
8431
8432 I can use the #! construct to start perl on your system. This will
8433 make startup of perl scripts faster, but may cause problems if you
8434 want to share those scripts and perl is not in a standard place
8435 ($binexp/perl) on all your platforms. The alternative is to force
8436 a shell by starting the script with a single ':' character.
8437
8438 EOH
8439                 case "$versiononly" in
8440                 "$define")      dflt="$binexp/perl$version";;  
8441                 *)              dflt="$binexp/perl";;
8442                 esac
8443                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8444                 . ./myread
8445                 case "$ans" in
8446                 none)   startperl=": # use perl";;
8447                 *)      startperl="#!$ans"
8448                         if $test 30 -lt `echo "$ans" | wc -c`; then
8449                                 $cat >&4 <<EOM
8450
8451 WARNING:  Some systems limit the #! command to 32 characters.
8452 If you experience difficulty running Perl scripts with #!, try
8453 installing Perl in a directory with a shorter pathname.
8454
8455 EOM
8456                         fi ;;
8457                 esac
8458                 ;;
8459         *) startperl=": # use perl"
8460                 ;;
8461         esac
8462         ;;
8463 esac
8464 echo "I'll use $startperl to start perl scripts."
8465
8466 : figure best path for perl in scripts
8467 case "$perlpath" in
8468 '')
8469         case "$versiononly" in
8470         "$define")      perlpath="$binexp/perl$version";;
8471         *)              perlpath="$binexp/perl";;
8472         esac
8473         case "$startperl" in
8474         *!*) ;;
8475         *)
8476                 $cat <<EOH
8477
8478 I will use the "eval 'exec'" idiom to start Perl on your system.
8479 I can use the full path of your Perl binary for this purpose, but
8480 doing so may cause problems if you want to share those scripts and
8481 Perl is not always in a standard place ($binexp/perl).
8482
8483 EOH
8484                 dflt="$binexp/perl"
8485                 rp="What path shall I use in \"eval 'exec'\"?"
8486                 . ./myread
8487                 perlpath="$ans"
8488                 ;;
8489         esac
8490         ;;
8491 esac
8492 case "$startperl" in
8493 *!*)    ;;
8494 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8495 esac
8496
8497 : determine where public executable scripts go
8498 set scriptdir scriptdir
8499 eval $prefixit
8500 case "$scriptdir" in
8501 '')
8502         dflt="$bin"
8503         : guess some guesses
8504         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8505         $test -d /usr/share/bin     && dflt=/usr/share/bin
8506         $test -d /usr/local/script  && dflt=/usr/local/script
8507         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8508         $test -d $prefixexp/script  && dflt=$prefixexp/script
8509         set dflt
8510         eval $prefixup
8511         ;;
8512 *)  dflt="$scriptdir"
8513         ;;
8514 esac
8515 $cat <<EOM
8516  
8517 Some installations have a separate directory just for executable scripts so
8518 that they can mount it across multiple architectures but keep the scripts in
8519 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8520 Or you might just lump your scripts in with all your other executables.
8521  
8522 EOM
8523 fn=d~
8524 rp='Where do you keep publicly executable scripts?'
8525 . ./getfile
8526 if $test "X$ansexp" != "X$scriptdirexp"; then
8527         installscript=''
8528 fi
8529 scriptdir="$ans"
8530 scriptdirexp="$ansexp"
8531 : Change installation prefix, if necessary.
8532 if $test X"$prefix" != X"$installprefix"; then
8533         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
8534 else
8535         installscript="$scriptdirexp"
8536 fi
8537
8538 : determine where add-on public executables go
8539 case "$sitebin" in
8540 '')     dflt=$siteprefix/bin ;;
8541 *)      dflt=$sitebin ;;
8542 esac
8543 fn=d~
8544 rp='Pathname where the add-on public executables should be installed?'
8545 . ./getfile
8546 sitebin="$ans"
8547 sitebinexp="$ansexp"
8548 : Change installation prefix, if necessary.
8549 if $test X"$prefix" != X"$installprefix"; then
8550         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
8551 else
8552         installsitebin="$sitebinexp"
8553 fi
8554
8555 : determine where add-on html pages go
8556 : There is no standard location, so try to copy the previously-selected
8557 : directory structure for the core html pages.
8558 case "$sitehtml1dir" in
8559 '')    dflt=`echo "$html1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8560 *)     dflt=$sitehtml1dir ;;
8561 esac
8562 case "$dflt" in
8563 ''|' ') dflt=none ;;
8564 esac
8565 fn=dn+~
8566 rp='Pathname where the site-specific html pages should be installed?'
8567 . ./getfile
8568 sitehtml1dir="$ans"
8569 sitehtml1direxp="$ansexp"
8570 : Change installation prefix, if necessary.
8571 if $test X"$prefix" != X"$installprefix"; then
8572         installsitehtml1dir=`echo $sitehtml1direxp | $sed "s#^$prefix#$installprefix#"`
8573 else
8574         installsitehtml1dir="$sitehtml1direxp"
8575 fi
8576
8577 : determine where add-on library html pages go
8578 : There is no standard location, so try to copy the previously-selected
8579 : directory structure for the core html pages.
8580 case "$sitehtml3dir" in
8581 '')    dflt=`echo "$html3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8582 *)     dflt=$sitehtml3dir ;;
8583 esac
8584 case "$dflt" in
8585 ''|' ') dflt=none ;;
8586 esac
8587 fn=dn+~
8588 rp='Pathname where the site-specific library html pages should be installed?'
8589 . ./getfile
8590 sitehtml3dir="$ans"
8591 sitehtml3direxp="$ansexp"
8592 : Change installation prefix, if necessary.
8593 if $test X"$prefix" != X"$installprefix"; then
8594         installsitehtml3dir=`echo $sitehtml3direxp | $sed "s#^$prefix#$installprefix#"`
8595 else
8596         installsitehtml3dir="$sitehtml3direxp"
8597 fi
8598
8599 : determine where add-on manual pages go
8600 case "$siteman1dir" in
8601 '')     dflt=`echo $man1dir | $sed "s#^$prefix#$siteprefix#"` ;;
8602 *)      dflt=$siteman1dir ;;
8603 esac
8604 fn=dn+~
8605 rp='Pathname where the site-specific manual pages should be installed?'
8606 . ./getfile
8607 siteman1dir="$ans"
8608 siteman1direxp="$ansexp"
8609 : Change installation prefix, if necessary.
8610 if $test X"$prefix" != X"$installprefix"; then
8611         installsiteman1dir=`echo $siteman1direxp | $sed "s#^$prefix#$installprefix#"`
8612 else
8613         installsiteman1dir="$siteman1direxp"
8614 fi
8615
8616 : determine where add-on library man pages go
8617 case "$siteman3dir" in
8618 '')     dflt=`echo $man3dir | $sed "s#^$prefix#$siteprefix#"` ;;
8619 *)      dflt=$siteman3dir ;;
8620 esac
8621 fn=dn+~
8622 rp='Pathname where the site-specific library manual pages should be installed?'
8623 . ./getfile
8624 siteman3dir="$ans"
8625 siteman3direxp="$ansexp"
8626 : Change installation prefix, if necessary.
8627 if $test X"$prefix" != X"$installprefix"; then
8628         installsiteman3dir=`echo $siteman3direxp | $sed "s#^$prefix#$installprefix#"`
8629 else
8630         installsiteman3dir="$siteman3direxp"
8631 fi
8632
8633 : determine where add-on public executable scripts go
8634 case "$sitescript" in
8635 '')     dflt=$siteprefix/script
8636         $test -d $dflt || dflt=$sitebin ;;
8637 *)  dflt="$sitescript" ;;
8638 esac
8639 fn=d~+
8640 rp='Pathname where add-on public executable scripts should be installed?'
8641 . ./getfile
8642 sitescript="$ans"
8643 sitescriptexp="$ansexp"
8644 : Change installation prefix, if necessary.
8645 if $test X"$prefix" != X"$installprefix"; then
8646         installsitescript=`echo $sitescriptexp | sed "s#^$prefix#$installprefix#"`
8647 else
8648         installsitescript="$sitescriptexp"
8649 fi
8650
8651 case "$usefaststdio" in
8652 $define|true|[yY]*|'')
8653         xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
8654         case "$xversion" in
8655         [68])   dflt='y' ;;
8656         *)      dflt='n' ;;
8657         esac
8658         ;;
8659 *) dflt='n';;
8660 esac
8661 cat <<EOM
8662
8663 Perl can be built to use 'fast stdio', which means using the stdio
8664 library but also directly manipulating the stdio buffers to enable
8665 faster I/O.  Using stdio is better for backward compatibility (especially
8666 for Perl extensions), but on the other hand since Perl 5.8 the 'perlio'
8667 interface has been preferred instead of stdio.
8668
8669 If this doesn't make any sense to you, just accept the default '$dflt'.
8670 EOM
8671 rp='Use the "fast stdio" if available?'
8672 . ./myread
8673 case "$ans" in
8674 y|Y)    val="$define" ;;     
8675 *)      val="$undef" ;;
8676 esac
8677 set usefaststdio
8678 eval $setvar
8679
8680
8681 : define an is-a-typedef? function
8682 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8683 case "$inclist" in
8684 "") inclist="sys/types.h";;
8685 esac;
8686 eval "varval=\$$var";
8687 case "$varval" in
8688 "")
8689         $rm -f temp.c;
8690         for inc in $inclist; do
8691                 echo "#include <$inc>" >>temp.c;
8692         done;
8693         echo "#ifdef $type" >> temp.c;
8694         echo "printf(\"We have $type\");" >> temp.c;
8695         echo "#endif" >> temp.c;
8696         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8697         if $contains $type temp.E >/dev/null 2>&1; then
8698                 eval "$var=\$type";
8699         else
8700                 eval "$var=\$def";
8701         fi;
8702         $rm -f temp.?;;
8703 *) eval "$var=\$varval";;
8704 esac'
8705
8706 : define an is-a-typedef? function that prompts if the type is not available.
8707 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8708 case "$inclist" in
8709 "") inclist="sys/types.h";;
8710 esac;
8711 eval "varval=\$$var";
8712 case "$varval" in
8713 "")
8714         $rm -f temp.c;
8715         for inc in $inclist; do
8716                 echo "#include <$inc>" >>temp.c;
8717         done;
8718         echo "#ifdef $type" >> temp.c;
8719         echo "printf(\"We have $type\");" >> temp.c;
8720         echo "#endif" >> temp.c;
8721         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8722         echo " " ;
8723         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8724         if $contains $type temp.E >/dev/null 2>&1; then
8725                 echo "$type found." >&4;
8726                 eval "$var=\$type";
8727         else
8728                 echo "$type NOT found." >&4;
8729                 dflt="$def";
8730                 . ./myread ;
8731                 eval "$var=\$ans";
8732         fi;
8733         $rm -f temp.?;;
8734 *) eval "$var=\$varval";;
8735 esac'
8736
8737 : see what type lseek is declared as in the kernel
8738 rp="What is the type used for lseek's offset on this system?"
8739 set off_t lseektype long stdio.h sys/types.h
8740 eval $typedef_ask
8741
8742 echo " "
8743 echo "Checking to see how big your file offsets are..." >&4
8744 $cat >try.c <<EOCP
8745 #include <sys/types.h>
8746 #include <stdio.h>
8747 int main()
8748 {
8749     printf("%d\n", (int)sizeof($lseektype));
8750     return(0); 
8751 }
8752 EOCP
8753 set try
8754 if eval $compile_ok; then
8755         lseeksize=`$run ./try`
8756         echo "Your file offsets are $lseeksize bytes long."
8757 else
8758         dflt=$longsize
8759         echo " "
8760         echo "(I can't seem to compile the test program.  Guessing...)"
8761         rp="What is the size of your file offsets (in bytes)?"
8762         . ./myread
8763         lseeksize="$ans"
8764 fi
8765 $rm -f try.c try
8766
8767 : see what type file positions are declared as in the library
8768 rp="What is the type for file position used by fsetpos()?"
8769 set fpos_t fpostype long stdio.h sys/types.h
8770 eval $typedef_ask
8771
8772 echo " "
8773 case "$fpostype" in
8774 *_t) zzz="$fpostype"    ;;
8775 *)   zzz="fpos_t"       ;;
8776 esac
8777 echo "Checking the size of $zzz..." >&4 
8778 cat > try.c <<EOCP
8779 #include <sys/types.h>
8780 #include <stdio.h>
8781 #$i_stdlib I_STDLIB
8782 #ifdef I_STDLIB
8783 #include <stdlib.h>
8784 #endif
8785 int main() {
8786     printf("%d\n", (int)sizeof($fpostype));
8787     exit(0);
8788 }
8789 EOCP
8790 set try
8791 if eval $compile_ok; then
8792         yyy=`$run ./try`
8793         case "$yyy" in
8794         '')     fpossize=4
8795                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8796                 ;;
8797         *)      fpossize=$yyy
8798                 echo "Your $zzz is $fpossize bytes long."
8799                 ;;
8800         esac
8801 else
8802         dflt="$longsize"
8803         echo " " >&4
8804         echo "(I can't compile the test program.  Guessing...)" >&4
8805         rp="What is the size of your file positions (in bytes)?"
8806         . ./myread
8807         fpossize="$ans"
8808 fi
8809
8810 # Backward compatibility (uselfs is deprecated).
8811 case "$uselfs" in
8812 "$define"|true|[yY]*)
8813         cat <<EOM >&4
8814
8815 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
8816 EOM
8817         uselargefiles="$define"
8818         ;;
8819 esac                          
8820
8821 case "$lseeksize:$fpossize" in
8822 8:8) cat <<EOM
8823
8824 You can have files larger than 2 gigabytes.
8825 EOM
8826    val="$define" ;;
8827 *)    case "$uselargefiles" in
8828    "$undef"|false|[nN]*) dflt='n' ;;
8829    *)   dflt='y' ;;
8830    esac
8831    cat <<EOM
8832
8833 Perl can be built to understand large files (files larger than 2 gigabytes)
8834 on some systems.  To do so, Configure can be run with -Duselargefiles.
8835
8836 If this doesn't make any sense to you, just accept the default '$dflt'.
8837 EOM
8838    rp='Try to understand large files, if available?'
8839    . ./myread
8840    case "$ans" in
8841    y|Y)         val="$define" ;;
8842    *)           val="$undef"  ;;
8843    esac
8844    ;;
8845 esac
8846 set uselargefiles
8847 eval $setvar
8848 case "$uselargefiles" in
8849 "$define")
8850 : Look for a hint-file generated 'call-back-unit'.  If the
8851 : user has specified that a large files perl is to be built,
8852 : we may need to set or change some other defaults.
8853         if $test -f uselargefiles.cbu; then
8854                 echo "Your platform has some specific hints for large file builds, using them..."
8855                 . ./uselargefiles.cbu
8856                 echo " "
8857                 echo "Rechecking to see how big your file offsets are..." >&4
8858                 $cat >try.c <<EOCP
8859 #include <sys/types.h>
8860 #include <stdio.h>
8861 int main()
8862 {
8863     printf("%d\n", (int)sizeof($lseektype));
8864     return(0); 
8865 }
8866 EOCP
8867                 set try
8868                 if eval $compile_ok; then
8869                         lseeksize=`$run ./try`
8870                         $echo "Your file offsets are now $lseeksize bytes long."
8871                 else
8872                         dflt="$lseeksize"
8873                         echo " "
8874                         echo "(I can't seem to compile the test program.  Guessing...)"
8875                         rp="What is the size of your file offsets (in bytes)?"
8876                         . ./myread
8877                         lseeksize="$ans"
8878                 fi
8879                 case "$fpostype" in
8880                 *_t) zzz="$fpostype"    ;;
8881                 *)   zzz="fpos_t"       ;;
8882                 esac
8883                 $echo $n "Rechecking the size of $zzz...$c" >&4 
8884                 $cat > try.c <<EOCP
8885 #include <sys/types.h>
8886 #include <stdio.h>
8887 #$i_stdlib I_STDLIB
8888 #ifdef I_STDLIB
8889 #include <stdlib.h>
8890 #endif
8891 int main() {
8892     printf("%d\n", (int)sizeof($fpostype));
8893     return(0);
8894 }
8895 EOCP
8896                 set try
8897                 if eval $compile_ok; then
8898                         yyy=`$run ./try`
8899                         dflt="$lseeksize"
8900                         case "$yyy" in
8901                         '')     echo " "
8902                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8903                                 ;;
8904                         *)      fpossize=$yyy
8905                                 echo " $fpossize bytes." >&4
8906                                 ;;
8907                         esac
8908                 else
8909                         dflt="$fpossize"
8910                         echo " "
8911                         echo "(I can't compile the test program.  Guessing...)" >&4
8912                         rp="What is the size of your file positions (in bytes)?"
8913                         . ./myread
8914                         fpossize="$ans"
8915                 fi
8916                 $rm -f try.c try
8917         fi
8918         ;;
8919 esac
8920
8921 case "$vendorprefix" in
8922 '')     d_vendorbin="$undef"
8923         vendorbin=''
8924         vendorbinexp=''
8925         ;;
8926 *)      d_vendorbin="$define"
8927         : determine where vendor-supplied executables go.
8928         case "$vendorbin" in
8929         '') dflt=$vendorprefix/bin ;;
8930         *)      dflt="$vendorbin" ;;
8931         esac
8932         fn=d~+
8933         rp='Pathname for the vendor-supplied executables directory?'
8934         . ./getfile
8935         vendorbin="$ans"
8936         vendorbinexp="$ansexp"
8937         ;;
8938 esac
8939 : Change installation prefix, if necessary.
8940 if $test X"$prefix" != X"$installprefix"; then
8941         installvendorbin=`echo $vendorbinexp | $sed "s#^$prefix#$installprefix#"`
8942 else
8943         installvendorbin="$vendorbinexp"
8944 fi
8945
8946 case "$vendorprefix" in
8947 '')     vendorhtml1dir=''
8948         vendorhtml1direxp=''
8949         ;;
8950 *)      : determine where vendor-supplied html pages go.
8951         : There is no standard location, so try to copy the previously-selected
8952         : directory structure for the core html pages.
8953         : XXX Better default suggestions would be welcome.
8954         case "$vendorhtml1dir" in
8955         '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
8956         *)      dflt=$vendorhtml1dir ;;
8957         esac
8958         case "$dflt" in
8959         ''|' ') dflt=none ;;
8960         esac
8961         fn=dn+~
8962         rp='Pathname for the vendor-supplied html pages?'
8963         . ./getfile
8964         vendorhtml1dir="$ans"
8965         vendorhtml1direxp="$ansexp"
8966         ;;
8967 esac
8968 : Use ' ' for none so value is preserved next time through Configure
8969 $test X"$vendorhtml1dir" = "X" && vendorhtml1dir=' '
8970 : Change installation prefix, if necessary.
8971 if $test X"$prefix" != X"$installprefix"; then
8972         installvendorhtml1dir=`echo $vendorhtml1direxp | $sed "s#^$prefix#$installprefix#"`
8973 else
8974         installvendorhtml1dir="$vendorhtml1direxp"
8975 fi
8976
8977 case "$vendorprefix" in
8978 '')     vendorhtml3dir=''
8979         vendorhtml3direxp=''
8980         ;;
8981 *)      : determine where vendor-supplied module html pages go.
8982         : There is no standard location, so try to copy the previously-selected
8983         : directory structure for the core html pages.
8984         : XXX Better default suggestions would be welcome.
8985         case "$vendorhtml3dir" in
8986         '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
8987         *)      dflt=$vendorhtml3dir ;;
8988         esac
8989         case "$dflt" in
8990         ''|' ') dflt=none ;;
8991         esac
8992         fn=dn+~
8993         rp='Pathname for the vendor-supplied html pages?'
8994         . ./getfile
8995         vendorhtml3dir="$ans"
8996         vendorhtml3direxp="$ansexp"
8997         ;;
8998 esac
8999 : Use ' ' for none so value is preserved next time through Configure
9000 $test X"$vendorhtml3dir" = "X" && vendorhtml3dir=' '
9001 : Change installation prefix, if necessary.
9002 if $test X"$prefix" != X"$installprefix"; then
9003         installvendorhtml3dir=`echo $vendorhtml3direxp | $sed "s#^$prefix#$installprefix#"`
9004 else
9005         installvendorhtml3dir="$vendorhtml3direxp"
9006 fi
9007
9008 case "$vendorprefix" in
9009 '')     vendorman1dir=''
9010         vendorman1direxp=''
9011         ;;
9012 *)      : determine where vendor-supplied manual pages go.
9013         case "$vendorman1dir" in
9014         '') dflt=`echo "$man1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9015         *)      dflt=$vendorman1dir ;;
9016         esac
9017         case "$dflt" in
9018         ''|' ') dflt=none ;;
9019         esac
9020         fn=nd~+
9021         rp='Pathname for the vendor-supplied manual section 1 pages?'
9022         . ./getfile
9023         vendorman1dir="$ans"
9024         vendorman1direxp="$ansexp"
9025         ;;
9026 esac
9027 : Use ' ' for none so value is preserved next time through Configure
9028 $test X"$vendorman1dir" = "X" && vendorman1dir=' '
9029 : Change installation prefix, if necessary.
9030 if $test X"$prefix" != X"$installprefix"; then
9031         installvendorman1dir=`echo "$vendorman1direxp" | $sed "s#^$prefix#$installprefix#"`
9032 else
9033         installvendorman1dir="$vendorman1direxp"
9034 fi
9035
9036 case "$vendorprefix" in
9037 '')     vendorman3dir=''
9038         vendorman3direxp=''
9039         ;;
9040 *)      : determine where vendor-supplied module manual pages go.
9041         case "$vendorman3dir" in
9042         '') dflt=`echo "$man3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9043         *)      dflt=$vendorman3dir ;;
9044         esac
9045         case "$dflt" in
9046         ''|' ') dflt=none ;;
9047         esac
9048         fn=nd~+
9049         rp='Pathname for the vendor-supplied manual section 3 pages?'
9050         . ./getfile
9051         vendorman3dir="$ans"
9052         vendorman3direxp="$ansexp"
9053         ;;
9054 esac
9055 : Use ' ' for none so value is preserved next time through Configure
9056 $test X"$vendorman3dir" = "X" && vendorman3dir=' '
9057 : Change installation prefix, if necessary.
9058 if $test X"$prefix" != X"$installprefix"; then
9059         installvendorman3dir=`echo "$vendorman3direxp" | $sed "s#^$prefix#$installprefix#"`
9060 else
9061         installvendorman3dir="$vendorman3direxp"
9062 fi
9063
9064 case "$vendorprefix" in
9065 '')     d_vendorscript="$undef"
9066         vendorscript=''
9067         vendorscriptexp=''
9068         ;;
9069 *)      d_vendorscript="$define"
9070         : determine where vendor-supplied scripts go.
9071         case "$vendorscript" in
9072         '')     dflt=$vendorprefix/script
9073                 $test -d $dflt || dflt=$vendorbin ;;
9074         *)  dflt="$vendorscript" ;;
9075         esac
9076         $cat <<EOM
9077
9078 The installation process will create a directory for 
9079 vendor-supplied scripts.
9080
9081 EOM
9082         fn=d~+
9083         rp='Pathname for the vendor-supplied scripts directory?'
9084         . ./getfile
9085         vendorscript="$ans"
9086         vendorscriptexp="$ansexp"
9087         ;;
9088 esac
9089 : Change installation prefix, if necessary.
9090 if $test X"$prefix" != X"$installprefix"; then
9091         installvendorscript=`echo $vendorscriptexp | $sed "s#^$prefix#$installprefix#"`
9092 else
9093         installvendorscript="$vendorscriptexp"
9094 fi
9095
9096 : see if qgcvt exists
9097 set qgcvt d_qgcvt
9098 eval $inlibc
9099
9100 echo " "
9101
9102 if $test X"$d_longdbl" = X"$define"; then
9103
9104 echo "Checking how to print long doubles..." >&4
9105
9106 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
9107         $cat >try.c <<'EOCP'
9108 #include <sys/types.h>
9109 #include <stdio.h>
9110 int main() {
9111   double d = 123.456;
9112   printf("%.3f\n", d);
9113 }
9114 EOCP
9115         set try
9116         if eval $compile; then
9117                 yyy=`$run ./try`
9118                 case "$yyy" in
9119                 123.456)
9120                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
9121                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
9122                         echo "We will use %f."
9123                         ;;
9124                 esac
9125         fi
9126 fi
9127
9128 if $test X"$sPRIfldbl" = X; then
9129         $cat >try.c <<'EOCP'
9130 #include <sys/types.h>
9131 #include <stdio.h>
9132 int main() {
9133   long double d = 123.456;
9134   printf("%.3Lf\n", d);
9135 }
9136 EOCP
9137         set try
9138         if eval $compile; then
9139                 yyy=`$run ./try`
9140                 case "$yyy" in
9141                 123.456)
9142                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
9143                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
9144                         echo "We will use %Lf."
9145                         ;;
9146                 esac
9147         fi
9148 fi
9149
9150 if $test X"$sPRIfldbl" = X; then
9151         $cat >try.c <<'EOCP'
9152 #include <sys/types.h>
9153 #include <stdio.h>
9154 int main() {
9155   long double d = 123.456;
9156   printf("%.3llf\n", d);
9157 }
9158 EOCP
9159         set try
9160         if eval $compile; then
9161                 yyy=`$run ./try`
9162                 case "$yyy" in
9163                 123.456)
9164                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
9165                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
9166                         echo "We will use %llf."
9167                         ;;
9168                 esac
9169         fi
9170 fi
9171
9172 if $test X"$sPRIfldbl" = X; then
9173         $cat >try.c <<'EOCP'
9174 #include <sys/types.h>
9175 #include <stdio.h>
9176 int main() {
9177   long double d = 123.456;
9178   printf("%.3lf\n", d);
9179 }
9180 EOCP
9181         set try
9182         if eval $compile; then
9183                 yyy=`$run ./try`
9184                 case "$yyy" in
9185                 123.456)
9186                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
9187                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
9188                         echo "We will use %lf."
9189                         ;;
9190                 esac
9191         fi
9192 fi
9193
9194 if $test X"$sPRIfldbl" = X; then
9195         echo "Cannot figure out how to print long doubles." >&4
9196 else
9197         sSCNfldbl=$sPRIfldbl    # expect consistency
9198 fi
9199
9200 $rm -f try try.*
9201
9202 fi # d_longdbl
9203
9204 case "$sPRIfldbl" in
9205 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
9206         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
9207         d_SCNfldbl="$undef";
9208         ;;
9209 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
9210         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
9211         d_SCNfldbl="$define";
9212         ;;
9213 esac
9214
9215 : Check how to convert floats to strings.
9216
9217 if test "X$d_Gconvert" = X; then
9218
9219 echo " "
9220 echo "Checking for an efficient way to convert floats to strings."
9221 echo " " > try.c
9222 case "$uselongdouble" in
9223 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
9224 esac
9225 case "$d_longdbl" in
9226 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
9227 esac
9228 case "$d_PRIgldbl" in
9229 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
9230 esac
9231 $cat >>try.c <<EOP
9232 #ifdef TRY_gconvert
9233 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
9234 char *myname = "gconvert";
9235 #endif
9236 #ifdef TRY_gcvt
9237 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
9238 char *myname = "gcvt";
9239 #endif
9240 #ifdef TRY_qgcvt
9241 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
9242 char *myname = "qgcvt";
9243 #define DOUBLETYPE long double
9244 #endif
9245 #ifdef TRY_sprintf
9246 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9247 #ifdef HAS_PRIgldbl
9248 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
9249 #else
9250 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
9251 #endif
9252 #else
9253 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
9254 #endif
9255 char *myname = "sprintf";
9256 #endif
9257
9258 #ifndef DOUBLETYPE
9259 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9260 #define DOUBLETYPE long double
9261 #else
9262 #define DOUBLETYPE double
9263 #endif
9264 #endif
9265
9266 #include <stdio.h>
9267
9268 #define I_STDLIB $i_stdlib
9269 #ifdef I_STDLIB
9270 #include <stdlib.h>
9271 #endif
9272
9273 int
9274 checkit(expect, got)
9275 char *expect;
9276 char *got;
9277 {
9278     if (strcmp(expect, got)) {
9279                 printf("%s oddity:  Expected %s, got %s\n",
9280                         myname, expect, got);
9281                 exit(1);
9282         }
9283 }
9284
9285 int main()
9286
9287         char buf[64]; 
9288         buf[63] = '\0';
9289
9290         /* This must be 1st test on (which?) platform */
9291         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
9292         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
9293         checkit("0.1", buf);
9294
9295         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
9296         checkit("0.01", buf);
9297
9298         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
9299         checkit("0.001", buf);
9300
9301         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
9302         checkit("0.0001", buf);
9303
9304         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
9305         if (strlen(buf) > 5)
9306             checkit("9e-005", buf); /* for Microsoft ?? */
9307         else
9308             checkit("9e-05", buf);
9309
9310         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
9311         checkit("1", buf);
9312
9313         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
9314         checkit("1.1", buf);
9315
9316         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
9317         checkit("1.01", buf);
9318
9319         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
9320         checkit("1.001", buf);
9321
9322         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
9323         checkit("1.0001", buf);
9324
9325         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
9326         checkit("1.00001", buf);
9327
9328         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
9329         checkit("1.000001", buf);
9330
9331         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
9332         checkit("0", buf);
9333
9334         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
9335         checkit("-1", buf);
9336
9337         /* Some Linux gcvt's give 1.e+5 here. */
9338         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
9339         checkit("100000", buf);
9340         
9341         /* Some Linux gcvt's give -1.e+5 here. */
9342         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
9343         checkit("-100000", buf);
9344
9345         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
9346         checkit("123.456", buf);
9347
9348         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
9349         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
9350         /* 34 should be enough to scare even long double
9351          * places into using the e notation. */
9352         if (strlen(buf) > 5)
9353             checkit("1e+034", buf); /* for Microsoft */
9354         else
9355             checkit("1e+34", buf);
9356
9357         /* For Perl, if you add additional tests here, also add them to
9358          * t/base/num.t for benefit of platforms not using Configure or
9359          * overriding d_Gconvert */
9360
9361         exit(0);
9362 }
9363 EOP
9364 : first add preferred functions to our list
9365 xxx_list=""
9366 for xxx_convert in $gconvert_preference; do
9367     case $xxx_convert in
9368     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
9369     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
9370     esac 
9371 done
9372 : then add any others
9373 for xxx_convert in gconvert gcvt sprintf; do
9374     case "$xxx_list" in
9375     *$xxx_convert*) ;;
9376     *) xxx_list="$xxx_list $xxx_convert" ;;
9377     esac 
9378 done
9379
9380 case "$d_longdbl$uselongdouble" in
9381 "$define$define")
9382     : again, add prefered functions to our list first
9383     xxx_ld_list=""
9384     for xxx_convert in $gconvert_ld_preference; do
9385         case $xxx_convert in
9386         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9387         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9388         esac
9389     done
9390     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9391     for xxx_convert in qgcvt sprintf $xxx_list; do
9392         case "$xxx_ld_list" in
9393         $xxx_convert*|*" $xxx_convert"*) ;;
9394         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9395         esac
9396     done
9397     : if sprintf cannot do long doubles, move it to the end
9398     if test "$d_PRIgldbl" != "$define"; then
9399         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9400     fi
9401     : if no qgcvt, remove it
9402     if test "$d_qgcvt" != "$define"; then
9403         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9404     fi
9405     : use the ld_list
9406     xxx_list="$xxx_ld_list"
9407     ;;
9408 esac
9409
9410 for xxx_convert in $xxx_list; do
9411         echo "Trying $xxx_convert..."
9412         $rm -f try try$_o
9413         set try -DTRY_$xxx_convert
9414         if eval $compile; then
9415                 echo "$xxx_convert() found." >&4
9416                 if $run ./try; then
9417                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9418                         break;
9419                 else
9420                         echo "...But $xxx_convert didn't work as I expected."
9421                         xxx_convert=''
9422                 fi
9423         else
9424                 echo "$xxx_convert NOT found." >&4
9425         fi
9426 done
9427
9428 if test X$xxx_convert = X; then
9429     echo "*** WHOA THERE!!! ***" >&4
9430     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9431     xxx_convert=sprintf
9432 fi
9433
9434 case "$xxx_convert" in
9435 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9436 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9437 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9438 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9439    "$define$define$define")
9440       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9441    "$define$define$undef")
9442       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9443    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9444    esac
9445    ;;  
9446 esac
9447
9448 fi
9449
9450 : see if _fwalk exists
9451 set fwalk d__fwalk
9452 eval $inlibc
9453
9454 : Initialize h_fcntl
9455 h_fcntl=false
9456
9457 : Initialize h_sysfile
9458 h_sysfile=false
9459
9460 : access call always available on UNIX
9461 set access d_access
9462 eval $inlibc
9463
9464 : locate the flags for 'access()'
9465 case "$d_access" in
9466 "$define")
9467         echo " "
9468         $cat >access.c <<EOCP
9469 #include <sys/types.h>
9470 #ifdef I_FCNTL
9471 #include <fcntl.h>
9472 #endif
9473 #ifdef I_SYS_FILE
9474 #include <sys/file.h>
9475 #endif
9476 #ifdef I_UNISTD
9477 #include <unistd.h>
9478 #endif
9479 #$i_stdlib I_STDLIB
9480 #ifdef I_STDLIB
9481 #include <stdlib.h>
9482 #endif
9483 int main() {
9484         exit(R_OK);
9485 }
9486 EOCP
9487         : check sys/file.h first, no particular reason here
9488         if $test `./findhdr sys/file.h` && \
9489                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9490                 h_sysfile=true;
9491                 echo "<sys/file.h> defines the *_OK access constants." >&4
9492         elif $test `./findhdr fcntl.h` && \
9493                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9494                 h_fcntl=true;
9495                 echo "<fcntl.h> defines the *_OK access constants." >&4
9496         elif $test `./findhdr unistd.h` && \
9497                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9498                 echo "<unistd.h> defines the *_OK access constants." >&4
9499         else
9500                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9501         fi
9502         ;;
9503 esac
9504 $rm -f access*
9505
9506 : see if accessx exists
9507 set accessx d_accessx
9508 eval $inlibc
9509
9510 : see if aintl exists
9511 set aintl d_aintl
9512 eval $inlibc
9513
9514 : see if alarm exists
9515 set alarm d_alarm
9516 eval $inlibc
9517
9518 : see if POSIX threads are available
9519 set pthread.h i_pthread
9520 eval $inhdr
9521
9522 : define a fucntion to check prototypes
9523 $cat > protochk <<EOSH
9524 $startsh
9525 cc="$cc"
9526 optimize="$optimize"
9527 ccflags="$ccflags"
9528 prototype="$prototype"
9529 define="$define"
9530 rm=$rm
9531 usethreads=$usethreads
9532 i_pthread=$i_pthread
9533 pthread_h_first=$pthread_h_first
9534 EOSH
9535
9536 $cat >> protochk <<'EOSH'
9537
9538 $rm -f try.c
9539 foo="$1"
9540 shift
9541 while test $# -ge 2; do
9542         case "$1" in
9543                 $define) echo "#include <$2>" >> try.c ;;
9544                 literal) echo "$2" >> try.c ;;
9545         esac
9546     # Extra magic for the benefit of systems that need pthread.h
9547     # to be included early to correctly detect threadsafe functions.
9548     # Such functions must guarantee themselves, though, that the usethreads
9549     # and i_pthread have been defined, before calling protochk.
9550     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9551         echo "#include <pthread.h>" >> try.c
9552         pthread_h_done=yes
9553     fi
9554     shift 2
9555 done
9556 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9557 cat >> try.c <<'EOCP'
9558 #ifdef CAN_PROTOTYPE
9559 #define _(args) args
9560 #else
9561 #define _(args) ()
9562 #endif
9563 EOCP
9564 echo "$foo" >> try.c
9565 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9566 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9567 status=$?
9568 $rm -f try.[co]
9569 exit $status
9570 EOSH
9571 chmod +x protochk
9572 $eunicefix protochk
9573
9574 hasproto='varname=$1; func=$2; shift; shift;
9575 while $test $# -ge 2; do
9576         case "$1" in
9577         $define) echo "#include <$2>";;
9578         esac ;
9579     shift 2;
9580 done > try.c;
9581 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9582 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9583         echo "$func() prototype found.";
9584         val="$define";
9585 else
9586         echo "$func() prototype NOT found.";
9587         val="$undef";
9588 fi;
9589 set $varname;
9590 eval $setvar;
9591 $rm -f try.c tryout.c'
9592
9593 : see if sys/types.h has to be included
9594 set sys/types.h i_systypes
9595 eval $inhdr
9596
9597 : see if sys/select.h has to be included
9598 set sys/select.h i_sysselct
9599 eval $inhdr
9600
9601 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9602 while $test $# -ge 2; do
9603         case "$1" in
9604         $define) echo "#include <$2>";;
9605         esac ;
9606     shift 2;
9607 done > try.c;
9608 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9609 set try;
9610 if eval $compile; then
9611         val="$define";
9612 else
9613         val="$undef";
9614 fi;
9615 set $varname;
9616 eval $setvar;
9617 $rm -f try.c try.o'
9618
9619 : see if we should include time.h, sys/time.h, or both
9620 echo " "
9621 if test "X$timeincl" = X; then
9622         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9623         $echo $n "I'm now running the test program...$c"
9624         $cat >try.c <<EOCP
9625 #include <sys/types.h>
9626 #ifdef I_TIME
9627 #include <time.h>
9628 #endif
9629 #ifdef I_SYSTIME
9630 #ifdef SYSTIMEKERNEL
9631 #define KERNEL
9632 #endif
9633 #include <sys/time.h>
9634 #endif
9635 #ifdef I_SYSSELECT
9636 #include <sys/select.h>
9637 #endif
9638 #$i_stdlib I_STDLIB
9639 #ifdef I_STDLIB
9640 #include <stdlib.h>
9641 #endif
9642 int main()
9643 {
9644         struct tm foo;
9645 #ifdef S_TIMEVAL
9646         struct timeval bar;
9647 #endif
9648 #ifdef S_TIMEZONE
9649         struct timezone tzp;
9650 #endif
9651         if (foo.tm_sec == foo.tm_sec)
9652                 exit(0);
9653 #ifdef S_TIMEVAL
9654         if (bar.tv_sec == bar.tv_sec)
9655                 exit(0);
9656 #endif
9657         exit(1);
9658 }
9659 EOCP
9660         flags=''
9661         for s_timezone in '-DS_TIMEZONE' ''; do
9662         sysselect=''
9663         for s_timeval in '-DS_TIMEVAL' ''; do
9664         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9665         for i_time in '' '-DI_TIME'; do
9666         for i_systime in '-DI_SYSTIME' ''; do
9667                 case "$flags" in
9668                 '') $echo $n ".$c"
9669                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9670                         if eval $compile; then
9671                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9672                                 shift
9673                                 flags="$*"
9674                                 echo " "
9675                                 $echo $n "Succeeded with $flags$c"
9676                         fi
9677                         ;;
9678                 esac
9679         done
9680         done
9681         done
9682         done
9683         done
9684         timeincl=''
9685         echo " "
9686         case "$flags" in
9687         *SYSTIMEKERNEL*) i_systimek="$define"
9688                 timeincl=`./findhdr sys/time.h`
9689                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9690         *) i_systimek="$undef";;
9691         esac
9692         case "$flags" in
9693         *I_TIME*) i_time="$define"
9694                 timeincl=`./findhdr time.h`" $timeincl"
9695                 echo "We'll include <time.h>." >&4;;
9696         *) i_time="$undef";;
9697         esac
9698         case "$flags" in
9699         *I_SYSTIME*) i_systime="$define"
9700                 timeincl=`./findhdr sys/time.h`" $timeincl"
9701                 echo "We'll include <sys/time.h>." >&4;;
9702         *) i_systime="$undef";;
9703         esac
9704         $rm -f try.c try
9705 fi
9706 : see if struct tm knows about tm_zone
9707 case "$i_systime$i_time" in
9708 *$define*) 
9709         echo " "
9710         echo "Checking to see if your struct tm has tm_zone field..." >&4
9711         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9712         eval $hasfield
9713         ;;
9714 *)      val="$undef"
9715         set d_tm_tm_zone
9716         eval $setvar
9717         ;;
9718 esac
9719 case "$d_tm_tm_zone" in
9720 "$define")      echo "Yes, it does."   ;;
9721 *)              echo "No, it doesn't." ;;
9722 esac
9723 : see if struct tm knows about tm_gmtoff
9724 case "$i_systime$i_time" in
9725 *$define*) 
9726         echo " "
9727         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9728         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9729         eval $hasfield
9730         ;;
9731 *)      val="$undef"
9732         set d_tm_tm_gmtoff
9733         eval $setvar
9734         ;;
9735 esac
9736 case "$d_tm_tm_gmtoff" in
9737 "$define")      echo "Yes, it does."   ;;
9738 *)              echo "No, it doesn't." ;;
9739 esac
9740
9741 : see if asctime_r exists
9742 set asctime_r d_asctime_r
9743 eval $inlibc
9744 case "$d_asctime_r" in
9745 "$define")
9746         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
9747         case "$d_asctime_r_proto:$usethreads" in
9748         ":define")      d_asctime_r_proto=define
9749                 set d_asctime_r_proto asctime_r $hdrs
9750                 eval $hasproto ;;
9751         *)      ;;
9752         esac
9753         case "$d_asctime_r_proto" in
9754         define)
9755         case "$asctime_r_proto" in
9756         ''|0) try='char* asctime_r(const struct tm*, char*);'
9757         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9758         esac
9759         case "$asctime_r_proto" in
9760         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9761         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9762         esac
9763         case "$asctime_r_proto" in
9764         ''|0) try='int asctime_r(const struct tm*, char*);'
9765         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9766         esac
9767         case "$asctime_r_proto" in
9768         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9769         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9770         esac
9771         case "$asctime_r_proto" in
9772         ''|0)   d_asctime_r=undef
9773                 asctime_r_proto=0
9774                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9775         * )     case "$asctime_r_proto" in
9776                 REENTRANT_PROTO*) ;;
9777                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9778                 esac
9779                 echo "Prototype: $try" ;;
9780         esac
9781         ;;
9782         *)      case "$usethreads" in
9783                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9784                 esac
9785                 d_asctime_r=undef
9786                 asctime_r_proto=0
9787                 ;;
9788         esac
9789         ;;
9790 *)      asctime_r_proto=0
9791         ;;
9792 esac
9793
9794 : see if atolf exists
9795 set atolf d_atolf
9796 eval $inlibc
9797
9798 : see if atoll exists
9799 set atoll d_atoll
9800 eval $inlibc
9801
9802 : Look for GNU-cc style attribute checking
9803 echo " "
9804 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9805 $cat >attrib.c <<'EOCP'
9806 #include <stdio.h>
9807 void croak (char* pat,...) __attribute__((__format__(__printf__,1,2),noreturn));
9808 EOCP
9809 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9810         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9811                 echo "Your C compiler doesn't fully support __attribute__."
9812                 val="$undef"
9813         else
9814                 echo "Your C compiler supports __attribute__."
9815                 val="$define"
9816         fi
9817 else
9818         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9819         val="$undef"
9820 fi
9821 set d_attribut
9822 eval $setvar
9823 $rm -f attrib*
9824
9825 : see if bcmp exists
9826 set bcmp d_bcmp
9827 eval $inlibc
9828
9829 : see if bcopy exists
9830 set bcopy d_bcopy
9831 eval $inlibc
9832
9833 : see if this is a unistd.h system
9834 set unistd.h i_unistd
9835 eval $inhdr
9836
9837 : see if getpgrp exists
9838 set getpgrp d_getpgrp
9839 eval $inlibc
9840
9841 case "$d_getpgrp" in
9842 "$define")
9843         echo " "
9844         echo "Checking to see which flavor of getpgrp is in use..."
9845         $cat >try.c <<EOP
9846 #$i_unistd I_UNISTD
9847 #include <sys/types.h>
9848 #ifdef I_UNISTD
9849 #  include <unistd.h>
9850 #endif
9851 #$i_stdlib I_STDLIB
9852 #ifdef I_STDLIB
9853 #include <stdlib.h>
9854 #endif
9855 int main()
9856 {
9857         if (getuid() == 0) {
9858                 printf("(I see you are running Configure as super-user...)\n");
9859                 setuid(1);
9860         }
9861 #ifdef TRY_BSD_PGRP
9862         if (getpgrp(1) == 0)
9863                 exit(0);
9864 #else
9865         if (getpgrp() > 0)
9866                 exit(0);
9867 #endif
9868         exit(1);
9869 }
9870 EOP
9871         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9872                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9873                 val="$define"
9874         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9875                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9876                 val="$undef"
9877         else
9878                 echo "I can't seem to compile and run the test program."
9879                 if ./usg; then
9880                         xxx="a USG one, i.e. you use getpgrp()."
9881                 else
9882                         # SVR4 systems can appear rather BSD-ish.
9883                         case "$i_unistd" in
9884                         $undef)
9885                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9886                                 val="$define"
9887                                 ;;
9888                         $define)
9889                                 xxx="probably a USG one, i.e. you use getpgrp()."
9890                                 val="$undef"
9891                                 ;;
9892                         esac
9893                 fi
9894                 echo "Assuming your getpgrp is $xxx" >&4
9895         fi
9896         ;;
9897 *) val="$undef";;
9898 esac
9899 set d_bsdgetpgrp
9900 eval $setvar
9901 $rm -f try try.*
9902
9903 : see if setpgrp exists
9904 set setpgrp d_setpgrp
9905 eval $inlibc
9906
9907 case "$d_setpgrp" in
9908 "$define")
9909         echo " "
9910         echo "Checking to see which flavor of setpgrp is in use..."
9911         $cat >try.c <<EOP
9912 #$i_unistd I_UNISTD
9913 #include <sys/types.h>
9914 #ifdef I_UNISTD
9915 #  include <unistd.h>
9916 #endif
9917 #$i_stdlib I_STDLIB
9918 #ifdef I_STDLIB
9919 #include <stdlib.h>
9920 #endif
9921 int main()
9922 {
9923         if (getuid() == 0) {
9924                 printf("(I see you are running Configure as super-user...)\n");
9925                 setuid(1);
9926         }
9927 #ifdef TRY_BSD_PGRP
9928         if (-1 == setpgrp(1, 1))
9929                 exit(0);
9930 #else
9931         if (setpgrp() != -1)
9932                 exit(0);
9933 #endif
9934         exit(1);
9935 }
9936 EOP
9937         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9938                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
9939                 val="$define"
9940         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9941                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
9942                 val="$undef"
9943         else
9944                 echo "(I can't seem to compile and run the test program.)"
9945                 if ./usg; then
9946                         xxx="a USG one, i.e. you use setpgrp()."
9947                 else
9948                         # SVR4 systems can appear rather BSD-ish.
9949                         case "$i_unistd" in
9950                         $undef)
9951                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
9952                                 val="$define"
9953                                 ;;
9954                         $define)
9955                                 xxx="probably a USG one, i.e. you use setpgrp()."
9956                                 val="$undef"
9957                                 ;;
9958                         esac
9959                 fi
9960                 echo "Assuming your setpgrp is $xxx" >&4
9961         fi
9962         ;;
9963 *) val="$undef";;
9964 esac
9965 set d_bsdsetpgrp
9966 eval $setvar
9967 $rm -f try try.*
9968 : see if bzero exists
9969 set bzero d_bzero
9970 eval $inlibc
9971
9972 : see if signal is declared as pointer to function returning int or void
9973 echo " "
9974 xxx=`./findhdr signal.h`
9975 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
9976 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
9977         echo "You have int (*signal())() instead of void." >&4
9978         val="$undef"
9979 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
9980         echo "You have void (*signal())()." >&4
9981         val="$define"
9982 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
9983         echo "You have int (*signal())() instead of void." >&4
9984         val="$undef"
9985 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
9986         echo "You have void (*signal())()." >&4
9987         val="$define"
9988 else
9989         case "$d_voidsig" in
9990         '')
9991         echo "I can't determine whether signal handler returns void or int..." >&4
9992                 dflt=void
9993                 rp="What type does your signal handler return?"
9994                 . ./myread
9995                 case "$ans" in
9996                 v*) val="$define";;
9997                 *) val="$undef";;
9998                 esac;;
9999         "$define")
10000                 echo "As you already told me, signal handler returns void." >&4
10001                 val="$define"
10002                 ;;
10003         *)      echo "As you already told me, signal handler returns int." >&4
10004                 val="$undef"
10005                 ;;
10006         esac
10007 fi
10008 set d_voidsig
10009 eval $setvar
10010 case "$d_voidsig" in
10011 "$define") signal_t="void";;
10012 *) signal_t="int";;
10013 esac
10014 $rm -f $$.tmp
10015
10016 : check for ability to cast large floats to 32-bit ints.
10017 echo " "
10018 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
10019 if $test "$intsize" -ge 4; then
10020         xxx=int
10021 else
10022         xxx=long
10023 fi
10024 $cat >try.c <<EOCP
10025 #include <stdio.h>
10026 #$i_stdlib I_STDLIB
10027 #ifdef I_STDLIB
10028 #include <stdlib.h>
10029 #endif
10030 #include <sys/types.h>
10031 #include <signal.h>
10032 $signal_t blech(s) int s; { exit(3); }
10033 int main()
10034 {
10035         $xxx i32;
10036         double f, g;
10037         int result = 0;
10038         char str[16];
10039         signal(SIGFPE, blech);
10040
10041         /* Don't let compiler optimize the test away.  Store the number 
10042            in a writable string for gcc to pass to sscanf under HP/UX.
10043         */
10044         sprintf(str, "2147483647");
10045         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
10046         g = 10 * f;
10047         i32  = ($xxx) g;
10048
10049         /* x86 processors will probably give 0x8000 0000, which is a
10050        sign change.  We don't want that.  We want to mimic SPARC
10051            behavior here, which is to preserve the sign and give
10052            back 0x7fff ffff.
10053         */
10054         if (i32 != ($xxx) f)
10055                 result |= 1;
10056         exit(result);
10057 }
10058 EOCP
10059 set try
10060 if eval $compile_ok; then
10061         $run ./try
10062         yyy=$?
10063 else
10064         echo "(I can't seem to compile the test program--assuming it can't)"
10065         yyy=1
10066 fi
10067 case "$yyy" in
10068 0)      val="$define"
10069         echo "Yup, it can."
10070         ;;
10071 *)      val="$undef"
10072         echo "Nope, it can't."
10073         ;;
10074 esac
10075 set d_casti32
10076 eval $setvar
10077 $rm -f try try.*
10078
10079 : check for ability to cast negative floats to unsigned
10080 echo " "
10081 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
10082 $cat >try.c <<EOCP
10083 #include <stdio.h>
10084 #$i_stdlib I_STDLIB
10085 #ifdef I_STDLIB
10086 #include <stdlib.h>
10087 #endif
10088 #include <sys/types.h>
10089 #include <signal.h>
10090 $signal_t blech(s) int s; { exit(7); }
10091 $signal_t blech_in_list(s) int s; { exit(4); }
10092 unsigned long dummy_long(p) unsigned long p; { return p; }
10093 unsigned int dummy_int(p) unsigned int p; { return p; }
10094 unsigned short dummy_short(p) unsigned short p; { return p; }
10095 int main()
10096 {
10097         double f;
10098         unsigned long along;
10099         unsigned int aint;
10100         unsigned short ashort;
10101         int result = 0;
10102         char str[16];
10103         
10104         /* Frustrate gcc-2.7.2's optimizer which failed this test with
10105            a direct f = -123. assignment.  gcc-2.8.0 reportedly
10106            optimized the whole file away
10107         */
10108         /* Store the number in a writable string for gcc to pass to 
10109            sscanf under HP/UX.
10110         */
10111         sprintf(str, "-123");
10112         sscanf(str, "%lf", &f);  /* f = -123.; */
10113
10114         signal(SIGFPE, blech);
10115         along = (unsigned long)f;
10116         aint = (unsigned int)f;
10117         ashort = (unsigned short)f;
10118         if (along != (unsigned long)-123)
10119                 result |= 1;
10120         if (aint != (unsigned int)-123)
10121                 result |= 1;
10122         if (ashort != (unsigned short)-123)
10123                 result |= 1;
10124         sprintf(str, "1073741824.");
10125         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
10126         f = f + f;
10127         along = 0;
10128         along = (unsigned long)f;
10129         if (along != 0x80000000)
10130                 result |= 2;
10131         f -= 1.;
10132         along = 0;
10133         along = (unsigned long)f;
10134         if (along != 0x7fffffff)
10135                 result |= 1;
10136         f += 2.;
10137         along = 0;
10138         along = (unsigned long)f;
10139         if (along != 0x80000001)
10140                 result |= 2;
10141         if (result)
10142                 exit(result);
10143         signal(SIGFPE, blech_in_list);
10144         sprintf(str, "123.");
10145         sscanf(str, "%lf", &f);  /* f = 123.; */
10146         along = dummy_long((unsigned long)f);
10147         aint = dummy_int((unsigned int)f);
10148         ashort = dummy_short((unsigned short)f);
10149         if (along != (unsigned long)123)
10150                 result |= 4;
10151         if (aint != (unsigned int)123)
10152                 result |= 4;
10153         if (ashort != (unsigned short)123)
10154                 result |= 4;
10155         exit(result);
10156
10157 }
10158 EOCP
10159 set try
10160 if eval $compile_ok; then
10161         $run ./try
10162         castflags=$?
10163 else
10164         echo "(I can't seem to compile the test program--assuming it can't)"
10165         castflags=7
10166 fi
10167 case "$castflags" in
10168 0)      val="$define"
10169         echo "Yup, it can."
10170         ;;
10171 *)      val="$undef"
10172         echo "Nope, it can't."
10173         ;;
10174 esac
10175 set d_castneg
10176 eval $setvar
10177 $rm -f try.*
10178
10179 : see if vprintf exists
10180 echo " "
10181 if set vprintf val -f d_vprintf; eval $csym; $val; then
10182         echo 'vprintf() found.' >&4
10183         val="$define"
10184         $cat >try.c <<EOF
10185 #include <varargs.h>
10186 #$i_stdlib I_STDLIB
10187 #ifdef I_STDLIB
10188 #include <stdlib.h>
10189 #endif
10190
10191 int main() { xxx("foo"); }
10192
10193 xxx(va_alist)
10194 va_dcl
10195 {
10196         va_list args;
10197         char buf[10];
10198
10199         va_start(args);
10200         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
10201 }
10202 EOF
10203         set try
10204         if eval $compile && $run ./try; then
10205                 echo "Your vsprintf() returns (int)." >&4
10206                 val2="$undef"
10207         else
10208                 echo "Your vsprintf() returns (char*)." >&4
10209                 val2="$define"
10210         fi
10211 else
10212         echo 'vprintf() NOT found.' >&4
10213                 val="$undef"
10214                 val2="$undef"
10215 fi
10216 $rm -f try try.*
10217 set d_vprintf
10218 eval $setvar
10219 val=$val2
10220 set d_charvspr
10221 eval $setvar
10222
10223 : see if chown exists
10224 set chown d_chown
10225 eval $inlibc
10226
10227 : see if chroot exists
10228 set chroot d_chroot
10229 eval $inlibc
10230
10231 : see if chsize exists
10232 set chsize d_chsize
10233 eval $inlibc
10234
10235 : see if class exists
10236 set class d_class
10237 eval $inlibc
10238
10239 hasstruct='varname=$1; struct=$2; shift; shift;
10240 while $test $# -ge 2; do
10241         case "$1" in
10242         $define) echo "#include <$2>";;
10243         esac ;
10244     shift 2;
10245 done > try.c;
10246 echo "int main () { struct $struct foo; }" >> try.c;
10247 set try;
10248 if eval $compile; then
10249         val="$define";
10250 else
10251         val="$undef";
10252 fi;
10253 set $varname;
10254 eval $setvar;
10255 $rm -f try.c try.o'
10256
10257 socketlib=''
10258 sockethdr=''
10259 : see whether socket exists
10260 echo " "
10261 $echo $n "Hmm... $c" >&4
10262 if set socket val -f d_socket; eval $csym; $val; then
10263         echo "Looks like you have Berkeley networking support." >&4
10264         d_socket="$define"
10265         if set setsockopt val -f; eval $csym; $val; then
10266                 d_oldsock="$undef"
10267         else
10268                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
10269                 d_oldsock="$define"
10270         fi
10271 else
10272         if $contains socklib libc.list >/dev/null 2>&1; then
10273                 echo "Looks like you have Berkeley networking support." >&4
10274                 d_socket="$define"
10275                 : we will have to assume that it supports the 4.2 BSD interface
10276                 d_oldsock="$undef"
10277         else
10278                 echo "You don't have Berkeley networking in libc$_a..." >&4
10279                 if test "X$d_socket" = "X$define"; then
10280                    echo "...but you seem to believe that you have sockets." >&4
10281                 else
10282                         for net in net socket
10283                         do
10284                                 if test -f /usr/lib/lib$net$_a; then
10285                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
10286                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
10287                                         if $contains socket libc.list >/dev/null 2>&1; then
10288                                                 d_socket="$define"
10289                                                 socketlib="-l$net"
10290                                                 case "$net" in
10291                                                 net)
10292                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
10293                                                         sockethdr="-I/usr/netinclude"
10294                                                         ;;
10295                                                 esac
10296                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
10297                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
10298                                                         d_oldsock="$undef"
10299                                                 else
10300                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
10301                                                         d_oldsock="$define"
10302                                                 fi
10303                                                 break
10304                                         fi
10305                                 fi
10306                         done
10307                         if test "X$d_socket" != "X$define"; then
10308                            echo "or anywhere else I see." >&4
10309                            d_socket="$undef"
10310                            d_oldsock="$undef"
10311                         fi
10312                 fi
10313         fi
10314 fi
10315
10316 : see if socketpair exists
10317 set socketpair d_sockpair
10318 eval $inlibc
10319
10320
10321 echo " "
10322 echo "Checking the availability of certain socket constants..." >&4
10323 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
10324         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
10325         $cat >try.c <<EOF
10326 #include <sys/types.h>
10327 #include <sys/socket.h>
10328 int main() {
10329     int i = $ENUM;
10330 }
10331 EOF
10332         val="$undef"
10333         set try; if eval $compile; then
10334                 val="$define"
10335         fi
10336         set d_${enum}; eval $setvar
10337         $rm -f try.c try
10338 done
10339
10340 : see if this is a sys/uio.h system
10341 set sys/uio.h i_sysuio
10342 eval $inhdr
10343
10344
10345 echo " "
10346 echo "Checking to see if your system supports struct cmsghdr..." >&4
10347 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
10348 eval $hasstruct
10349 case "$d_cmsghdr_s" in
10350 "$define")      echo "Yes, it does."   ;;
10351 *)              echo "No, it doesn't." ;;
10352 esac
10353
10354
10355 : check for const keyword
10356 echo " "
10357 echo 'Checking to see if your C compiler knows about "const"...' >&4
10358 $cat >const.c <<'EOCP'
10359 typedef struct spug { int drokk; } spug;
10360 int main()
10361 {
10362         const char *foo;
10363         const spug y;
10364 }
10365 EOCP
10366 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
10367         val="$define"
10368         echo "Yup, it does."
10369 else
10370         val="$undef"
10371         echo "Nope, it doesn't."
10372 fi
10373 set d_const
10374 eval $setvar
10375
10376 : see if copysignl exists
10377 set copysignl d_copysignl
10378 eval $inlibc
10379
10380 : see if crypt exists
10381 echo " "
10382 set crypt d_crypt
10383 eval $inlibc
10384 case "$d_crypt" in
10385 $define) cryptlib='' ;;
10386 *)      if set crypt val -f d_crypt; eval $csym; $val; then
10387                 echo 'crypt() found.' >&4
10388                 val="$define"
10389                 cryptlib=''
10390         else
10391                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
10392                 if $test -z "$cryptlib"; then
10393                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
10394                 else
10395                         cryptlib=-lcrypt
10396                 fi
10397                 if $test -z "$cryptlib"; then
10398                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
10399                 else
10400                         cryptlib=-lcrypt
10401                 fi
10402                 if $test -z "$cryptlib"; then
10403                         cryptlib=`./loc libcrypt$_a "" $libpth`
10404                 else
10405                         cryptlib=-lcrypt
10406                 fi
10407                 if $test -z "$cryptlib"; then
10408                         echo 'crypt() NOT found.' >&4
10409                         val="$undef"
10410                 else
10411                         val="$define"
10412                 fi
10413         fi
10414         set d_crypt
10415         eval $setvar
10416         ;;
10417 esac
10418
10419 : see if this is a crypt.h system
10420 set crypt.h i_crypt
10421 eval $inhdr
10422
10423 : see if crypt_r exists
10424 set crypt_r d_crypt_r
10425 eval $inlibc
10426 case "$d_crypt_r" in
10427 "$define")
10428         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
10429         case "$d_crypt_r_proto:$usethreads" in
10430         ":define")      d_crypt_r_proto=define
10431                 set d_crypt_r_proto crypt_r $hdrs
10432                 eval $hasproto ;;
10433         *)      ;;
10434         esac
10435         case "$d_crypt_r_proto" in
10436         define)
10437         case "$crypt_r_proto" in
10438         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
10439         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
10440         esac
10441         case "$crypt_r_proto" in
10442         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
10443         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
10444         esac
10445         case "$crypt_r_proto" in
10446         ''|0)   d_crypt_r=undef
10447                 crypt_r_proto=0
10448                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
10449         * )     case "$crypt_r_proto" in
10450                 REENTRANT_PROTO*) ;;
10451                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
10452                 esac
10453                 echo "Prototype: $try" ;;
10454         esac
10455         ;;
10456         *)      case "$usethreads" in
10457                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10458                 esac
10459                 d_crypt_r=undef
10460                 crypt_r_proto=0
10461                 ;;
10462         esac
10463         ;;
10464 *)      crypt_r_proto=0
10465         ;;
10466 esac
10467
10468 : get csh whereabouts
10469 case "$csh" in
10470 'csh') val="$undef" ;;
10471 *) val="$define" ;;
10472 esac
10473 set d_csh
10474 eval $setvar
10475 : Respect a hint or command line value for full_csh.
10476 case "$full_csh" in
10477 '') full_csh=$csh ;;
10478 esac
10479
10480 : see if ctermid_r exists
10481 set ctermid_r d_ctermid_r
10482 eval $inlibc
10483 case "$d_ctermid_r" in
10484 "$define")
10485         hdrs="$i_systypes sys/types.h define stdio.h "
10486         case "$d_ctermid_r_proto:$usethreads" in
10487         ":define")      d_ctermid_r_proto=define
10488                 set d_ctermid_r_proto ctermid_r $hdrs
10489                 eval $hasproto ;;
10490         *)      ;;
10491         esac
10492         case "$d_ctermid_r_proto" in
10493         define)
10494         case "$ctermid_r_proto" in
10495         ''|0) try='char* ctermid_r(char*);'
10496         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10497         esac
10498         case "$ctermid_r_proto" in
10499         ''|0)   d_ctermid_r=undef
10500                 ctermid_r_proto=0
10501                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10502         * )     case "$ctermid_r_proto" in
10503                 REENTRANT_PROTO*) ;;
10504                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10505                 esac
10506                 echo "Prototype: $try" ;;
10507         esac
10508         ;;
10509         *)      case "$usethreads" in
10510                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10511                 esac
10512                 d_ctermid_r=undef
10513                 ctermid_r_proto=0
10514                 ;;
10515         esac
10516         ;;
10517 *)      ctermid_r_proto=0
10518         ;;
10519 esac
10520
10521 : see if ctime_r exists
10522 set ctime_r d_ctime_r
10523 eval $inlibc
10524 case "$d_ctime_r" in
10525 "$define")
10526         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
10527         case "$d_ctime_r_proto:$usethreads" in
10528         ":define")      d_ctime_r_proto=define
10529                 set d_ctime_r_proto ctime_r $hdrs
10530                 eval $hasproto ;;
10531         *)      ;;
10532         esac
10533         case "$d_ctime_r_proto" in
10534         define)
10535         case "$ctime_r_proto" in
10536         ''|0) try='char* ctime_r(const time_t*, char*);'
10537         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10538         esac
10539         case "$ctime_r_proto" in
10540         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10541         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10542         esac
10543         case "$ctime_r_proto" in
10544         ''|0) try='int ctime_r(const time_t*, char*);'
10545         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10546         esac
10547         case "$ctime_r_proto" in
10548         ''|0) try='int ctime_r(const time_t*, char*, int);'
10549         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10550         esac
10551         case "$ctime_r_proto" in
10552         ''|0)   d_ctime_r=undef
10553                 ctime_r_proto=0
10554                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10555         * )     case "$ctime_r_proto" in
10556                 REENTRANT_PROTO*) ;;
10557                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10558                 esac
10559                 echo "Prototype: $try" ;;
10560         esac
10561         ;;
10562         *)      case "$usethreads" in
10563                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10564                 esac
10565                 d_ctime_r=undef
10566                 ctime_r_proto=0
10567                 ;;
10568         esac
10569         ;;
10570 *)      ctime_r_proto=0
10571         ;;
10572 esac
10573
10574 : see if cuserid exists
10575 set cuserid d_cuserid
10576 eval $inlibc
10577
10578 : see if this is a limits.h system
10579 set limits.h i_limits
10580 eval $inhdr
10581
10582 : see if this is a float.h system
10583 set float.h i_float
10584 eval $inhdr
10585
10586 : See if number of significant digits in a double precision number is known
10587 echo " "
10588 $cat >dbl_dig.c <<EOM
10589 #$i_limits I_LIMITS
10590 #$i_float I_FLOAT
10591 #ifdef I_LIMITS
10592 #include <limits.h>
10593 #endif
10594 #ifdef I_FLOAT
10595 #include <float.h>
10596 #endif
10597 #ifdef DBL_DIG
10598 printf("Contains DBL_DIG");
10599 #endif
10600 EOM
10601 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10602 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10603         echo "DBL_DIG found." >&4
10604         val="$define"
10605 else
10606         echo "DBL_DIG NOT found." >&4
10607         val="$undef"
10608 fi
10609 $rm -f dbl_dig.?
10610 set d_dbl_dig
10611 eval $setvar
10612
10613 : see if dbm.h is available
10614 : see if dbmclose exists
10615 set dbmclose d_dbmclose
10616 eval $inlibc
10617
10618 case "$d_dbmclose" in
10619 $define)
10620         set dbm.h i_dbm
10621         eval $inhdr
10622         case "$i_dbm" in
10623         $define)
10624                 val="$undef"
10625                 set i_rpcsvcdbm
10626                 eval $setvar
10627                 ;;
10628         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10629                 eval $inhdr
10630                 ;;
10631         esac
10632         ;;
10633 *)      echo "We won't be including <dbm.h>"
10634         val="$undef"
10635         set i_dbm
10636         eval $setvar
10637         val="$undef"
10638         set i_rpcsvcdbm
10639         eval $setvar
10640         ;;
10641 esac
10642
10643 : see if prototype for dbminit is available
10644 echo " "
10645 set d_dbminitproto dbminit $i_dbm dbm.h
10646 eval $hasproto
10647
10648 : see if difftime exists
10649 set difftime d_difftime
10650 eval $inlibc
10651
10652 : see if this is a dirent system
10653 echo " "
10654 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10655         val="$define"
10656         echo "<dirent.h> found." >&4
10657 else
10658         val="$undef"
10659         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10660                 echo "<sys/dir.h> found." >&4
10661                 echo " "
10662         else
10663                 xinc=`./findhdr sys/ndir.h`
10664         fi
10665         echo "<dirent.h> NOT found." >&4
10666 fi
10667 set i_dirent
10668 eval $setvar
10669
10670 : Look for type of directory structure.
10671 echo " "
10672 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10673
10674 case "$direntrytype" in
10675 ''|' ')
10676         case "$i_dirent" in
10677         $define) guess1='struct dirent' ;;
10678         *) guess1='struct direct'  ;;
10679         esac
10680         ;;
10681 *)      guess1="$direntrytype"
10682         ;;
10683 esac
10684
10685 case "$guess1" in
10686 'struct dirent') guess2='struct direct' ;;
10687 *) guess2='struct dirent' ;;
10688 esac
10689                 
10690 if $contains "$guess1" try.c >/dev/null 2>&1; then
10691         direntrytype="$guess1"
10692         echo "Your directory entries are $direntrytype." >&4
10693 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10694         direntrytype="$guess2"
10695         echo "Your directory entries seem to be $direntrytype." >&4
10696 else
10697         echo "I don't recognize your system's directory entries." >&4
10698         rp="What type is used for directory entries on this system?"
10699         dflt="$guess1"
10700         . ./myread
10701         direntrytype="$ans"
10702 fi
10703 $rm -f try.c
10704
10705
10706 : see if the directory entry stores field length
10707 echo " "
10708 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10709 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10710         echo "Good, your directory entry keeps length information in d_namlen." >&4
10711         val="$define"
10712 else
10713         echo "Your directory entry does not know about the d_namlen field." >&4
10714         val="$undef"
10715 fi
10716 set d_dirnamlen
10717 eval $setvar
10718 $rm -f try.c
10719
10720 : see if this is an sysdir system
10721 set sys/dir.h i_sysdir
10722 eval $inhdr
10723
10724 : see if this is an sysndir system
10725 set sys/ndir.h i_sysndir
10726 eval $inhdr
10727
10728 : Look for dirfd
10729 echo " "
10730 $cat >dirfd.c <<EOM
10731 #include <stdio.h>
10732 #$i_stdlib I_STDLIB
10733 #ifdef I_STDLIB
10734 #include <stdlib.h>
10735 #endif
10736 #$i_dirent I_DIRENT             /**/
10737 #$i_sysdir I_SYS_DIR            /**/
10738 #$i_sysndir I_SYS_NDIR          /**/
10739 #$i_systypes I_SYS_TYPES        /**/
10740 #if defined(I_SYS_TYPES)
10741 #include <sys/types.h>
10742 #endif
10743 #if defined(I_DIRENT)
10744 #include <dirent.h>
10745 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10746 #include <sys/dir.h>
10747 #endif
10748 #else
10749 #ifdef I_SYS_NDIR
10750 #include <sys/ndir.h>
10751 #else
10752 #ifdef I_SYS_DIR
10753 #ifdef hp9000s500
10754 #include <ndir.h>       /* may be wrong in the future */
10755 #else
10756 #include <sys/dir.h>
10757 #endif
10758 #endif
10759 #endif
10760 #endif 
10761 int main() {
10762         DIR *dirp = opendir(".");
10763         if (dirfd(dirp) >= 0)
10764                 exit(0);
10765         else
10766                 exit(1);
10767 }
10768 EOM
10769 set dirfd
10770 if eval $compile; then
10771         val="$define"
10772 fi
10773 case "$val" in
10774 $define)        echo "dirfd() found." >&4       ;;
10775 *)              echo "dirfd() NOT found." >&4   ;;
10776 esac
10777 set d_dirfd
10778 eval $setvar
10779 $rm -f dirfd*
10780
10781 : see if dlerror exists
10782 xxx_runnm="$runnm"
10783 runnm=false
10784 set dlerror d_dlerror
10785 eval $inlibc
10786 runnm="$xxx_runnm"
10787
10788 : see if dlfcn is available
10789 set dlfcn.h i_dlfcn
10790 eval $inhdr
10791
10792 case "$usedl" in
10793 $define|y|true)
10794         $cat << EOM
10795
10796 On a few systems, the dynamically loaded modules that perl generates and uses
10797 will need a different extension than shared libs. The default will probably
10798 be appropriate.
10799
10800 EOM
10801         case "$dlext" in
10802         '')     dflt="$so" ;;
10803         *)      dflt="$dlext" ;;
10804         esac
10805         rp='What is the extension of dynamically loaded modules'
10806         . ./myread
10807         dlext="$ans"
10808         ;;
10809 *)
10810         dlext="none"
10811         ;;
10812 esac
10813
10814 : Check if dlsym need a leading underscore
10815 echo " "
10816 val="$undef"
10817
10818 case "$dlsrc" in
10819 dl_dlopen.xs)
10820         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10821         $cat >dyna.c <<'EOM'
10822 fred () { }
10823 EOM
10824
10825 $cat >fred.c<<EOM
10826
10827 #include <stdio.h>
10828 #$i_stdlib I_STDLIB
10829 #ifdef I_STDLIB
10830 #include <stdlib.h>
10831 #endif
10832 #$i_dlfcn I_DLFCN
10833 #ifdef I_DLFCN
10834 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10835 #else
10836 #include <sys/types.h>
10837 #include <nlist.h>
10838 #include <link.h>
10839 #endif
10840
10841 extern int fred() ;
10842
10843 int main()
10844 {
10845     void * handle ;
10846     void * symbol ;
10847 #ifndef RTLD_LAZY
10848     int mode = 1 ;
10849 #else
10850     int mode = RTLD_LAZY ;
10851 #endif
10852     handle = dlopen("./dyna.$dlext", mode) ;
10853     if (handle == NULL) {
10854         printf ("1\n") ;
10855         fflush (stdout) ;
10856         exit(0);
10857     }
10858     symbol = dlsym(handle, "fred") ;
10859     if (symbol == NULL) {
10860         /* try putting a leading underscore */
10861         symbol = dlsym(handle, "_fred") ;
10862         if (symbol == NULL) {
10863             printf ("2\n") ;
10864             fflush (stdout) ;
10865             exit(0);
10866         }
10867         printf ("3\n") ;
10868     }
10869     else
10870         printf ("4\n") ;
10871     fflush (stdout) ;
10872     exit(0);
10873 }
10874 EOM
10875         : Call the object file tmp-dyna.o in case dlext=o.
10876         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10877                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10878                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10879                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10880                 xxx=`$run ./fred`
10881                 case $xxx in
10882                 1)      echo "Test program failed using dlopen." >&4
10883                         echo "Perhaps you should not use dynamic loading." >&4;;
10884                 2)      echo "Test program failed using dlsym." >&4
10885                         echo "Perhaps you should not use dynamic loading." >&4;;
10886                 3)      echo "dlsym needs a leading underscore" >&4
10887                         val="$define" ;;
10888                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10889                 esac
10890         else
10891                 echo "I can't compile and run the test program." >&4
10892                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10893         fi
10894         ;;
10895 esac
10896                 
10897 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10898
10899 set d_dlsymun
10900 eval $setvar
10901
10902 : see if drand48_r exists
10903 set drand48_r d_drand48_r
10904 eval $inlibc
10905 case "$d_drand48_r" in
10906 "$define")
10907         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10908         case "$d_drand48_r_proto:$usethreads" in
10909         ":define")      d_drand48_r_proto=define
10910                 set d_drand48_r_proto drand48_r $hdrs
10911                 eval $hasproto ;;
10912         *)      ;;
10913         esac
10914         case "$d_drand48_r_proto" in
10915         define)
10916         case "$drand48_r_proto" in
10917         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10918         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10919         esac
10920         case "$drand48_r_proto" in
10921         ''|0)   d_drand48_r=undef
10922                 drand48_r_proto=0
10923                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10924         * )     case "$drand48_r_proto" in
10925                 REENTRANT_PROTO*) ;;
10926                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10927                 esac
10928                 echo "Prototype: $try" ;;
10929         esac
10930         ;;
10931         *)      case "$usethreads" in
10932                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10933                 esac
10934                 d_drand48_r=undef
10935                 drand48_r_proto=0
10936                 ;;
10937         esac
10938         ;;
10939 *)      drand48_r_proto=0
10940         ;;
10941 esac
10942
10943 : see if prototype for drand48 is available
10944 echo " "
10945 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
10946 eval $hasproto
10947
10948 : see if dup2 exists
10949 set dup2 d_dup2
10950 eval $inlibc
10951
10952 : see if eaccess exists
10953 set eaccess d_eaccess
10954 eval $inlibc
10955
10956 : see if endgrent exists
10957 set endgrent d_endgrent
10958 eval $inlibc
10959
10960 : see if this is an grp system
10961 set grp.h i_grp
10962 eval $inhdr
10963
10964 case "$i_grp" in
10965 $define)
10966         xxx=`./findhdr grp.h`
10967         $cppstdin $cppflags $cppminus < $xxx >$$.h
10968
10969         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
10970                 val="$define"
10971         else
10972                 val="$undef"
10973         fi
10974         set d_grpasswd
10975         eval $setvar
10976
10977         $rm -f $$.h
10978         ;;
10979 *)
10980         val="$undef";
10981         set d_grpasswd; eval $setvar
10982         ;;
10983 esac
10984
10985 : see if endgrent_r exists
10986 set endgrent_r d_endgrent_r
10987 eval $inlibc
10988 case "$d_endgrent_r" in
10989 "$define")
10990         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
10991         case "$d_endgrent_r_proto:$usethreads" in
10992         ":define")      d_endgrent_r_proto=define
10993                 set d_endgrent_r_proto endgrent_r $hdrs
10994                 eval $hasproto ;;
10995         *)      ;;
10996         esac
10997         case "$d_endgrent_r_proto" in
10998         define)
10999         case "$endgrent_r_proto" in
11000         ''|0) try='int endgrent_r(FILE**);'
11001         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
11002         esac
11003         case "$endgrent_r_proto" in
11004         ''|0) try='void endgrent_r(FILE**);'
11005         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
11006         esac
11007         case "$endgrent_r_proto" in
11008         ''|0)   d_endgrent_r=undef
11009                 endgrent_r_proto=0
11010                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
11011         * )     case "$endgrent_r_proto" in
11012                 REENTRANT_PROTO*) ;;
11013                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
11014                 esac
11015                 echo "Prototype: $try" ;;
11016         esac
11017         ;;
11018         *)      case "$usethreads" in
11019                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
11020                 esac
11021                 d_endgrent_r=undef
11022                 endgrent_r_proto=0
11023                 ;;
11024         esac
11025         ;;
11026 *)      endgrent_r_proto=0
11027         ;;
11028 esac
11029
11030 : see if endhostent exists
11031 set endhostent d_endhent
11032 eval $inlibc
11033
11034 : see if this is a netdb.h system
11035 set netdb.h i_netdb
11036 eval $inhdr
11037
11038 : see if endhostent_r exists
11039 set endhostent_r d_endhostent_r
11040 eval $inlibc
11041 case "$d_endhostent_r" in
11042 "$define")
11043         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11044         case "$d_endhostent_r_proto:$usethreads" in
11045         ":define")      d_endhostent_r_proto=define
11046                 set d_endhostent_r_proto endhostent_r $hdrs
11047                 eval $hasproto ;;
11048         *)      ;;
11049         esac
11050         case "$d_endhostent_r_proto" in
11051         define)
11052         case "$endhostent_r_proto" in
11053         ''|0) try='int endhostent_r(struct hostent_data*);'
11054         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
11055         esac
11056         case "$endhostent_r_proto" in
11057         ''|0) try='void endhostent_r(struct hostent_data*);'
11058         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
11059         esac
11060         case "$endhostent_r_proto" in
11061         ''|0)   d_endhostent_r=undef
11062                 endhostent_r_proto=0
11063                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
11064         * )     case "$endhostent_r_proto" in
11065                 REENTRANT_PROTO*) ;;
11066                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
11067                 esac
11068                 echo "Prototype: $try" ;;
11069         esac
11070         ;;
11071         *)      case "$usethreads" in
11072                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
11073                 esac
11074                 d_endhostent_r=undef
11075                 endhostent_r_proto=0
11076                 ;;
11077         esac
11078         ;;
11079 *)      endhostent_r_proto=0
11080         ;;
11081 esac
11082
11083 : see if endnetent exists
11084 set endnetent d_endnent
11085 eval $inlibc
11086
11087 : see if endnetent_r exists
11088 set endnetent_r d_endnetent_r
11089 eval $inlibc
11090 case "$d_endnetent_r" in
11091 "$define")
11092         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11093         case "$d_endnetent_r_proto:$usethreads" in
11094         ":define")      d_endnetent_r_proto=define
11095                 set d_endnetent_r_proto endnetent_r $hdrs
11096                 eval $hasproto ;;
11097         *)      ;;
11098         esac
11099         case "$d_endnetent_r_proto" in
11100         define)
11101         case "$endnetent_r_proto" in
11102         ''|0) try='int endnetent_r(struct netent_data*);'
11103         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
11104         esac
11105         case "$endnetent_r_proto" in
11106         ''|0) try='void endnetent_r(struct netent_data*);'
11107         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
11108         esac
11109         case "$endnetent_r_proto" in
11110         ''|0)   d_endnetent_r=undef
11111                 endnetent_r_proto=0
11112                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
11113         * )     case "$endnetent_r_proto" in
11114                 REENTRANT_PROTO*) ;;
11115                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
11116                 esac
11117                 echo "Prototype: $try" ;;
11118         esac
11119         ;;
11120         *)      case "$usethreads" in
11121                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
11122                 esac
11123                 d_endnetent_r=undef
11124                 endnetent_r_proto=0
11125                 ;;
11126         esac
11127         ;;
11128 *)      endnetent_r_proto=0
11129         ;;
11130 esac
11131
11132 : see if endprotoent exists
11133 set endprotoent d_endpent
11134 eval $inlibc
11135
11136 : see if endprotoent_r exists
11137 set endprotoent_r d_endprotoent_r
11138 eval $inlibc
11139 case "$d_endprotoent_r" in
11140 "$define")
11141         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11142         case "$d_endprotoent_r_proto:$usethreads" in
11143         ":define")      d_endprotoent_r_proto=define
11144                 set d_endprotoent_r_proto endprotoent_r $hdrs
11145                 eval $hasproto ;;
11146         *)      ;;
11147         esac
11148         case "$d_endprotoent_r_proto" in
11149         define)
11150         case "$endprotoent_r_proto" in
11151         ''|0) try='int endprotoent_r(struct protoent_data*);'
11152         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
11153         esac
11154         case "$endprotoent_r_proto" in
11155         ''|0) try='void endprotoent_r(struct protoent_data*);'
11156         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
11157         esac
11158         case "$endprotoent_r_proto" in
11159         ''|0)   d_endprotoent_r=undef
11160                 endprotoent_r_proto=0
11161                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
11162         * )     case "$endprotoent_r_proto" in
11163                 REENTRANT_PROTO*) ;;
11164                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
11165                 esac
11166                 echo "Prototype: $try" ;;
11167         esac
11168         ;;
11169         *)      case "$usethreads" in
11170                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
11171                 esac
11172                 d_endprotoent_r=undef
11173                 endprotoent_r_proto=0
11174                 ;;
11175         esac
11176         ;;
11177 *)      endprotoent_r_proto=0
11178         ;;
11179 esac
11180
11181 : see if endpwent exists
11182 set endpwent d_endpwent
11183 eval $inlibc
11184
11185 : see if this is a pwd.h system
11186 set pwd.h i_pwd
11187 eval $inhdr
11188
11189 case "$i_pwd" in
11190 $define)
11191         xxx=`./findhdr pwd.h`
11192         $cppstdin $cppflags $cppminus < $xxx >$$.h
11193
11194         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
11195                 val="$define"
11196         else
11197                 val="$undef"
11198         fi
11199         set d_pwquota
11200         eval $setvar
11201
11202         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
11203                 val="$define"
11204         else
11205                 val="$undef"
11206         fi
11207         set d_pwage
11208         eval $setvar
11209
11210         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
11211                 val="$define"
11212         else
11213                 val="$undef"
11214         fi
11215         set d_pwchange
11216         eval $setvar
11217
11218         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
11219                 val="$define"
11220         else
11221                 val="$undef"
11222         fi
11223         set d_pwclass
11224         eval $setvar
11225
11226         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
11227                 val="$define"
11228         else
11229                 val="$undef"
11230         fi
11231         set d_pwexpire
11232         eval $setvar
11233
11234         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
11235                 val="$define"
11236         else
11237                 val="$undef"
11238         fi
11239         set d_pwcomment
11240         eval $setvar
11241
11242         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
11243                 val="$define"
11244         else
11245                 val="$undef"
11246         fi
11247         set d_pwgecos
11248         eval $setvar
11249
11250         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
11251                 val="$define"
11252         else
11253                 val="$undef"
11254         fi
11255         set d_pwpasswd
11256         eval $setvar
11257
11258         $rm -f $$.h
11259         ;;
11260 *)
11261         val="$undef"; 
11262         set d_pwquota; eval $setvar
11263         set d_pwage; eval $setvar
11264         set d_pwchange; eval $setvar
11265         set d_pwclass; eval $setvar
11266         set d_pwexpire; eval $setvar
11267         set d_pwcomment; eval $setvar
11268         set d_pwgecos; eval $setvar
11269         set d_pwpasswd; eval $setvar
11270         ;;
11271 esac
11272
11273 : see if endpwent_r exists
11274 set endpwent_r d_endpwent_r
11275 eval $inlibc
11276 case "$d_endpwent_r" in
11277 "$define")
11278         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
11279         case "$d_endpwent_r_proto:$usethreads" in
11280         ":define")      d_endpwent_r_proto=define
11281                 set d_endpwent_r_proto endpwent_r $hdrs
11282                 eval $hasproto ;;
11283         *)      ;;
11284         esac
11285         case "$d_endpwent_r_proto" in
11286         define)
11287         case "$endpwent_r_proto" in
11288         ''|0) try='int endpwent_r(FILE**);'
11289         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
11290         esac
11291         case "$endpwent_r_proto" in
11292         ''|0) try='void endpwent_r(FILE**);'
11293         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
11294         esac
11295         case "$endpwent_r_proto" in
11296         ''|0)   d_endpwent_r=undef
11297                 endpwent_r_proto=0
11298                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
11299         * )     case "$endpwent_r_proto" in
11300                 REENTRANT_PROTO*) ;;
11301                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
11302                 esac
11303                 echo "Prototype: $try" ;;
11304         esac
11305         ;;
11306         *)      case "$usethreads" in
11307                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
11308                 esac
11309                 d_endpwent_r=undef
11310                 endpwent_r_proto=0
11311                 ;;
11312         esac
11313         ;;
11314 *)      endpwent_r_proto=0
11315         ;;
11316 esac
11317
11318 : see if endservent exists
11319 set endservent d_endsent
11320 eval $inlibc
11321
11322 : see if endservent_r exists
11323 set endservent_r d_endservent_r
11324 eval $inlibc
11325 case "$d_endservent_r" in
11326 "$define")
11327         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11328         case "$d_endservent_r_proto:$usethreads" in
11329         ":define")      d_endservent_r_proto=define
11330                 set d_endservent_r_proto endservent_r $hdrs
11331                 eval $hasproto ;;
11332         *)      ;;
11333         esac
11334         case "$d_endservent_r_proto" in
11335         define)
11336         case "$endservent_r_proto" in
11337         ''|0) try='int endservent_r(struct servent_data*);'
11338         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
11339         esac
11340         case "$endservent_r_proto" in
11341         ''|0) try='void endservent_r(struct servent_data*);'
11342         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
11343         esac
11344         case "$endservent_r_proto" in
11345         ''|0)   d_endservent_r=undef
11346                 endservent_r_proto=0
11347                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
11348         * )     case "$endservent_r_proto" in
11349                 REENTRANT_PROTO*) ;;
11350                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
11351                 esac
11352                 echo "Prototype: $try" ;;
11353         esac
11354         ;;
11355         *)      case "$usethreads" in
11356                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
11357                 esac
11358                 d_endservent_r=undef
11359                 endservent_r_proto=0
11360                 ;;
11361         esac
11362         ;;
11363 *)      endservent_r_proto=0
11364         ;;
11365 esac
11366
11367 : Locate the flags for 'open()'
11368 echo " "
11369 $cat >try.c <<EOCP
11370 #include <sys/types.h>
11371 #ifdef I_FCNTL
11372 #include <fcntl.h>
11373 #endif
11374 #ifdef I_SYS_FILE
11375 #include <sys/file.h>
11376 #endif
11377 #$i_stdlib I_STDLIB
11378 #ifdef I_STDLIB
11379 #include <stdlib.h>
11380 #endif
11381 int main() {
11382         if(O_RDONLY);
11383 #ifdef O_TRUNC
11384         exit(0);
11385 #else
11386         exit(1);
11387 #endif
11388 }
11389 EOCP
11390 : check sys/file.h first to get FREAD on Sun
11391 if $test `./findhdr sys/file.h` && \
11392                 set try -DI_SYS_FILE && eval $compile; then
11393         h_sysfile=true;
11394         echo "<sys/file.h> defines the O_* constants..." >&4
11395         if $run ./try; then
11396                 echo "and you have the 3 argument form of open()." >&4
11397                 val="$define"
11398         else
11399                 echo "but not the 3 argument form of open().  Oh, well." >&4
11400                 val="$undef"
11401         fi
11402 elif $test `./findhdr fcntl.h` && \
11403                 set try -DI_FCNTL && eval $compile; then
11404         h_fcntl=true;
11405         echo "<fcntl.h> defines the O_* constants..." >&4
11406         if $run ./try; then
11407                 echo "and you have the 3 argument form of open()." >&4
11408                 val="$define"
11409         else
11410                 echo "but not the 3 argument form of open().  Oh, well." >&4
11411                 val="$undef"
11412         fi
11413 else
11414         val="$undef"
11415         echo "I can't find the O_* constant definitions!  You got problems." >&4
11416 fi
11417 set d_open3
11418 eval $setvar
11419 $rm -f try try.*
11420
11421 : see which of string.h or strings.h is needed
11422 echo " "
11423 strings=`./findhdr string.h`
11424 if $test "$strings" && $test -r "$strings"; then
11425         echo "Using <string.h> instead of <strings.h>." >&4
11426         val="$define"
11427 else
11428         val="$undef"
11429         strings=`./findhdr strings.h`
11430         if $test "$strings" && $test -r "$strings"; then
11431                 echo "Using <strings.h> instead of <string.h>." >&4
11432         else
11433                 echo "No string header found -- You'll surely have problems." >&4
11434         fi
11435 fi
11436 set i_string
11437 eval $setvar
11438 case "$i_string" in
11439 "$undef") strings=`./findhdr strings.h`;;
11440 *)        strings=`./findhdr string.h`;;
11441 esac
11442
11443 : see if this is a sys/file.h system
11444 val=''
11445 set sys/file.h val
11446 eval $inhdr
11447
11448 : do we need to include sys/file.h ?
11449 case "$val" in
11450 "$define")
11451         echo " "
11452         if $h_sysfile; then
11453                 val="$define"
11454                 echo "We'll be including <sys/file.h>." >&4
11455         else
11456                 val="$undef"
11457                 echo "We won't be including <sys/file.h>." >&4
11458         fi
11459         ;;
11460 *)
11461         h_sysfile=false
11462         ;;
11463 esac
11464 set i_sysfile
11465 eval $setvar
11466
11467 : see if fcntl.h is there
11468 val=''
11469 set fcntl.h val
11470 eval $inhdr
11471
11472 : see if we can include fcntl.h
11473 case "$val" in
11474 "$define")
11475         echo " "
11476         if $h_fcntl; then
11477                 val="$define"
11478                 echo "We'll be including <fcntl.h>." >&4
11479         else
11480                 val="$undef"
11481                 if $h_sysfile; then
11482         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11483                 else
11484                         echo "We won't be including <fcntl.h>." >&4
11485                 fi
11486         fi
11487         ;;
11488 *)
11489         h_fcntl=false
11490         val="$undef"
11491         ;;
11492 esac
11493 set i_fcntl
11494 eval $setvar
11495
11496 : check for non-blocking I/O stuff
11497 case "$h_sysfile" in
11498 true) echo "#include <sys/file.h>" > head.c;;
11499 *)
11500        case "$h_fcntl" in
11501        true) echo "#include <fcntl.h>" > head.c;;
11502        *) echo "#include <sys/fcntl.h>" > head.c;;
11503        esac
11504        ;;
11505 esac
11506 echo " "
11507 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11508 case "$o_nonblock" in
11509 '')
11510         $cat head.c > try.c
11511         $cat >>try.c <<EOCP
11512 #include <stdio.h>
11513 #$i_stdlib I_STDLIB
11514 #ifdef I_STDLIB
11515 #include <stdlib.h>
11516 #endif
11517 #$i_fcntl I_FCNTL
11518 #ifdef I_FCNTL
11519 #include <fcntl.h>
11520 #endif
11521 int main() {
11522 #ifdef O_NONBLOCK
11523         printf("O_NONBLOCK\n");
11524         exit(0);
11525 #endif
11526 #ifdef O_NDELAY
11527         printf("O_NDELAY\n");
11528         exit(0);
11529 #endif
11530 #ifdef FNDELAY
11531         printf("FNDELAY\n");
11532         exit(0);
11533 #endif
11534         exit(0);
11535 }
11536 EOCP
11537         set try
11538         if eval $compile_ok; then
11539                 o_nonblock=`$run ./try`
11540                 case "$o_nonblock" in
11541                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11542                 *) echo "Seems like we can use $o_nonblock.";;
11543                 esac
11544         else
11545                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11546         fi
11547         ;;
11548 *) echo "Using $hint value $o_nonblock.";;
11549 esac
11550 $rm -f try try.* .out core
11551
11552 echo " "
11553 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11554 case "$eagain" in
11555 '')
11556         $cat head.c > try.c
11557         $cat >>try.c <<EOCP
11558 #include <errno.h>
11559 #include <sys/types.h>
11560 #include <signal.h>
11561 #include <stdio.h> 
11562 #$i_stdlib I_STDLIB
11563 #ifdef I_STDLIB
11564 #include <stdlib.h>
11565 #endif
11566 #$i_fcntl I_FCNTL
11567 #ifdef I_FCNTL
11568 #include <fcntl.h>
11569 #endif
11570 #define MY_O_NONBLOCK $o_nonblock
11571 #ifndef errno  /* XXX need better Configure test */
11572 extern int errno;
11573 #endif
11574 #$i_unistd I_UNISTD
11575 #ifdef I_UNISTD
11576 #include <unistd.h>
11577 #endif
11578 #$i_string I_STRING
11579 #ifdef I_STRING
11580 #include <string.h>
11581 #else
11582 #include <strings.h>
11583 #endif
11584 $signal_t blech(x) int x; { exit(3); }
11585 EOCP
11586         $cat >> try.c <<'EOCP'
11587 int main()
11588 {
11589         int pd[2];
11590         int pu[2];
11591         char buf[1];
11592         char string[100];
11593
11594         pipe(pd);       /* Down: child -> parent */
11595         pipe(pu);       /* Up: parent -> child */
11596         if (0 != fork()) {
11597                 int ret;
11598                 close(pd[1]);   /* Parent reads from pd[0] */
11599                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11600 #ifdef F_SETFL
11601                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11602                         exit(1);
11603 #else
11604                 exit(4);
11605 #endif
11606                 signal(SIGALRM, blech);
11607                 alarm(5);
11608                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11609                         exit(2);
11610                 sprintf(string, "%d\n", ret);
11611                 write(2, string, strlen(string));
11612                 alarm(0);
11613 #ifdef EAGAIN
11614                 if (errno == EAGAIN) {
11615                         printf("EAGAIN\n");
11616                         goto ok;
11617                 }
11618 #endif
11619 #ifdef EWOULDBLOCK
11620                 if (errno == EWOULDBLOCK)
11621                         printf("EWOULDBLOCK\n");
11622 #endif
11623         ok:
11624                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11625                 sleep(2);                               /* Give it time to close our pipe */
11626                 alarm(5);
11627                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11628                 alarm(0);
11629                 sprintf(string, "%d\n", ret);
11630                 write(4, string, strlen(string));
11631                 exit(0);
11632         }
11633
11634         close(pd[0]);                   /* We write to pd[1] */
11635         close(pu[1]);                   /* We read from pu[0] */
11636         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11637         close(pd[1]);                   /* Pipe pd is now fully closed! */
11638         exit(0);                                /* Bye bye, thank you for playing! */
11639 }
11640 EOCP
11641         set try
11642         if eval $compile_ok; then
11643                 echo "$startsh" >mtry
11644                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11645                 chmod +x mtry
11646                 ./mtry >/dev/null 2>&1
11647                 case $? in
11648                 0) eagain=`$cat try.out`;;
11649                 1) echo "Could not perform non-blocking setting!";;
11650                 2) echo "I did a successful read() for something that was not there!";;
11651                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11652                 4) echo "Could not find F_SETFL!";;
11653                 *) echo "Something terribly wrong happened during testing.";;
11654                 esac
11655                 rd_nodata=`$cat try.ret`
11656                 echo "A read() system call with no data present returns $rd_nodata."
11657                 case "$rd_nodata" in
11658                 0|-1) ;;
11659                 *)
11660                         echo "(That's peculiar, fixing that to be -1.)"
11661                         rd_nodata=-1
11662                         ;;
11663                 esac
11664                 case "$eagain" in
11665                 '')
11666                         echo "Forcing errno EAGAIN on read() with no data available."
11667                         eagain=EAGAIN
11668                         ;;
11669                 *)
11670                         echo "Your read() sets errno to $eagain when no data is available."
11671                         ;;
11672                 esac
11673                 status=`$cat try.err`
11674                 case "$status" in
11675                 0) echo "And it correctly returns 0 to signal EOF.";;
11676                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11677                 *) echo "However, your read() returns '$status' on EOF??";;
11678                 esac
11679                 val="$define"
11680                 if test "$status" = "$rd_nodata"; then
11681                         echo "WARNING: you can't distinguish between EOF and no data!"
11682                         val="$undef"
11683                 fi
11684         else
11685                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11686                 eagain=EAGAIN
11687         fi
11688         set d_eofnblk
11689         eval $setvar
11690         ;;
11691 *)
11692         echo "Using $hint value $eagain."
11693         echo "Your read() returns $rd_nodata when no data is present."
11694         case "$d_eofnblk" in
11695         "$define") echo "And you can see EOF because read() returns 0.";;
11696         "$undef") echo "But you can't see EOF status from read() returned value.";;
11697         *)
11698                 echo "(Assuming you can't see EOF status from read anyway.)"
11699                 d_eofnblk=$undef
11700                 ;;
11701         esac
11702         ;;
11703 esac
11704 $rm -f try try.* .out core head.c mtry
11705
11706 : see if _ptr and _cnt from stdio act std
11707 echo " "
11708
11709 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
11710         echo "(Looks like you have stdio.h from BSD.)"
11711         case "$stdio_ptr" in
11712         '') stdio_ptr='((fp)->_p)'
11713                 ptr_lval=$define
11714                 ;;
11715         *)      ptr_lval=$d_stdio_ptr_lval;;
11716         esac
11717         case "$stdio_cnt" in
11718         '') stdio_cnt='((fp)->_r)'
11719                 cnt_lval=$define
11720                 ;;
11721         *)      cnt_lval=$d_stdio_cnt_lval;;
11722         esac
11723         case "$stdio_base" in
11724         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
11725         esac
11726         case "$stdio_bufsiz" in
11727         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
11728         esac
11729 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
11730         echo "(Looks like you have stdio.h from Linux.)"
11731         case "$stdio_ptr" in
11732         '') stdio_ptr='((fp)->_IO_read_ptr)'
11733                 ptr_lval=$define
11734                 ;;
11735         *)      ptr_lval=$d_stdio_ptr_lval;;
11736         esac
11737         case "$stdio_cnt" in
11738         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
11739                 cnt_lval=$undef
11740                 ;;
11741         *)      cnt_lval=$d_stdio_cnt_lval;;
11742         esac
11743         case "$stdio_base" in
11744         '') stdio_base='((fp)->_IO_read_base)';;
11745         esac
11746         case "$stdio_bufsiz" in
11747         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
11748         esac
11749 else
11750         case "$stdio_ptr" in
11751         '') stdio_ptr='((fp)->_ptr)'
11752                 ptr_lval=$define
11753                 ;;
11754         *)      ptr_lval=$d_stdio_ptr_lval;;
11755         esac
11756         case "$stdio_cnt" in
11757         '') stdio_cnt='((fp)->_cnt)'
11758                 cnt_lval=$define
11759                 ;;
11760         *)      cnt_lval=$d_stdio_cnt_lval;;
11761         esac
11762         case "$stdio_base" in
11763         '') stdio_base='((fp)->_base)';;
11764         esac
11765         case "$stdio_bufsiz" in
11766         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
11767         esac
11768 fi
11769
11770 : test whether _ptr and _cnt really work
11771 echo "Checking how std your stdio is..." >&4
11772 $cat >try.c <<EOP
11773 #include <stdio.h>
11774 #$i_stdlib I_STDLIB
11775 #ifdef I_STDLIB
11776 #include <stdlib.h>
11777 #endif
11778 #define FILE_ptr(fp)    $stdio_ptr
11779 #define FILE_cnt(fp)    $stdio_cnt
11780 int main() {
11781         FILE *fp = fopen("try.c", "r");
11782         char c = getc(fp);
11783         if (
11784                 18 <= FILE_cnt(fp) &&
11785                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11786         )
11787                 exit(0);
11788         exit(1);
11789 }
11790 EOP
11791 val="$undef"
11792 set try
11793 if eval $compile && $to try.c; then
11794         if $run ./try; then
11795                 echo "Your stdio acts pretty std."
11796                 val="$define"
11797         else
11798                 echo "Your stdio isn't very std."
11799         fi
11800 else
11801         echo "Your stdio doesn't appear very std."
11802 fi
11803 $rm -f try.c try
11804
11805 # glibc 2.2.90 and above apparently change stdio streams so Perl's
11806 # direct buffer manipulation no longer works.  The Configure tests
11807 # should be changed to correctly detect this, but until then,
11808 # the following check should at least let perl compile and run.
11809 # (This quick fix should be updated before 5.8.1.)
11810 # To be defensive, reject all unknown versions, and all versions  > 2.2.9.
11811 # A. Dougherty, June 3, 2002.
11812 case "$d_gnulibc" in
11813 $define)
11814         case "$gnulibc_version" in
11815         2.[01]*)  ;;
11816         2.2) ;;
11817         2.2.[0-9]) ;;
11818         *)  echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
11819                 val="$undef"
11820                 ;;
11821         esac
11822         ;;
11823 esac
11824 set d_stdstdio
11825 eval $setvar
11826
11827 : Can _ptr be used as an lvalue?
11828 case "$d_stdstdio$ptr_lval" in
11829 $define$define) val=$define ;;
11830 *) val=$undef ;;
11831 esac
11832 set d_stdio_ptr_lval
11833 eval $setvar
11834
11835 : Can _cnt be used as an lvalue?
11836 case "$d_stdstdio$cnt_lval" in
11837 $define$define) val=$define ;;
11838 *) val=$undef ;;
11839 esac
11840 set d_stdio_cnt_lval
11841 eval $setvar
11842
11843
11844 : test whether setting _ptr sets _cnt as a side effect
11845 d_stdio_ptr_lval_sets_cnt="$undef"
11846 d_stdio_ptr_lval_nochange_cnt="$undef"
11847 case "$d_stdio_ptr_lval$d_stdstdio" in
11848 $define$define)
11849         echo "Checking to see what happens if we set the stdio ptr..." >&4
11850 $cat >try.c <<EOP
11851 #include <stdio.h>
11852 /* Can we scream? */
11853 /* Eat dust sed :-) */
11854 /* In the buffer space, no one can hear you scream. */
11855 #$i_stdlib I_STDLIB
11856 #ifdef I_STDLIB
11857 #include <stdlib.h>
11858 #endif
11859 #define FILE_ptr(fp)    $stdio_ptr
11860 #define FILE_cnt(fp)    $stdio_cnt
11861 #include <sys/types.h>
11862 int main() {
11863         FILE *fp = fopen("try.c", "r");
11864         int c;
11865         char *ptr;
11866         size_t cnt;
11867         if (!fp) {
11868             puts("Fail even to read");
11869             exit(1);
11870         }
11871         c = getc(fp); /* Read away the first # */
11872         if (c == EOF) {
11873             puts("Fail even to read");
11874             exit(1);
11875         }
11876         if (!(
11877                 18 <= FILE_cnt(fp) &&
11878                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11879         )) {
11880                 puts("Fail even to read");
11881                 exit (1);
11882         }
11883         ptr = (char*) FILE_ptr(fp);
11884         cnt = (size_t)FILE_cnt(fp);
11885
11886         FILE_ptr(fp) += 42;
11887
11888         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
11889                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
11890                 exit (1);
11891         }
11892         if (FILE_cnt(fp) <= 20) {
11893                 printf ("Fail (<20 chars to test)");
11894                 exit (1);
11895         }
11896         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
11897                 puts("Fail compare");
11898                 exit (1);
11899         }
11900         if (cnt == FILE_cnt(fp)) {
11901                 puts("Pass_unchanged");
11902                 exit (0);
11903         }       
11904         if (FILE_cnt(fp) == (cnt - 42)) {
11905                 puts("Pass_changed");
11906                 exit (0);
11907         }
11908         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
11909         return 1;
11910
11911 }
11912 EOP
11913         set try
11914         if eval $compile && $to try.c; then
11915                 case `$run ./try` in
11916                 Pass_changed)
11917                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
11918                         d_stdio_ptr_lval_sets_cnt="$define" ;;
11919                 Pass_unchanged)
11920                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
11921                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
11922                 Fail*)
11923                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
11924                 *)
11925                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
11926         esac
11927         else
11928                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
11929         fi
11930         $rm -f try.c try
11931         ;;
11932 esac
11933
11934 : see if _base is also standard
11935 val="$undef"
11936 case "$d_stdstdio" in
11937 $define)
11938         $cat >try.c <<EOP
11939 #include <stdio.h>
11940 #$i_stdlib I_STDLIB
11941 #ifdef I_STDLIB
11942 #include <stdlib.h>
11943 #endif
11944 #define FILE_base(fp)   $stdio_base
11945 #define FILE_bufsiz(fp) $stdio_bufsiz
11946 int main() {
11947         FILE *fp = fopen("try.c", "r");
11948         char c = getc(fp);
11949         if (
11950                 19 <= FILE_bufsiz(fp) &&
11951                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
11952         )
11953                 exit(0);
11954         exit(1);
11955 }
11956 EOP
11957         set try
11958         if eval $compile && $to try.c; then
11959                 if $run ./try; then
11960                         echo "And its _base field acts std."
11961                         val="$define"
11962                 else
11963                         echo "But its _base field isn't std."
11964                 fi
11965         else
11966                 echo "However, it seems to be lacking the _base field."
11967         fi
11968         $rm -f try.c try
11969         ;;
11970 esac
11971 set d_stdiobase
11972 eval $setvar
11973
11974 : see if fast_stdio exists
11975 val="$undef"
11976 case "$d_stdstdio:$d_stdio_ptr_lval" in
11977 "$define:$define")
11978         case "$d_stdio_cnt_lval$d_stdio_ptr_lval_sets_cnt" in
11979         *$define*)
11980                 echo "You seem to have 'fast stdio' to directly manipulate the stdio buffers." >& 4
11981                 val="$define"
11982                 ;;
11983         esac
11984         ;;
11985 esac
11986 set d_faststdio
11987 eval $setvar
11988
11989
11990
11991 : see if fchdir exists
11992 set fchdir d_fchdir
11993 eval $inlibc
11994
11995 : see if fchmod exists
11996 set fchmod d_fchmod
11997 eval $inlibc
11998
11999 : see if fchown exists
12000 set fchown d_fchown
12001 eval $inlibc
12002
12003 : see if this is an fcntl system
12004 set fcntl d_fcntl
12005 eval $inlibc
12006
12007 echo " "
12008 : See if fcntl-based locking works.
12009 $cat >try.c <<EOCP
12010 #$i_stdlib I_STDLIB
12011 #ifdef I_STDLIB
12012 #include <stdlib.h>
12013 #endif
12014 #include <unistd.h>
12015 #include <fcntl.h>
12016 #include <signal.h>
12017 $signal_t blech(x) int x; { exit(3); }
12018 int main() {
12019 #if defined(F_SETLK) && defined(F_SETLKW)
12020      struct flock flock;
12021      int retval, fd;
12022      fd = open("try.c", O_RDONLY);
12023      flock.l_type = F_RDLCK;
12024      flock.l_whence = SEEK_SET;
12025      flock.l_start = flock.l_len = 0;
12026      signal(SIGALRM, blech);
12027      alarm(10);
12028      retval = fcntl(fd, F_SETLK, &flock);
12029      close(fd);
12030      (retval < 0 ? exit(2) : exit(0));
12031 #else
12032      exit(2);
12033 #endif
12034 }
12035 EOCP
12036 echo "Checking if fcntl-based file locking works... "
12037 case "$d_fcntl" in
12038 "$define")
12039         set try
12040         if eval $compile_ok; then
12041                 if $run ./try; then
12042                         echo "Yes, it seems to work."
12043                         val="$define"
12044                 else
12045                         echo "Nope, it didn't work."
12046                         val="$undef"
12047                         case "$?" in
12048                         3) $cat >&4 <<EOM
12049 ***
12050 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
12051 *** This is (almost) impossible.
12052 *** If your NFS lock daemons are not feeling well, something like
12053 *** this may happen, please investigate.  Cannot continue, aborting.
12054 ***
12055 EOM
12056                                 exit 1
12057                                 ;;
12058                         esac
12059                 fi
12060         else
12061                 echo "I'm unable to compile the test program, so I'll assume not."
12062                 val="$undef"
12063         fi
12064         ;;
12065 *) val="$undef";
12066         echo "Nope, since you don't even have fcntl()."
12067         ;;
12068 esac
12069 set d_fcntl_can_lock
12070 eval $setvar
12071 $rm -f try*
12072
12073
12074 : check for fd_set items
12075 $cat <<EOM
12076
12077 Checking to see how well your C compiler handles fd_set and friends ...
12078 EOM
12079 $cat >try.c <<EOCP
12080 #$i_stdlib I_STDLIB
12081 #ifdef I_STDLIB
12082 #include <stdlib.h>
12083 #endif
12084 #$i_systime I_SYS_TIME
12085 #$i_sysselct I_SYS_SELECT
12086 #$d_socket HAS_SOCKET
12087 #include <sys/types.h>
12088 #ifdef HAS_SOCKET
12089 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
12090 #endif
12091 #ifdef I_SYS_TIME
12092 #include <sys/time.h>
12093 #endif
12094 #ifdef I_SYS_SELECT
12095 #include <sys/select.h>
12096 #endif
12097 int main() {
12098         fd_set fds;
12099
12100 #ifdef TRYBITS
12101         if(fds.fds_bits);
12102 #endif
12103
12104 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
12105         exit(0);
12106 #else
12107         exit(1);
12108 #endif
12109 }
12110 EOCP
12111 set try -DTRYBITS
12112 if eval $compile; then
12113         d_fds_bits="$define"
12114         d_fd_set="$define"
12115         echo "Well, your system knows about the normal fd_set typedef..." >&4
12116         if $run ./try; then
12117                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
12118                 d_fd_macros="$define"
12119         else
12120                 $cat >&4 <<'EOM'
12121 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
12122 EOM
12123                 d_fd_macros="$undef"
12124         fi
12125 else
12126         $cat <<'EOM'
12127 Hmm, your compiler has some difficulty with fd_set.  Checking further...
12128 EOM
12129         set try
12130         if eval $compile; then
12131                 d_fds_bits="$undef"
12132                 d_fd_set="$define"
12133                 echo "Well, your system has some sort of fd_set available..." >&4
12134                 if $run ./try; then
12135                         echo "and you have the normal fd_set macros." >&4
12136                         d_fd_macros="$define"
12137                 else
12138                         $cat <<'EOM'
12139 but not the normal fd_set macros!  Gross!  More work for me...
12140 EOM
12141                         d_fd_macros="$undef"
12142                 fi
12143         else
12144         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
12145                 d_fd_set="$undef"
12146                 d_fds_bits="$undef"
12147                 d_fd_macros="$undef"
12148         fi
12149 fi
12150 $rm -f try try.*
12151
12152 : see if fgetpos exists
12153 set fgetpos d_fgetpos
12154 eval $inlibc
12155
12156 : see if finite exists
12157 set finite d_finite
12158 eval $inlibc
12159
12160 : see if finitel exists
12161 set finitel d_finitel
12162 eval $inlibc
12163
12164 : see if flock exists
12165 set flock d_flock
12166 eval $inlibc
12167
12168 : see if prototype for flock is available
12169 echo " "
12170 set d_flockproto flock $i_sysfile sys/file.h
12171 eval $hasproto
12172
12173 : see if fork exists
12174 set fork d_fork
12175 eval $inlibc
12176
12177 : see if fp_class exists
12178 set fp_class d_fp_class
12179 eval $inlibc
12180
12181 : see if pathconf exists
12182 set pathconf d_pathconf
12183 eval $inlibc
12184
12185 : see if fpathconf exists
12186 set fpathconf d_fpathconf
12187 eval $inlibc
12188
12189 : see if fpclass exists
12190 set fpclass d_fpclass
12191 eval $inlibc
12192
12193 : see if fpclassify exists
12194 set fpclassify d_fpclassify
12195 eval $inlibc
12196
12197 : see if fpclassl exists
12198 set fpclassl d_fpclassl
12199 eval $inlibc
12200
12201
12202 : check for fpos64_t
12203 echo " "
12204 echo "Checking to see if you have fpos64_t..." >&4
12205 $cat >try.c <<EOCP
12206 #include <stdio.h>
12207 int main() { fpos64_t x = 7; }
12208 EOCP
12209 set try
12210 if eval $compile; then
12211         val="$define"
12212         echo "You have fpos64_t."
12213 else
12214         val="$undef"
12215         echo "You do not have fpos64_t."
12216         case "$fpossize" in
12217         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
12218         esac
12219 fi
12220 $rm -f try.* try
12221 set d_fpos64_t
12222 eval $setvar
12223
12224 : see if frexpl exists
12225 set frexpl d_frexpl
12226 eval $inlibc
12227
12228 : see if this is a sys/param system
12229 set sys/param.h i_sysparam
12230 eval $inhdr
12231
12232 : see if this is a sys/mount.h system
12233 set sys/mount.h i_sysmount
12234 eval $inhdr
12235
12236
12237 echo " "
12238 echo "Checking to see if your system supports struct fs_data..." >&4
12239 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
12240 eval $hasstruct
12241 case "$d_fs_data_s" in
12242 "$define")      echo "Yes, it does."   ;;
12243 *)              echo "No, it doesn't." ;;
12244 esac
12245
12246 : see if fseeko exists
12247 set fseeko d_fseeko
12248 eval $inlibc
12249 case "$longsize" in
12250 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
12251 esac
12252
12253 : see if fsetpos exists
12254 set fsetpos d_fsetpos
12255 eval $inlibc
12256
12257
12258 : see if fstatfs exists
12259 set fstatfs d_fstatfs
12260 eval $inlibc
12261
12262
12263 : see if statvfs exists
12264 set statvfs d_statvfs
12265 eval $inlibc
12266
12267 : see if fstatvfs exists
12268 set fstatvfs d_fstatvfs
12269 eval $inlibc
12270
12271
12272 : see if fsync exists
12273 set fsync d_fsync
12274 eval $inlibc
12275
12276 : see if ftello exists
12277 set ftello d_ftello
12278 eval $inlibc
12279 case "$longsize" in
12280 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
12281 esac
12282
12283 : see if getcwd exists
12284 set getcwd d_getcwd
12285 eval $inlibc
12286
12287 : see if getespwnam exists
12288 set getespwnam d_getespwnam
12289 eval $inlibc
12290
12291
12292 : see if getfsstat exists
12293 set getfsstat d_getfsstat
12294 eval $inlibc
12295
12296 : see if getgrent exists
12297 set getgrent d_getgrent
12298 eval $inlibc
12299
12300 : see if getgrent_r exists
12301 set getgrent_r d_getgrent_r
12302 eval $inlibc
12303 case "$d_getgrent_r" in
12304 "$define")
12305         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12306         case "$d_getgrent_r_proto:$usethreads" in
12307         ":define")      d_getgrent_r_proto=define
12308                 set d_getgrent_r_proto getgrent_r $hdrs
12309                 eval $hasproto ;;
12310         *)      ;;
12311         esac
12312         case "$d_getgrent_r_proto" in
12313         define)
12314         case "$getgrent_r_proto" in
12315         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
12316         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
12317         esac
12318         case "$getgrent_r_proto" in
12319         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
12320         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
12321         esac
12322         case "$getgrent_r_proto" in
12323         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
12324         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
12325         esac
12326         case "$getgrent_r_proto" in
12327         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
12328         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
12329         esac
12330         case "$getgrent_r_proto" in
12331         ''|0) try='int getgrent_r(struct group*, char*, int);'
12332         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
12333         esac
12334         case "$getgrent_r_proto" in
12335         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
12336         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
12337         esac
12338         case "$getgrent_r_proto" in
12339         ''|0)   d_getgrent_r=undef
12340                 getgrent_r_proto=0
12341                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
12342         * )     case "$getgrent_r_proto" in
12343                 REENTRANT_PROTO*) ;;
12344                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
12345                 esac
12346                 echo "Prototype: $try" ;;
12347         esac
12348         ;;
12349         *)      case "$usethreads" in
12350                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
12351                 esac
12352                 d_getgrent_r=undef
12353                 getgrent_r_proto=0
12354                 ;;
12355         esac
12356         ;;
12357 *)      getgrent_r_proto=0
12358         ;;
12359 esac
12360
12361 : see if getgrgid_r exists
12362 set getgrgid_r d_getgrgid_r
12363 eval $inlibc
12364 case "$d_getgrgid_r" in
12365 "$define")
12366         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12367         case "$d_getgrgid_r_proto:$usethreads" in
12368         ":define")      d_getgrgid_r_proto=define
12369                 set d_getgrgid_r_proto getgrgid_r $hdrs
12370                 eval $hasproto ;;
12371         *)      ;;
12372         esac
12373         case "$d_getgrgid_r_proto" in
12374         define)
12375         case "$getgrgid_r_proto" in
12376         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
12377         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
12378         esac
12379         case "$getgrgid_r_proto" in
12380         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
12381         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
12382         esac
12383         case "$getgrgid_r_proto" in
12384         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
12385         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
12386         esac
12387         case "$getgrgid_r_proto" in
12388         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
12389         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
12390         esac
12391         case "$getgrgid_r_proto" in
12392         ''|0)   d_getgrgid_r=undef
12393                 getgrgid_r_proto=0
12394                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
12395         * )     case "$getgrgid_r_proto" in
12396                 REENTRANT_PROTO*) ;;
12397                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
12398                 esac
12399                 echo "Prototype: $try" ;;
12400         esac
12401         ;;
12402         *)      case "$usethreads" in
12403                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
12404                 esac
12405                 d_getgrgid_r=undef
12406                 getgrgid_r_proto=0
12407                 ;;
12408         esac
12409         ;;
12410 *)      getgrgid_r_proto=0
12411         ;;
12412 esac
12413
12414 : see if getgrnam_r exists
12415 set getgrnam_r d_getgrnam_r
12416 eval $inlibc
12417 case "$d_getgrnam_r" in
12418 "$define")
12419         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12420         case "$d_getgrnam_r_proto:$usethreads" in
12421         ":define")      d_getgrnam_r_proto=define
12422                 set d_getgrnam_r_proto getgrnam_r $hdrs
12423                 eval $hasproto ;;
12424         *)      ;;
12425         esac
12426         case "$d_getgrnam_r_proto" in
12427         define)
12428         case "$getgrnam_r_proto" in
12429         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
12430         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
12431         esac
12432         case "$getgrnam_r_proto" in
12433         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
12434         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
12435         esac
12436         case "$getgrnam_r_proto" in
12437         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
12438         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
12439         esac
12440         case "$getgrnam_r_proto" in
12441         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
12442         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
12443         esac
12444         case "$getgrnam_r_proto" in
12445         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
12446         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
12447         esac
12448         case "$getgrnam_r_proto" in
12449         ''|0)   d_getgrnam_r=undef
12450                 getgrnam_r_proto=0
12451                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
12452         * )     case "$getgrnam_r_proto" in
12453                 REENTRANT_PROTO*) ;;
12454                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
12455                 esac
12456                 echo "Prototype: $try" ;;
12457         esac
12458         ;;
12459         *)      case "$usethreads" in
12460                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
12461                 esac
12462                 d_getgrnam_r=undef
12463                 getgrnam_r_proto=0
12464                 ;;
12465         esac
12466         ;;
12467 *)      getgrnam_r_proto=0
12468         ;;
12469 esac
12470
12471 : see if gethostbyaddr exists
12472 set gethostbyaddr d_gethbyaddr
12473 eval $inlibc
12474
12475 : see if gethostbyname exists
12476 set gethostbyname d_gethbyname
12477 eval $inlibc
12478
12479 : see if gethostent exists
12480 set gethostent d_gethent
12481 eval $inlibc
12482
12483 : see how we will look up host name
12484 echo " "
12485 call=''
12486 if set gethostname val -f d_gethname; eval $csym; $val; then
12487         echo 'gethostname() found.' >&4
12488         d_gethname="$define"
12489         call=gethostname
12490 fi
12491 if set uname val -f d_uname; eval $csym; $val; then
12492         if ./xenix; then
12493                 $cat <<'EOM'
12494 uname() was found, but you're running xenix, and older versions of xenix
12495 have a broken uname(). If you don't really know whether your xenix is old
12496 enough to have a broken system call, use the default answer.
12497
12498 EOM
12499                 dflt=y
12500                 case "$d_uname" in
12501                 "$define") dflt=n;;
12502                 esac
12503                 rp='Is your uname() broken?'
12504                 . ./myread
12505                 case "$ans" in
12506                 n*) d_uname="$define"; call=uname;;
12507                 esac
12508         else
12509                 echo 'uname() found.' >&4
12510                 d_uname="$define"
12511                 case "$call" in
12512                 '') call=uname ;;
12513                 esac
12514         fi
12515 fi
12516 case "$d_gethname" in
12517 '') d_gethname="$undef";;
12518 esac
12519 case "$d_uname" in
12520 '') d_uname="$undef";;
12521 esac
12522 case "$d_uname$d_gethname" in
12523 *define*)
12524         dflt=n
12525         cat <<EOM
12526  
12527 Every now and then someone has a $call() that lies about the hostname
12528 but can't be fixed for political or economic reasons.  If you wish, I can
12529 pretend $call() isn't there and maybe compute hostname at run-time
12530 thanks to the '$phostname' command.
12531
12532 EOM
12533         rp="Shall I ignore $call() from now on?"
12534         . ./myread
12535         case "$ans" in
12536         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
12537         esac;;
12538 esac
12539 case "$phostname" in
12540 '') aphostname='';;
12541 *) case "$aphostname" in
12542         /*) ;;
12543         *) set X $phostname
12544                 shift
12545                 file=$1
12546                 shift
12547                 file=`./loc $file $file $pth`
12548                 aphostname=`echo $file $*`
12549                 ;;
12550         esac
12551         ;;
12552 esac
12553 case "$d_uname$d_gethname" in
12554 *define*) ;;
12555 *)
12556         case "$phostname" in
12557         '')
12558                 echo "There will be no way for $package to get your hostname." >&4;;
12559         *)
12560         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
12561                 ;;
12562         esac;;
12563 esac
12564 case "$d_phostname" in
12565 '') d_phostname="$undef";;
12566 esac
12567
12568 : see if gethostbyaddr_r exists
12569 set gethostbyaddr_r d_gethostbyaddr_r
12570 eval $inlibc
12571 case "$d_gethostbyaddr_r" in
12572 "$define")
12573         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12574         case "$d_gethostbyaddr_r_proto:$usethreads" in
12575         ":define")      d_gethostbyaddr_r_proto=define
12576                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
12577                 eval $hasproto ;;
12578         *)      ;;
12579         esac
12580         case "$d_gethostbyaddr_r_proto" in
12581         define)
12582         case "$gethostbyaddr_r_proto" in
12583         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12584         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
12585         esac
12586         case "$gethostbyaddr_r_proto" in
12587         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
12588         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
12589         esac
12590         case "$gethostbyaddr_r_proto" in
12591         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
12592         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
12593         esac
12594         case "$gethostbyaddr_r_proto" in
12595         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
12596         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
12597         esac
12598         case "$gethostbyaddr_r_proto" in
12599         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
12600         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
12601         esac
12602         case "$gethostbyaddr_r_proto" in
12603         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
12604         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
12605         esac
12606         case "$gethostbyaddr_r_proto" in
12607         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
12608         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
12609         esac
12610         case "$gethostbyaddr_r_proto" in
12611         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
12612         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
12613         esac
12614         case "$gethostbyaddr_r_proto" in
12615         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
12616         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
12617         esac
12618         case "$gethostbyaddr_r_proto" in
12619         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
12620         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
12621         esac
12622         case "$gethostbyaddr_r_proto" in
12623         ''|0) try='int gethostbyaddr_r(const void*, socklen_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12624         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_TsISBWRE ;;
12625         esac
12626         case "$gethostbyaddr_r_proto" in
12627         ''|0)   d_gethostbyaddr_r=undef
12628                 gethostbyaddr_r_proto=0
12629                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
12630         * )     case "$gethostbyaddr_r_proto" in
12631                 REENTRANT_PROTO*) ;;
12632                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
12633                 esac
12634                 echo "Prototype: $try" ;;
12635         esac
12636         ;;
12637         *)      case "$usethreads" in
12638                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
12639                 esac
12640                 d_gethostbyaddr_r=undef
12641                 gethostbyaddr_r_proto=0
12642                 ;;
12643         esac
12644         ;;
12645 *)      gethostbyaddr_r_proto=0
12646         ;;
12647 esac
12648
12649 : see if gethostbyname_r exists
12650 set gethostbyname_r d_gethostbyname_r
12651 eval $inlibc
12652 case "$d_gethostbyname_r" in
12653 "$define")
12654         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12655         case "$d_gethostbyname_r_proto:$usethreads" in
12656         ":define")      d_gethostbyname_r_proto=define
12657                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
12658                 eval $hasproto ;;
12659         *)      ;;
12660         esac
12661         case "$d_gethostbyname_r_proto" in
12662         define)
12663         case "$gethostbyname_r_proto" in
12664         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
12665         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
12666         esac
12667         case "$gethostbyname_r_proto" in
12668         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
12669         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
12670         esac
12671         case "$gethostbyname_r_proto" in
12672         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
12673         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
12674         esac
12675         case "$gethostbyname_r_proto" in
12676         ''|0)   d_gethostbyname_r=undef
12677                 gethostbyname_r_proto=0
12678                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
12679         * )     case "$gethostbyname_r_proto" in
12680                 REENTRANT_PROTO*) ;;
12681                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
12682                 esac
12683                 echo "Prototype: $try" ;;
12684         esac
12685         ;;
12686         *)      case "$usethreads" in
12687                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
12688                 esac
12689                 d_gethostbyname_r=undef
12690                 gethostbyname_r_proto=0
12691                 ;;
12692         esac
12693         ;;
12694 *)      gethostbyname_r_proto=0
12695         ;;
12696 esac
12697
12698 : see if gethostent_r exists
12699 set gethostent_r d_gethostent_r
12700 eval $inlibc
12701 case "$d_gethostent_r" in
12702 "$define")
12703         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12704         case "$d_gethostent_r_proto:$usethreads" in
12705         ":define")      d_gethostent_r_proto=define
12706                 set d_gethostent_r_proto gethostent_r $hdrs
12707                 eval $hasproto ;;
12708         *)      ;;
12709         esac
12710         case "$d_gethostent_r_proto" in
12711         define)
12712         case "$gethostent_r_proto" in
12713         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
12714         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
12715         esac
12716         case "$gethostent_r_proto" in
12717         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
12718         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
12719         esac
12720         case "$gethostent_r_proto" in
12721         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
12722         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
12723         esac
12724         case "$gethostent_r_proto" in
12725         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
12726         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
12727         esac
12728         case "$gethostent_r_proto" in
12729         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
12730         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
12731         esac
12732         case "$gethostent_r_proto" in
12733         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
12734         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
12735         esac
12736         case "$gethostent_r_proto" in
12737         ''|0)   d_gethostent_r=undef
12738                 gethostent_r_proto=0
12739                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
12740         * )     case "$gethostent_r_proto" in
12741                 REENTRANT_PROTO*) ;;
12742                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12743                 esac
12744                 echo "Prototype: $try" ;;
12745         esac
12746         ;;
12747         *)      case "$usethreads" in
12748                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12749                 esac
12750                 d_gethostent_r=undef
12751                 gethostent_r_proto=0
12752                 ;;
12753         esac
12754         ;;
12755 *)      gethostent_r_proto=0
12756         ;;
12757 esac
12758
12759 : see if prototypes for various gethostxxx netdb.h functions are available
12760 echo " "
12761 set d_gethostprotos gethostent $i_netdb netdb.h
12762 eval $hasproto
12763
12764 : see if getitimer exists
12765 set getitimer d_getitimer
12766 eval $inlibc
12767
12768 : see if getlogin exists
12769 set getlogin d_getlogin
12770 eval $inlibc
12771
12772 : see if getlogin_r exists
12773 set getlogin_r d_getlogin_r
12774 eval $inlibc
12775 case "$d_getlogin_r" in
12776 "$define")
12777         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12778         case "$d_getlogin_r_proto:$usethreads" in
12779         ":define")      d_getlogin_r_proto=define
12780                 set d_getlogin_r_proto getlogin_r $hdrs
12781                 eval $hasproto ;;
12782         *)      ;;
12783         esac
12784         case "$d_getlogin_r_proto" in
12785         define)
12786         case "$getlogin_r_proto" in
12787         ''|0) try='int getlogin_r(char*, size_t);'
12788         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12789         esac
12790         case "$getlogin_r_proto" in
12791         ''|0) try='int getlogin_r(char*, int);'
12792         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12793         esac
12794         case "$getlogin_r_proto" in
12795         ''|0) try='char* getlogin_r(char*, size_t);'
12796         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12797         esac
12798         case "$getlogin_r_proto" in
12799         ''|0) try='char* getlogin_r(char*, int);'
12800         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12801         esac
12802         case "$getlogin_r_proto" in
12803         ''|0)   d_getlogin_r=undef
12804                 getlogin_r_proto=0
12805                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12806         * )     case "$getlogin_r_proto" in
12807                 REENTRANT_PROTO*) ;;
12808                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12809                 esac
12810                 echo "Prototype: $try" ;;
12811         esac
12812         ;;
12813         *)      case "$usethreads" in
12814                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12815                 esac
12816                 d_getlogin_r=undef
12817                 getlogin_r_proto=0
12818                 ;;
12819         esac
12820         ;;
12821 *)      getlogin_r_proto=0
12822         ;;
12823 esac
12824
12825 : see if getmnt exists
12826 set getmnt d_getmnt
12827 eval $inlibc
12828
12829 : see if getmntent exists
12830 set getmntent d_getmntent
12831 eval $inlibc
12832
12833 : see if getnetbyaddr exists
12834 set getnetbyaddr d_getnbyaddr
12835 eval $inlibc
12836
12837 : see if getnetbyname exists
12838 set getnetbyname d_getnbyname
12839 eval $inlibc
12840
12841 : see if getnetent exists
12842 set getnetent d_getnent
12843 eval $inlibc
12844
12845 : see if getnetbyaddr_r exists
12846 set getnetbyaddr_r d_getnetbyaddr_r
12847 eval $inlibc
12848 case "$d_getnetbyaddr_r" in
12849 "$define")
12850         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12851         case "$d_getnetbyaddr_r_proto:$usethreads" in
12852         ":define")      d_getnetbyaddr_r_proto=define
12853                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12854                 eval $hasproto ;;
12855         *)      ;;
12856         esac
12857         case "$d_getnetbyaddr_r_proto" in
12858         define)
12859         case "$getnetbyaddr_r_proto" in
12860         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12861         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12862         esac
12863         case "$getnetbyaddr_r_proto" in
12864         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12865         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12866         esac
12867         case "$getnetbyaddr_r_proto" in
12868         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12869         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12870         esac
12871         case "$getnetbyaddr_r_proto" in
12872         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12873         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12874         esac
12875         case "$getnetbyaddr_r_proto" in
12876         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12877         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12878         esac
12879         case "$getnetbyaddr_r_proto" in
12880         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12881         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12882         esac
12883         case "$getnetbyaddr_r_proto" in
12884         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12885         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12886         esac
12887         case "$getnetbyaddr_r_proto" in
12888         ''|0) try='int getnetbyaddr_r(uint32_t, int, struct netent*, char*, size_t, struct netent**, int*);'
12889         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_uISBWRE ;;
12890         esac
12891         case "$getnetbyaddr_r_proto" in
12892         ''|0)   d_getnetbyaddr_r=undef
12893                 getnetbyaddr_r_proto=0
12894                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12895         * )     case "$getnetbyaddr_r_proto" in
12896                 REENTRANT_PROTO*) ;;
12897                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12898                 esac
12899                 echo "Prototype: $try" ;;
12900         esac
12901         ;;
12902         *)      case "$usethreads" in
12903                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12904                 esac
12905                 d_getnetbyaddr_r=undef
12906                 getnetbyaddr_r_proto=0
12907                 ;;
12908         esac
12909         ;;
12910 *)      getnetbyaddr_r_proto=0
12911         ;;
12912 esac
12913
12914 : see if getnetbyname_r exists
12915 set getnetbyname_r d_getnetbyname_r
12916 eval $inlibc
12917 case "$d_getnetbyname_r" in
12918 "$define")
12919         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12920         case "$d_getnetbyname_r_proto:$usethreads" in
12921         ":define")      d_getnetbyname_r_proto=define
12922                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12923                 eval $hasproto ;;
12924         *)      ;;
12925         esac
12926         case "$d_getnetbyname_r_proto" in
12927         define)
12928         case "$getnetbyname_r_proto" in
12929         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12930         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12931         esac
12932         case "$getnetbyname_r_proto" in
12933         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12934         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12935         esac
12936         case "$getnetbyname_r_proto" in
12937         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
12938         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
12939         esac
12940         case "$getnetbyname_r_proto" in
12941         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
12942         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
12943         esac
12944         case "$getnetbyname_r_proto" in
12945         ''|0)   d_getnetbyname_r=undef
12946                 getnetbyname_r_proto=0
12947                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
12948         * )     case "$getnetbyname_r_proto" in
12949                 REENTRANT_PROTO*) ;;
12950                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
12951                 esac
12952                 echo "Prototype: $try" ;;
12953         esac
12954         ;;
12955         *)      case "$usethreads" in
12956                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
12957                 esac
12958                 d_getnetbyname_r=undef
12959                 getnetbyname_r_proto=0
12960                 ;;
12961         esac
12962         ;;
12963 *)      getnetbyname_r_proto=0
12964         ;;
12965 esac
12966
12967 : see if getnetent_r exists
12968 set getnetent_r d_getnetent_r
12969 eval $inlibc
12970 case "$d_getnetent_r" in
12971 "$define")
12972         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12973         case "$d_getnetent_r_proto:$usethreads" in
12974         ":define")      d_getnetent_r_proto=define
12975                 set d_getnetent_r_proto getnetent_r $hdrs
12976                 eval $hasproto ;;
12977         *)      ;;
12978         esac
12979         case "$d_getnetent_r_proto" in
12980         define)
12981         case "$getnetent_r_proto" in
12982         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
12983         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
12984         esac
12985         case "$getnetent_r_proto" in
12986         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
12987         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
12988         esac
12989         case "$getnetent_r_proto" in
12990         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
12991         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
12992         esac
12993         case "$getnetent_r_proto" in
12994         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
12995         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
12996         esac
12997         case "$getnetent_r_proto" in
12998         ''|0) try='int getnetent_r(struct netent*, char*, int);'
12999         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
13000         esac
13001         case "$getnetent_r_proto" in
13002         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
13003         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
13004         esac
13005         case "$getnetent_r_proto" in
13006         ''|0)   d_getnetent_r=undef
13007                 getnetent_r_proto=0
13008                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
13009         * )     case "$getnetent_r_proto" in
13010                 REENTRANT_PROTO*) ;;
13011                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
13012                 esac
13013                 echo "Prototype: $try" ;;
13014         esac
13015         ;;
13016         *)      case "$usethreads" in
13017                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
13018                 esac
13019                 d_getnetent_r=undef
13020                 getnetent_r_proto=0
13021                 ;;
13022         esac
13023         ;;
13024 *)      getnetent_r_proto=0
13025         ;;
13026 esac
13027
13028 : see if prototypes for various getnetxxx netdb.h functions are available
13029 echo " "
13030 set d_getnetprotos getnetent $i_netdb netdb.h
13031 eval $hasproto
13032
13033 : see if getpagesize exists
13034 set getpagesize d_getpagsz
13035 eval $inlibc
13036
13037
13038 : see if getprotobyname exists
13039 set getprotobyname d_getpbyname
13040 eval $inlibc
13041
13042 : see if getprotobynumber exists
13043 set getprotobynumber d_getpbynumber
13044 eval $inlibc
13045
13046 : see if getprotoent exists
13047 set getprotoent d_getpent
13048 eval $inlibc
13049
13050 : see if getpgid exists
13051 set getpgid d_getpgid
13052 eval $inlibc
13053
13054 : see if getpgrp2 exists
13055 set getpgrp2 d_getpgrp2
13056 eval $inlibc
13057
13058 : see if getppid exists
13059 set getppid d_getppid
13060 eval $inlibc
13061
13062 : see if getpriority exists
13063 set getpriority d_getprior
13064 eval $inlibc
13065
13066 : see if getprotobyname_r exists
13067 set getprotobyname_r d_getprotobyname_r
13068 eval $inlibc
13069 case "$d_getprotobyname_r" in
13070 "$define")
13071         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13072         case "$d_getprotobyname_r_proto:$usethreads" in
13073         ":define")      d_getprotobyname_r_proto=define
13074                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
13075                 eval $hasproto ;;
13076         *)      ;;
13077         esac
13078         case "$d_getprotobyname_r_proto" in
13079         define)
13080         case "$getprotobyname_r_proto" in
13081         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
13082         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
13083         esac
13084         case "$getprotobyname_r_proto" in
13085         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
13086         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
13087         esac
13088         case "$getprotobyname_r_proto" in
13089         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
13090         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
13091         esac
13092         case "$getprotobyname_r_proto" in
13093         ''|0)   d_getprotobyname_r=undef
13094                 getprotobyname_r_proto=0
13095                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
13096         * )     case "$getprotobyname_r_proto" in
13097                 REENTRANT_PROTO*) ;;
13098                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
13099                 esac
13100                 echo "Prototype: $try" ;;
13101         esac
13102         ;;
13103         *)      case "$usethreads" in
13104                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
13105                 esac
13106                 d_getprotobyname_r=undef
13107                 getprotobyname_r_proto=0
13108                 ;;
13109         esac
13110         ;;
13111 *)      getprotobyname_r_proto=0
13112         ;;
13113 esac
13114
13115 : see if getprotobynumber_r exists
13116 set getprotobynumber_r d_getprotobynumber_r
13117 eval $inlibc
13118 case "$d_getprotobynumber_r" in
13119 "$define")
13120         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13121         case "$d_getprotobynumber_r_proto:$usethreads" in
13122         ":define")      d_getprotobynumber_r_proto=define
13123                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
13124                 eval $hasproto ;;
13125         *)      ;;
13126         esac
13127         case "$d_getprotobynumber_r_proto" in
13128         define)
13129         case "$getprotobynumber_r_proto" in
13130         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
13131         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
13132         esac
13133         case "$getprotobynumber_r_proto" in
13134         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
13135         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
13136         esac
13137         case "$getprotobynumber_r_proto" in
13138         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
13139         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
13140         esac
13141         case "$getprotobynumber_r_proto" in
13142         ''|0)   d_getprotobynumber_r=undef
13143                 getprotobynumber_r_proto=0
13144                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
13145         * )     case "$getprotobynumber_r_proto" in
13146                 REENTRANT_PROTO*) ;;
13147                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
13148                 esac
13149                 echo "Prototype: $try" ;;
13150         esac
13151         ;;
13152         *)      case "$usethreads" in
13153                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
13154                 esac
13155                 d_getprotobynumber_r=undef
13156                 getprotobynumber_r_proto=0
13157                 ;;
13158         esac
13159         ;;
13160 *)      getprotobynumber_r_proto=0
13161         ;;
13162 esac
13163
13164 : see if getprotoent_r exists
13165 set getprotoent_r d_getprotoent_r
13166 eval $inlibc
13167 case "$d_getprotoent_r" in
13168 "$define")
13169         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13170         case "$d_getprotoent_r_proto:$usethreads" in
13171         ":define")      d_getprotoent_r_proto=define
13172                 set d_getprotoent_r_proto getprotoent_r $hdrs
13173                 eval $hasproto ;;
13174         *)      ;;
13175         esac
13176         case "$d_getprotoent_r_proto" in
13177         define)
13178         case "$getprotoent_r_proto" in
13179         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
13180         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
13181         esac
13182         case "$getprotoent_r_proto" in
13183         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
13184         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
13185         esac
13186         case "$getprotoent_r_proto" in
13187         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
13188         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
13189         esac
13190         case "$getprotoent_r_proto" in
13191         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
13192         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
13193         esac
13194         case "$getprotoent_r_proto" in
13195         ''|0)   d_getprotoent_r=undef
13196                 getprotoent_r_proto=0
13197                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
13198         * )     case "$getprotoent_r_proto" in
13199                 REENTRANT_PROTO*) ;;
13200                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
13201                 esac
13202                 echo "Prototype: $try" ;;
13203         esac
13204         ;;
13205         *)      case "$usethreads" in
13206                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
13207                 esac
13208                 d_getprotoent_r=undef
13209                 getprotoent_r_proto=0
13210                 ;;
13211         esac
13212         ;;
13213 *)      getprotoent_r_proto=0
13214         ;;
13215 esac
13216
13217 : see if prototypes for various getprotoxxx netdb.h functions are available
13218 echo " "
13219 set d_getprotoprotos getprotoent $i_netdb netdb.h
13220 eval $hasproto
13221
13222 : see if getprpwnam exists
13223 set getprpwnam d_getprpwnam
13224 eval $inlibc
13225
13226 : see if getpwent exists
13227 set getpwent d_getpwent
13228 eval $inlibc
13229
13230 : see if getpwent_r exists
13231 set getpwent_r d_getpwent_r
13232 eval $inlibc
13233 case "$d_getpwent_r" in
13234 "$define")
13235         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13236         case "$d_getpwent_r_proto:$usethreads" in
13237         ":define")      d_getpwent_r_proto=define
13238                 set d_getpwent_r_proto getpwent_r $hdrs
13239                 eval $hasproto ;;
13240         *)      ;;
13241         esac
13242         case "$d_getpwent_r_proto" in
13243         define)
13244         case "$getpwent_r_proto" in
13245         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
13246         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
13247         esac
13248         case "$getpwent_r_proto" in
13249         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
13250         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
13251         esac
13252         case "$getpwent_r_proto" in
13253         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
13254         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
13255         esac
13256         case "$getpwent_r_proto" in
13257         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
13258         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
13259         esac
13260         case "$getpwent_r_proto" in
13261         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
13262         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
13263         esac
13264         case "$getpwent_r_proto" in
13265         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
13266         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
13267         esac
13268         case "$getpwent_r_proto" in
13269         ''|0)   d_getpwent_r=undef
13270                 getpwent_r_proto=0
13271                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
13272         * )     case "$getpwent_r_proto" in
13273                 REENTRANT_PROTO*) ;;
13274                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
13275                 esac
13276                 echo "Prototype: $try" ;;
13277         esac
13278         ;;
13279         *)      case "$usethreads" in
13280                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
13281                 esac
13282                 d_getpwent_r=undef
13283                 getpwent_r_proto=0
13284                 ;;
13285         esac
13286         ;;
13287 *)      getpwent_r_proto=0
13288         ;;
13289 esac
13290
13291 : see if getpwnam_r exists
13292 set getpwnam_r d_getpwnam_r
13293 eval $inlibc
13294 case "$d_getpwnam_r" in
13295 "$define")
13296         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13297         case "$d_getpwnam_r_proto:$usethreads" in
13298         ":define")      d_getpwnam_r_proto=define
13299                 set d_getpwnam_r_proto getpwnam_r $hdrs
13300                 eval $hasproto ;;
13301         *)      ;;
13302         esac
13303         case "$d_getpwnam_r_proto" in
13304         define)
13305         case "$getpwnam_r_proto" in
13306         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
13307         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
13308         esac
13309         case "$getpwnam_r_proto" in
13310         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
13311         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
13312         esac
13313         case "$getpwnam_r_proto" in
13314         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
13315         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
13316         esac
13317         case "$getpwnam_r_proto" in
13318         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
13319         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
13320         esac
13321         case "$getpwnam_r_proto" in
13322         ''|0)   d_getpwnam_r=undef
13323                 getpwnam_r_proto=0
13324                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
13325         * )     case "$getpwnam_r_proto" in
13326                 REENTRANT_PROTO*) ;;
13327                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
13328                 esac
13329                 echo "Prototype: $try" ;;
13330         esac
13331         ;;
13332         *)      case "$usethreads" in
13333                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
13334                 esac
13335                 d_getpwnam_r=undef
13336                 getpwnam_r_proto=0
13337                 ;;
13338         esac
13339         ;;
13340 *)      getpwnam_r_proto=0
13341         ;;
13342 esac
13343
13344 : see if getpwuid_r exists
13345 set getpwuid_r d_getpwuid_r
13346 eval $inlibc
13347 case "$d_getpwuid_r" in
13348 "$define")
13349         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13350         case "$d_getpwuid_r_proto:$usethreads" in
13351         ":define")      d_getpwuid_r_proto=define
13352                 set d_getpwuid_r_proto getpwuid_r $hdrs
13353                 eval $hasproto ;;
13354         *)      ;;
13355         esac
13356         case "$d_getpwuid_r_proto" in
13357         define)
13358         case "$getpwuid_r_proto" in
13359         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
13360         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
13361         esac
13362         case "$getpwuid_r_proto" in
13363         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
13364         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
13365         esac
13366         case "$getpwuid_r_proto" in
13367         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
13368         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
13369         esac
13370         case "$getpwuid_r_proto" in
13371         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
13372         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
13373         esac
13374         case "$getpwuid_r_proto" in
13375         ''|0)   d_getpwuid_r=undef
13376                 getpwuid_r_proto=0
13377                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
13378         * )     case "$getpwuid_r_proto" in
13379                 REENTRANT_PROTO*) ;;
13380                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
13381                 esac
13382                 echo "Prototype: $try" ;;
13383         esac
13384         ;;
13385         *)      case "$usethreads" in
13386                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
13387                 esac
13388                 d_getpwuid_r=undef
13389                 getpwuid_r_proto=0
13390                 ;;
13391         esac
13392         ;;
13393 *)      getpwuid_r_proto=0
13394         ;;
13395 esac
13396
13397
13398 : see if getservbyname exists
13399 set getservbyname d_getsbyname
13400 eval $inlibc
13401
13402 : see if getservbyport exists
13403 set getservbyport d_getsbyport
13404 eval $inlibc
13405
13406 : see if getservent exists
13407 set getservent d_getsent
13408 eval $inlibc
13409
13410 : see if getservbyname_r exists
13411 set getservbyname_r d_getservbyname_r
13412 eval $inlibc
13413 case "$d_getservbyname_r" in
13414 "$define")
13415         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13416         case "$d_getservbyname_r_proto:$usethreads" in
13417         ":define")      d_getservbyname_r_proto=define
13418                 set d_getservbyname_r_proto getservbyname_r $hdrs
13419                 eval $hasproto ;;
13420         *)      ;;
13421         esac
13422         case "$d_getservbyname_r_proto" in
13423         define)
13424         case "$getservbyname_r_proto" in
13425         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
13426         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
13427         esac
13428         case "$getservbyname_r_proto" in
13429         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
13430         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
13431         esac
13432         case "$getservbyname_r_proto" in
13433         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
13434         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
13435         esac
13436         case "$getservbyname_r_proto" in
13437         ''|0)   d_getservbyname_r=undef
13438                 getservbyname_r_proto=0
13439                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
13440         * )     case "$getservbyname_r_proto" in
13441                 REENTRANT_PROTO*) ;;
13442                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
13443                 esac
13444                 echo "Prototype: $try" ;;
13445         esac
13446         ;;
13447         *)      case "$usethreads" in
13448                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
13449                 esac
13450                 d_getservbyname_r=undef
13451                 getservbyname_r_proto=0
13452                 ;;
13453         esac
13454         ;;
13455 *)      getservbyname_r_proto=0
13456         ;;
13457 esac
13458
13459 : see if getservbyport_r exists
13460 set getservbyport_r d_getservbyport_r
13461 eval $inlibc
13462 case "$d_getservbyport_r" in
13463 "$define")
13464         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13465         case "$d_getservbyport_r_proto:$usethreads" in
13466         ":define")      d_getservbyport_r_proto=define
13467                 set d_getservbyport_r_proto getservbyport_r $hdrs
13468                 eval $hasproto ;;
13469         *)      ;;
13470         esac
13471         case "$d_getservbyport_r_proto" in
13472         define)
13473         case "$getservbyport_r_proto" in
13474         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
13475         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
13476         esac
13477         case "$getservbyport_r_proto" in
13478         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
13479         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
13480         esac
13481         case "$getservbyport_r_proto" in
13482         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
13483         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
13484         esac
13485         case "$getservbyport_r_proto" in
13486         ''|0)   d_getservbyport_r=undef
13487                 getservbyport_r_proto=0
13488                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
13489         * )     case "$getservbyport_r_proto" in
13490                 REENTRANT_PROTO*) ;;
13491                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
13492                 esac
13493                 echo "Prototype: $try" ;;
13494         esac
13495         ;;
13496         *)      case "$usethreads" in
13497                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
13498                 esac
13499                 d_getservbyport_r=undef
13500                 getservbyport_r_proto=0
13501                 ;;
13502         esac
13503         ;;
13504 *)      getservbyport_r_proto=0
13505         ;;
13506 esac
13507
13508 : see if getservent_r exists
13509 set getservent_r d_getservent_r
13510 eval $inlibc
13511 case "$d_getservent_r" in
13512 "$define")
13513         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13514         case "$d_getservent_r_proto:$usethreads" in
13515         ":define")      d_getservent_r_proto=define
13516                 set d_getservent_r_proto getservent_r $hdrs
13517                 eval $hasproto ;;
13518         *)      ;;
13519         esac
13520         case "$d_getservent_r_proto" in
13521         define)
13522         case "$getservent_r_proto" in
13523         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
13524         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
13525         esac
13526         case "$getservent_r_proto" in
13527         ''|0) try='int getservent_r(struct servent*, char*, int);'
13528         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
13529         esac
13530         case "$getservent_r_proto" in
13531         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
13532         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
13533         esac
13534         case "$getservent_r_proto" in
13535         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
13536         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
13537         esac
13538         case "$getservent_r_proto" in
13539         ''|0)   d_getservent_r=undef
13540                 getservent_r_proto=0
13541                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
13542         * )     case "$getservent_r_proto" in
13543                 REENTRANT_PROTO*) ;;
13544                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
13545                 esac
13546                 echo "Prototype: $try" ;;
13547         esac
13548         ;;
13549         *)      case "$usethreads" in
13550                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
13551                 esac
13552                 d_getservent_r=undef
13553                 getservent_r_proto=0
13554                 ;;
13555         esac
13556         ;;
13557 *)      getservent_r_proto=0
13558         ;;
13559 esac
13560
13561 : see if prototypes for various getservxxx netdb.h functions are available
13562 echo " "
13563 set d_getservprotos getservent $i_netdb netdb.h
13564 eval $hasproto
13565
13566 : see if getspnam exists
13567 set getspnam d_getspnam
13568 eval $inlibc
13569
13570 : see if this is a shadow.h system
13571 set shadow.h i_shadow
13572 eval $inhdr
13573
13574 : see if getspnam_r exists
13575 set getspnam_r d_getspnam_r
13576 eval $inlibc
13577 case "$d_getspnam_r" in
13578 "$define")
13579         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
13580         case "$d_getspnam_r_proto:$usethreads" in
13581         ":define")      d_getspnam_r_proto=define
13582                 set d_getspnam_r_proto getspnam_r $hdrs
13583                 eval $hasproto ;;
13584         *)      ;;
13585         esac
13586         case "$d_getspnam_r_proto" in
13587         define)
13588         case "$getspnam_r_proto" in
13589         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
13590         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
13591         esac
13592         case "$getspnam_r_proto" in
13593         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
13594         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
13595         esac
13596         case "$getspnam_r_proto" in
13597         ''|0)   d_getspnam_r=undef
13598                 getspnam_r_proto=0
13599                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
13600         * )     case "$getspnam_r_proto" in
13601                 REENTRANT_PROTO*) ;;
13602                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
13603                 esac
13604                 echo "Prototype: $try" ;;
13605         esac
13606         ;;
13607         *)      case "$usethreads" in
13608                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
13609                 esac
13610                 d_getspnam_r=undef
13611                 getspnam_r_proto=0
13612                 ;;
13613         esac
13614         ;;
13615 *)      getspnam_r_proto=0
13616         ;;
13617 esac
13618
13619 : see if gettimeofday or ftime exists
13620 set gettimeofday d_gettimeod
13621 eval $inlibc
13622 case "$d_gettimeod" in
13623 "$undef")
13624         set ftime d_ftime 
13625         eval $inlibc
13626         ;;
13627 *)
13628         val="$undef"; set d_ftime; eval $setvar
13629         ;;
13630 esac
13631 case "$d_gettimeod$d_ftime" in
13632 "$undef$undef")
13633         echo " "
13634         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
13635         ;;
13636 esac
13637
13638 : see if gmtime_r exists
13639 set gmtime_r d_gmtime_r
13640 eval $inlibc
13641 case "$d_gmtime_r" in
13642 "$define")
13643         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13644         case "$d_gmtime_r_proto:$usethreads" in
13645         ":define")      d_gmtime_r_proto=define
13646                 set d_gmtime_r_proto gmtime_r $hdrs
13647                 eval $hasproto ;;
13648         *)      ;;
13649         esac
13650         case "$d_gmtime_r_proto" in
13651         define)
13652         case "$gmtime_r_proto" in
13653         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13654         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13655         esac
13656         case "$gmtime_r_proto" in
13657         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13658         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13659         esac
13660         case "$gmtime_r_proto" in
13661         ''|0)   d_gmtime_r=undef
13662                 gmtime_r_proto=0
13663                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13664         * )     case "$gmtime_r_proto" in
13665                 REENTRANT_PROTO*) ;;
13666                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13667                 esac
13668                 echo "Prototype: $try" ;;
13669         esac
13670         ;;
13671         *)      case "$usethreads" in
13672                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13673                 esac
13674                 d_gmtime_r=undef
13675                 gmtime_r_proto=0
13676                 ;;
13677         esac
13678         ;;
13679 *)      gmtime_r_proto=0
13680         ;;
13681 esac
13682
13683 : see if hasmntopt exists
13684 set hasmntopt d_hasmntopt
13685 eval $inlibc
13686
13687 : see if this is a netinet/in.h or sys/in.h system
13688 set netinet/in.h i_niin sys/in.h i_sysin
13689 eval $inhdr
13690
13691 : see if arpa/inet.h has to be included
13692 set arpa/inet.h i_arpainet
13693 eval $inhdr
13694
13695 : see if htonl --and friends-- exists
13696 val=''
13697 set htonl val
13698 eval $inlibc
13699
13700 : Maybe they are macros.
13701 case "$val" in
13702 $undef)
13703         $cat >htonl.c <<EOM
13704 #include <stdio.h>
13705 #include <sys/types.h>
13706 #$i_niin I_NETINET_IN
13707 #$i_sysin I_SYS_IN
13708 #$i_arpainet I_ARPA_INET
13709 #ifdef I_NETINET_IN
13710 #include <netinet/in.h>
13711 #endif
13712 #ifdef I_SYS_IN
13713 #include <sys/in.h>
13714 #endif
13715 #ifdef I_ARPA_INET
13716 #include <arpa/inet.h>
13717 #endif
13718 #ifdef htonl
13719 printf("Defined as a macro.");
13720 #endif
13721 EOM
13722         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
13723         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
13724                 val="$define"
13725                 echo "But it seems to be defined as a macro." >&4
13726         fi
13727         $rm -f htonl.?
13728         ;;
13729 esac
13730 set d_htonl
13731 eval $setvar
13732
13733 : see if ilogbl exists
13734 set ilogbl d_ilogbl
13735 eval $inlibc
13736
13737 : index or strchr
13738 echo " "
13739 if set index val -f; eval $csym; $val; then
13740         if set strchr val -f d_strchr; eval $csym; $val; then
13741                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
13742                         val="$define"
13743                         vali="$undef"
13744                         echo "strchr() found." >&4
13745                 else
13746                         val="$undef"
13747                         vali="$define"
13748                         echo "index() found." >&4
13749                 fi
13750         else
13751                 val="$undef"
13752                 vali="$define"
13753                 echo "index() found." >&4
13754         fi
13755 else
13756         if set strchr val -f d_strchr; eval $csym; $val; then
13757                 val="$define"
13758                 vali="$undef"
13759                 echo "strchr() found." >&4
13760         else
13761                 echo "No index() or strchr() found!" >&4
13762                 val="$undef"
13763                 vali="$undef"
13764         fi
13765 fi
13766 set d_strchr; eval $setvar
13767 val="$vali"
13768 set d_index; eval $setvar
13769
13770 : check whether inet_aton exists
13771 set inet_aton d_inetaton
13772 eval $inlibc
13773
13774 : Look for isascii
13775 echo " "
13776 $cat >isascii.c <<EOCP
13777 #include <stdio.h>
13778 #include <ctype.h>
13779 #$i_stdlib I_STDLIB
13780 #ifdef I_STDLIB
13781 #include <stdlib.h>
13782 #endif
13783 int main() {
13784         int c = 'A';
13785         if (isascii(c))
13786                 exit(0);
13787         else
13788                 exit(1);
13789 }
13790 EOCP
13791 set isascii
13792 if eval $compile; then
13793         echo "isascii() found." >&4
13794         val="$define"
13795 else
13796         echo "isascii() NOT found." >&4
13797         val="$undef"
13798 fi
13799 set d_isascii
13800 eval $setvar
13801 $rm -f isascii*
13802
13803 : see if isfinite exists
13804 set isfinite d_isfinite
13805 eval $inlibc
13806
13807 : see if isinf exists
13808 set isinf d_isinf
13809 eval $inlibc
13810
13811 : see if isnan exists
13812 set isnan d_isnan
13813 eval $inlibc
13814
13815 : see if isnanl exists
13816 set isnanl d_isnanl
13817 eval $inlibc
13818
13819 : see if killpg exists
13820 set killpg d_killpg
13821 eval $inlibc
13822
13823 : see if lchown exists
13824 echo " "
13825 $cat > try.c <<'EOCP'
13826 /* System header to define __stub macros and hopefully few prototypes,
13827     which can conflict with char lchown(); below.  */
13828 #include <assert.h>
13829 /* Override any gcc2 internal prototype to avoid an error.  */
13830 /* We use char because int might match the return type of a gcc2
13831    builtin and then its argument prototype would still apply.  */
13832 char lchown();
13833 int main() {
13834     /*  The GNU C library defines this for functions which it implements
13835         to always fail with ENOSYS.  Some functions are actually named
13836         something starting with __ and the normal name is an alias.  */
13837 #if defined (__stub_lchown) || defined (__stub___lchown)
13838 choke me
13839 #else
13840 lchown();
13841 #endif
13842 ; return 0; }
13843 EOCP
13844 set try
13845 if eval $compile; then
13846     $echo "lchown() found." >&4
13847     val="$define"
13848 else
13849     $echo "lchown() NOT found." >&4
13850     val="$undef"
13851 fi
13852 set d_lchown
13853 eval $setvar
13854
13855 : See if number of significant digits in a double precision number is known
13856 echo " "
13857 $cat >ldbl_dig.c <<EOM
13858 #$i_limits I_LIMITS
13859 #$i_float I_FLOAT
13860 #ifdef I_LIMITS
13861 #include <limits.h>
13862 #endif
13863 #ifdef I_FLOAT
13864 #include <float.h>
13865 #endif
13866 #ifdef LDBL_DIG
13867 printf("Contains LDBL_DIG");
13868 #endif
13869 EOM
13870 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13871 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13872         echo "LDBL_DIG found." >&4
13873         val="$define"
13874 else
13875         echo "LDBL_DIG NOT found." >&4
13876         val="$undef"
13877 fi
13878 $rm -f ldbl_dig.?
13879 set d_ldbl_dig
13880 eval $setvar
13881
13882 : see if link exists
13883 set link d_link
13884 eval $inlibc
13885
13886 : see if localtime_r exists
13887 set localtime_r d_localtime_r
13888 eval $inlibc
13889 case "$d_localtime_r" in
13890 "$define")
13891         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13892         case "$d_localtime_r_proto:$usethreads" in
13893         ":define")      d_localtime_r_proto=define
13894                 set d_localtime_r_proto localtime_r $hdrs
13895                 eval $hasproto ;;
13896         *)      ;;
13897         esac
13898         case "$d_localtime_r_proto" in
13899         define)
13900         case "$localtime_r_proto" in
13901         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13902         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13903         esac
13904         case "$localtime_r_proto" in
13905         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13906         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13907         esac
13908         case "$localtime_r_proto" in
13909         ''|0)   d_localtime_r=undef
13910                 localtime_r_proto=0
13911                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13912         * )     case "$localtime_r_proto" in
13913                 REENTRANT_PROTO*) ;;
13914                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13915                 esac
13916                 echo "Prototype: $try" ;;
13917         esac
13918         ;;
13919         *)      case "$usethreads" in
13920                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13921                 esac
13922                 d_localtime_r=undef
13923                 localtime_r_proto=0
13924                 ;;
13925         esac
13926         ;;
13927 *)      localtime_r_proto=0
13928         ;;
13929 esac
13930
13931 : see if localeconv exists
13932 set localeconv d_locconv
13933 eval $inlibc
13934
13935 : see if lockf exists
13936 set lockf d_lockf
13937 eval $inlibc
13938
13939 : see if prototype for lseek is available
13940 echo " "
13941 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
13942 eval $hasproto
13943
13944 : see if lstat exists
13945 set lstat d_lstat
13946 eval $inlibc
13947
13948 : see if madvise exists
13949 set madvise d_madvise
13950 eval $inlibc
13951
13952 : see if mblen exists
13953 set mblen d_mblen
13954 eval $inlibc
13955
13956 : see if mbstowcs exists
13957 set mbstowcs d_mbstowcs
13958 eval $inlibc
13959
13960 : see if mbtowc exists
13961 set mbtowc d_mbtowc
13962 eval $inlibc
13963
13964 : see if memchr exists
13965 set memchr d_memchr
13966 eval $inlibc
13967
13968 : see if memcmp exists
13969 set memcmp d_memcmp
13970 eval $inlibc
13971
13972 : see if memcpy exists
13973 set memcpy d_memcpy
13974 eval $inlibc
13975
13976 : see if memmove exists
13977 set memmove d_memmove
13978 eval $inlibc
13979
13980 : see if memset exists
13981 set memset d_memset
13982 eval $inlibc
13983
13984 : see if mkdir exists
13985 set mkdir d_mkdir
13986 eval $inlibc
13987
13988 : see if mkdtemp exists
13989 set mkdtemp d_mkdtemp
13990 eval $inlibc
13991
13992 : see if mkfifo exists
13993 set mkfifo d_mkfifo
13994 eval $inlibc
13995
13996 : see if mkstemp exists
13997 set mkstemp d_mkstemp
13998 eval $inlibc
13999
14000 : see if mkstemps exists
14001 set mkstemps d_mkstemps
14002 eval $inlibc
14003
14004 : see if mktime exists
14005 set mktime d_mktime
14006 eval $inlibc
14007
14008 : see if this is a sys/mman.h system
14009 set sys/mman.h i_sysmman
14010 eval $inhdr
14011
14012 : see if mmap exists
14013 set mmap d_mmap
14014 eval $inlibc
14015 : see what shmat returns
14016 : default to something harmless
14017 mmaptype='void *'
14018 case "$i_sysmman$d_mmap" in
14019 "$define$define")
14020         $cat >mmap.c <<'END'
14021 #include <sys/mman.h>
14022 void *mmap();
14023 END
14024         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
14025                 mmaptype='void *'
14026         else
14027                 mmaptype='caddr_t'
14028         fi
14029         echo "and it returns ($mmaptype)." >&4
14030         ;;
14031 esac
14032
14033
14034
14035 : see if sqrtl exists
14036 set sqrtl d_sqrtl
14037 eval $inlibc
14038
14039 : see if scalbnl exists
14040 set scalbnl d_scalbnl
14041 eval $inlibc
14042
14043 : see if modfl exists
14044 set modfl d_modfl
14045 eval $inlibc
14046
14047 : see if prototype for modfl is available
14048 echo " "
14049 set d_modflproto modfl math.h
14050 eval $hasproto
14051
14052 d_modfl_pow32_bug="$undef"
14053
14054 case "$d_longdbl$d_modfl" in
14055 $define$define)
14056         $cat <<EOM
14057 Checking to see whether your modfl() is okay for large values...
14058 EOM
14059 $cat >try.c <<EOCP
14060 #include <math.h> 
14061 #include <stdio.h>
14062 EOCP
14063 if $test "X$d_modflproto" != "X$define"; then
14064         $cat >>try.c <<EOCP
14065 /* Sigh. many current glibcs provide the function, but do not prototype it.  */ 
14066 long double modfl (long double, long double *);
14067 EOCP
14068 fi
14069 $cat >>try.c <<EOCP
14070 int main() {
14071     long double nv = 4294967303.15;
14072     long double v, w;
14073     v = modfl(nv, &w);         
14074 #ifdef __GLIBC__
14075     printf("glibc");
14076 #endif
14077     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
14078     return 0;
14079 }
14080 EOCP
14081         case "$osname:$gccversion" in
14082         aix:)   saveccflags="$ccflags"
14083                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
14084         esac
14085         set try
14086         if eval $compile; then
14087                 foo=`$run ./try`
14088                 case "$foo" in
14089                 *" 4294967303.150000 1.150000 4294967302.000000")
14090                         echo >&4 "Your modfl() is broken for large values."
14091                         d_modfl_pow32_bug="$define"
14092                         case "$foo" in
14093                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
14094                         ;;
14095                         esac
14096                         ;;
14097                 *" 4294967303.150000 0.150000 4294967303.000000")
14098                         echo >&4 "Your modfl() seems okay for large values."
14099                         ;;
14100                 *)      echo >&4 "I don't understand your modfl() at all."
14101                         d_modfl="$undef"
14102                         ;;
14103                 esac
14104                 $rm -f try.* try core core.try.*
14105         else
14106                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
14107                 d_modfl="$undef"
14108         fi
14109         case "$osname:$gccversion" in
14110         aix:)   ccflags="$saveccflags" ;; # restore
14111         esac
14112         ;;
14113 esac
14114
14115 if $test "$uselongdouble" = "$define"; then
14116     message=""
14117     if $test "$d_sqrtl" != "$define"; then
14118         message="$message sqrtl"
14119     fi
14120     if $test "$d_modfl" != "$define"; then
14121         if $test "$d_aintl:$d_copysignl" = "$define:$define"; then
14122             echo "You have both aintl and copysignl, so I can emulate modfl."
14123         else
14124             message="$message modfl"
14125         fi
14126     fi
14127     if $test "$d_frexpl" != "$define"; then
14128         if $test "$d_ilogbl:$d_scalbnl" = "$define:$define"; then
14129             echo "You have both ilogbl and scalbnl, so I can emulate frexpl."
14130         else
14131             message="$message frexpl"
14132         fi
14133     fi
14134
14135     if $test "$message" != ""; then
14136         $cat <<EOM >&4
14137
14138 *** You requested the use of long doubles but you do not seem to have
14139 *** the following mathematical functions needed for long double support:
14140 ***    $message
14141 *** Please rerun Configure without -Duselongdouble and/or -Dusemorebits.
14142 *** Cannot continue, aborting.
14143
14144 EOM
14145
14146         exit 1
14147     fi
14148 fi
14149
14150 : see if mprotect exists
14151 set mprotect d_mprotect
14152 eval $inlibc
14153
14154 : see if msgctl exists
14155 set msgctl d_msgctl
14156 eval $inlibc
14157
14158 : see if msgget exists
14159 set msgget d_msgget
14160 eval $inlibc
14161
14162 : see if msgsnd exists
14163 set msgsnd d_msgsnd
14164 eval $inlibc
14165
14166 : see if msgrcv exists
14167 set msgrcv d_msgrcv
14168 eval $inlibc
14169
14170 : see how much of the 'msg*(2)' library is present.
14171 h_msg=true
14172 echo " "
14173 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
14174 *"$undef"*) h_msg=false;;
14175 esac
14176 case "$osname" in
14177 freebsd)
14178     case "`ipcs 2>&1`" in
14179     "SVID messages"*"not configured"*)
14180         echo "Your $osname does not have the msg*(2) configured." >&4
14181         h_msg=false
14182         val="$undef"
14183         set msgctl d_msgctl
14184         eval $setvar
14185         set msgget d_msgget
14186         eval $setvar
14187         set msgsnd d_msgsnd
14188         eval $setvar
14189         set msgrcv d_msgrcv
14190         eval $setvar
14191         ;;
14192     esac
14193     ;;
14194 esac
14195 : we could also check for sys/ipc.h ...
14196 if $h_msg && $test `./findhdr sys/msg.h`; then
14197         echo "You have the full msg*(2) library." >&4
14198         val="$define"
14199 else
14200         echo "You don't have the full msg*(2) library." >&4
14201         val="$undef"
14202 fi
14203 set d_msg
14204 eval $setvar
14205
14206
14207 echo " "
14208 echo "Checking to see if your system supports struct msghdr..." >&4
14209 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
14210 eval $hasstruct
14211 case "$d_msghdr_s" in
14212 "$define")      echo "Yes, it does."   ;;
14213 *)              echo "No, it doesn't." ;;
14214 esac
14215
14216
14217 : see if msync exists
14218 set msync d_msync
14219 eval $inlibc
14220
14221 : see if munmap exists
14222 set munmap d_munmap
14223 eval $inlibc
14224
14225 : see if nice exists
14226 set nice d_nice
14227 eval $inlibc
14228
14229 : see if this is a langinfo.h system
14230 set langinfo.h i_langinfo
14231 eval $inhdr
14232
14233 : see if nl_langinfo exists
14234 set nl_langinfo d_nl_langinfo
14235 eval $inlibc
14236
14237 : check for length of character
14238 echo " "
14239 case "$charsize" in
14240 '')
14241         echo "Checking to see how big your characters are (hey, you never know)..." >&4
14242         $cat >try.c <<EOCP
14243 #include <stdio.h>
14244 #$i_stdlib I_STDLIB
14245 #ifdef I_STDLIB
14246 #include <stdlib.h>
14247 #endif
14248 int main()
14249 {
14250     printf("%d\n", (int)sizeof(char));
14251     exit(0);
14252 }
14253 EOCP
14254         set try
14255         if eval $compile_ok; then
14256                 dflt=`$run ./try`
14257         else
14258                 dflt='1'
14259                 echo "(I can't seem to compile the test program.  Guessing...)"
14260         fi
14261         ;;
14262 *)
14263         dflt="$charsize"
14264         ;;
14265 esac
14266 rp="What is the size of a character (in bytes)?"
14267 . ./myread
14268 charsize="$ans"
14269 $rm -f try.c try
14270
14271 : check for volatile keyword
14272 echo " "
14273 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
14274 $cat >try.c <<'EOCP'
14275 int main()
14276 {
14277         typedef struct _goo_struct goo_struct;
14278         goo_struct * volatile goo = ((goo_struct *)0);
14279         struct _goo_struct {
14280                 long long_int;
14281                 int reg_int;
14282                 char char_var;
14283         };
14284         typedef unsigned short foo_t;
14285         char *volatile foo;
14286         volatile int bar;
14287         volatile foo_t blech;
14288         foo = foo;
14289 }
14290 EOCP
14291 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
14292         val="$define"
14293         echo "Yup, it does."
14294 else
14295         val="$undef"
14296         echo "Nope, it doesn't."
14297 fi
14298 set d_volatile
14299 eval $setvar
14300 $rm -f try.*
14301
14302
14303 echo " "
14304 $echo "Choosing the C types to be used for Perl's internal types..." >&4
14305
14306 case "$use64bitint:$d_quad:$quadtype" in
14307 define:define:?*)
14308         ivtype="$quadtype"
14309         uvtype="$uquadtype"
14310         ivsize=8
14311         uvsize=8
14312         ;;
14313 *)      ivtype="long"
14314         uvtype="unsigned long"
14315         ivsize=$longsize
14316         uvsize=$longsize
14317         ;;
14318 esac
14319
14320 case "$uselongdouble:$d_longdbl" in
14321 define:define)
14322         nvtype="long double"
14323         nvsize=$longdblsize
14324         ;;
14325 *)      nvtype=double
14326         nvsize=$doublesize
14327         ;;
14328 esac
14329
14330 $echo "(IV will be "$ivtype", $ivsize bytes)"
14331 $echo "(UV will be "$uvtype", $uvsize bytes)"
14332 $echo "(NV will be "$nvtype", $nvsize bytes)"
14333
14334 $cat >try.c <<EOCP
14335 #$i_inttypes I_INTTYPES
14336 #ifdef I_INTTYPES
14337 #include <inttypes.h>
14338 #endif
14339 #include <stdio.h>
14340 int main() {
14341 #ifdef INT8
14342    int8_t i =  INT8_MAX;
14343   uint8_t u = UINT8_MAX;
14344   printf("int8_t\n");
14345 #endif
14346 #ifdef INT16
14347    int16_t i =  INT16_MAX;
14348   uint16_t i = UINT16_MAX;
14349   printf("int16_t\n");
14350 #endif
14351 #ifdef INT32
14352    int32_t i =  INT32_MAX;
14353   uint32_t u = UINT32_MAX;
14354   printf("int32_t\n");
14355 #endif
14356 }
14357 EOCP
14358
14359 case "$i8type" in
14360 '')     case "$charsize" in
14361         1)      i8type=char
14362                 u8type="unsigned char"
14363                 i8size=$charsize
14364                 u8size=$charsize
14365                 ;;
14366         esac
14367         ;;
14368 esac
14369 case "$i8type" in
14370 '')     set try -DINT8
14371         if eval $compile; then
14372                 case "`$run ./try`" in
14373                 int8_t) i8type=int8_t
14374                         u8type=uint8_t
14375                         i8size=1
14376                         u8size=1
14377                         ;;
14378                 esac
14379         fi
14380         ;;
14381 esac
14382 case "$i8type" in
14383 '')     if $test $charsize -ge 1; then
14384                 i8type=char
14385                 u8type="unsigned char"
14386                 i8size=$charsize
14387                 u8size=$charsize
14388         fi
14389         ;;
14390 esac
14391
14392 case "$i16type" in
14393 '')     case "$shortsize" in
14394         2)      i16type=short
14395                 u16type="unsigned short"
14396                 i16size=$shortsize
14397                 u16size=$shortsize
14398                 ;;
14399         esac
14400         ;;
14401 esac
14402 case "$i16type" in
14403 '')     set try -DINT16
14404         if eval $compile; then
14405                 case "`$run ./try`" in
14406                 int16_t)
14407                         i16type=int16_t
14408                         u16type=uint16_t
14409                         i16size=2
14410                         u16size=2
14411                         ;;
14412                 esac
14413         fi
14414         ;;
14415 esac
14416 case "$i16type" in
14417 '')     if $test $shortsize -ge 2; then
14418                 i16type=short
14419                 u16type="unsigned short"
14420                 i16size=$shortsize
14421                 u16size=$shortsize
14422         fi
14423         ;;
14424 esac
14425
14426 case "$i32type" in
14427 '')     case "$longsize" in
14428         4)      i32type=long
14429                 u32type="unsigned long"
14430                 i32size=$longsize
14431                 u32size=$longsize
14432                 ;;
14433         *)      case "$intsize" in
14434                 4)      i32type=int
14435                         u32type="unsigned int"
14436                         i32size=$intsize
14437                         u32size=$intsize
14438                         ;;
14439                 esac
14440                 ;;
14441         esac
14442         ;;
14443 esac
14444 case "$i32type" in
14445 '')     set try -DINT32
14446         if eval $compile; then
14447                 case "`$run ./try`" in
14448                 int32_t)
14449                         i32type=int32_t
14450                         u32type=uint32_t
14451                         i32size=4
14452                         u32size=4
14453                         ;;
14454                 esac
14455         fi
14456         ;;
14457 esac
14458 case "$i32type" in
14459 '')     if $test $intsize -ge 4; then
14460                 i32type=int
14461                 u32type="unsigned int"
14462                 i32size=$intsize
14463                 u32size=$intsize
14464         fi
14465         ;;
14466 esac
14467
14468 case "$i64type" in
14469 '')     case "$d_quad:$quadtype" in
14470         define:?*)
14471                 i64type="$quadtype"
14472                 u64type="$uquadtype"
14473                 i64size=8
14474                 u64size=8
14475                 ;;
14476         esac
14477         ;;
14478 esac
14479
14480 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
14481 : volatile so that the compiler has to store it out to memory.
14482 if test X"$d_volatile" = X"$define"; then
14483         volatile=volatile
14484 fi
14485 $cat <<EOP >try.c
14486 #include <stdio.h>
14487 #$i_stdlib I_STDLIB
14488 #ifdef I_STDLIB
14489 #include <stdlib.h>
14490 #endif
14491 #include <sys/types.h>
14492 #include <signal.h>
14493 #ifdef SIGFPE
14494 $volatile int bletched = 0;
14495 $signal_t blech(s) int s; { bletched = 1; }
14496 #endif
14497 int main() {
14498     $uvtype u = 0;
14499     $nvtype d;
14500     int     n = 8 * $uvsize;
14501     int     i;
14502 #ifdef SIGFPE
14503     signal(SIGFPE, blech);
14504 #endif
14505
14506     for (i = 0; i < n; i++) {
14507       u = u << 1 | ($uvtype)1;
14508       d = ($nvtype)u;
14509       if (($uvtype)d != u)
14510         break;
14511       if (d <= 0)
14512         break;
14513       d = ($nvtype)(u - 1);
14514       if (($uvtype)d != (u - 1))
14515         break;
14516 #ifdef SIGFPE
14517       if (bletched) {
14518         break;
14519 #endif
14520       } 
14521     }
14522     printf("%d\n", ((i == n) ? -n : i));
14523     exit(0);
14524 }
14525 EOP
14526 set try
14527
14528 d_nv_preserves_uv="$undef"
14529 if eval $compile; then
14530         nv_preserves_uv_bits="`$run ./try`"
14531 fi
14532 case "$nv_preserves_uv_bits" in
14533 \-[1-9]*)       
14534         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
14535         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
14536         d_nv_preserves_uv="$define"
14537         ;;
14538 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
14539         d_nv_preserves_uv="$undef" ;;
14540 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
14541         nv_preserves_uv_bits="$undef" ;;
14542 esac
14543
14544 $rm -f try.* try
14545
14546
14547 : check for off64_t
14548 echo " "
14549 echo "Checking to see if you have off64_t..." >&4
14550 $cat >try.c <<EOCP
14551 #include <sys/types.h>
14552 #include <unistd.h>
14553 int main() { off64_t x = 7; }
14554 EOCP
14555 set try
14556 if eval $compile; then
14557         val="$define"
14558         echo "You have off64_t."
14559 else
14560         val="$undef"
14561         echo "You do not have off64_t."
14562         case "$lseeksize" in
14563         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
14564         esac
14565 fi
14566 $rm -f try.* try
14567 set d_off64_t
14568 eval $setvar
14569
14570 : how to create joinable pthreads
14571 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
14572         echo " "
14573         echo "Checking what constant to use for creating joinable pthreads..." >&4 
14574         $cat >try.c <<'EOCP'
14575 #include <pthread.h>
14576 int main() {
14577     int detachstate = JOINABLE;
14578 }
14579 EOCP
14580         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
14581         if eval $compile; then
14582                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
14583                 val="$undef" # Yes, undef.
14584                 set d_old_pthread_create_joinable
14585                 eval $setvar
14586                 val=""
14587                 set old_pthread_create_joinable
14588                 eval $setvar
14589         else
14590                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
14591                 if eval $compile; then
14592                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
14593                         val="$define"
14594                         set d_old_pthread_create_joinable
14595                         eval $setvar
14596                         val=PTHREAD_CREATE_UNDETACHED
14597                         set old_pthread_create_joinable
14598                         eval $setvar
14599                 else            
14600                         set try -DJOINABLE=__UNDETACHED
14601                         if eval $compile; then
14602                                 echo "You seem to use __UNDETACHED." >&4
14603                                 val="$define"
14604                                 set d_old_pthread_create_joinable
14605                                 eval $setvar
14606                                 val=__UNDETACHED
14607                                 set old_pthread_create_joinable
14608                                 eval $setvar
14609                         else
14610                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
14611                                 val="$define"
14612                                 set d_old_pthread_create_joinable
14613                                 eval $setvar
14614                                 val=0
14615                                 set old_pthread_create_joinable
14616                                 eval $setvar
14617                         fi
14618                 fi
14619         fi
14620         $rm -f try try.*
14621 else
14622     d_old_pthread_create_joinable="$undef"
14623     old_pthread_create_joinable=""
14624 fi
14625
14626 : see if pause exists
14627 set pause d_pause
14628 eval $inlibc
14629
14630 : see if pipe exists
14631 set pipe d_pipe
14632 eval $inlibc
14633
14634 : see if poll exists
14635 set poll d_poll
14636 eval $inlibc
14637
14638 : see if readlink exists
14639 set readlink d_readlink
14640 eval $inlibc
14641
14642 echo " "
14643 procselfexe=''
14644 val="$undef"
14645 case "$d_readlink" in
14646 "$define")
14647         if $issymlink /proc/self/exe ; then
14648                 $ls -l /proc/self/exe > reflect
14649                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14650                         echo "You have Linux-like /proc/self/exe."
14651                         procselfexe='"/proc/self/exe"'
14652                         val="$define"
14653                 fi
14654         fi
14655         if $issymlink /proc/curproc/file ; then
14656                 $ls -l /proc/curproc/file > reflect
14657                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14658                         echo "You have BSD-like /proc/curproc/file."
14659                         procselfexe='"/proc/curproc/file"'
14660                         val="$define"
14661                 fi
14662         fi
14663         ;;
14664 esac
14665 $rm -f reflect
14666 set d_procselfexe
14667 eval $setvar
14668
14669 : see whether the pthread_atfork exists
14670 $cat >try.c <<EOP
14671 #include <pthread.h>
14672 #include <stdio.h>
14673 int main() {
14674 #ifdef  PTHREAD_ATFORK
14675         pthread_atfork(NULL,NULL,NULL);
14676 #endif
14677 }
14678 EOP
14679
14680 : see if pthread_atfork exists
14681 set try -DPTHREAD_ATFORK
14682 if eval $compile; then
14683     val="$define"
14684 else
14685     val="$undef"
14686 fi
14687 case "$usethreads" in
14688 $define)
14689         case "$val" in
14690         $define) echo 'pthread_atfork found.' >&4        ;;
14691         *)       echo 'pthread_atfork NOT found.' >&4    ;;
14692         esac
14693 esac
14694 set d_pthread_atfork
14695 eval $setvar
14696
14697 : see if pthread_attr_setscope exists
14698 set pthread_attr_setscope d_pthread_attr_setscope
14699 eval $inlibc
14700
14701
14702 : see whether the various POSIXish _yields exist
14703 $cat >try.c <<EOP
14704 #include <pthread.h>
14705 #include <stdio.h>
14706 int main() {
14707 #ifdef SCHED_YIELD
14708         sched_yield();
14709 #else
14710 #ifdef PTHREAD_YIELD
14711         pthread_yield();
14712 #else
14713 #ifdef PTHREAD_YIELD_NULL
14714         pthread_yield(NULL);
14715 #endif
14716 #endif
14717 #endif
14718 }
14719 EOP
14720 : see if sched_yield exists
14721 set try -DSCHED_YIELD
14722 if eval $compile; then
14723     val="$define"
14724     sched_yield='sched_yield()'
14725 else
14726     val="$undef"
14727 fi
14728 case "$usethreads" in
14729 $define)
14730         case "$val" in
14731         $define) echo 'sched_yield() found.' >&4        ;;
14732         *)       echo 'sched_yield() NOT found.' >&4    ;;
14733         esac
14734 esac
14735 set d_sched_yield
14736 eval $setvar
14737
14738 : see if pthread_yield exists
14739 set try -DPTHREAD_YIELD
14740 if eval $compile; then
14741     val="$define"
14742     case "$sched_yield" in
14743     '') sched_yield='pthread_yield()' ;;
14744     esac
14745 else
14746     set try -DPTHREAD_YIELD_NULL
14747     if eval $compile; then
14748         val="$define"
14749         case "$sched_yield" in
14750         '') sched_yield='pthread_yield(NULL)' ;;
14751         esac
14752     else
14753         val="$undef"
14754     fi
14755 fi
14756 case "$usethreads" in
14757 $define)
14758         case "$val" in
14759         $define) echo 'pthread_yield() found.' >&4      ;;
14760         *)       echo 'pthread_yield() NOT found.' >&4  ;;
14761         esac
14762         ;;
14763 esac
14764 set d_pthread_yield
14765 eval $setvar
14766
14767 case "$sched_yield" in
14768 '') sched_yield=undef ;;
14769 esac
14770
14771 $rm -f try try.*
14772
14773 : see if random_r exists
14774 set random_r d_random_r
14775 eval $inlibc
14776 case "$d_random_r" in
14777 "$define")
14778         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
14779         case "$d_random_r_proto:$usethreads" in
14780         ":define")      d_random_r_proto=define
14781                 set d_random_r_proto random_r $hdrs
14782                 eval $hasproto ;;
14783         *)      ;;
14784         esac
14785         case "$d_random_r_proto" in
14786         define)
14787         case "$random_r_proto" in
14788         ''|0) try='int random_r(int*, struct random_data*);'
14789         ./protochk "extern $try" $hdrs && random_r_proto=I_iS ;;
14790         esac
14791         case "$random_r_proto" in
14792         ''|0) try='int random_r(long*, struct random_data*);'
14793         ./protochk "extern $try" $hdrs && random_r_proto=I_lS ;;
14794         esac
14795         case "$random_r_proto" in
14796         ''|0) try='int random_r(struct random_data*, int32_t*);'
14797         ./protochk "extern $try" $hdrs && random_r_proto=I_St ;;
14798         esac
14799         case "$random_r_proto" in
14800         ''|0)   d_random_r=undef
14801                 random_r_proto=0
14802                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
14803         * )     case "$random_r_proto" in
14804                 REENTRANT_PROTO*) ;;
14805                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
14806                 esac
14807                 echo "Prototype: $try" ;;
14808         esac
14809         ;;
14810         *)      case "$usethreads" in
14811                 define) echo "random_r has no prototype, not using it." >&4 ;;
14812                 esac
14813                 d_random_r=undef
14814                 random_r_proto=0
14815                 ;;
14816         esac
14817         ;;
14818 *)      random_r_proto=0
14819         ;;
14820 esac
14821
14822 : see if readdir and friends exist
14823 set readdir d_readdir
14824 eval $inlibc
14825 set seekdir d_seekdir
14826 eval $inlibc
14827 set telldir d_telldir
14828 eval $inlibc
14829 set rewinddir d_rewinddir
14830 eval $inlibc
14831
14832 : see if readdir64_r exists
14833 set readdir64_r d_readdir64_r
14834 eval $inlibc
14835 case "$d_readdir64_r" in
14836 "$define")
14837         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14838         case "$d_readdir64_r_proto:$usethreads" in
14839         ":define")      d_readdir64_r_proto=define
14840                 set d_readdir64_r_proto readdir64_r $hdrs
14841                 eval $hasproto ;;
14842         *)      ;;
14843         esac
14844         case "$d_readdir64_r_proto" in
14845         define)
14846         case "$readdir64_r_proto" in
14847         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
14848         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
14849         esac
14850         case "$readdir64_r_proto" in
14851         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
14852         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
14853         esac
14854         case "$readdir64_r_proto" in
14855         ''|0)   d_readdir64_r=undef
14856                 readdir64_r_proto=0
14857                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
14858         * )     case "$readdir64_r_proto" in
14859                 REENTRANT_PROTO*) ;;
14860                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
14861                 esac
14862                 echo "Prototype: $try" ;;
14863         esac
14864         ;;
14865         *)      case "$usethreads" in
14866                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
14867                 esac
14868                 d_readdir64_r=undef
14869                 readdir64_r_proto=0
14870                 ;;
14871         esac
14872         ;;
14873 *)      readdir64_r_proto=0
14874         ;;
14875 esac
14876
14877 : see if readdir_r exists
14878 set readdir_r d_readdir_r
14879 eval $inlibc
14880 case "$d_readdir_r" in
14881 "$define")
14882         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14883         case "$d_readdir_r_proto:$usethreads" in
14884         ":define")      d_readdir_r_proto=define
14885                 set d_readdir_r_proto readdir_r $hdrs
14886                 eval $hasproto ;;
14887         *)      ;;
14888         esac
14889         case "$d_readdir_r_proto" in
14890         define)
14891         case "$readdir_r_proto" in
14892         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14893         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14894         esac
14895         case "$readdir_r_proto" in
14896         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14897         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14898         esac
14899         case "$readdir_r_proto" in
14900         ''|0)   d_readdir_r=undef
14901                 readdir_r_proto=0
14902                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14903         * )     case "$readdir_r_proto" in
14904                 REENTRANT_PROTO*) ;;
14905                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14906                 esac
14907                 echo "Prototype: $try" ;;
14908         esac
14909         ;;
14910         *)      case "$usethreads" in
14911                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14912                 esac
14913                 d_readdir_r=undef
14914                 readdir_r_proto=0
14915                 ;;
14916         esac
14917         ;;
14918 *)      readdir_r_proto=0
14919         ;;
14920 esac
14921
14922 : see if readv exists
14923 set readv d_readv
14924 eval $inlibc
14925
14926 : see if recvmsg exists
14927 set recvmsg d_recvmsg
14928 eval $inlibc
14929
14930 : see if rename exists
14931 set rename d_rename
14932 eval $inlibc
14933
14934 : see if rmdir exists
14935 set rmdir d_rmdir
14936 eval $inlibc
14937
14938 : see if memory.h is available.
14939 val=''
14940 set memory.h val
14941 eval $inhdr
14942
14943 : See if it conflicts with string.h
14944 case "$val" in
14945 $define)
14946         case "$strings" in
14947         '') ;;
14948         *)
14949                 $cppstdin $cppflags $cppminus < $strings > mem.h
14950                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
14951                         echo " "
14952                         echo "We won't be including <memory.h>."
14953                         val="$undef"
14954                 fi
14955                 $rm -f mem.h
14956                 ;;
14957         esac
14958 esac
14959 set i_memory
14960 eval $setvar
14961
14962 : can bcopy handle overlapping blocks?
14963 echo " "
14964 val="$undef"
14965 case "$d_memmove" in
14966 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
14967 *)      case "$d_bcopy" in
14968         "$define")
14969                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
14970                 $cat >try.c <<EOCP
14971 #$i_memory I_MEMORY
14972 #$i_stdlib I_STDLIB
14973 #$i_string I_STRING
14974 #$i_unistd I_UNISTD
14975 EOCP
14976         $cat >>try.c <<'EOCP'
14977 #include <stdio.h>
14978 #ifdef I_MEMORY
14979 #  include <memory.h>
14980 #endif
14981 #ifdef I_STDLIB
14982 #  include <stdlib.h>
14983 #endif
14984 #ifdef I_STRING
14985 #  include <string.h>
14986 #else
14987 #  include <strings.h>
14988 #endif
14989 #ifdef I_UNISTD
14990 #  include <unistd.h>  /* Needed for NetBSD */
14991 #endif
14992 int main()
14993 {
14994 char buf[128], abc[128];
14995 char *b;
14996 int len;
14997 int off;
14998 int align;
14999
15000 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15001    try to store the string in read-only memory. */
15002 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
15003
15004 for (align = 7; align >= 0; align--) {
15005         for (len = 36; len; len--) {
15006                 b = buf+align;
15007                 bcopy(abc, b, len);
15008                 for (off = 1; off <= len; off++) {
15009                         bcopy(b, b+off, len);
15010                         bcopy(b+off, b, len);
15011                         if (bcmp(b, abc, len))
15012                                 exit(1);
15013                 }
15014         }
15015 }
15016 exit(0);
15017 }
15018 EOCP
15019                 set try
15020                 if eval $compile_ok; then
15021                         if ./try 2>/dev/null; then
15022                                 echo "Yes, it can."
15023                                 val="$define"
15024                         else
15025                                 echo "It can't, sorry."
15026                         fi
15027                 else
15028                         echo "(I can't compile the test program, so we'll assume not...)"
15029                 fi
15030                 ;;
15031         esac
15032         $rm -f try.* try core
15033         ;;
15034 esac
15035 set d_safebcpy
15036 eval $setvar
15037
15038 : can memcpy handle overlapping blocks?
15039 echo " "
15040 val="$undef"
15041 case "$d_memmove" in
15042 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
15043 *)      case "$d_memcpy" in
15044         "$define")
15045                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
15046                 $cat >try.c <<EOCP
15047 #$i_memory I_MEMORY
15048 #$i_stdlib I_STDLIB
15049 #$i_string I_STRING
15050 #$i_unistd I_UNISTD
15051 EOCP
15052         $cat >>try.c <<'EOCP'
15053 #include <stdio.h>
15054 #ifdef I_MEMORY
15055 #  include <memory.h>
15056 #endif
15057 #ifdef I_STDLIB
15058 #  include <stdlib.h>
15059 #endif
15060 #ifdef I_STRING
15061 #  include <string.h>
15062 #else
15063 #  include <strings.h>
15064 #endif
15065 #ifdef I_UNISTD
15066 #  include <unistd.h>  /* Needed for NetBSD */
15067 #endif
15068 int main()
15069 {
15070 char buf[128], abc[128];
15071 char *b;
15072 int len;
15073 int off;
15074 int align;
15075
15076 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15077    try to store the string in read-only memory. */
15078 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
15079
15080 for (align = 7; align >= 0; align--) {
15081         for (len = 36; len; len--) {
15082                 b = buf+align;
15083                 memcpy(b, abc, len);
15084                 for (off = 1; off <= len; off++) {
15085                         memcpy(b+off, b, len);
15086                         memcpy(b, b+off, len);
15087                         if (memcmp(b, abc, len))
15088                                 exit(1);
15089                 }
15090         }
15091 }
15092 exit(0);
15093 }
15094 EOCP
15095                 set try
15096                 if eval $compile_ok; then
15097                         if ./try 2>/dev/null; then
15098                                 echo "Yes, it can."
15099                                 val="$define"
15100                         else
15101                                 echo "It can't, sorry."
15102                         fi
15103                 else
15104                         echo "(I can't compile the test program, so we'll assume not...)"
15105                 fi
15106                 ;;
15107         esac
15108         $rm -f try.* try core
15109         ;;
15110 esac
15111 set d_safemcpy
15112 eval $setvar
15113
15114 : can memcmp be trusted to compare relative magnitude?
15115 val="$undef"
15116 case "$d_memcmp" in
15117 "$define")
15118         echo " "
15119         echo "Checking if your memcmp() can compare relative magnitude..." >&4
15120         $cat >try.c <<EOCP
15121 #$i_memory I_MEMORY
15122 #$i_stdlib I_STDLIB
15123 #$i_string I_STRING
15124 #$i_unistd I_UNISTD
15125 EOCP
15126         $cat >>try.c <<'EOCP'
15127 #include <stdio.h>
15128 #ifdef I_MEMORY
15129 #  include <memory.h>
15130 #endif
15131 #ifdef I_STDLIB
15132 #  include <stdlib.h>
15133 #endif
15134 #ifdef I_STRING
15135 #  include <string.h>
15136 #else
15137 #  include <strings.h>
15138 #endif
15139 #ifdef I_UNISTD
15140 #  include <unistd.h>  /* Needed for NetBSD */
15141 #endif
15142 int main()
15143 {
15144 char a = -1;
15145 char b = 0;
15146 if ((a < b) && memcmp(&a, &b, 1) < 0)
15147         exit(1);
15148 exit(0);
15149 }
15150 EOCP
15151         set try
15152         if eval $compile_ok; then
15153                 if $run ./try 2>/dev/null; then
15154                         echo "Yes, it can."
15155                         val="$define"
15156                 else
15157                         echo "No, it can't (it uses signed chars)."
15158                 fi
15159         else
15160                 echo "(I can't compile the test program, so we'll assume not...)"
15161         fi
15162         ;;
15163 esac
15164 $rm -f try.* try core
15165 set d_sanemcmp
15166 eval $setvar
15167
15168 : see if prototype for sbrk is available
15169 echo " "
15170 set d_sbrkproto sbrk $i_unistd unistd.h
15171 eval $hasproto
15172
15173 : see if select exists
15174 set select d_select
15175 eval $inlibc
15176
15177 : see if semctl exists
15178 set semctl d_semctl
15179 eval $inlibc
15180
15181 : see if semget exists
15182 set semget d_semget
15183 eval $inlibc
15184
15185 : see if semop exists
15186 set semop d_semop
15187 eval $inlibc
15188
15189 : see how much of the 'sem*(2)' library is present.
15190 h_sem=true
15191 echo " "
15192 case "$d_semctl$d_semget$d_semop" in
15193 *"$undef"*) h_sem=false;;
15194 esac
15195 case "$osname" in
15196 freebsd)
15197     case "`ipcs 2>&1`" in
15198     "SVID messages"*"not configured"*)
15199         echo "Your $osname does not have the sem*(2) configured." >&4
15200         h_sem=false
15201         val="$undef"
15202         set semctl d_semctl
15203         eval $setvar
15204         set semget d_semget
15205         eval $setvar
15206         set semop d_semop
15207         eval $setvar
15208         ;;
15209     esac
15210     ;;
15211 esac
15212 : we could also check for sys/ipc.h ...
15213 if $h_sem && $test `./findhdr sys/sem.h`; then
15214         echo "You have the full sem*(2) library." >&4
15215         val="$define"
15216 else
15217         echo "You don't have the full sem*(2) library." >&4
15218         val="$undef"
15219 fi
15220 set d_sem
15221 eval $setvar
15222
15223 : see whether sys/sem.h defines union semun
15224 echo " "
15225 $cat > try.c <<'END'
15226 #include <sys/types.h>
15227 #include <sys/ipc.h>
15228 #include <sys/sem.h>
15229 int main () { union semun semun; semun.buf = 0; }
15230 END
15231 set try
15232 if eval $compile; then
15233     echo "You have union semun in <sys/sem.h>." >&4
15234     val="$define"
15235 else
15236     echo "You do not have union semun in <sys/sem.h>." >&4
15237     val="$undef"
15238 fi
15239 $rm -f try try.c try.h
15240 set d_union_semun
15241 eval $setvar
15242
15243 : see how to do semctl IPC_STAT
15244 case "$d_sem" in
15245 $define)
15246     : see whether semctl IPC_STAT can use union semun
15247     echo " "
15248     $cat > try.h <<END
15249 #ifndef S_IRUSR
15250 #   ifdef S_IREAD
15251 #       define S_IRUSR S_IREAD
15252 #       define S_IWUSR S_IWRITE
15253 #       define S_IXUSR S_IEXEC
15254 #   else
15255 #       define S_IRUSR 0400
15256 #       define S_IWUSR 0200
15257 #       define S_IXUSR 0100
15258 #   endif
15259 #   define S_IRGRP (S_IRUSR>>3)
15260 #   define S_IWGRP (S_IWUSR>>3)
15261 #   define S_IXGRP (S_IXUSR>>3)
15262 #   define S_IROTH (S_IRUSR>>6)
15263 #   define S_IWOTH (S_IWUSR>>6)
15264 #   define S_IXOTH (S_IXUSR>>6)
15265 #endif
15266 #ifndef S_IRWXU
15267 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
15268 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
15269 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
15270 #endif
15271 END
15272
15273     $cat > try.c <<END
15274 #include <sys/types.h>
15275 #include <sys/ipc.h>
15276 #include <sys/sem.h>
15277 #include <sys/stat.h>
15278 #include <stdio.h>
15279 #include <errno.h>
15280 #include "try.h"
15281 #ifndef errno
15282 extern int errno;
15283 #endif
15284 #$d_union_semun HAS_UNION_SEMUN
15285 int main() {
15286     union semun
15287 #ifndef HAS_UNION_SEMUN
15288     {
15289         int val;
15290         struct semid_ds *buf;
15291         unsigned short *array;
15292     }
15293 #endif
15294     arg;
15295     int sem, st;
15296
15297 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
15298     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15299     if (sem > -1) {
15300         struct semid_ds argbuf;
15301         arg.buf = &argbuf;
15302 #       ifdef IPC_STAT
15303         st = semctl(sem, 0, IPC_STAT, arg);
15304         if (st == 0)
15305             printf("semun\n");
15306         else
15307 #       endif /* IPC_STAT */
15308             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15309 #       ifdef IPC_RMID
15310         if (semctl(sem, 0, IPC_RMID, arg) != 0)
15311 #       endif /* IPC_RMID */
15312             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15313     } else
15314 #endif /* IPC_PRIVATE && ... */
15315         printf("semget failed: errno = %d\n", errno);
15316   return 0;
15317 }
15318 END
15319     val="$undef"
15320     set try
15321     if eval $compile; then
15322         xxx=`$run ./try`
15323         case "$xxx" in
15324         semun) val="$define" ;;
15325         esac
15326     fi
15327     $rm -f try try.c
15328     set d_semctl_semun
15329     eval $setvar
15330     case "$d_semctl_semun" in
15331     $define)
15332         echo "You can use union semun for semctl IPC_STAT." >&4
15333         also='also'
15334         ;;
15335     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
15336         also=''
15337         ;;
15338     esac
15339
15340     : see whether semctl IPC_STAT can use struct semid_ds pointer
15341     $cat > try.c <<'END'
15342 #include <sys/types.h>
15343 #include <sys/ipc.h>
15344 #include <sys/sem.h>
15345 #include <sys/stat.h>
15346 #include "try.h"
15347 #include <stdio.h>
15348 #include <errno.h>
15349 #ifndef errno
15350 extern int errno;
15351 #endif
15352 int main() {
15353     struct semid_ds arg;
15354     int sem, st;
15355
15356 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
15357     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15358     if (sem > -1) {
15359 #       ifdef IPC_STAT
15360         st = semctl(sem, 0, IPC_STAT, &arg);
15361         if (st == 0)
15362             printf("semid_ds\n");
15363         else
15364 #       endif /* IPC_STAT */
15365             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15366 #       ifdef IPC_RMID
15367         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
15368 #       endif /* IPC_RMID */
15369             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15370     } else
15371 #endif /* IPC_PRIVATE && ... */
15372         printf("semget failed: errno = %d\n", errno);
15373
15374     return 0;
15375 }
15376 END
15377     val="$undef"
15378     set try
15379     if eval $compile; then
15380         xxx=`$run ./try`
15381         case "$xxx" in
15382         semid_ds) val="$define" ;;
15383         esac
15384     fi
15385     $rm -f try try.c
15386     set d_semctl_semid_ds
15387     eval $setvar
15388     case "$d_semctl_semid_ds" in
15389     $define)
15390         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
15391         ;;
15392     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
15393         ;;
15394     esac
15395     $rm -f try.h
15396     ;;
15397 *)  val="$undef"
15398
15399     # We do not have the full sem*(2) library, so assume we can not
15400     # use either.
15401
15402     set d_semctl_semun
15403     eval $setvar
15404
15405     set d_semctl_semid_ds
15406     eval $setvar
15407     ;;
15408 esac
15409
15410 : see if sendmsg exists
15411 set sendmsg d_sendmsg
15412 eval $inlibc
15413
15414 : see if setegid exists
15415 set setegid d_setegid
15416 eval $inlibc
15417
15418 : see if seteuid exists
15419 set seteuid d_seteuid
15420 eval $inlibc
15421
15422 : see if setgrent exists
15423 set setgrent d_setgrent
15424 eval $inlibc
15425
15426 : see if setgrent_r exists
15427 set setgrent_r d_setgrent_r
15428 eval $inlibc
15429 case "$d_setgrent_r" in
15430 "$define")
15431         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
15432         case "$d_setgrent_r_proto:$usethreads" in
15433         ":define")      d_setgrent_r_proto=define
15434                 set d_setgrent_r_proto setgrent_r $hdrs
15435                 eval $hasproto ;;
15436         *)      ;;
15437         esac
15438         case "$d_setgrent_r_proto" in
15439         define)
15440         case "$setgrent_r_proto" in
15441         ''|0) try='int setgrent_r(FILE**);'
15442         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
15443         esac
15444         case "$setgrent_r_proto" in
15445         ''|0) try='void setgrent_r(FILE**);'
15446         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
15447         esac
15448         case "$setgrent_r_proto" in
15449         ''|0)   d_setgrent_r=undef
15450                 setgrent_r_proto=0
15451                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
15452         * )     case "$setgrent_r_proto" in
15453                 REENTRANT_PROTO*) ;;
15454                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
15455                 esac
15456                 echo "Prototype: $try" ;;
15457         esac
15458         ;;
15459         *)      case "$usethreads" in
15460                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
15461                 esac
15462                 d_setgrent_r=undef
15463                 setgrent_r_proto=0
15464                 ;;
15465         esac
15466         ;;
15467 *)      setgrent_r_proto=0
15468         ;;
15469 esac
15470
15471 : see if sethostent exists
15472 set sethostent d_sethent
15473 eval $inlibc
15474
15475 : see if sethostent_r exists
15476 set sethostent_r d_sethostent_r
15477 eval $inlibc
15478 case "$d_sethostent_r" in
15479 "$define")
15480         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15481         case "$d_sethostent_r_proto:$usethreads" in
15482         ":define")      d_sethostent_r_proto=define
15483                 set d_sethostent_r_proto sethostent_r $hdrs
15484                 eval $hasproto ;;
15485         *)      ;;
15486         esac
15487         case "$d_sethostent_r_proto" in
15488         define)
15489         case "$sethostent_r_proto" in
15490         ''|0) try='int sethostent_r(int, struct hostent_data*);'
15491         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
15492         esac
15493         case "$sethostent_r_proto" in
15494         ''|0) try='void sethostent_r(int, struct hostent_data*);'
15495         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
15496         esac
15497         case "$sethostent_r_proto" in
15498         ''|0)   d_sethostent_r=undef
15499                 sethostent_r_proto=0
15500                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
15501         * )     case "$sethostent_r_proto" in
15502                 REENTRANT_PROTO*) ;;
15503                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
15504                 esac
15505                 echo "Prototype: $try" ;;
15506         esac
15507         ;;
15508         *)      case "$usethreads" in
15509                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
15510                 esac
15511                 d_sethostent_r=undef
15512                 sethostent_r_proto=0
15513                 ;;
15514         esac
15515         ;;
15516 *)      sethostent_r_proto=0
15517         ;;
15518 esac
15519
15520 : see if setitimer exists
15521 set setitimer d_setitimer
15522 eval $inlibc
15523
15524 : see if setlinebuf exists
15525 set setlinebuf d_setlinebuf
15526 eval $inlibc
15527
15528 : see if setlocale exists
15529 set setlocale d_setlocale
15530 eval $inlibc
15531
15532 : see if locale.h is available
15533 set locale.h i_locale
15534 eval $inhdr
15535
15536 : see if setlocale_r exists
15537 set setlocale_r d_setlocale_r
15538 eval $inlibc
15539 case "$d_setlocale_r" in
15540 "$define")
15541         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
15542         case "$d_setlocale_r_proto:$usethreads" in
15543         ":define")      d_setlocale_r_proto=define
15544                 set d_setlocale_r_proto setlocale_r $hdrs
15545                 eval $hasproto ;;
15546         *)      ;;
15547         esac
15548         case "$d_setlocale_r_proto" in
15549         define)
15550         case "$setlocale_r_proto" in
15551         ''|0) try='int setlocale_r(int, const char*, char*, int);'
15552         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
15553         esac
15554         case "$setlocale_r_proto" in
15555         ''|0)   d_setlocale_r=undef
15556                 setlocale_r_proto=0
15557                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
15558         * )     case "$setlocale_r_proto" in
15559                 REENTRANT_PROTO*) ;;
15560                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
15561                 esac
15562                 echo "Prototype: $try" ;;
15563         esac
15564         ;;
15565         *)      case "$usethreads" in
15566                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
15567                 esac
15568                 d_setlocale_r=undef
15569                 setlocale_r_proto=0
15570                 ;;
15571         esac
15572         ;;
15573 *)      setlocale_r_proto=0
15574         ;;
15575 esac
15576
15577 : see if setnetent exists
15578 set setnetent d_setnent
15579 eval $inlibc
15580
15581 : see if setnetent_r exists
15582 set setnetent_r d_setnetent_r
15583 eval $inlibc
15584 case "$d_setnetent_r" in
15585 "$define")
15586         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15587         case "$d_setnetent_r_proto:$usethreads" in
15588         ":define")      d_setnetent_r_proto=define
15589                 set d_setnetent_r_proto setnetent_r $hdrs
15590                 eval $hasproto ;;
15591         *)      ;;
15592         esac
15593         case "$d_setnetent_r_proto" in
15594         define)
15595         case "$setnetent_r_proto" in
15596         ''|0) try='int setnetent_r(int, struct netent_data*);'
15597         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
15598         esac
15599         case "$setnetent_r_proto" in
15600         ''|0) try='void setnetent_r(int, struct netent_data*);'
15601         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
15602         esac
15603         case "$setnetent_r_proto" in
15604         ''|0)   d_setnetent_r=undef
15605                 setnetent_r_proto=0
15606                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
15607         * )     case "$setnetent_r_proto" in
15608                 REENTRANT_PROTO*) ;;
15609                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
15610                 esac
15611                 echo "Prototype: $try" ;;
15612         esac
15613         ;;
15614         *)      case "$usethreads" in
15615                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
15616                 esac
15617                 d_setnetent_r=undef
15618                 setnetent_r_proto=0
15619                 ;;
15620         esac
15621         ;;
15622 *)      setnetent_r_proto=0
15623         ;;
15624 esac
15625
15626 : see if setprotoent exists
15627 set setprotoent d_setpent
15628 eval $inlibc
15629
15630 : see if setpgid exists
15631 set setpgid d_setpgid
15632 eval $inlibc
15633
15634 : see if setpgrp2 exists
15635 set setpgrp2 d_setpgrp2
15636 eval $inlibc
15637
15638 : see if setpriority exists
15639 set setpriority d_setprior
15640 eval $inlibc
15641
15642 : see if setproctitle exists
15643 set setproctitle d_setproctitle
15644 eval $inlibc
15645
15646 : see if setprotoent_r exists
15647 set setprotoent_r d_setprotoent_r
15648 eval $inlibc
15649 case "$d_setprotoent_r" in
15650 "$define")
15651         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15652         case "$d_setprotoent_r_proto:$usethreads" in
15653         ":define")      d_setprotoent_r_proto=define
15654                 set d_setprotoent_r_proto setprotoent_r $hdrs
15655                 eval $hasproto ;;
15656         *)      ;;
15657         esac
15658         case "$d_setprotoent_r_proto" in
15659         define)
15660         case "$setprotoent_r_proto" in
15661         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
15662         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
15663         esac
15664         case "$setprotoent_r_proto" in
15665         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
15666         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
15667         esac
15668         case "$setprotoent_r_proto" in
15669         ''|0)   d_setprotoent_r=undef
15670                 setprotoent_r_proto=0
15671                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
15672         * )     case "$setprotoent_r_proto" in
15673                 REENTRANT_PROTO*) ;;
15674                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
15675                 esac
15676                 echo "Prototype: $try" ;;
15677         esac
15678         ;;
15679         *)      case "$usethreads" in
15680                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
15681                 esac
15682                 d_setprotoent_r=undef
15683                 setprotoent_r_proto=0
15684                 ;;
15685         esac
15686         ;;
15687 *)      setprotoent_r_proto=0
15688         ;;
15689 esac
15690
15691 : see if setpwent exists
15692 set setpwent d_setpwent
15693 eval $inlibc
15694
15695 : see if setpwent_r exists
15696 set setpwent_r d_setpwent_r
15697 eval $inlibc
15698 case "$d_setpwent_r" in
15699 "$define")
15700         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
15701         case "$d_setpwent_r_proto:$usethreads" in
15702         ":define")      d_setpwent_r_proto=define
15703                 set d_setpwent_r_proto setpwent_r $hdrs
15704                 eval $hasproto ;;
15705         *)      ;;
15706         esac
15707         case "$d_setpwent_r_proto" in
15708         define)
15709         case "$setpwent_r_proto" in
15710         ''|0) try='int setpwent_r(FILE**);'
15711         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
15712         esac
15713         case "$setpwent_r_proto" in
15714         ''|0) try='void setpwent_r(FILE**);'
15715         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
15716         esac
15717         case "$setpwent_r_proto" in
15718         ''|0)   d_setpwent_r=undef
15719                 setpwent_r_proto=0
15720                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
15721         * )     case "$setpwent_r_proto" in
15722                 REENTRANT_PROTO*) ;;
15723                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
15724                 esac
15725                 echo "Prototype: $try" ;;
15726         esac
15727         ;;
15728         *)      case "$usethreads" in
15729                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
15730                 esac
15731                 d_setpwent_r=undef
15732                 setpwent_r_proto=0
15733                 ;;
15734         esac
15735         ;;
15736 *)      setpwent_r_proto=0
15737         ;;
15738 esac
15739
15740 : see if setregid exists
15741 set setregid d_setregid
15742 eval $inlibc
15743 set setresgid d_setresgid
15744 eval $inlibc
15745
15746 : see if setreuid exists
15747 set setreuid d_setreuid
15748 eval $inlibc
15749 set setresuid d_setresuid
15750 eval $inlibc
15751
15752 : see if setrgid exists
15753 set setrgid d_setrgid
15754 eval $inlibc
15755
15756 : see if setruid exists
15757 set setruid d_setruid
15758 eval $inlibc
15759
15760 : see if setservent exists
15761 set setservent d_setsent
15762 eval $inlibc
15763
15764 : see if setservent_r exists
15765 set setservent_r d_setservent_r
15766 eval $inlibc
15767 case "$d_setservent_r" in
15768 "$define")
15769         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15770         case "$d_setservent_r_proto:$usethreads" in
15771         ":define")      d_setservent_r_proto=define
15772                 set d_setservent_r_proto setservent_r $hdrs
15773                 eval $hasproto ;;
15774         *)      ;;
15775         esac
15776         case "$d_setservent_r_proto" in
15777         define)
15778         case "$setservent_r_proto" in
15779         ''|0) try='int setservent_r(int, struct servent_data*);'
15780         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
15781         esac
15782         case "$setservent_r_proto" in
15783         ''|0) try='void setservent_r(int, struct servent_data*);'
15784         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
15785         esac
15786         case "$setservent_r_proto" in
15787         ''|0)   d_setservent_r=undef
15788                 setservent_r_proto=0
15789                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
15790         * )     case "$setservent_r_proto" in
15791                 REENTRANT_PROTO*) ;;
15792                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
15793                 esac
15794                 echo "Prototype: $try" ;;
15795         esac
15796         ;;
15797         *)      case "$usethreads" in
15798                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
15799                 esac
15800                 d_setservent_r=undef
15801                 setservent_r_proto=0
15802                 ;;
15803         esac
15804         ;;
15805 *)      setservent_r_proto=0
15806         ;;
15807 esac
15808
15809 : see if setsid exists
15810 set setsid d_setsid
15811 eval $inlibc
15812
15813 : see if setvbuf exists
15814 set setvbuf d_setvbuf
15815 eval $inlibc
15816
15817 : see if sfio.h is available
15818 set sfio.h i_sfio
15819 eval $inhdr
15820
15821
15822 : see if sfio library is available
15823 case "$i_sfio" in
15824 $define)
15825         val=''
15826         set sfreserve val
15827         eval $inlibc
15828         ;;
15829 *)
15830         val="$undef"
15831         ;;
15832 esac
15833 : Ok, but do we want to use it.
15834 case "$val" in
15835 $define)
15836         case "$usesfio" in
15837         true|$define|[yY]*) dflt='y';;
15838         *) dflt='n';;
15839         esac
15840         echo "$package can use the sfio library, but it is experimental."
15841         case "$useperlio" in
15842         "$undef")
15843             echo "For sfio also the PerlIO abstraction layer is needed."
15844             echo "Earlier you said you wouldn't want that."
15845             ;;
15846         esac
15847         rp="You seem to have sfio available, do you want to try using it?"
15848         . ./myread
15849         case "$ans" in
15850         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
15851                 useperlio="$define"
15852                 val="$define"
15853                 ;;
15854         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
15855                 val="$undef"
15856                 ;;
15857         esac
15858         ;;
15859 *)      case "$usesfio" in
15860         true|$define|[yY]*)
15861                 echo "Sorry, cannot find sfio on this machine." >&4
15862                 echo "Ignoring your setting of usesfio=$usesfio." >&4
15863                 val="$undef"
15864                 ;;
15865         esac
15866         ;;
15867 esac
15868 set d_sfio
15869 eval $setvar
15870 case "$d_sfio" in
15871 $define) usesfio='true';;
15872 *) usesfio='false';;
15873 esac
15874 case "$d_sfio" in
15875 $define) ;;
15876 *)      : Remove sfio from list of libraries to use
15877         case "$libs" in
15878         *-lsfio*)
15879                 echo "Removing unneeded -lsfio from library list" >&4
15880                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
15881                 shift
15882                 libs="$*"
15883                 echo "libs = $libs" >&4
15884                 ;;
15885         esac
15886 ;;
15887 esac
15888
15889
15890 : see if shmctl exists
15891 set shmctl d_shmctl
15892 eval $inlibc
15893
15894 : see if shmget exists
15895 set shmget d_shmget
15896 eval $inlibc
15897
15898 : see if shmat exists
15899 set shmat d_shmat
15900 eval $inlibc
15901 : see what shmat returns
15902 case "$d_shmat" in
15903 "$define")
15904         $cat >shmat.c <<'END'
15905 #include <sys/shm.h>
15906 void *shmat();
15907 END
15908         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15909                 shmattype='void *'
15910         else
15911                 shmattype='char *'
15912         fi
15913         echo "and it returns ($shmattype)." >&4
15914         : see if a prototype for shmat is available
15915         xxx=`./findhdr sys/shm.h`
15916         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15917         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15918                 val="$define"
15919         else
15920                 val="$undef"
15921         fi
15922         $rm -f shmat.[co]
15923         ;;
15924 *)
15925         val="$undef"
15926         ;;
15927 esac
15928 set d_shmatprototype
15929 eval $setvar
15930
15931 : see if shmdt exists
15932 set shmdt d_shmdt
15933 eval $inlibc
15934
15935 : see how much of the 'shm*(2)' library is present.
15936 h_shm=true
15937 echo " "
15938 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
15939 *"$undef"*) h_shm=false;;
15940 esac
15941 case "$osname" in
15942 freebsd)
15943     case "`ipcs 2>&1`" in
15944     "SVID shared memory"*"not configured"*)
15945         echo "Your $osname does not have the shm*(2) configured." >&4
15946         h_shm=false
15947         val="$undef"
15948         set shmctl d_shmctl
15949         evat $setvar
15950         set shmget d_shmget
15951         evat $setvar
15952         set shmat d_shmat
15953         evat $setvar
15954         set shmdt d_shmdt
15955         evat $setvar
15956         ;;
15957     esac
15958     ;;
15959 esac
15960 : we could also check for sys/ipc.h ...
15961 if $h_shm && $test `./findhdr sys/shm.h`; then
15962         echo "You have the full shm*(2) library." >&4
15963         val="$define"
15964 else
15965         echo "You don't have the full shm*(2) library." >&4
15966         val="$undef"
15967 fi
15968 set d_shm
15969 eval $setvar
15970
15971 echo " "
15972 : see if we have sigaction
15973 if set sigaction val -f d_sigaction; eval $csym; $val; then
15974         echo 'sigaction() found.' >&4
15975         $cat > try.c <<EOP
15976 #include <stdio.h>
15977 #include <sys/types.h>
15978 #include <signal.h>
15979 #$i_stdlib I_STDLIB
15980 #ifdef I_STDLIB
15981 #include <stdlib.h>
15982 #endif
15983 int main()
15984 {
15985     struct sigaction act, oact;
15986     act.sa_flags = 0;
15987     oact.sa_handler = 0;
15988     /* so that act and oact are used */
15989     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
15990 }
15991 EOP
15992         set try
15993         if eval $compile_ok; then
15994                 val="$define"
15995         else
15996                 echo "But you don't seem to have a useable struct sigaction." >&4
15997                 val="$undef"
15998         fi
15999 else
16000         echo 'sigaction NOT found.' >&4
16001         val="$undef"
16002 fi
16003 set d_sigaction; eval $setvar
16004 $rm -f try try$_o try.c
16005
16006 : see if sigprocmask exists
16007 set sigprocmask d_sigprocmask
16008 eval $inlibc
16009
16010 : see if sigsetjmp exists
16011 echo " "
16012 case "$d_sigsetjmp" in
16013 '')
16014         $cat >try.c <<EOP
16015 #include <setjmp.h>
16016 #$i_stdlib I_STDLIB
16017 #ifdef I_STDLIB
16018 #include <stdlib.h>
16019 #endif
16020 sigjmp_buf env;
16021 int set = 1;
16022 int main()
16023 {
16024         if (sigsetjmp(env,1))
16025                 exit(set);
16026         set = 0;
16027         siglongjmp(env, 1);
16028         exit(1);
16029 }
16030 EOP
16031         set try
16032         if eval $compile; then
16033                 if $run ./try >/dev/null 2>&1; then
16034                         echo "POSIX sigsetjmp found." >&4
16035                         val="$define"
16036                 else
16037                         $cat >&4 <<EOM
16038 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
16039 I'll ignore them.
16040 EOM
16041                         val="$undef"
16042                 fi
16043         else
16044                 echo "sigsetjmp not found." >&4
16045                 val="$undef"
16046         fi
16047         ;;
16048 *) val="$d_sigsetjmp"
16049         case "$d_sigsetjmp" in
16050         $define) echo "POSIX sigsetjmp found." >&4;;
16051         $undef) echo "sigsetjmp not found." >&4;;
16052         esac
16053         ;;
16054 esac
16055 set d_sigsetjmp
16056 eval $setvar
16057 $rm -f try.c try
16058
16059 : see if sockatmark exists
16060 set sockatmark d_sockatmark
16061 eval $inlibc
16062
16063 : see if prototype for sockatmark is available
16064 echo " "
16065 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
16066 eval $hasproto
16067
16068 : see if socks5_init exists
16069 set socks5_init d_socks5_init
16070 eval $inlibc
16071
16072 : see if srand48_r exists
16073 set srand48_r d_srand48_r
16074 eval $inlibc
16075 case "$d_srand48_r" in
16076 "$define")
16077         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16078         case "$d_srand48_r_proto:$usethreads" in
16079         ":define")      d_srand48_r_proto=define
16080                 set d_srand48_r_proto srand48_r $hdrs
16081                 eval $hasproto ;;
16082         *)      ;;
16083         esac
16084         case "$d_srand48_r_proto" in
16085         define)
16086         case "$srand48_r_proto" in
16087         ''|0) try='int srand48_r(long, struct drand48_data*);'
16088         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
16089         esac
16090         case "$srand48_r_proto" in
16091         ''|0)   d_srand48_r=undef
16092                 srand48_r_proto=0
16093                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
16094         * )     case "$srand48_r_proto" in
16095                 REENTRANT_PROTO*) ;;
16096                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
16097                 esac
16098                 echo "Prototype: $try" ;;
16099         esac
16100         ;;
16101         *)      case "$usethreads" in
16102                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
16103                 esac
16104                 d_srand48_r=undef
16105                 srand48_r_proto=0
16106                 ;;
16107         esac
16108         ;;
16109 *)      srand48_r_proto=0
16110         ;;
16111 esac
16112
16113 : see if srandom_r exists
16114 set srandom_r d_srandom_r
16115 eval $inlibc
16116 case "$d_srandom_r" in
16117 "$define")
16118         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16119         case "$d_srandom_r_proto:$usethreads" in
16120         ":define")      d_srandom_r_proto=define
16121                 set d_srandom_r_proto srandom_r $hdrs
16122                 eval $hasproto ;;
16123         *)      ;;
16124         esac
16125         case "$d_srandom_r_proto" in
16126         define)
16127         case "$srandom_r_proto" in
16128         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
16129         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
16130         esac
16131         case "$srandom_r_proto" in
16132         ''|0)   d_srandom_r=undef
16133                 srandom_r_proto=0
16134                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
16135         * )     case "$srandom_r_proto" in
16136                 REENTRANT_PROTO*) ;;
16137                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
16138                 esac
16139                 echo "Prototype: $try" ;;
16140         esac
16141         ;;
16142         *)      case "$usethreads" in
16143                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
16144                 esac
16145                 d_srandom_r=undef
16146                 srandom_r_proto=0
16147                 ;;
16148         esac
16149         ;;
16150 *)      srandom_r_proto=0
16151         ;;
16152 esac
16153
16154 : see if prototype for setresgid is available
16155 echo " "
16156 set d_sresgproto setresgid $i_unistd unistd.h
16157 eval $hasproto
16158
16159 : see if prototype for setresuid is available
16160 echo " "
16161 set d_sresuproto setresuid $i_unistd unistd.h
16162 eval $hasproto
16163
16164 : see if sys/stat.h is available
16165 set sys/stat.h i_sysstat
16166 eval $inhdr
16167
16168
16169 : see if stat knows about block sizes
16170 echo " "
16171 echo "Checking to see if your struct stat has st_blocks field..." >&4
16172 set d_statblks stat st_blocks $i_sysstat sys/stat.h
16173 eval $hasfield
16174
16175
16176 : see if this is a sys/vfs.h system
16177 set sys/vfs.h i_sysvfs
16178 eval $inhdr
16179
16180
16181 : see if this is a sys/statfs.h system
16182 set sys/statfs.h i_sysstatfs
16183 eval $inhdr
16184
16185
16186 echo " "
16187 echo "Checking to see if your system supports struct statfs..." >&4
16188 set d_statfs_s statfs $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h $i_sysvfs sys/vfs.h $i_sysstatfs sys/statfs.h
16189 eval $hasstruct
16190 case "$d_statfs_s" in
16191 "$define")      echo "Yes, it does."   ;;
16192 *)              echo "No, it doesn't." ;;
16193 esac
16194
16195
16196
16197 : see if struct statfs knows about f_flags
16198 case "$d_statfs_s" in
16199 define) 
16200         echo " "
16201         echo "Checking to see if your struct statfs has f_flags field..." >&4
16202         set d_statfs_f_flags statfs f_flags $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h $i_sysvfs sys/vfs.h $i_sysstatfs sys/statfs.h
16203         eval $hasfield
16204         ;;
16205 *)      val="$undef"
16206         set d_statfs_f_flags
16207         eval $setvar
16208         ;;
16209 esac
16210 case "$d_statfs_f_flags" in
16211 "$define")      echo "Yes, it does."   ;;
16212 *)              echo "No, it doesn't." ;;
16213 esac
16214
16215 $cat >&4 <<EOM
16216 Checking how to access stdio streams by file descriptor number...
16217 EOM
16218 case "$stdio_stream_array" in
16219 '')     $cat >try.c <<EOCP
16220 #include <stdio.h>
16221 int main() {
16222   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
16223     printf("yes\n");
16224 }
16225 EOCP
16226         for s in _iob __iob __sF
16227         do
16228                 set try -DSTDIO_STREAM_ARRAY=$s
16229                 if eval $compile; then
16230                         case "`$run ./try`" in
16231                         yes)    stdio_stream_array=$s; break ;;
16232                         esac
16233                 fi
16234         done
16235         $rm -f try.* try$exe_ext
16236 esac
16237 case "$stdio_stream_array" in
16238 '')     $cat >&4 <<EOM
16239 I can't figure out how to access stdio streams by file descriptor number.
16240 EOM
16241         d_stdio_stream_array="$undef"
16242         ;;
16243 *)      $cat >&4 <<EOM
16244 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
16245 EOM
16246         d_stdio_stream_array="$define"
16247         ;;
16248 esac
16249
16250 : see if strcoll exists
16251 set strcoll d_strcoll
16252 eval $inlibc
16253
16254 : check for structure copying
16255 echo " "
16256 echo "Checking to see if your C compiler can copy structs..." >&4
16257 $cat >try.c <<'EOCP'
16258 int main()
16259 {
16260         struct blurfl {
16261                 int dyick;
16262         } foo, bar;
16263
16264         foo = bar;
16265 }
16266 EOCP
16267 if $cc -c try.c >/dev/null 2>&1 ; then
16268         val="$define"
16269         echo "Yup, it can."
16270 else
16271         val="$undef"
16272         echo "Nope, it can't."
16273 fi
16274 set d_strctcpy
16275 eval $setvar
16276 $rm -f try.*
16277
16278 : see if strerror and/or sys_errlist[] exist
16279 echo " "
16280 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
16281     if set strerror val -f d_strerror; eval $csym; $val; then
16282                 echo 'strerror() found.' >&4
16283                 d_strerror="$define"
16284                 d_strerrm='strerror(e)'
16285                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16286                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
16287                         d_syserrlst="$define"
16288                 else
16289                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
16290                         d_syserrlst="$undef"
16291                 fi
16292     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
16293                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
16294                 echo 'strerror() found in string header.' >&4
16295                 d_strerror="$define"
16296                 d_strerrm='strerror(e)'
16297                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16298                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
16299                                 d_syserrlst="$define"
16300                 else
16301                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
16302                         d_syserrlst="$undef"
16303                 fi
16304     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
16305                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
16306                 d_strerror="$undef"
16307                 d_syserrlst="$define"
16308                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
16309     else
16310                 echo 'strerror() and sys_errlist[] NOT found.' >&4
16311                 d_strerror="$undef"
16312                 d_syserrlst="$undef"
16313                 d_strerrm='"unknown"'
16314     fi
16315 fi
16316
16317 : see if strerror_r exists
16318 set strerror_r d_strerror_r
16319 eval $inlibc
16320 case "$d_strerror_r" in
16321 "$define")
16322         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
16323         case "$d_strerror_r_proto:$usethreads" in
16324         ":define")      d_strerror_r_proto=define
16325                 set d_strerror_r_proto strerror_r $hdrs
16326                 eval $hasproto ;;
16327         *)      ;;
16328         esac
16329         case "$d_strerror_r_proto" in
16330         define)
16331         case "$strerror_r_proto" in
16332         ''|0) try='int strerror_r(int, char*, size_t);'
16333         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
16334         esac
16335         case "$strerror_r_proto" in
16336         ''|0) try='int strerror_r(int, char*, int);'
16337         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
16338         esac
16339         case "$strerror_r_proto" in
16340         ''|0) try='char* strerror_r(int, char*, size_t);'
16341         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
16342         esac
16343         case "$strerror_r_proto" in
16344         ''|0)   d_strerror_r=undef
16345                 strerror_r_proto=0
16346                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
16347         * )     case "$strerror_r_proto" in
16348                 REENTRANT_PROTO*) ;;
16349                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
16350                 esac
16351                 echo "Prototype: $try" ;;
16352         esac
16353         ;;
16354         *)      case "$usethreads" in
16355                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
16356                 esac
16357                 d_strerror_r=undef
16358                 strerror_r_proto=0
16359                 ;;
16360         esac
16361         ;;
16362 *)      strerror_r_proto=0
16363         ;;
16364 esac
16365
16366 : see if strftime exists
16367 set strftime d_strftime
16368 eval $inlibc
16369
16370 : see if strtod exists
16371 set strtod d_strtod
16372 eval $inlibc
16373
16374 : see if strtol exists
16375 set strtol d_strtol
16376 eval $inlibc
16377
16378 : see if strtold exists
16379 set strtold d_strtold
16380 eval $inlibc
16381
16382 : see if strtoll exists
16383 set strtoll d_strtoll
16384 eval $inlibc
16385
16386 case "$d_longlong-$d_strtoll" in
16387 "$define-$define")
16388         $cat <<EOM
16389 Checking whether your strtoll() works okay...
16390 EOM
16391         $cat >try.c <<'EOCP'
16392 #include <errno.h>
16393 #ifdef __hpux
16394 #define strtoll __strtoll
16395 #endif
16396 #ifdef __EMX__
16397 #define strtoll _strtoll
16398 #endif
16399 #include <stdio.h>
16400 extern long long int strtoll(char *s, char **, int); 
16401 static int bad = 0;
16402 int check(char *s, long long ell, int een) {
16403         long long gll;
16404         errno = 0;
16405         gll = strtoll(s, 0, 10);
16406         if (!((gll == ell) && (errno == een)))
16407                 bad++;
16408 }
16409 int main() {
16410         check(" 1",                                      1LL, 0);
16411         check(" 0",                                      0LL, 0);
16412         check("-1",                                     -1LL, 0);
16413         check("-9223372036854775808", -9223372036854775808LL, 0);
16414         check("-9223372036854775808", -9223372036854775808LL, 0);
16415         check(" 9223372036854775807",  9223372036854775807LL, 0);
16416         check("-9223372036854775808", -9223372036854775808LL, 0);
16417         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
16418         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
16419         if (!bad)
16420                 printf("ok\n");
16421 }
16422 EOCP
16423         set try
16424         if eval $compile; then
16425                 yyy=`$run ./try`
16426                 case "$yyy" in
16427                 ok) echo "Your strtoll() seems to be working okay." ;;
16428                 *) cat <<EOM >&4
16429 Your strtoll() doesn't seem to be working okay.
16430 EOM
16431                    d_strtoll="$undef"
16432                    ;;
16433                 esac
16434         else
16435                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16436                 d_strtoll="$undef"
16437         fi
16438         ;;
16439 esac
16440
16441 : see if strtoq exists
16442 set strtoq d_strtoq
16443 eval $inlibc
16444
16445 : see if strtoul exists
16446 set strtoul d_strtoul
16447 eval $inlibc
16448
16449 case "$d_strtoul" in
16450 "$define")
16451         $cat <<EOM
16452 Checking whether your strtoul() works okay...
16453 EOM
16454         $cat >try.c <<'EOCP'
16455 #include <errno.h>
16456 #include <stdio.h>
16457 extern unsigned long int strtoul(char *s, char **, int); 
16458 static int bad = 0;
16459 void check(char *s, unsigned long eul, int een) {
16460         unsigned long gul;
16461         errno = 0;
16462         gul = strtoul(s, 0, 10);
16463         if (!((gul == eul) && (errno == een)))
16464                 bad++;
16465 }
16466 int main() {
16467         check(" 1", 1L, 0);
16468         check(" 0", 0L, 0);
16469 EOCP
16470         case "$longsize" in
16471         8)
16472             $cat >>try.c <<'EOCP'
16473         check("18446744073709551615", 18446744073709551615UL, 0);
16474         check("18446744073709551616", 18446744073709551615UL, ERANGE);
16475 #if 0 /* strtoul() for /^-/ strings is undefined. */
16476         check("-1", 18446744073709551615UL, 0);
16477         check("-18446744073709551614", 2, 0);
16478         check("-18446744073709551615", 1, 0);
16479         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
16480         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
16481 #endif
16482 EOCP
16483                 ;;
16484         4)
16485                     $cat >>try.c <<'EOCP'
16486         check("4294967295", 4294967295UL, 0);
16487         check("4294967296", 4294967295UL, ERANGE);
16488 #if 0 /* strtoul() for /^-/ strings is undefined. */
16489         check("-1", 4294967295UL, 0);
16490         check("-4294967294", 2, 0);
16491         check("-4294967295", 1, 0);
16492         check("-4294967296", 4294967295UL, ERANGE);
16493         check("-4294967297", 4294967295UL, ERANGE);
16494 #endif
16495 EOCP
16496                 ;;
16497         *)
16498 : Should we write these tests to be more portable by sprintf-ing
16499 : ~0 and then manipulating that char string as input for strtol?
16500                 ;;
16501         esac
16502         $cat >>try.c <<'EOCP'
16503         if (!bad)
16504                 printf("ok\n");
16505         return 0;
16506 }
16507 EOCP
16508         set try
16509         if eval $compile; then
16510                 case "`$run ./try`" in
16511                 ok) echo "Your strtoul() seems to be working okay." ;;
16512                 *) cat <<EOM >&4
16513 Your strtoul() doesn't seem to be working okay.
16514 EOM
16515                    d_strtoul="$undef"
16516                    ;;
16517                 esac
16518         fi
16519         ;;
16520 esac
16521
16522 : see if strtoull exists
16523 set strtoull d_strtoull
16524 eval $inlibc
16525
16526 case "$d_longlong-$d_strtoull" in
16527 "$define-$define")
16528         $cat <<EOM
16529 Checking whether your strtoull() works okay...
16530 EOM
16531         $cat >try.c <<'EOCP'
16532 #include <errno.h>
16533 #ifdef __hpux
16534 #define strtoull __strtoull
16535 #endif
16536 #include <stdio.h>
16537 extern unsigned long long int strtoull(char *s, char **, int); 
16538 static int bad = 0;
16539 int check(char *s, long long eull, int een) {
16540         long long gull;
16541         errno = 0;
16542         gull = strtoull(s, 0, 10);
16543         if (!((gull == eull) && (errno == een)))
16544                 bad++;
16545 }
16546 int main() {
16547         check(" 1",                                        1LL, 0);
16548         check(" 0",                                        0LL, 0);
16549         check("18446744073709551615",  18446744073709551615ULL, 0);
16550         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16551 #if 0 /* strtoull() for /^-/ strings is undefined. */
16552         check("-1",                    18446744073709551615ULL, 0);
16553         check("-18446744073709551614",                     2LL, 0);
16554         check("-18446744073709551615",                     1LL, 0);
16555         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16556         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16557 #endif
16558         if (!bad)
16559                 printf("ok\n");
16560 }
16561 EOCP
16562         set try
16563         if eval $compile; then
16564                 case "`$run ./try`" in
16565                 ok) echo "Your strtoull() seems to be working okay." ;;
16566                 *) cat <<EOM >&4
16567 Your strtoull() doesn't seem to be working okay.
16568 EOM
16569                    d_strtoull="$undef"
16570                    ;;
16571                 esac
16572         fi
16573         ;;
16574 esac
16575
16576 : see if strtouq exists
16577 set strtouq d_strtouq
16578 eval $inlibc
16579
16580 case "$d_strtouq" in
16581 "$define")
16582         $cat <<EOM
16583 Checking whether your strtouq() works okay...
16584 EOM
16585         $cat >try.c <<'EOCP'
16586 #include <errno.h>
16587 #include <stdio.h>
16588 extern unsigned long long int strtouq(char *s, char **, int); 
16589 static int bad = 0;
16590 void check(char *s, unsigned long long eull, int een) {
16591         unsigned long long gull;
16592         errno = 0;
16593         gull = strtouq(s, 0, 10);
16594         if (!((gull == eull) && (errno == een)))
16595                 bad++;
16596 }
16597 int main() {
16598         check(" 1",                                        1LL, 0);
16599         check(" 0",                                        0LL, 0);
16600         check("18446744073709551615",  18446744073709551615ULL, 0);
16601         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16602 #if 0 /* strtouq() for /^-/ strings is undefined. */
16603         check("-1",                    18446744073709551615ULL, 0);
16604         check("-18446744073709551614",                     2LL, 0);
16605         check("-18446744073709551615",                     1LL, 0);
16606         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16607         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16608 #endif
16609         if (!bad)
16610                 printf("ok\n");
16611         return 0;
16612 }
16613 EOCP
16614         set try
16615         if eval $compile; then
16616                 case "`$run ./try`" in
16617                 ok) echo "Your strtouq() seems to be working okay." ;;
16618                 *) cat <<EOM >&4
16619 Your strtouq() doesn't seem to be working okay.
16620 EOM
16621                    d_strtouq="$undef"
16622                    ;;
16623                 esac
16624         fi
16625         ;;
16626 esac
16627
16628 : see if strxfrm exists
16629 set strxfrm d_strxfrm
16630 eval $inlibc
16631
16632 : see if symlink exists
16633 set symlink d_symlink
16634 eval $inlibc
16635
16636 : see if syscall exists
16637 set syscall d_syscall
16638 eval $inlibc
16639
16640 : see if prototype for syscall is available
16641 echo " "
16642 set d_syscallproto syscall $i_unistd unistd.h
16643 eval $hasproto
16644
16645 : see if sysconf exists
16646 set sysconf d_sysconf
16647 eval $inlibc
16648
16649 : see if system exists
16650 set system d_system
16651 eval $inlibc
16652
16653 : see if tcgetpgrp exists
16654 set tcgetpgrp d_tcgetpgrp
16655 eval $inlibc
16656
16657 : see if tcsetpgrp exists
16658 set tcsetpgrp d_tcsetpgrp
16659 eval $inlibc
16660
16661 : see if prototype for telldir is available
16662 echo " "
16663 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16664 eval $hasproto
16665
16666 : see if time exists
16667 echo " "
16668 if test "X$d_time" = X -o X"$timetype" = X; then
16669     if set time val -f d_time; eval $csym; $val; then
16670                 echo 'time() found.' >&4
16671                 val="$define"
16672                 rp="What is the type returned by time() on this system?"
16673                 set time_t timetype long stdio.h sys/types.h
16674                 eval $typedef_ask
16675     else
16676                 echo 'time() not found, hope that will do.' >&4
16677                 val="$undef"
16678                 timetype='int';
16679     fi
16680     set d_time
16681     eval $setvar
16682 fi
16683
16684 : see if this is a sys/times.h system
16685 set sys/times.h i_systimes
16686 eval $inhdr
16687
16688 : see if times exists
16689 echo " "
16690 if set times val -f d_times; eval $csym; $val; then
16691         echo 'times() found.' >&4
16692         d_times="$define"
16693         inc=''
16694         case "$i_systimes" in
16695         "$define") inc='sys/times.h';;
16696         esac
16697         rp="What is the type returned by times() on this system?"
16698         set clock_t clocktype long stdio.h sys/types.h $inc
16699         eval $typedef_ask
16700 else
16701         echo 'times() NOT found, hope that will do.' >&4
16702         d_times="$undef"
16703         clocktype='int'
16704 fi
16705
16706 : see if tmpnam_r exists
16707 set tmpnam_r d_tmpnam_r
16708 eval $inlibc
16709 case "$d_tmpnam_r" in
16710 "$define")
16711         hdrs="$i_systypes sys/types.h define stdio.h "
16712         case "$d_tmpnam_r_proto:$usethreads" in
16713         ":define")      d_tmpnam_r_proto=define
16714                 set d_tmpnam_r_proto tmpnam_r $hdrs
16715                 eval $hasproto ;;
16716         *)      ;;
16717         esac
16718         case "$d_tmpnam_r_proto" in
16719         define)
16720         case "$tmpnam_r_proto" in
16721         ''|0) try='char* tmpnam_r(char*);'
16722         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16723         esac
16724         case "$tmpnam_r_proto" in
16725         ''|0)   d_tmpnam_r=undef
16726                 tmpnam_r_proto=0
16727                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16728         * )     case "$tmpnam_r_proto" in
16729                 REENTRANT_PROTO*) ;;
16730                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16731                 esac
16732                 echo "Prototype: $try" ;;
16733         esac
16734         ;;
16735         *)      case "$usethreads" in
16736                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16737                 esac
16738                 d_tmpnam_r=undef
16739                 tmpnam_r_proto=0
16740                 ;;
16741         esac
16742         ;;
16743 *)      tmpnam_r_proto=0
16744         ;;
16745 esac
16746
16747 : see if truncate exists
16748 set truncate d_truncate
16749 eval $inlibc
16750
16751 : see if ttyname_r exists
16752 set ttyname_r d_ttyname_r
16753 eval $inlibc
16754 case "$d_ttyname_r" in
16755 "$define")
16756         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16757         case "$d_ttyname_r_proto:$usethreads" in
16758         ":define")      d_ttyname_r_proto=define
16759                 set d_ttyname_r_proto ttyname_r $hdrs
16760                 eval $hasproto ;;
16761         *)      ;;
16762         esac
16763         case "$d_ttyname_r_proto" in
16764         define)
16765         case "$ttyname_r_proto" in
16766         ''|0) try='int ttyname_r(int, char*, size_t);'
16767         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16768         esac
16769         case "$ttyname_r_proto" in
16770         ''|0) try='int ttyname_r(int, char*, int);'
16771         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16772         esac
16773         case "$ttyname_r_proto" in
16774         ''|0) try='char* ttyname_r(int, char*, int);'
16775         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16776         esac
16777         case "$ttyname_r_proto" in
16778         ''|0)   d_ttyname_r=undef
16779                 ttyname_r_proto=0
16780                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16781         * )     case "$ttyname_r_proto" in
16782                 REENTRANT_PROTO*) ;;
16783                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16784                 esac
16785                 echo "Prototype: $try" ;;
16786         esac
16787         ;;
16788         *)      case "$usethreads" in
16789                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16790                 esac
16791                 d_ttyname_r=undef
16792                 ttyname_r_proto=0
16793                 ;;
16794         esac
16795         ;;
16796 *)      ttyname_r_proto=0
16797         ;;
16798 esac
16799
16800 : see if tzname[] exists
16801 echo " "
16802 if set tzname val -a d_tzname; eval $csym; $val; then
16803         val="$define"
16804         echo 'tzname[] found.' >&4
16805 else
16806         val="$undef"
16807         echo 'tzname[] NOT found.' >&4
16808 fi
16809 set d_tzname
16810 eval $setvar
16811
16812 case "$osname" in
16813 next|rhapsody|darwin) multiarch="$define" ;;
16814 esac
16815 case "$multiarch" in
16816 ''|[nN]*) multiarch="$undef" ;;
16817 esac
16818
16819 : check for ordering of bytes in a UV
16820 echo " "
16821 case "$usecrosscompile$multiarch" in
16822 *$define*)
16823         $cat <<EOM
16824 You seem to be either cross-compiling or doing a multiarchitecture build,
16825 skipping the byteorder check.
16826
16827 EOM
16828         byteorder='ffff'
16829         ;;
16830 *)
16831         case "$byteorder" in
16832         '')
16833                 $cat <<'EOM'
16834 In the following, larger digits indicate more significance.  A big-endian
16835 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16836 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16837 machines may have weird orders like 3412.  A Cray will report 87654321,
16838 an Alpha will report 12345678. If the test program works the default is
16839 probably right.
16840 I'm now running the test program...
16841 EOM
16842                 $cat >try.c <<EOCP
16843 #include <stdio.h>
16844 #$i_stdlib I_STDLIB
16845 #ifdef I_STDLIB
16846 #include <stdlib.h>
16847 #endif
16848 #include <sys/types.h>
16849 typedef $uvtype UV;
16850 int main()
16851 {
16852         int i;
16853         union {
16854                 UV l;
16855                 char c[$uvsize];
16856         } u;
16857
16858         if ($uvsize > 4)
16859                 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
16860         else
16861                 u.l = (UV)0x04030201;
16862         for (i = 0; i < $uvsize; i++)
16863                 printf("%c", u.c[i]+'0');
16864         printf("\n");
16865         exit(0);
16866 }
16867 EOCP
16868                 xxx_prompt=y
16869                 set try
16870                 if eval $compile && ./try > /dev/null; then
16871                         dflt=`$run ./try`
16872                         case "$dflt" in
16873                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16874                                 echo "(The test program ran ok.)"
16875                                 echo "byteorder=$dflt"
16876                                 xxx_prompt=n
16877                         ;;
16878                         ????|????????) echo "(The test program ran ok.)" ;;
16879                         *) echo "(The test program didn't run right for some reason.)" ;;
16880                         esac
16881                 else
16882                         dflt='4321'
16883                         cat <<'EOM'
16884 (I can't seem to compile the test program.  Guessing big-endian...)
16885 EOM
16886                 fi
16887                 case "$xxx_prompt" in
16888                 y)
16889                         rp="What is the order of bytes in $uvtype?"
16890                         . ./myread
16891                         byteorder="$ans"
16892                         ;;
16893                 *)      byteorder=$dflt
16894                         ;;
16895                 esac
16896                 ;;
16897         esac
16898         $rm -f try.c try
16899         ;;
16900 esac
16901
16902
16903 $cat <<EOM
16904
16905 Checking to see whether you can access character data unalignedly...
16906 EOM
16907 case "$d_u32align" in
16908 '')   $cat >try.c <<EOCP
16909 #include <stdio.h>
16910 #$i_stdlib I_STDLIB
16911 #ifdef I_STDLIB
16912 #include <stdlib.h>
16913 #endif
16914 #define U32 $u32type
16915 #define BYTEORDER 0x$byteorder
16916 #define U8 $u8type
16917 #include <signal.h>
16918 #ifdef SIGBUS
16919 $signal_t bletch(s) int s; { exit(4); }
16920 #endif
16921 int main() {
16922 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
16923     U8 buf[8];
16924     U32 *up;
16925     int i;
16926
16927     if (sizeof(U32) != 4) {
16928         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
16929         exit(1);
16930     }
16931
16932     fflush(stdout);
16933
16934 #ifdef SIGBUS
16935     signal(SIGBUS, bletch);
16936 #endif
16937
16938     buf[0] = 0;
16939     buf[1] = 0;
16940     buf[2] = 0;
16941     buf[3] = 1;
16942     buf[5] = 0;
16943     buf[6] = 0;
16944     buf[7] = 0;
16945     buf[8] = 1;
16946
16947     for (i = 0; i < 4; i++) {
16948         up = (U32*)(buf + i);
16949         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
16950                (*up == 1 << (8*(3-i)))  /* little-endian */
16951               )
16952            )
16953         {
16954             printf("read failed (%x)\n", *up);
16955             exit(2);
16956         }
16957     }
16958
16959     /* write test */
16960     for (i = 0; i < 4; i++) {
16961         up = (U32*)(buf + i);
16962         *up = 0xBeef;
16963         if (*up != 0xBeef) {
16964             printf("write failed (%x)\n", *up);
16965             exit(3);
16966         }
16967     }
16968
16969     exit(0);
16970 #else
16971     printf("1\n");
16972     exit(1);
16973 #endif
16974     return 0;
16975 }
16976 EOCP
16977 set try
16978 if eval $compile_ok; then
16979         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
16980         $run ./try 2>&1 >/dev/null
16981         case "$?" in
16982         0)      cat >&4 <<EOM
16983 You can access character data pretty unalignedly.
16984 EOM
16985                 d_u32align="$undef"
16986                 ;;
16987         *)      cat >&4 <<EOM
16988 It seems that you must access character data in an aligned manner.
16989 EOM
16990                 d_u32align="$define"
16991                 ;;
16992         esac
16993 else
16994         rp='Can you access character data at unaligned addresses?'
16995         dflt='n'
16996         . ./myread
16997         case "$ans" in
16998         [yY]*)  d_u32align="$undef"  ;;
16999         *)      d_u32align="$define" ;;
17000         esac
17001 fi
17002 $rm -f core core.try.* try.core
17003 ;;
17004 esac
17005
17006 : see if ualarm exists
17007 set ualarm d_ualarm
17008 eval $inlibc
17009
17010 : see if umask exists
17011 set umask d_umask
17012 eval $inlibc
17013
17014 : see if unordered exists
17015 set unordered d_unordered
17016 eval $inlibc
17017
17018 : see if usleep exists
17019 set usleep d_usleep
17020 eval $inlibc
17021
17022 : see if prototype for usleep is available
17023 echo " "
17024 set d_usleepproto usleep $i_unistd unistd.h
17025 eval $hasproto
17026
17027 : see if ustat exists
17028 set ustat d_ustat
17029 eval $inlibc
17030
17031 : backward compatibility for d_hvfork
17032 if test X$d_hvfork != X; then
17033         d_vfork="$d_hvfork"
17034         d_hvfork=''
17035 fi
17036 : see if there is a vfork
17037 val=''
17038 set vfork val
17039 eval $inlibc
17040
17041 : Ok, but do we want to use it. vfork is reportedly unreliable in 
17042 : perl on Solaris 2.x, and probably elsewhere.
17043 case "$val" in
17044 $define)
17045         echo " "
17046         case "$usevfork" in
17047         false) dflt='n';;
17048         *) dflt='y';;
17049         esac
17050         cat <<'EOM'
17051  
17052 Perl can only use a vfork() that doesn't suffer from strict
17053 restrictions on calling functions or modifying global data in
17054 the child.  For example, glibc-2.1 contains such a vfork()
17055 that is unsuitable.  If your system provides a proper fork()
17056 call, chances are that you do NOT want perl to use vfork().
17057
17058 EOM
17059         rp="Do you still want to use vfork()?"
17060         . ./myread
17061         case "$ans" in
17062         y|Y) ;;
17063         *)
17064                 echo "Ok, we won't use vfork()."
17065                 val="$undef"
17066                 ;;
17067         esac
17068         ;;
17069 esac
17070 set d_vfork
17071 eval $setvar
17072 case "$d_vfork" in
17073 $define) usevfork='true';;
17074 *) usevfork='false';;
17075 esac
17076
17077 : see if closedir exists
17078 set closedir d_closedir
17079 eval $inlibc
17080
17081 case "$d_closedir" in
17082 "$define")
17083         echo " "
17084         echo "Checking whether closedir() returns a status..." >&4
17085         cat > try.c <<EOM
17086 #$i_dirent I_DIRENT             /**/
17087 #$i_sysdir I_SYS_DIR            /**/
17088 #$i_sysndir I_SYS_NDIR          /**/
17089 #$i_systypes I_SYS_TYPES        /**/
17090
17091 #if defined(I_SYS_TYPES)
17092 #include <sys/types.h>
17093 #endif
17094 #if defined(I_DIRENT)
17095 #include <dirent.h>
17096 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
17097 #include <sys/dir.h>
17098 #endif
17099 #else
17100 #ifdef I_SYS_NDIR
17101 #include <sys/ndir.h>
17102 #else
17103 #ifdef I_SYS_DIR
17104 #ifdef hp9000s500
17105 #include <ndir.h>       /* may be wrong in the future */
17106 #else
17107 #include <sys/dir.h>
17108 #endif
17109 #endif
17110 #endif
17111 #endif 
17112 int main() { return closedir(opendir(".")); }
17113 EOM
17114         set try
17115         if eval $compile_ok; then
17116                 if $run ./try > /dev/null 2>&1 ; then
17117                         echo "Yes, it does."
17118                         val="$undef"
17119                 else
17120                         echo "No, it doesn't."
17121                         val="$define"
17122                 fi
17123         else
17124                 echo "(I can't seem to compile the test program--assuming it doesn't)"
17125                 val="$define"
17126         fi
17127         ;;
17128 *)
17129         val="$undef";
17130         ;;
17131 esac
17132 set d_void_closedir
17133 eval $setvar
17134 $rm -f try try.*
17135 : see if there is a wait4
17136 set wait4 d_wait4
17137 eval $inlibc
17138
17139 : see if waitpid exists
17140 set waitpid d_waitpid
17141 eval $inlibc
17142
17143 : see if wcstombs exists
17144 set wcstombs d_wcstombs
17145 eval $inlibc
17146
17147 : see if wctomb exists
17148 set wctomb d_wctomb
17149 eval $inlibc
17150
17151 : see if writev exists
17152 set writev d_writev
17153 eval $inlibc
17154
17155 : preserve RCS keywords in files with variable substitution, grrr
17156 Date='$Date'
17157 Id='$Id'
17158 Log='$Log'
17159 RCSfile='$RCSfile'
17160 Revision='$Revision'
17161
17162 : check for alignment requirements
17163 echo " "
17164 case "$usecrosscompile$multiarch" in
17165 *$define*)
17166         $cat <<EOM
17167 You seem to be either cross-compiling or doing a multiarchitecture build,
17168 skipping the memory alignment check.
17169
17170 EOM
17171         case "$alignbytes" in
17172         '') alignbytes=8 ;;
17173         esac
17174         ;;
17175 *)
17176         case "$alignbytes" in
17177         '') echo "Checking alignment constraints..." >&4
17178                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
17179                         $cat >try.c <<'EOCP'
17180 typedef long double NV;
17181 EOCP
17182                 else
17183                         $cat >try.c <<'EOCP'
17184 typedef double NV;
17185 EOCP
17186                 fi
17187                 $cat >>try.c <<'EOCP'
17188 #include <stdio.h>
17189 struct foobar {
17190         char foo;
17191         NV bar;
17192 } try_algn;
17193 int main()
17194 {
17195     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
17196     return(0);
17197 }
17198 EOCP
17199                 set try
17200                 if eval $compile_ok; then
17201                         dflt=`$run ./try`
17202                 else
17203                         dflt='8'
17204                         echo "(I can't seem to compile the test program...)"
17205                 fi
17206                 ;;
17207         *) dflt="$alignbytes"
17208                 ;;
17209         esac
17210         rp="Doubles must be aligned on a how-many-byte boundary?"
17211         . ./myread
17212         alignbytes="$ans"
17213         $rm -f try.c try
17214         ;;
17215 esac
17216
17217
17218 : set the base revision
17219 baserev=5.0
17220
17221 : how do we concatenate cpp tokens here?
17222 echo " "
17223 echo "Checking to see how your cpp does stuff like concatenate tokens..." >&4
17224 $cat >cpp_stuff.c <<'EOCP'
17225 #define RCAT(a,b)a/**/b
17226 #define ACAT(a,b)a ## b
17227 RCAT(Rei,ser)
17228 ACAT(Cir,cus)
17229 EOCP
17230 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
17231 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
17232         echo "Oh!  Smells like ANSI's been here." >&4
17233         echo "We can catify or stringify, separately or together!"
17234         cpp_stuff=42
17235 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
17236         echo "Ah, yes!  The good old days!" >&4
17237         echo "However, in the good old days we don't know how to stringify and"
17238         echo "catify at the same time."
17239         cpp_stuff=1
17240 else
17241         $cat >&4 <<EOM
17242 Hmm, I don't seem to be able to concatenate tokens with your cpp.
17243 You're going to have to edit the values of CAT[2-5] in config.h...
17244 EOM
17245         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
17246 fi
17247 $rm -f cpp_stuff.*
17248
17249 : see if this is a db.h system
17250 set db.h i_db
17251 eval $inhdr
17252
17253 case "$i_db" in
17254 $define)
17255         : Check db version.
17256         echo " "
17257         echo "Checking Berkeley DB version ..." >&4
17258         $cat >try.c <<EOCP
17259 #$d_const HASCONST
17260 #ifndef HASCONST
17261 #define const
17262 #endif
17263 #include <sys/types.h>
17264 #include <stdio.h>
17265 #$i_stdlib I_STDLIB
17266 #ifdef I_STDLIB
17267 #include <stdlib.h>
17268 #endif
17269 #include <db.h>
17270 int main(int argc, char *argv[])
17271 {
17272 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
17273     int Major, Minor, Patch ;
17274     unsigned long Version ;
17275     (void)db_version(&Major, &Minor, &Patch) ;
17276     if (argc == 2) {
17277         printf("%d %d %d %d %d %d\n",
17278                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
17279                Major, Minor, Patch);
17280         exit(0);
17281     }
17282     printf("You have Berkeley DB Version 2 or greater.\n");
17283
17284     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
17285                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
17286     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
17287                 Major, Minor, Patch) ;
17288
17289     /* check that db.h & libdb are compatible */
17290     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
17291         printf("db.h and libdb are incompatible.\n") ;
17292         exit(3);        
17293     }
17294
17295     printf("db.h and libdb are compatible.\n") ;
17296
17297     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
17298                 + DB_VERSION_PATCH ;
17299
17300     /* needs to be >= 2.3.4 */
17301     if (Version < 2003004) {
17302     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
17303         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
17304         exit(2);        
17305     }
17306
17307     exit(0);
17308 #else
17309 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
17310     if (argc == 2) {
17311         printf("1 0 0\n");
17312         exit(0);
17313     }
17314     printf("You have Berkeley DB Version 1.\n");
17315     exit(0);    /* DB version < 2: the coast is clear. */
17316 #else
17317     exit(1);    /* <db.h> not Berkeley DB? */
17318 #endif
17319 #endif
17320 }
17321 EOCP
17322         set try
17323         if eval $compile_ok && $run ./try; then
17324                 echo 'Looks OK.' >&4
17325                 set `$run ./try 1`
17326                 db_version_major=$1
17327                 db_version_minor=$2
17328                 db_version_patch=$3
17329         else
17330                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
17331                 i_db=$undef
17332                 case " $libs " in
17333                 *"-ldb "*)
17334                         : Remove db from list of libraries to use
17335                         echo "Removing unusable -ldb from library list" >&4
17336                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
17337                         shift
17338                         libs="$*"
17339                         echo "libs = $libs" >&4
17340                         ;;
17341                 esac
17342         fi
17343         $rm -f try.*
17344         ;;
17345 esac
17346
17347 case "$i_db" in
17348 define)
17349         : Check the return type needed for hash 
17350         echo " "
17351         echo "Checking return type needed for hash for Berkeley DB ..." >&4
17352         $cat >try.c <<EOCP
17353 #$d_const HASCONST
17354 #ifndef HASCONST
17355 #define const
17356 #endif
17357 #include <sys/types.h>
17358 #include <db.h>
17359
17360 #ifndef DB_VERSION_MAJOR
17361 u_int32_t hash_cb (ptr, size)
17362 const void *ptr;
17363 size_t size;
17364 {
17365 }
17366 HASHINFO info;
17367 int main()
17368 {
17369         info.hash = hash_cb;
17370 }
17371 #endif
17372 EOCP
17373         if $cc $ccflags -c try.c >try.out 2>&1 ; then
17374                 if $contains warning try.out >>/dev/null 2>&1 ; then
17375                         db_hashtype='int'
17376                 else
17377                         db_hashtype='u_int32_t'
17378                 fi
17379         else
17380                 : XXX Maybe we should just give up here.
17381                 db_hashtype=u_int32_t
17382                 $cat try.out >&4
17383                 echo "Help:  I can't seem to compile the db test program." >&4
17384                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
17385         fi
17386         $rm -f try.*
17387         echo "Your version of Berkeley DB uses $db_hashtype for hash."
17388         ;;
17389 *)      db_hashtype=u_int32_t
17390         ;;
17391 esac
17392 case "$i_db" in
17393 define)
17394         : Check the return type needed for prefix 
17395         echo " "
17396         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
17397         cat >try.c <<EOCP
17398 #$d_const HASCONST
17399 #ifndef HASCONST
17400 #define const
17401 #endif
17402 #include <sys/types.h>
17403 #include <db.h>
17404
17405 #ifndef DB_VERSION_MAJOR
17406 size_t prefix_cb (key1, key2)
17407 const DBT *key1;
17408 const DBT *key2;
17409 {
17410 }
17411 BTREEINFO info;
17412 int main()
17413 {
17414         info.prefix = prefix_cb;
17415 }
17416 #endif
17417 EOCP
17418         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
17419                 if $contains warning try.out >>/dev/null 2>&1 ; then
17420                         db_prefixtype='int'
17421                 else
17422                         db_prefixtype='size_t'
17423                 fi
17424         else
17425                 db_prefixtype='size_t'
17426                 : XXX Maybe we should just give up here.
17427                 $cat try.out >&4
17428                 echo "Help:  I can't seem to compile the db test program." >&4
17429                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
17430         fi
17431         $rm -f try.*
17432         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
17433         ;;
17434 *)      db_prefixtype='size_t'
17435         ;;
17436 esac
17437
17438
17439 : How can we generate normalized random numbers ?
17440 echo " "
17441 echo "Looking for a random number function..." >&4
17442 case "$randfunc" in
17443 '')
17444         if set drand48 val -f; eval $csym; $val; then
17445                 dflt="drand48"
17446                 echo "Good, found drand48()." >&4
17447         elif set random val -f; eval $csym; $val; then
17448                 dflt="random"
17449                 echo "OK, found random()." >&4
17450         else
17451                 dflt="rand"
17452                 echo "Yick, looks like I have to use rand()." >&4
17453         fi
17454         echo " "
17455         ;;
17456 *)
17457         dflt="$randfunc"
17458         ;;
17459 esac
17460 cont=true
17461
17462 case "$ccflags" in
17463 *-Dmy_rand=*|*-Dmy_srand=*)
17464         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
17465         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
17466         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
17467         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
17468         ;;
17469 esac
17470
17471 while $test "$cont"; do
17472         rp="Use which function to generate random numbers?"
17473         . ./myread
17474         if $test "$ans" = "$dflt"; then
17475                 : null
17476         else
17477                 randbits=''
17478         fi
17479         randfunc="$ans"
17480         if set $ans val -f; eval $csym; $val; then
17481                 cont=''
17482         else
17483                 dflt=y
17484                 rp="I cannot find function $ans. Use that name anyway?"
17485                 . ./myread
17486                 dflt=rand
17487                 case "$ans" in
17488                         [yY]*) cont='';;
17489                 esac
17490         fi
17491         case "$cont" in
17492         '')
17493                 case "$randfunc" in
17494                 drand48)
17495                         drand01="drand48()"
17496                         seedfunc="srand48"
17497                         randbits=48
17498                         randseedtype=long
17499                         ;;
17500                 rand|random)
17501                         case "$randbits" in
17502                         '')
17503 echo "Checking to see how many bits your $randfunc() function produces..." >&4
17504                                 $cat >try.c <<EOCP
17505 #$i_unistd I_UNISTD
17506 #$i_stdlib I_STDLIB
17507 #include <stdio.h>
17508 #ifdef I_UNISTD
17509 #  include <unistd.h>
17510 #endif
17511 #ifdef I_STDLIB
17512 #  include <stdlib.h>
17513 #endif
17514 int main()
17515 {
17516         register int i;
17517         register unsigned long tmp;
17518         register unsigned long max = 0L;
17519
17520         for (i = 1000; i; i--) {
17521                 tmp = (unsigned long) $randfunc();
17522                 if (tmp > max) max = tmp;
17523         }
17524         for (i = 0; max; i++)
17525                 max /= 2;
17526         printf("%d\n",i);
17527 }
17528 EOCP
17529                                 set try
17530                                 if eval $compile_ok; then
17531                                         dflt=`try`
17532                                 else
17533                                         dflt='?'
17534                                         echo "(I can't seem to compile the test program...)"
17535                                 fi
17536                                 ;;
17537                         *)
17538                                 dflt="$randbits"
17539                                 ;;
17540                         esac
17541                         rp="How many bits does your $randfunc() function produce?"
17542                         . ./myread
17543                         randbits="$ans"
17544                         $rm -f try.c try
17545                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17546                         seedfunc="s$randfunc"
17547                         randseedtype=unsigned
17548                         ;;
17549                 *)
17550                         dflt="31"
17551                         rp="How many bits does your $randfunc() function produce?"
17552                         . ./myread
17553                         randbits="$ans"
17554                         seedfunc="s$randfunc"
17555                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17556                         if set $seedfunc val -f; eval $csym; $val; then
17557                                 echo "(Using $seedfunc() to seed random generator)"
17558                         else
17559                                 echo "(Warning: no $seedfunc() to seed random generator)"
17560                                 seedfunc=rand
17561                         fi
17562                         randseedtype=unsigned
17563                         ;;
17564                 esac
17565                 ;;
17566         esac
17567 done
17568
17569 echo " "
17570 echo "Determining whether or not we are on an EBCDIC system..." >&4
17571 $cat >try.c <<'EOM'
17572 int main()
17573 {
17574   if ('M'==0xd4) return 0;
17575   return 1;
17576 }
17577 EOM
17578
17579 val=$undef
17580 set try
17581 if eval $compile_ok; then
17582         if $run ./try; then
17583                 echo "You seem to speak EBCDIC." >&4
17584                 val="$define"
17585         else
17586                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
17587         fi
17588 else
17589         echo "I'm unable to compile the test program." >&4
17590         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
17591 fi
17592 $rm -f try try.*
17593 set ebcdic
17594 eval $setvar
17595
17596 echo " "
17597 $cat >&4 <<EOM
17598 Checking how to flush all pending stdio output...
17599 EOM
17600 # I only know how to find the first 32 possibly open files on SunOS.
17601 # See also hints/sunos_4_1.sh and util.c  --AD
17602 case "$osname" in
17603 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
17604 esac
17605 $cat >>try.c <<EOCP
17606 #include <stdio.h>
17607 #$i_stdlib I_STDLIB
17608 #ifdef I_STDLIB
17609 #include <stdlib.h>
17610 #endif
17611 #$i_unistd I_UNISTD
17612 #ifdef I_UNISTD
17613 # include <unistd.h>
17614 #endif
17615 #$d_sysconf HAS_SYSCONF
17616 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
17617 #ifdef HAS_STDIO_STREAM_ARRAY
17618 # define STDIO_STREAM_ARRAY $stdio_stream_array
17619 #endif
17620 int main() {
17621   FILE* p;
17622   unlink("try.out");
17623   p = fopen("try.out", "w");
17624 #ifdef TRY_FPUTC
17625   fputc('x', p);
17626 #else
17627 # ifdef TRY_FPRINTF
17628   fprintf(p, "x");
17629 # endif
17630 #endif
17631 #ifdef TRY_FFLUSH_NULL
17632   fflush(NULL);
17633 #endif
17634 #ifdef TRY_FFLUSH_ALL
17635   {
17636     long open_max = -1;
17637 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
17638     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
17639 # else
17640 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
17641     open_max = sysconf(_SC_OPEN_MAX);
17642 #  else
17643 #   ifdef FOPEN_MAX
17644     open_max = FOPEN_MAX;
17645 #   else
17646 #    ifdef OPEN_MAX
17647     open_max = OPEN_MAX;
17648 #    else
17649 #     ifdef _NFILE
17650     open_max = _NFILE;
17651 #     endif
17652 #    endif
17653 #   endif
17654 #  endif
17655 # endif 
17656 # ifdef HAS_STDIO_STREAM_ARRAY
17657     if (open_max > 0) {
17658       long i;
17659       for (i = 0; i < open_max; i++)
17660             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17661                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17662                 STDIO_STREAM_ARRAY[i]._flag)
17663                 fflush(&STDIO_STREAM_ARRAY[i]);
17664     }   
17665   }
17666 # endif
17667 #endif
17668   _exit(42);
17669 }
17670 EOCP
17671 : first we have to find out how _not_ to flush
17672 $to try.c
17673 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17674     output=''
17675     set try -DTRY_FPUTC
17676     if eval $compile; then
17677             $run ./try 2>/dev/null
17678             code="$?"
17679             $from try.out
17680             if $test ! -s try.out -a "X$code" = X42; then
17681                 output=-DTRY_FPUTC
17682             fi
17683     fi
17684     case "$output" in
17685     '')
17686             set try -DTRY_FPRINTF
17687             if eval $compile; then
17688                     $run ./try 2>/dev/null
17689                     code="$?"
17690                     $from try.out
17691                     if $test ! -s try.out -a "X$code" = X42; then
17692                         output=-DTRY_FPRINTF
17693                     fi
17694             fi
17695         ;;
17696     esac
17697 fi
17698 : check for fflush NULL behaviour
17699 case "$fflushNULL" in
17700 '')     set try -DTRY_FFLUSH_NULL $output
17701         if eval $compile; then
17702                 $run ./try 2>/dev/null
17703                 code="$?"
17704                 $from try.out
17705                 if $test -s try.out -a "X$code" = X42; then
17706                         fflushNULL="`$cat try.out`"
17707                 else
17708                         if $test "X$code" != X42; then
17709                                 $cat >&4 <<EOM
17710 (If this test failed, don't worry, we'll try another method shortly.)
17711 EOM
17712                         fi
17713                 fi
17714         fi
17715         $rm -f core try.core core.try.*
17716         case "$fflushNULL" in
17717         x)      $cat >&4 <<EOM
17718 Your fflush(NULL) works okay for output streams.
17719 Let's see if it clobbers input pipes...
17720 EOM
17721 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17722 # bug that improperly flushes the input end of pipes.  So we avoid the
17723 # autoflush on fork/system/exec support for now. :-(
17724 $cat >tryp.c <<EOCP
17725 #include <stdio.h>
17726 int
17727 main(int argc, char **argv)
17728 {
17729     char buf[1024];
17730     int i;
17731     char *bp = buf;
17732     while (1) {
17733         while ((i = getc(stdin)) != -1
17734                && (*bp++ = i) != '\n'
17735                && bp < &buf[1024])
17736         /* DO NOTHING */ ;
17737         *bp = '\0';
17738         fprintf(stdout, "%s", buf);
17739         fflush(NULL);
17740         if (i == -1)
17741             return 0;
17742         bp = buf;
17743     }
17744 }
17745 EOCP
17746                 fflushNULL="$define"
17747                 set tryp
17748                 if eval $compile; then
17749                     $rm -f tryp.out
17750                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17751                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17752                        $cat >&4 <<EOM
17753 fflush(NULL) seems to behave okay with input streams.
17754 EOM
17755                         fflushNULL="$define"
17756                     else
17757                         $cat >&4 <<EOM
17758 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17759 EOM
17760                         fflushNULL="$undef"
17761                     fi
17762                 fi
17763                 $rm -f core tryp.c tryp.core core.tryp.*
17764                 ;;
17765         '')     $cat >&4 <<EOM
17766 Your fflush(NULL) isn't working (contrary to ANSI C).
17767 EOM
17768                 fflushNULL="$undef"
17769                 ;;
17770         *)      $cat >&4 <<EOM
17771 Cannot figure out whether your fflush(NULL) works or not.
17772 I'm assuming it doesn't (contrary to ANSI C).
17773 EOM
17774                 fflushNULL="$undef"
17775                 ;;
17776         esac
17777         ;;
17778 $define|true|[yY]*)
17779         fflushNULL="$define"
17780         ;;
17781 *)
17782         fflushNULL="$undef"
17783         ;;
17784 esac
17785 : check explicit looping only if NULL did not work, and if the pipe
17786 : bug does not show up on an explicit flush too
17787 case "$fflushNULL" in
17788 "$undef")
17789         $cat >tryp.c <<EOCP
17790 #include <stdio.h>
17791 int
17792 main(int argc, char **argv)
17793 {
17794     char buf[1024];
17795     int i;
17796     char *bp = buf;
17797     while (1) {
17798         while ((i = getc(stdin)) != -1
17799                && (*bp++ = i) != '\n'
17800                && bp < &buf[1024])
17801         /* DO NOTHING */ ;
17802         *bp = '\0';
17803         fprintf(stdout, "%s", buf);
17804         fflush(stdin);
17805         if (i == -1)
17806             return 0;
17807         bp = buf;
17808     }
17809 }
17810 EOCP
17811         set tryp
17812         if eval $compile; then
17813             $rm -f tryp.out
17814             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17815             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17816                $cat >&4 <<EOM
17817 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17818 EOM
17819                 : now check for fflushall behaviour
17820                 case "$fflushall" in
17821                 '')     set try -DTRY_FFLUSH_ALL $output
17822                         if eval $compile; then
17823                                 $cat >&4 <<EOM
17824 (Now testing the other method--but note that this also may fail.)
17825 EOM
17826                                 $run ./try 2>/dev/null
17827                                 code=$?
17828                                 $from try.out
17829                                 if $test -s try.out -a "X$code" = X42; then
17830                                         fflushall="`$cat try.out`"
17831                                 fi
17832                         fi
17833                         $rm -f core try.core core.try.*
17834                         case "$fflushall" in
17835                         x)      $cat >&4 <<EOM
17836 Whew. Flushing explicitly all the stdio streams works.
17837 EOM
17838                                 fflushall="$define"
17839                                 ;;
17840                         '')     $cat >&4 <<EOM
17841 Sigh. Flushing explicitly all the stdio streams doesn't work.
17842 EOM
17843                                 fflushall="$undef"
17844                                 ;;
17845                         *)      $cat >&4 <<EOM
17846 Cannot figure out whether flushing stdio streams explicitly works or not.
17847 I'm assuming it doesn't.
17848 EOM
17849                                 fflushall="$undef"
17850                                 ;;
17851                         esac
17852                         ;;
17853                 "$define"|true|[yY]*)
17854                         fflushall="$define"
17855                         ;;
17856                 *)
17857                         fflushall="$undef"
17858                         ;;
17859                 esac
17860             else
17861                 $cat >&4 <<EOM
17862 All is futile.  Even fflush(stdin) clobbers input pipes!
17863 EOM
17864                 fflushall="$undef"
17865             fi
17866         else
17867             fflushall="$undef"
17868         fi
17869         $rm -f core tryp.c tryp.core core.tryp.*
17870         ;;
17871 *)      fflushall="$undef"
17872         ;;
17873 esac
17874
17875 case "$fflushNULL$fflushall" in
17876 undefundef)
17877         $cat <<EOM
17878 OK, I give up.  I cannot figure out how to flush pending stdio output.
17879 We won't be flushing handles at all before fork/exec/popen.
17880 EOM
17881         ;;
17882 esac
17883 $rm -f try.* try$exe_ext
17884
17885 : Store the full pathname to the ar program for use in the C program
17886 : Respect a hint or command line value for full_ar.
17887 case "$full_ar" in
17888 '') full_ar=$ar ;;
17889 esac
17890
17891 : Store the full pathname to the sed program for use in the C program
17892 full_sed=$sed
17893
17894 : see what type gids are declared as in the kernel
17895 echo " "
17896 echo "Looking for the type for group ids returned by getgid()."
17897 set gid_t gidtype xxx stdio.h sys/types.h
17898 eval $typedef
17899 case "$gidtype" in
17900 xxx)
17901         xxx=`./findhdr sys/user.h`
17902         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17903         case $1 in
17904         unsigned) dflt="$1 $2" ;;
17905         *) dflt="$1" ;;
17906         esac
17907         ;;
17908 *) dflt="$gidtype";;
17909 esac
17910 case "$gidtype" in
17911 gid_t) echo "gid_t found." ;;
17912 *)      rp="What is the type for group ids returned by getgid()?"
17913         . ./myread
17914         gidtype="$ans"
17915         ;;
17916 esac
17917
17918 echo " "
17919 case "$gidtype" in
17920 *_t) zzz="$gidtype"     ;;
17921 *)   zzz="gid"          ;;
17922 esac
17923 echo "Checking the size of $zzz..." >&4 
17924 cat > try.c <<EOCP
17925 #include <sys/types.h>
17926 #include <stdio.h>
17927 #$i_stdlib I_STDLIB
17928 #ifdef I_STDLIB
17929 #include <stdlib.h>
17930 #endif
17931 int main() {
17932     printf("%d\n", (int)sizeof($gidtype));
17933     exit(0);
17934 }
17935 EOCP
17936 set try
17937 if eval $compile_ok; then
17938         yyy=`$run ./try`
17939         case "$yyy" in
17940         '')     gidsize=4
17941                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
17942                 ;;
17943         *)      gidsize=$yyy
17944                 echo "Your $zzz is $gidsize bytes long."
17945                 ;;
17946         esac
17947 else
17948         gidsize=4
17949         echo "(I can't compile the test program--guessing $gidsize.)" >&4
17950 fi
17951
17952
17953 echo " "
17954 case "$gidtype" in
17955 *_t) zzz="$gidtype"     ;;
17956 *)   zzz="gid"          ;;
17957 esac
17958 echo "Checking the sign of $zzz..." >&4 
17959 cat > try.c <<EOCP
17960 #include <sys/types.h>
17961 #include <stdio.h>
17962 int main() {
17963         $gidtype foo = -1;
17964         if (foo < 0)
17965                 printf("-1\n");
17966         else
17967                 printf("1\n");
17968 }
17969 EOCP
17970 set try
17971 if eval $compile; then
17972         yyy=`$run ./try`
17973         case "$yyy" in
17974         '')     gidsign=1
17975                 echo "(I can't execute the test program--guessing unsigned.)" >&4
17976                 ;;
17977         *)      gidsign=$yyy
17978                 case "$gidsign" in
17979                  1) echo "Your $zzz is unsigned." ;;
17980                 -1) echo "Your $zzz is signed."   ;;
17981                 esac
17982                 ;;
17983         esac
17984 else
17985         gidsign=1
17986         echo "(I can't compile the test program--guessing unsigned.)" >&4
17987 fi
17988
17989
17990 echo " "
17991
17992 if $test X"$quadtype" != X; then
17993
17994 echo "Checking how to print 64-bit integers..." >&4
17995
17996 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
17997         $cat >try.c <<'EOCP'
17998 #include <sys/types.h>
17999 #include <stdio.h>
18000 int main() {
18001   int q = 12345678901;
18002   printf("%ld\n", q);
18003 }
18004 EOCP
18005         set try
18006         if eval $compile; then
18007                 yyy=`$run ./try`
18008                 case "$yyy" in
18009                 12345678901)
18010                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
18011                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
18012                         echo "We will use %d."
18013                         ;;
18014                 esac
18015         fi
18016 fi
18017
18018 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
18019         $cat >try.c <<'EOCP'
18020 #include <sys/types.h>
18021 #include <stdio.h>
18022 int main() {
18023   long q = 12345678901;
18024   printf("%ld\n", q);
18025 }
18026 EOCP
18027         set try
18028         if eval $compile; then
18029                 yyy=`$run ./try`
18030                 case "$yyy" in
18031                 12345678901)
18032                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
18033                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
18034                         echo "We will use %ld."
18035                         ;;
18036                 esac
18037         fi
18038 fi
18039
18040 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
18041         $cat >try.c <<'EOCP'
18042 #include <sys/types.h>
18043 #include <inttypes.h>
18044 #include <stdio.h>
18045 int main() {
18046   int64_t q = 12345678901;
18047   printf("%" PRId64 "\n", q);
18048 }
18049 EOCP
18050         set try
18051         if eval $compile; then
18052                 yyy=`$run ./try`
18053                 case "$yyy" in
18054                 12345678901)
18055                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
18056                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
18057                         echo "We will use the C9X style."
18058                         ;;
18059                 esac
18060         fi
18061 fi
18062
18063 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18064         $cat >try.c <<EOCP
18065 #include <sys/types.h>
18066 #include <stdio.h>
18067 int main() {
18068   $quadtype q = 12345678901;
18069   printf("%Ld\n", q);
18070 }
18071 EOCP
18072         set try
18073         if eval $compile; then
18074                 yyy=`$run ./try`
18075                 case "$yyy" in
18076                 12345678901)
18077                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
18078                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
18079                         echo "We will use %Ld."
18080                         ;;
18081                 esac
18082         fi
18083 fi
18084
18085 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
18086         $cat >try.c <<'EOCP'
18087 #include <sys/types.h>
18088 #include <stdio.h>
18089 int main() {
18090   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
18091   printf("%lld\n", q);
18092 }
18093 EOCP
18094         set try
18095         if eval $compile; then
18096                 yyy=`$run ./try`
18097                 case "$yyy" in
18098                 12345678901)
18099                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
18100                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
18101                         echo "We will use the %lld style."
18102                         ;;
18103                 esac
18104         fi
18105 fi
18106
18107 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18108         $cat >try.c <<EOCP
18109 #include <sys/types.h>
18110 #include <stdio.h>
18111 int main() {
18112   $quadtype q = 12345678901;
18113   printf("%qd\n", q);
18114 }
18115 EOCP
18116         set try
18117         if eval $compile; then
18118                 yyy=`$run ./try`
18119                 case "$yyy" in
18120                 12345678901)
18121                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
18122                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
18123                         echo "We will use %qd."
18124                         ;;
18125                 esac
18126         fi
18127 fi
18128
18129 if $test X"$sPRId64" = X; then
18130         echo "Cannot figure out how to print 64-bit integers." >&4
18131 fi
18132
18133 $rm -f try try.*
18134
18135 fi
18136
18137 case "$sPRId64" in
18138 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
18139         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
18140         ;;
18141 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
18142         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
18143         ;;
18144 esac
18145
18146
18147 echo " "
18148 $echo "Checking the format strings to be used for Perl's internal types..." >&4
18149
18150 if $test X"$ivsize" = X8; then
18151         ivdformat="$sPRId64"
18152         uvuformat="$sPRIu64"
18153         uvoformat="$sPRIo64"
18154         uvxformat="$sPRIx64"
18155         uvXUformat="$sPRIXU64"
18156 else
18157         if $test X"$ivsize" = X"$longsize"; then
18158                 ivdformat='"ld"'
18159                 uvuformat='"lu"'
18160                 uvoformat='"lo"'
18161                 uvxformat='"lx"'
18162                 uvXUformat='"lX"'
18163         else
18164                 if $test X"$ivsize" = X"$intsize"; then
18165                         ivdformat='"d"'
18166                         uvuformat='"u"'
18167                         uvoformat='"o"'
18168                         uvxformat='"x"'
18169                         uvXUformat='"X"'
18170                 else
18171                         : far out
18172                         if $test X"$ivsize" = X"$shortsize"; then
18173                                 ivdformat='"hd"'
18174                                 uvuformat='"hu"'
18175                                 uvoformat='"ho"'
18176                                 uvxformat='"hx"'
18177                                 uvXUformat='"hX"'
18178                         fi
18179                 fi
18180         fi
18181 fi
18182
18183 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
18184         nveformat="$sPRIeldbl"
18185         nvfformat="$sPRIfldbl"
18186         nvgformat="$sPRIgldbl"
18187         nvEUformat="$sPRIEUldbl"
18188         nvFUformat="$sPRIFUldbl"
18189         nvGUformat="$sPRIGUldbl"
18190 else
18191         nveformat='"e"'
18192         nvfformat='"f"'
18193         nvgformat='"g"'
18194         nvEUformat='"E"'
18195         nvFUformat='"F"'
18196         nvGUformat='"G"'
18197 fi
18198
18199 case "$ivdformat" in
18200 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
18201     exit 1
18202     ;;
18203 esac
18204
18205
18206 echo " "
18207 $echo "Checking the format string to be used for gids..." >&4
18208
18209 case "$gidsign" in
18210 -1)     if $test X"$gidsize" = X"$ivsize"; then
18211                 gidformat="$ivdformat"
18212         else
18213                 if $test X"$gidsize" = X"$longsize"; then
18214                         gidformat='"ld"'
18215                 else
18216                         if $test X"$gidsize" = X"$intsize"; then
18217                                 gidformat='"d"'
18218                         else
18219                                 if $test X"$gidsize" = X"$shortsize"; then
18220                                         gidformat='"hd"'
18221                                 fi
18222                         fi
18223                 fi
18224         fi
18225         ;;
18226 *)      if $test X"$gidsize" = X"$uvsize"; then
18227                 gidformat="$uvuformat"
18228         else
18229                 if $test X"$gidsize" = X"$longsize"; then
18230                         gidformat='"lu"'
18231                 else
18232                         if $test X"$gidsize" = X"$intsize"; then
18233                                 gidformat='"u"'
18234                         else
18235                                 if $test X"$gidsize" = X"$shortsize"; then
18236                                         gidformat='"hu"'
18237                                 fi
18238                         fi
18239                 fi
18240         fi
18241         ;;
18242 esac
18243
18244 : see if getgroups exists
18245 set getgroups d_getgrps
18246 eval $inlibc
18247
18248 : see if setgroups exists
18249 set setgroups d_setgrps
18250 eval $inlibc
18251
18252
18253 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
18254 echo " "
18255 case "$d_getgrps$d_setgrps" in
18256 *define*)
18257         case "$groupstype" in
18258         '') dflt="$gidtype" ;;
18259         *)  dflt="$groupstype" ;;
18260         esac
18261         $cat <<EOM
18262 What type of pointer is the second argument to getgroups() and setgroups()?
18263 Usually this is the same as group ids, $gidtype, but not always.
18264
18265 EOM
18266         rp='What type pointer is the second argument to getgroups() and setgroups()?'
18267         . ./myread
18268         groupstype="$ans"
18269         ;;
18270 *)  groupstype="$gidtype";;
18271 esac
18272
18273 echo " "
18274 echo "Checking if your $make program sets \$(MAKE)..." >&4
18275 case "$make_set_make" in
18276 '')
18277         $sed 's/^X //' > testmake.mak << 'EOF'
18278 Xall:
18279 X       @echo 'maketemp="$(MAKE)"'
18280 EOF
18281         case "`$make -f testmake.mak 2>/dev/null`" in
18282         *maketemp=*) make_set_make='#' ;;
18283         *)      make_set_make="MAKE=$make" ;;
18284         esac
18285         $rm -f testmake.mak
18286         ;;
18287 esac
18288 case "$make_set_make" in
18289 '#') echo "Yup, it does.";;
18290 *) echo "Nope, it doesn't.";;
18291 esac
18292
18293 : see what type is used for mode_t
18294 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
18295 set mode_t modetype int stdio.h sys/types.h
18296 eval $typedef_ask
18297
18298 : see if stdarg is available
18299 echo " "
18300 if $test `./findhdr stdarg.h`; then
18301         echo "<stdarg.h> found." >&4
18302         valstd="$define"
18303 else
18304         echo "<stdarg.h> NOT found." >&4
18305         valstd="$undef"
18306 fi
18307
18308 : see if varags is available
18309 echo " "
18310 if $test `./findhdr varargs.h`; then
18311         echo "<varargs.h> found." >&4
18312 else
18313         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
18314 fi
18315
18316 : set up the varargs testing programs
18317 $cat > varargs.c <<EOP
18318 #ifdef I_STDARG
18319 #include <stdarg.h>
18320 #endif
18321 #ifdef I_VARARGS
18322 #include <varargs.h>
18323 #endif
18324
18325 #ifdef I_STDARG
18326 int f(char *p, ...)
18327 #else
18328 int f(va_alist)
18329 va_dcl
18330 #endif
18331 {
18332         va_list ap;
18333 #ifndef I_STDARG
18334         char *p;
18335 #endif
18336 #ifdef I_STDARG
18337         va_start(ap,p);
18338 #else
18339         va_start(ap);
18340         p = va_arg(ap, char *);
18341 #endif
18342         va_end(ap);
18343 }
18344 EOP
18345 $cat > varargs <<EOP
18346 $startsh
18347 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
18348         echo "true"
18349 else
18350         echo "false"
18351 fi
18352 $rm -f varargs$_o
18353 EOP
18354 chmod +x varargs
18355
18356 : now check which varargs header should be included
18357 echo " "
18358 i_varhdr=''
18359 case "$valstd" in
18360 "$define")
18361         if `./varargs I_STDARG`; then
18362                 val='stdarg.h'
18363         elif `./varargs I_VARARGS`; then
18364                 val='varargs.h'
18365         fi
18366         ;;
18367 *)
18368         if `./varargs I_VARARGS`; then
18369                 val='varargs.h'
18370         fi
18371         ;;
18372 esac
18373 case "$val" in
18374 '')
18375 echo "I could not find the definition for va_dcl... You have problems..." >&4
18376         val="$undef"; set i_stdarg; eval $setvar
18377         val="$undef"; set i_varargs; eval $setvar
18378         ;;
18379 *) 
18380         set i_varhdr
18381         eval $setvar
18382         case "$i_varhdr" in
18383         stdarg.h)
18384                 val="$define"; set i_stdarg; eval $setvar
18385                 val="$undef"; set i_varargs; eval $setvar
18386                 ;;
18387         varargs.h)
18388                 val="$undef"; set i_stdarg; eval $setvar
18389                 val="$define"; set i_varargs; eval $setvar
18390                 ;;
18391         esac
18392         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
18393 esac
18394 $rm -f varargs*
18395
18396 : see if we need va_copy
18397 echo " "
18398 case "$i_stdarg" in
18399 "$define")
18400         $cat >try.c <<EOCP
18401 #include <stdarg.h>
18402 #include <stdio.h>
18403 #$i_stdlib I_STDLIB
18404 #ifdef I_STDLIB
18405 #include <stdlib.h>
18406 #endif
18407 #include <signal.h>
18408
18409 int
18410 ivfprintf(FILE *f, const char *fmt, va_list *valp)
18411 {
18412   return vfprintf(f, fmt, *valp);
18413 }
18414  
18415 int    
18416 myvfprintf(FILE *f, const  char *fmt, va_list val)
18417 {
18418   return ivfprintf(f, fmt, &val);
18419 }
18420       
18421 int
18422 myprintf(char *fmt, ...) 
18423 {
18424   va_list val;
18425   va_start(val, fmt);
18426   return myvfprintf(stdout, fmt, val); 
18427 }         
18428
18429 int
18430 main(int ac, char **av)
18431 {
18432   signal(SIGSEGV, exit);
18433
18434   myprintf("%s%cs all right, then\n", "that", '\'');                            
18435   exit(0);      
18436 }
18437 EOCP
18438         set try
18439         if eval $compile && $run ./try 2>&1 >/dev/null; then
18440                 case "`$run ./try`" in
18441                 "that's all right, then")
18442                         okay=yes
18443                         ;;
18444                 esac
18445         fi
18446         case "$okay" in
18447         yes)    echo "It seems that you don't need va_copy()." >&4
18448                 need_va_copy="$undef"
18449                 ;;
18450         *)      echo "It seems that va_copy() or similar will be needed." >&4
18451                 need_va_copy="$define"
18452                 ;;
18453         esac
18454         $rm -f try.* core core.* *.core *.core.*
18455         ;;
18456 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
18457         ;;
18458 esac
18459
18460 : see what type is used for size_t
18461 rp="What is the type used for the length parameter for string functions?"
18462 set size_t sizetype 'unsigned int' stdio.h sys/types.h
18463 eval $typedef_ask
18464
18465 : check for type of arguments to gethostbyaddr. 
18466 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
18467         case "$d_gethbyaddr" in
18468         $define)
18469                 $cat <<EOM
18470
18471 Checking to see what type of arguments are accepted by gethostbyaddr().
18472 EOM
18473                 hdrs="$define sys/types.h
18474                         $d_socket sys/socket.h 
18475                         $i_niin netinet/in.h 
18476                         $i_netdb netdb.h
18477                         $i_unistd unistd.h"
18478                 : The first arg can 'char *' or 'void *'
18479                 : The second arg is some of integral type
18480                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
18481                         for yyy in size_t long int; do
18482                                 case "$netdb_host_type" in
18483                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
18484                                         if ./protochk "$try" $hdrs; then
18485                                                 echo "Your system accepts $xxx for the first arg."
18486                                                 echo "...and $yyy for the second arg."
18487                                                 netdb_host_type="$xxx"
18488                                                 netdb_hlen_type="$yyy"
18489                                         fi
18490                                         ;;
18491                                 esac
18492                         done
18493                 done
18494                 : In case none of those worked, prompt the user.
18495                 case "$netdb_host_type" in
18496                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
18497                         dflt='char *'
18498                         . ./myread
18499                         netdb_host_type=$ans
18500                         rp='What is the type for the 2nd argument to gethostbyaddr?'
18501                         dflt="$sizetype"
18502                         . ./myread
18503                         netdb_hlen_type=$ans
18504                         ;;
18505                 esac
18506                 ;;
18507         *)      : no gethostbyaddr, so pick harmless defaults
18508                 netdb_host_type='char *'
18509                 netdb_hlen_type="$sizetype"
18510                 ;;
18511         esac
18512         # Remove the "const" if needed. -- but then we'll have a 
18513         # prototype clash!
18514         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
18515 fi
18516
18517 : check for type of argument to gethostbyname. 
18518 if test "X$netdb_name_type" = X ; then
18519         case "$d_gethbyname" in
18520         $define)
18521                 $cat <<EOM
18522
18523 Checking to see what type of argument is accepted by gethostbyname().
18524 EOM
18525                 hdrs="$define sys/types.h
18526                         $d_socket sys/socket.h 
18527                         $i_niin netinet/in.h 
18528                         $i_netdb netdb.h
18529                         $i_unistd unistd.h"
18530                 for xxx in "const char *" "char *"; do
18531                         case "$netdb_name_type" in
18532                         '')     try="extern struct hostent *gethostbyname($xxx);"
18533                                 if ./protochk "$try" $hdrs; then
18534                                         echo "Your system accepts $xxx."
18535                                         netdb_name_type="$xxx"
18536                                 fi
18537                                 ;;
18538                         esac
18539                 done
18540                 : In case none of those worked, prompt the user.
18541                 case "$netdb_name_type" in
18542                 '')     rp='What is the type for the 1st argument to gethostbyname?'
18543                         dflt='char *'
18544                         . ./myread
18545                         netdb_name_type=$ans
18546                         ;;
18547                 esac
18548                 ;;
18549         *)      : no gethostbyname, so pick harmless default
18550                 netdb_name_type='char *'
18551                 ;;
18552         esac
18553 fi
18554
18555 : check for type of 1st argument to getnetbyaddr. 
18556 if test "X$netdb_net_type" = X ; then
18557         case "$d_getnbyaddr" in
18558         $define)
18559                 $cat <<EOM
18560
18561 Checking to see what type of 1st argument is accepted by getnetbyaddr().
18562 EOM
18563                 hdrs="$define sys/types.h
18564                         $d_socket sys/socket.h 
18565                         $i_niin netinet/in.h 
18566                         $i_netdb netdb.h
18567                         $i_unistd unistd.h"
18568                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
18569                         case "$netdb_net_type" in
18570                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
18571                                 if ./protochk "$try" $hdrs; then
18572                                         echo "Your system accepts $xxx."
18573                                         netdb_net_type="$xxx"
18574                                 fi
18575                                 ;;
18576                         esac
18577                 done
18578                 : In case none of those worked, prompt the user.
18579                 case "$netdb_net_type" in
18580                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
18581                         dflt='long'
18582                         . ./myread
18583                         netdb_net_type=$ans
18584                         ;;
18585                 esac
18586                 ;;
18587         *)      : no getnetbyaddr, so pick harmless default
18588                 netdb_net_type='long'
18589                 ;;
18590         esac
18591 fi
18592 : locate the preferred pager for this system
18593 fn=f/
18594 case "$pager" in
18595 '')
18596         dflt=''
18597         case "$pg" in
18598         /*) dflt=$pg;;
18599         [a-zA-Z]:/*) dflt=$pg;;
18600         esac
18601         case "$more" in
18602         /*) dflt=$more;;
18603         [a-zA-Z]:/*) dflt=$more;;
18604         esac
18605         case "$less" in
18606         /*) dflt=$less;;
18607         [a-zA-Z]:/*) dflt=$less;;
18608         esac
18609         case "$dflt" in
18610         '') dflt=/usr/ucb/more;;
18611         esac
18612         ;;
18613 *)      dflt="$pager"
18614         : Instruct ./getfile to trust the hinted or previous pager value,
18615         : even if it does not begin with a slash.  For example, on os2,
18616         : pager might be cmd /c more.  See comments in UU/getfile.
18617         fn="f/($pager)"
18618         ;;
18619 esac
18620 echo " "
18621 rp='What pager is used on your system?'
18622 . ./getfile
18623 pager="$ans"
18624
18625 : see what type pids are declared as in the kernel
18626 rp="What is the type of process ids on this system?"
18627 set pid_t pidtype int stdio.h sys/types.h
18628 eval $typedef_ask
18629
18630 : Find earliest binary compatible site_perl subdirectory perl can use.
18631 xs_apiversion=$version # The current site_perl version.
18632 : Find earliest pure perl site_perl subdirectory perl can use.
18633 : The versioned directories started at 5.005.
18634 pm_apiversion='5.005'
18635
18636 : see if ar generates random libraries by itself
18637 echo " "
18638 echo "Checking how to generate random libraries on your machine..." >&4
18639 echo 'int bar1() { return bar2(); }' > bar1.c
18640 echo 'int bar2() { return 2; }' > bar2.c
18641 $cat > foo.c <<EOP
18642 #$i_stdlib I_STDLIB
18643 #ifdef I_STDLIB
18644 #include <stdlib.h>
18645 #endif
18646 int main() { printf("%d\n", bar1()); exit(0); }
18647 EOP
18648 $cc $ccflags -c bar1.c >/dev/null 2>&1
18649 $cc $ccflags -c bar2.c >/dev/null 2>&1
18650 $cc $ccflags -c foo.c >/dev/null 2>&1
18651 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
18652 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18653         $run ./foobar >/dev/null 2>&1; then
18654         echo "$ar appears to generate random libraries itself."
18655         orderlib=false
18656         ranlib=":"
18657 elif $ar ts bar$_a >/dev/null 2>&1 &&
18658         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18659         $run ./foobar >/dev/null 2>&1; then
18660                 echo "a table of contents needs to be added with '$ar ts'."
18661                 orderlib=false
18662                 ranlib="$ar ts"
18663 else
18664         case "$ranlib" in
18665         :) ranlib='';;
18666         '')
18667                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18668                 $test -f $ranlib || ranlib=''
18669                 ;;
18670         esac
18671         if $test -n "$ranlib"; then
18672                 echo "your system has '$ranlib'; we'll use that."
18673                 orderlib=false
18674         else
18675                 echo "your system doesn't seem to support random libraries"
18676                 echo "so we'll use lorder and tsort to order the libraries."
18677                 orderlib=true
18678                 ranlib=":"
18679         fi
18680 fi
18681 $rm -f foo* bar* 
18682
18683 : check for type of arguments to select. 
18684 case "$selecttype" in
18685 '') case "$d_select" in
18686         $define)
18687                 echo " "
18688                 $cat <<EOM
18689 Checking to see what type of arguments are accepted by select().
18690 EOM
18691                 hdrs="$define sys/types.h
18692                         $i_systime sys/time.h 
18693                         $i_sysselct sys/select.h
18694                         $d_socket sys/socket.h"
18695                 : The first arg can be int, unsigned, or size_t
18696                 : The last arg may or may not be 'const'
18697                 val=''
18698                 : void pointer has been seen but using that
18699                 : breaks the selectminbits test
18700                 for xxx in 'fd_set *' 'int *'; do
18701                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18702                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18703                                         case "$val" in
18704                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18705                                                 if ./protochk "$try" $hdrs; then
18706                                                         echo "Your system accepts $xxx."
18707                                                         val="$xxx"
18708                                                 fi
18709                                                 ;;
18710                                         esac
18711                                 done
18712                         done
18713                 done
18714                 case "$val" in
18715                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18716                         case "$d_fd_set" in
18717                                 $define) dflt="fd_set *" ;;
18718                                 *)              dflt="int *" ;;
18719                         esac
18720                         . ./myread
18721                         val=$ans
18722                         ;;
18723                 esac
18724                 selecttype="$val"
18725                 ;;
18726         *)      : no select, so pick a harmless default
18727                 selecttype='int *'
18728                 ;;
18729         esac
18730         ;;
18731 esac
18732
18733 : check for the select 'width'
18734 case "$selectminbits" in
18735 '') safebits=`expr $ptrsize \* 8`
18736     case "$d_select" in
18737         $define)
18738                 $cat <<EOM
18739
18740 Checking to see on how many bits at a time your select() operates...
18741 EOM
18742                 $cat >try.c <<EOCP
18743 #include <sys/types.h>
18744 #$i_time I_TIME
18745 #$i_systime I_SYS_TIME
18746 #$i_systimek I_SYS_TIME_KERNEL
18747 #ifdef I_TIME
18748 #   include <time.h>
18749 #endif
18750 #ifdef I_SYS_TIME
18751 #   ifdef I_SYS_TIME_KERNEL
18752 #       define KERNEL
18753 #   endif
18754 #   include <sys/time.h>
18755 #   ifdef I_SYS_TIME_KERNEL
18756 #       undef KERNEL
18757 #   endif
18758 #endif
18759 #$i_sysselct I_SYS_SELECT
18760 #ifdef I_SYS_SELECT
18761 #include <sys/select.h>
18762 #endif
18763 #$d_socket HAS_SOCKET
18764 #ifdef HAS_SOCKET
18765 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18766 #endif
18767 #include <stdio.h>
18768 #$i_stdlib I_STDLIB
18769 #ifdef I_STDLIB
18770 #include <stdlib.h>
18771 #endif
18772 $selecttype b;
18773 #define S sizeof(*(b))
18774 #define MINBITS 64
18775 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18776 #define NBITS  (NBYTES * 8)
18777 int main() {
18778     char *s = malloc(NBYTES);
18779     struct timeval t;
18780     int i;
18781     FILE* fp;
18782     int fd;
18783
18784     if (!s)
18785         exit(1);
18786     fclose(stdin);
18787     fp = fopen("try.c", "r");
18788     if (fp == 0)
18789       exit(2);
18790     fd = fileno(fp);
18791     if (fd < 0)
18792       exit(3);
18793     b = ($selecttype)s;
18794     for (i = 0; i < NBITS; i++)
18795         FD_SET(i, b);
18796     t.tv_sec  = 0;
18797     t.tv_usec = 0;
18798     select(fd + 1, b, 0, 0, &t);
18799     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18800     free(s);
18801     printf("%d\n", i + 1);
18802     return 0;
18803 }
18804 EOCP
18805                 set try
18806                 if eval $compile_ok; then
18807                         selectminbits=`$run ./try`
18808                         case "$selectminbits" in
18809                         '')     cat >&4 <<EOM
18810 Cannot figure out on how many bits at a time your select() operates.
18811 I'll play safe and guess it is $safebits bits.
18812 EOM
18813                                 selectminbits=$safebits
18814                                 bits="$safebits bits"
18815                                 ;;
18816                         1)      bits="1 bit" ;;
18817                         *)      bits="$selectminbits bits" ;;
18818                         esac
18819                         echo "Your select() operates on $bits at a time." >&4
18820                 else
18821                         rp='What is the minimum number of bits your select() operates on?'
18822                         case "$byteorder" in
18823                         12345678)       dflt=64 ;;
18824                         1234)           dflt=32 ;;
18825                         *)              dflt=1  ;;
18826                         esac
18827                         . ./myread
18828                         val=$ans
18829                         selectminbits="$val"
18830                 fi
18831                 $rm -f try.* try
18832                 ;;
18833         *)      : no select, so pick a harmless default
18834                 selectminbits=$safebits
18835                 ;;
18836         esac
18837         ;;
18838 esac
18839
18840 : Trace out the files included by signal.h, then look for SIGxxx names.
18841 : Remove SIGARRAYSIZE used by HPUX.
18842 : Remove SIGSTKSIZE used by Linux.
18843 : Remove SIGSTKSZ used by Posix.
18844 : Remove SIGTYP void lines used by OS2.
18845 : Some cpps, like os390, dont give the file name anywhere
18846 if [ "X$fieldn" = X ]; then
18847         : Just make some guesses.  We check them later.
18848         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18849 else
18850         xxx=`echo '#include <signal.h>' |
18851         $cppstdin $cppminus $cppflags 2>/dev/null |
18852         $grep '^[       ]*#.*include' | 
18853         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18854 fi
18855 : Check this list of files to be sure we have parsed the cpp output ok.
18856 : This will also avoid potentially non-existent files, such 
18857 : as ../foo/bar.h
18858 xxxfiles=''
18859 for xx in $xxx /dev/null ; do
18860         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18861 done
18862 : If we have found no files, at least try signal.h
18863 case "$xxxfiles" in
18864 '')     xxxfiles=`./findhdr signal.h` ;;
18865 esac
18866 xxx=`awk '
18867 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18868         print substr($2, 4, 20)
18869 }
18870 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18871         print substr($3, 4, 20)
18872 }' $xxxfiles`
18873 : Append some common names just in case the awk scan failed.
18874 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18875 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18876 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18877 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18878 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18879
18880 : generate a few handy files for later
18881 $cat > signal.c <<EOCP
18882 #include <sys/types.h>
18883 #include <signal.h>
18884 #$i_stdlib I_STDLIB
18885 #ifdef I_STDLIB
18886 #include <stdlib.h>
18887 #endif
18888 #include <stdio.h>
18889 int main() {
18890
18891 /* Strange style to avoid deeply-nested #if/#else/#endif */
18892 #ifndef NSIG
18893 #  ifdef _NSIG
18894 #    define NSIG (_NSIG)
18895 #  endif
18896 #endif
18897
18898 #ifndef NSIG
18899 #  ifdef SIGMAX
18900 #    define NSIG (SIGMAX+1)
18901 #  endif
18902 #endif
18903
18904 #ifndef NSIG
18905 #  ifdef SIG_MAX
18906 #    define NSIG (SIG_MAX+1)
18907 #  endif
18908 #endif
18909
18910 #ifndef NSIG
18911 #  ifdef MAXSIG
18912 #    define NSIG (MAXSIG+1)
18913 #  endif
18914 #endif
18915
18916 #ifndef NSIG
18917 #  ifdef MAX_SIG
18918 #    define NSIG (MAX_SIG+1)
18919 #  endif
18920 #endif
18921
18922 #ifndef NSIG
18923 #  ifdef SIGARRAYSIZE
18924 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18925 #  endif
18926 #endif
18927
18928 #ifndef NSIG
18929 #  ifdef _sys_nsig
18930 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
18931 #  endif
18932 #endif
18933
18934 /* Default to some arbitrary number that's big enough to get most
18935    of the common signals.
18936 */
18937 #ifndef NSIG
18938 #    define NSIG 50
18939 #endif
18940
18941 printf("NSIG %d\n", NSIG);
18942
18943 #ifndef JUST_NSIG
18944
18945 EOCP
18946
18947 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
18948 {
18949         printf "#ifdef SIG"; printf $1; printf "\n"
18950         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
18951         printf $1; printf ");\n"
18952         printf "#endif\n"
18953 }
18954 END {
18955         printf "#endif /* JUST_NSIG */\n";
18956         printf "exit(0);\n}\n";
18957 }
18958 ' >>signal.c
18959 $cat >signal.awk <<'EOP'
18960 BEGIN { ndups = 0 }
18961 $1 ~ /^NSIG$/ { nsig = $2 }
18962 ($1 !~ /^NSIG$/) && (NF == 2) && ($2 ~ /^[0-9][0-9]*$/) {
18963     if ($2 > maxsig) { maxsig = $2 }
18964     if (sig_name[$2]) {
18965         dup_name[ndups] = $1
18966         dup_num[ndups] = $2
18967         ndups++ 
18968     }
18969     else {
18970         sig_name[$2] = $1
18971         sig_num[$2] = $2
18972     }
18973 }
18974 END { 
18975     if (nsig == 0) {
18976         nsig = maxsig + 1
18977     }
18978     printf("NSIG %d\n", nsig);
18979     for (n = 1; n < nsig; n++) {
18980         if (sig_name[n]) {
18981             printf("%s %d\n", sig_name[n], sig_num[n])
18982         }
18983         else {
18984             printf("NUM%d %d\n", n, n) 
18985         }
18986     }
18987     for (n = 0; n < ndups; n++) {
18988         printf("%s %d\n", dup_name[n], dup_num[n])
18989     }
18990 }
18991 EOP
18992 $cat >signal_cmd <<EOS
18993 $startsh
18994 if $test -s signal.lst; then
18995     echo "Using your existing signal.lst file"
18996         exit 0
18997 fi
18998 xxx="$xxx"
18999 EOS
19000 $cat >>signal_cmd <<'EOS'
19001
19002 set signal
19003 if eval $compile_ok; then
19004         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
19005 else
19006         echo "(I can't seem be able to compile the whole test program)" >&4
19007         echo "(I'll try it in little pieces.)" >&4
19008         set signal -DJUST_NSIG
19009         if eval $compile_ok; then
19010                 $run ./signal$_exe > signal.nsg
19011                 $cat signal.nsg
19012         else
19013                 echo "I can't seem to figure out how many signals you have." >&4
19014                 echo "Guessing 50." >&4
19015                 echo 'NSIG 50' > signal.nsg
19016         fi
19017         : Now look at all the signal names, one at a time.
19018         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
19019                 $cat > signal.c <<EOCP
19020 #include <sys/types.h>
19021 #include <signal.h>
19022 #include <stdio.h>
19023 int main() {
19024 printf("$xx %d\n", SIG${xx});
19025 return 0;
19026 }
19027 EOCP
19028                 set signal
19029                 if eval $compile; then
19030                         echo "SIG${xx} found."
19031                         $run ./signal$_exe  >> signal.ls1
19032                 else
19033                         echo "SIG${xx} NOT found."
19034                 fi
19035         done
19036         if $test -s signal.ls1; then
19037                 $cat signal.nsg signal.ls1 |
19038                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
19039         fi
19040
19041 fi
19042 if $test -s signal.lst; then
19043         :
19044 else
19045         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
19046         echo 'kill -l' >signal
19047         set X `csh -f <signal`
19048         $rm -f signal
19049         shift
19050         case $# in
19051         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
19052         esac
19053         echo $@ | $tr ' ' $trnl | \
19054             $awk '{ printf "%s %d\n", $1, ++s; }
19055                   END { printf "NSIG %d\n", ++s }' >signal.lst
19056 fi
19057 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
19058 EOS
19059 chmod a+x signal_cmd
19060 $eunicefix signal_cmd
19061
19062 : generate list of signal names
19063 echo " "
19064 case "$sig_name_init" in
19065 '') doinit=yes ;;
19066 *)  case "$sig_num_init" in
19067     ''|*,*) doinit=yes ;;
19068     esac ;;
19069 esac
19070 case "$doinit" in
19071 yes)
19072         echo "Generating a list of signal names and numbers..." >&4
19073         . ./signal_cmd
19074         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
19075         sig_name=`$awk 'BEGIN { printf "ZERO " }
19076                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
19077         sig_num=`$awk  'BEGIN { printf "0 " }
19078                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
19079         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
19080                              !/^NSIG/   { printf "\"%s\", ", $1 }
19081                              END        { printf "0\n" }' signal.lst`
19082         sig_num_init=`$awk  'BEGIN      { printf "0, " }
19083                              !/^NSIG/   { printf "%d, ", $2}
19084                              END        { printf "0\n"}' signal.lst`
19085         ;;
19086 esac
19087 echo "The following $sig_count signals are available:"
19088 echo " "
19089 echo $sig_name | $awk \
19090 'BEGIN { linelen = 0 }
19091 {
19092         for (i = 1; i <= NF; i++) {
19093                 name = "SIG" $i " "
19094                 linelen = linelen + length(name)
19095                 if (linelen > 70) {
19096                         printf "\n"
19097                         linelen = length(name)
19098                 }
19099                 printf "%s", name
19100         }
19101         printf "\n"
19102 }'
19103 sig_size=`echo $sig_name | awk '{print NF}'`
19104 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
19105
19106 echo " "
19107 case "$sizetype" in
19108 *_t) zzz="$sizetype"    ;;
19109 *)   zzz="filesize"     ;;
19110 esac
19111 echo "Checking the size of $zzz..." >&4 
19112 cat > try.c <<EOCP
19113 #include <sys/types.h>
19114 #include <stdio.h>
19115 #$i_stdlib I_STDLIB
19116 #ifdef I_STDLIB
19117 #include <stdlib.h>
19118 #endif
19119 int main() {
19120     printf("%d\n", (int)sizeof($sizetype));
19121     exit(0);
19122 }
19123 EOCP
19124 set try
19125 if eval $compile_ok; then
19126         yyy=`$run ./try`
19127         case "$yyy" in
19128         '')     sizesize=4
19129                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
19130                 ;;
19131         *)      sizesize=$yyy
19132                 echo "Your $zzz size is $sizesize bytes."
19133                 ;;
19134         esac
19135 else
19136         sizesize=4
19137         echo "(I can't compile the test program--guessing $sizesize.)" >&4
19138 fi
19139
19140
19141 : check for socklen_t
19142 echo " "
19143 echo "Checking to see if you have socklen_t..." >&4
19144 $cat >try.c <<EOCP
19145 #include <sys/types.h>
19146 #$d_socket HAS_SOCKET
19147 #ifdef HAS_SOCKET
19148 #include <sys/socket.h>
19149 #endif
19150 int main() { socklen_t x = 16; }
19151 EOCP
19152 set try
19153 if eval $compile; then
19154         val="$define"
19155         echo "You have socklen_t."
19156 else
19157         val="$undef"
19158         echo "You do not have socklen_t."
19159         case "$sizetype" in
19160         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
19161         esac
19162 fi
19163 $rm -f try try.*
19164 set d_socklen_t
19165 eval $setvar
19166
19167 : see if this is a socks.h system
19168 set socks.h i_socks
19169 eval $inhdr
19170
19171 : check for type of the size argument to socket calls
19172 case "$d_socket" in
19173 "$define")
19174         $cat <<EOM
19175
19176 Checking to see what type is the last argument of accept().
19177 EOM
19178         yyy=''
19179         case "$d_socklen_t" in
19180         "$define") yyy="$yyy socklen_t"
19181         esac
19182         yyy="$yyy $sizetype int long unsigned"
19183         for xxx in $yyy; do
19184                 case "$socksizetype" in
19185                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
19186                         case "$usesocks" in
19187                         "$define")
19188                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
19189                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19190                                         socksizetype="$xxx"
19191                                 fi
19192                                 ;;
19193                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
19194                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19195                                         socksizetype="$xxx"
19196                                 fi
19197                                 ;;
19198                         esac
19199                         ;;
19200                 esac
19201         done
19202 : In case none of those worked, prompt the user.
19203         case "$socksizetype" in
19204         '')     rp='What is the type for socket address structure sizes?'
19205                 dflt='int'
19206                 . ./myread
19207                 socksizetype=$ans
19208                 ;;
19209         esac
19210         ;;
19211 *)      : no sockets, so pick relatively harmless default
19212         socksizetype='int'
19213         ;;
19214 esac
19215
19216 : see what type is used for signed size_t
19217 set ssize_t ssizetype int stdio.h sys/types.h
19218 eval $typedef
19219 dflt="$ssizetype"
19220 $cat > try.c <<EOM
19221 #include <stdio.h>
19222 #$i_stdlib I_STDLIB
19223 #ifdef I_STDLIB
19224 #include <stdlib.h>
19225 #endif
19226 #include <sys/types.h>
19227 #define Size_t $sizetype
19228 #define SSize_t $dflt
19229 int main()
19230 {
19231         if (sizeof(Size_t) == sizeof(SSize_t))
19232                 printf("$dflt\n");
19233         else if (sizeof(Size_t) == sizeof(int))
19234                 printf("int\n");
19235         else 
19236                 printf("long\n");
19237         exit(0);
19238 }
19239 EOM
19240 echo " "
19241 set try
19242 if eval $compile_ok && $run ./try > /dev/null; then
19243         ssizetype=`$run ./try`
19244         echo "I'll be using $ssizetype for functions returning a byte count." >&4
19245 else
19246         $cat >&4 <<EOM
19247 Help! I can't compile and run the ssize_t test program: please enlighten me!
19248 (This is probably a misconfiguration in your system or libraries, and
19249 you really ought to fix it.  Still, I'll try anyway.)
19250
19251 I need a type that is the same size as $sizetype, but is guaranteed to
19252 be signed.  Common values are ssize_t, int and long.
19253
19254 EOM
19255         rp="What signed type is the same size as $sizetype?"
19256         . ./myread
19257         ssizetype="$ans"
19258 fi
19259 $rm -f try try.*
19260
19261 : see what type of char stdio uses.
19262 echo " "
19263 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
19264 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
19265         echo "Your stdio uses unsigned chars." >&4
19266         stdchar="unsigned char"
19267 else
19268         echo "Your stdio uses signed chars." >&4
19269         stdchar="char"
19270 fi
19271 $rm -f stdioh
19272
19273
19274
19275 : see what type uids are declared as in the kernel
19276 echo " "
19277 echo "Looking for the type for user ids returned by getuid()."
19278 set uid_t uidtype xxx stdio.h sys/types.h
19279 eval $typedef
19280 case "$uidtype" in
19281 xxx)
19282         xxx=`./findhdr sys/user.h`
19283         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
19284         case $1 in
19285         unsigned) dflt="$1 $2" ;;
19286         *) dflt="$1" ;;
19287         esac
19288         ;;
19289 *) dflt="$uidtype";;
19290 esac
19291 case "$uidtype" in
19292 uid_t)  echo "uid_t found." ;;
19293 *)      rp="What is the type for user ids returned by getuid()?"
19294         . ./myread
19295         uidtype="$ans"
19296         ;;
19297 esac
19298
19299 echo " "
19300 case "$uidtype" in
19301 *_t) zzz="$uidtype"     ;;
19302 *)   zzz="uid"          ;;
19303 esac
19304 echo "Checking the size of $zzz..." >&4 
19305 cat > try.c <<EOCP
19306 #include <sys/types.h>
19307 #include <stdio.h>
19308 #$i_stdlib I_STDLIB
19309 #ifdef I_STDLIB
19310 #include <stdlib.h>
19311 #endif
19312 int main() {
19313     printf("%d\n", (int)sizeof($uidtype));
19314     exit(0);
19315 }
19316 EOCP
19317 set try
19318 if eval $compile_ok; then
19319         yyy=`$run ./try`
19320         case "$yyy" in
19321         '')     uidsize=4
19322                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
19323                 ;;
19324         *)      uidsize=$yyy
19325                 echo "Your $zzz is $uidsize bytes long."
19326                 ;;
19327         esac
19328 else
19329         uidsize=4
19330         echo "(I can't compile the test program--guessing $uidsize.)" >&4
19331 fi
19332
19333 echo " "
19334 case "$uidtype" in
19335 *_t) zzz="$uidtype"     ;;
19336 *)   zzz="uid"          ;;
19337 esac
19338 echo "Checking the sign of $zzz..." >&4
19339 cat > try.c <<EOCP
19340 #include <sys/types.h>
19341 #include <stdio.h>
19342 int main() {
19343         $uidtype foo = -1;
19344         if (foo < 0)
19345                 printf("-1\n");
19346         else
19347                 printf("1\n");
19348 }
19349 EOCP
19350 set try
19351 if eval $compile; then
19352         yyy=`$run ./try`
19353         case "$yyy" in
19354         '')     uidsign=1
19355                 echo "(I can't execute the test program--guessing unsigned.)" >&4
19356                 ;;
19357         *)      uidsign=$yyy
19358                 case "$uidsign" in
19359                  1) echo "Your $zzz is unsigned." ;;
19360                 -1) echo "Your $zzz is signed."   ;;
19361                 esac
19362                 ;;
19363         esac
19364 else
19365         uidsign=1
19366         echo "(I can't compile the test program--guessing unsigned.)" >&4
19367 fi
19368
19369
19370
19371 echo " "
19372 $echo "Checking the format string to be used for uids..." >&4
19373
19374 case "$uidsign" in
19375 -1)     if $test X"$uidsize" = X"$ivsize"; then
19376                 uidformat="$ivdformat"
19377         else
19378                 if $test X"$uidsize" = X"$longsize"; then
19379                         uidformat='"ld"'
19380                 else
19381                         if $test X"$uidsize" = X"$intsize"; then
19382                                 uidformat='"d"'
19383                         else
19384                                 if $test X"$uidsize" = X"$shortsize"; then
19385                                         uidformat='"hd"'
19386                                 fi
19387                         fi
19388                 fi
19389         fi
19390         ;;
19391 *)      if $test X"$uidsize" = X"$uvsize"; then
19392                 uidformat="$uvuformat"
19393         else
19394                 if $test X"$uidsize" = X"$longsize"; then
19395                         uidformat='"lu"'
19396                 else
19397                         if $test X"$uidsize" = X"$intsize"; then
19398                                 uidformat='"u"'
19399                         else
19400                                 if $test X"$uidsize" = X"$shortsize"; then
19401                                         uidformat='"hu"'
19402                                 fi
19403                         fi
19404                 fi
19405         fi
19406         ;;
19407 esac
19408
19409 : determine compiler compiler
19410 case "$yacc" in
19411 '')
19412         dflt=yacc;;
19413 *)
19414         dflt="$yacc";;
19415 esac
19416 echo " "
19417 comp='yacc'
19418 if $test -f "$byacc$_exe"; then
19419         dflt="$byacc"
19420         comp="byacc or $comp"
19421 fi
19422 if $test -f "$bison$_exe"; then
19423         comp="$comp or bison -y"
19424 fi
19425 rp="Which compiler compiler ($comp) shall I use?"
19426 . ./myread
19427 yacc="$ans"
19428 case "$yacc" in
19429 *bis*)
19430         case "$yacc" in
19431         *-y*) ;;
19432         *)
19433                 yacc="$yacc -y"
19434                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
19435                 ;;
19436         esac
19437         ;;
19438 esac
19439
19440 : see if this is a fp.h system
19441 set fp.h i_fp
19442 eval $inhdr
19443
19444 : see if this is a fp_class.h system
19445 set fp_class.h i_fp_class
19446 eval $inhdr
19447
19448 : see if this is a ieeefp.h system
19449 case "$i_ieeefp" in
19450 '' ) set ieeefp.h i_ieeefp
19451      eval $inhdr
19452      ;;
19453 esac
19454
19455 : see if this is a libutil.h system
19456 set libutil.h i_libutil
19457 eval $inhdr
19458
19459 : see if mach cthreads are available
19460 if test "X$usethreads" = "X$define"; then
19461         set mach/cthreads.h i_machcthr
19462         eval $inhdr
19463 else
19464         i_machcthr="$undef"
19465 fi
19466
19467
19468
19469 : see if this is a math.h system
19470 set math.h i_math
19471 eval $inhdr
19472
19473 : see if this is a mntent.h system
19474 set mntent.h i_mntent
19475 eval $inhdr
19476
19477 : see if ndbm.h is available
19478 set ndbm.h t_ndbm
19479 eval $inhdr
19480
19481 case "$t_ndbm" in
19482 $undef)
19483     # Some Linux distributions such as RedHat 7.1 put the
19484     # ndbm.h header in /usr/include/gdbm/ndbm.h.
19485     if $test -f /usr/include/gdbm/ndbm.h; then
19486         echo '<gdbm/ndbm.h> found.'
19487         ccflags="$ccflags -I/usr/include/gdbm"
19488         cppflags="$cppflags -I/usr/include/gdbm"
19489         t_ndbm=$define
19490     fi
19491     ;;
19492 esac
19493
19494 case "$t_ndbm" in
19495 $define)
19496         : see if dbm_open exists
19497         set dbm_open d_dbm_open
19498         eval $inlibc
19499         case "$d_dbm_open" in
19500         $undef)
19501                 t_ndbm="$undef"
19502                 echo "We won't be including <ndbm.h>"
19503                 ;;
19504         esac
19505         ;;
19506 esac
19507 val="$t_ndbm"
19508 set i_ndbm
19509 eval $setvar
19510
19511 : see if net/errno.h is available
19512 val=''
19513 set net/errno.h val
19514 eval $inhdr
19515
19516 : Unfortunately, it causes problems on some systems.  Arrgh.
19517 case "$val" in
19518 $define)
19519         cat > try.c <<'EOM'
19520 #include <stdio.h>
19521 #include <errno.h>
19522 #include <net/errno.h>
19523 int func()
19524 {
19525         return ENOTSOCK;
19526 }
19527 EOM
19528         if $cc $ccflags -c try.c >/dev/null 2>&1; then
19529                 echo "We'll be including <net/errno.h>." >&4
19530         else
19531                 echo "We won't be including <net/errno.h>." >&4
19532                 val="$undef"
19533         fi
19534         $rm -f try.* try
19535         ;;
19536 esac
19537 set i_neterrno
19538 eval $setvar
19539
19540 : see if netinet/tcp.h is available
19541 set netinet/tcp.h i_netinettcp
19542 eval $inhdr
19543
19544 : see if this is a poll.h system
19545 set poll.h i_poll
19546 eval $inhdr
19547
19548 : see if this is a prot.h system
19549 set prot.h i_prot
19550 eval $inhdr
19551
19552 echo " "
19553 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
19554 $cat <<'EOSH' > Cppsym.know
19555 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
19556 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
19557 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
19558 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
19559 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
19560 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
19561 bull c cadmus clipper CMU COFF COMPILER_VERSION
19562 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
19563 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
19564 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
19565 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
19566 GLIBC GLIBC_MINOR
19567 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
19568 H3050R H3050RX hbullx20 hcx host_mips
19569 hp200 hp300 hp700 HP700 hp800 hp9000
19570 hp9000s200 hp9000s300 hp9000s400 hp9000s500
19571 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
19572 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
19573 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
19574 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
19575 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
19576 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
19577 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
19578 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
19579 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
19580 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
19581 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
19582 MATH_HAS_NO_SIDE_EFFECTS
19583 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
19584 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
19585 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
19586 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
19587 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
19588 NetBSD news1500 news1700 news1800 news1900 news3700
19589 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
19590 ns32016 ns32332 ns32k nsc32000
19591 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
19592 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
19593 pc532 pdp11 PGC PIC plexus PORTAR posix
19594 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
19595 POSIX_C_SOURCE POSIX_SOURCE POWER
19596 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
19597 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
19598 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
19599 sony sony_news sonyrisc sparc sparclite spectrum
19600 stardent stdc STDC_EXT stratos sun sun3 sun386
19601 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
19602 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
19603 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
19604 sysV68 sysV88 Tek4132 Tek4300 titan
19605 TM3200 TM5400 TM5600
19606 tower tower32 tower32_200 tower32_600 tower32_700
19607 tower32_800 tower32_850 tss
19608 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
19609 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
19610 unix UNIX95 UNIX99 unixpc unos
19611 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
19612 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
19613 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
19614 USGr4 USGr4_2
19615 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
19616 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
19617 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
19618 z8000
19619 EOSH
19620 # Maybe put other stuff here too.
19621 cat <<EOSH >>Cppsym.know
19622 $osname
19623 EOSH
19624 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
19625 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
19626 $cat Cppsym.know > Cppsym.c
19627 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
19628 $rm -f Cppsym.a Cppsym.b Cppsym.c
19629 cat <<EOSH > Cppsym
19630 $startsh
19631 if $test \$# -gt 0; then
19632     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
19633     if $test -s Cppsym.got; then
19634         $rm -f Cppsym.got
19635         exit 0
19636     fi
19637     $rm -f Cppsym.got
19638     exit 1
19639 else
19640     $tr " " "$trnl" | ./Cppsym.try
19641     exit 0
19642 fi
19643 EOSH
19644 chmod +x Cppsym
19645 $eunicefix Cppsym
19646 cat <<EOSH > Cppsym.try
19647 $startsh
19648 cat <<'EOCP' > try.c
19649 #include <stdio.h>
19650 int main() {
19651 EOCP
19652 $awk \\
19653 EOSH
19654 cat <<'EOSH' >> Cppsym.try
19655 'length($1) > 0 {
19656     printf "#ifdef %s\n#if %s+0\nprintf(\"%s=%%ld\\n\", (long)%s);\n#else\nprintf(\"%s\\n\");\n#endif\n#endif\n", $1, $1, $1, $1, $1
19657     printf "#ifdef _%s\n#if _%s+0\nprintf(\"_%s=%%ld\\n\", (long)_%s);\n#else\nprintf(\"_%s\\n\");\n#endif\n#endif\n", $1, $1, $1, $1, $1
19658     printf "#ifdef __%s\n#if __%s+0\nprintf(\"__%s=%%ld\\n\", (long)__%s);\n#else\nprintf(\"__%s\\n\");\n#endif\n#endif\n", $1, $1, $1, $1, $1
19659     printf "#ifdef __%s__\n#if __%s__+0\nprintf(\"__%s__=%%ld\\n\", (long)__%s__);\n#else\nprintf(\"__%s__\\n\");\n#endif\n#endif\n", $1, $1, $1, $1, $1
19660 }'       >> try.c
19661 echo 'return 0;}' >> try.c
19662 EOSH
19663 cat <<EOSH >> Cppsym.try
19664 ccflags="$ccflags"
19665 case "$osname-$gccversion" in
19666 irix-) ccflags="\$ccflags -woff 1178" ;;
19667 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
19668 esac
19669 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
19670 EOSH
19671 chmod +x Cppsym.try
19672 $eunicefix Cppsym.try
19673 ./Cppsym < Cppsym.know > Cppsym.true
19674 : now check the C compiler for additional symbols
19675 postprocess_cc_v=''
19676 case "$osname" in
19677 aix) postprocess_cc_v="|$tr , ' '" ;;
19678 esac
19679 $cat >ccsym <<EOS
19680 $startsh
19681 $cat >tmp.c <<EOF
19682 extern int foo;
19683 EOF
19684 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
19685 do
19686         case "\$i" in
19687         -D*) echo "\$i" | $sed 's/^-D//';;
19688         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
19689         esac
19690 done
19691 $rm -f try.c
19692 EOS
19693 postprocess_cc_v=''
19694 chmod +x ccsym
19695 $eunicefix ccsym
19696 ./ccsym > ccsym1.raw
19697 if $test -s ccsym1.raw; then
19698        $sort ccsym1.raw | $uniq >ccsym.raw
19699 else
19700        mv ccsym1.raw ccsym.raw
19701 fi
19702
19703 $awk '/\=/ { print $0; next }
19704         { print $0"=1" }' ccsym.raw >ccsym.list
19705 $awk '/\=/ { print $0; next }
19706         { print $0"=1" }' Cppsym.true >ccsym.true
19707 $comm -13 ccsym.true ccsym.list >ccsym.own
19708 $comm -12 ccsym.true ccsym.list >ccsym.com
19709 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19710 also=''
19711 if $test -z ccsym.raw; then
19712         echo "Your C compiler doesn't seem to define any symbols!" >&4
19713         echo " "
19714         echo "However, your C preprocessor defines the following symbols:"
19715         $cat Cppsym.true
19716         ccsymbols=''
19717         cppsymbols=`$cat Cppsym.true`
19718         cppsymbols=`echo $cppsymbols`
19719         cppccsymbols="$cppsymbols"
19720 else
19721         if $test -s ccsym.com; then
19722                 echo "Your C compiler and pre-processor define these symbols:"
19723                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19724                 also='also '
19725                 symbols='ones'
19726                 cppccsymbols=`$cat ccsym.com`
19727                 cppccsymbols=`echo $cppccsymbols`
19728                 $test "$silent" || sleep 1
19729         fi
19730         if $test -s ccsym.cpp; then
19731                 $test "$also" && echo " "
19732                 echo "Your C pre-processor ${also}defines the following symbols:"
19733                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19734                 also='further '
19735                 cppsymbols=`$cat ccsym.cpp`
19736                 cppsymbols=`echo $cppsymbols`
19737                 $test "$silent" || sleep 1
19738         fi
19739         if $test -s ccsym.own; then
19740                 $test "$also" && echo " "
19741                 echo "Your C compiler ${also}defines the following cpp symbols:"
19742                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19743                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19744                 ccsymbols=`$cat ccsym.own`
19745                 ccsymbols=`echo $ccsymbols`
19746                 $test "$silent" || sleep 1
19747         fi
19748 fi
19749
19750 : see if this is a termio system
19751 val="$undef"
19752 val2="$undef"
19753 val3="$undef"
19754 if $test `./findhdr termios.h`; then
19755         set tcsetattr i_termios
19756         eval $inlibc
19757         val3="$i_termios"
19758 fi
19759 echo " "
19760 case "$val3" in
19761 "$define") echo "You have POSIX termios.h... good!" >&4;;
19762 *) if ./Cppsym pyr; then
19763                 case "`/bin/universe`" in
19764                 ucb) if $test `./findhdr sgtty.h`; then
19765                                 val2="$define"
19766                                 echo "<sgtty.h> found." >&4
19767                         else
19768                                 echo "System is pyramid with BSD universe."
19769                                 echo "<sgtty.h> not found--you could have problems." >&4
19770                         fi;;
19771                 *) if $test `./findhdr termio.h`; then
19772                                 val="$define"
19773                                 echo "<termio.h> found." >&4
19774                         else
19775                                 echo "System is pyramid with USG universe."
19776                                 echo "<termio.h> not found--you could have problems." >&4
19777                         fi;;
19778                 esac
19779         elif ./usg; then
19780                 if $test `./findhdr termio.h`; then
19781                         echo "<termio.h> found." >&4
19782                         val="$define"
19783                 elif $test `./findhdr sgtty.h`; then
19784                         echo "<sgtty.h> found." >&4
19785                         val2="$define"
19786                 else
19787 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19788                 fi
19789         else
19790                 if $test `./findhdr sgtty.h`; then
19791                         echo "<sgtty.h> found." >&4
19792                         val2="$define"
19793                 elif $test `./findhdr termio.h`; then
19794                         echo "<termio.h> found." >&4
19795                         val="$define"
19796                 else
19797 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19798                 fi
19799         fi;;
19800 esac
19801 set i_termio; eval $setvar
19802 val=$val2; set i_sgtty; eval $setvar
19803 val=$val3; set i_termios; eval $setvar
19804
19805 : see if stddef is available
19806 set stddef.h i_stddef
19807 eval $inhdr
19808
19809 : see if this is a sunmath.h system
19810 set sunmath.h i_sunmath
19811 eval $inhdr
19812
19813 : see if sys/access.h is available
19814 set sys/access.h i_sysaccess
19815 eval $inhdr
19816
19817 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19818 set sys/filio.h i_sysfilio
19819 eval $inhdr
19820 echo " "
19821 if $test `./findhdr sys/ioctl.h`; then
19822         val="$define"
19823         echo '<sys/ioctl.h> found.' >&4
19824 else
19825         val="$undef"
19826         if $test $i_sysfilio = "$define"; then
19827             echo '<sys/ioctl.h> NOT found.' >&4
19828         else
19829                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19830                 $test $i_termio = "$define" && xxx="termio.h"
19831                 $test $i_termios = "$define" && xxx="termios.h"
19832 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19833         fi
19834 fi
19835 set i_sysioctl
19836 eval $setvar
19837
19838 : see if socket ioctl defs are in sys/sockio.h
19839 echo " "
19840 xxx=`./findhdr sys/sockio.h`
19841 if $test "$xxx"; then
19842         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19843                 val="$define"
19844                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19845         else
19846                 val="$undef"
19847                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19848         fi
19849 else
19850         val="$undef"
19851         $cat <<EOM
19852 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19853 EOM
19854 fi
19855 set i_syssockio
19856 eval $setvar
19857
19858
19859 : see if this is a syslog.h system
19860 set syslog.h i_syslog
19861 eval $inhdr
19862
19863
19864 : see if this is a sys/mode.h system
19865 set sys/mode.h i_sysmode
19866 eval $inhdr
19867
19868 : see if sys/resource.h has to be included
19869 set sys/resource.h i_sysresrc
19870 eval $inhdr
19871
19872 : see if sys/security.h is available
19873 set sys/security.h i_syssecrt
19874 eval $inhdr
19875
19876 : see if this is a sys/statvfs.h system
19877 set sys/statvfs.h i_sysstatvfs
19878 eval $inhdr
19879
19880 : see if this is a sys/un.h system
19881 set sys/un.h i_sysun
19882 eval $inhdr
19883
19884
19885 : see if this is a sys/utsname.h system
19886 set sys/utsname.h i_sysutsname
19887 eval $inhdr
19888
19889 : see if this is a syswait system
19890 set sys/wait.h i_syswait
19891 eval $inhdr
19892
19893 : see if this is a ustat.h system
19894 set ustat.h i_ustat
19895 eval $inhdr
19896
19897 : see if this is an utime system
19898 set utime.h i_utime
19899 eval $inhdr
19900
19901 : see if this is a values.h system
19902 set values.h i_values
19903 eval $inhdr
19904
19905 : see if this is a vfork system
19906 case "$d_vfork" in
19907 "$define")
19908         set vfork.h i_vfork
19909         eval $inhdr
19910         ;;
19911 *)
19912         i_vfork="$undef"
19913         ;;
19914 esac
19915
19916 : see if gdbm.h is available
19917 set gdbm.h t_gdbm
19918 eval $inhdr
19919 case "$t_gdbm" in
19920 $define)
19921         : see if gdbm_open exists
19922         set gdbm_open d_gdbm_open
19923         eval $inlibc
19924         case "$d_gdbm_open" in
19925         $undef)
19926                 t_gdbm="$undef"
19927                 echo "We won't be including <gdbm.h>"
19928                 ;;
19929         esac
19930         ;;
19931 esac
19932 val="$t_gdbm"
19933 set i_gdbm
19934 eval $setvar
19935
19936 echo " "
19937 echo "Looking for extensions..." >&4
19938 : If we are using the old config.sh, known_extensions may contain
19939 : old or inaccurate or duplicate values.
19940 known_extensions=''
19941 nonxs_extensions=''
19942 : We do not use find because it might not be available.
19943 : We do not just use MANIFEST because the user may have dropped
19944 : some additional extensions into the source tree and expect them
19945 : to be built.
19946
19947 : Function to recursively find available extensions, ignoring DynaLoader
19948 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
19949 find_extensions='
19950     for xxx in *; do
19951        case "$xxx" in
19952            DynaLoader|dynaload) ;;
19953            *)
19954            if $test -f $xxx/$xxx.xs; then
19955                known_extensions="$known_extensions $1$xxx";
19956            elif $test -f $xxx/Makefile.PL; then
19957                nonxs_extensions="$nonxs_extensions $1$xxx";
19958            else
19959                if $test -d $xxx -a $# -lt 10; then
19960                    set $1$xxx/ $*;
19961                    cd "$xxx";
19962                    eval $find_extensions;
19963                    cd ..;
19964                    shift;
19965                fi;
19966            fi
19967            ;;
19968        esac;
19969     done'
19970 tdir=`pwd`
19971 cd "$rsrc/ext"
19972 set X
19973 shift
19974 eval $find_extensions
19975 # Special case:  Add in threads/shared since it is not picked up by the
19976 # recursive find above (and adding in general recursive finding breaks
19977 # SDBM_File/sdbm).  A.D.  10/25/2001.
19978 known_extensions="$known_extensions threads/shared"
19979 set X $nonxs_extensions
19980 shift
19981 nonxs_extensions="$*"
19982 set X $known_extensions
19983 shift
19984 known_extensions="$*"
19985 cd "$tdir"
19986
19987 : Now see which are supported on this system.
19988 avail_ext=''
19989 for xxx in $known_extensions ; do
19990         case "$xxx" in
19991         DB_File|db_file)
19992                 case "$i_db" in
19993                 $define) avail_ext="$avail_ext $xxx" ;;
19994                 esac
19995                 ;;
19996         GDBM_File|gdbm_fil)
19997                 case "$i_gdbm" in 
19998                 $define) avail_ext="$avail_ext $xxx" ;;
19999                 esac
20000                 ;;
20001         I18N/Langinfo|i18n_lan)
20002                 case "$i_langinfo$d_nl_langinfo" in 
20003                 $define$define) avail_ext="$avail_ext $xxx" ;;
20004                 esac
20005                 ;;
20006         NDBM_File|ndbm_fil)
20007                 case "$i_ndbm" in
20008                 $define)
20009                     case "$osname-$use64bitint" in
20010                     hpux-define)
20011                         case "$libs" in
20012                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
20013                         esac
20014                         ;;
20015                     *) avail_ext="$avail_ext $xxx" ;;
20016                     esac
20017                     ;;
20018                 esac
20019                 ;;
20020         ODBM_File|odbm_fil) 
20021                 case "${i_dbm}${i_rpcsvcdbm}" in
20022                 *"${define}"*)
20023                     case "$osname-$use64bitint" in
20024                     hpux-define)
20025                         case "$libs" in
20026                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
20027                         esac
20028                         ;;
20029                     *) avail_ext="$avail_ext $xxx" ;;
20030                     esac
20031                     ;;
20032                 esac
20033                 ;;
20034         POSIX|posix)
20035                 case "$useposix" in
20036                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20037                 esac
20038                 ;;
20039         Opcode|opcode)
20040                 case "$useopcode" in
20041                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20042                 esac
20043                 ;;
20044         Socket|socket)
20045                 case "$d_socket" in 
20046                 true|$define|y)
20047                     case "$osname" in
20048                     beos) ;; # not unless BONE
20049                     *) avail_ext="$avail_ext $xxx" ;;
20050                     esac
20051                     ;;
20052                 esac
20053                 ;;
20054         Sys/Syslog|sys/syslog)
20055                 : XXX syslog requires socket
20056                 case "$d_socket" in 
20057                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
20058                 esac
20059                 ;;
20060         Thread|thread)
20061                 case "$usethreads" in
20062                 true|$define|y)
20063                         case "$useithreads" in
20064                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
20065                         esac
20066                 esac
20067                 ;;
20068         XS/APItest|xs/apitest)
20069                 # This is just for testing.  Skip it unless we have dynamic loading.
20070
20071                 case "$usedl" in
20072                 $define) avail_ext="$avail_ext $xxx" ;;
20073                 esac
20074                 ;;
20075         XS/Typemap|xs/typemap)
20076                 # This is just for testing.  Skip it unless we have dynamic loading.
20077                 case "$usedl" in
20078                 $define) avail_ext="$avail_ext $xxx" ;;
20079                 esac
20080                 ;;
20081         threads|threads/shared)
20082                 # threads and threads::shared are special cases.
20083                 # To stop people from asking "Perl 5.8.0 was supposed
20084                 # to have this new fancy threads implementation but my
20085                 # perl doesn't have it" and from people trying to
20086                 # (re)install the threads module using CPAN.pm and
20087                 # CPAN.pm then offering to reinstall Perl 5.8.0,
20088                 # the threads.pm and threads/shared.pm will always be
20089                 # there, croaking informatively ("you need to rebuild
20090                 # all of Perl with threads, sorry") when threads haven't
20091                 # been compiled in.
20092                 # --jhi
20093                 avail_ext="$avail_ext $xxx"
20094                 ;;
20095         IPC/SysV|ipc/sysv)
20096                 : XXX Do we need a useipcsysv variable here
20097                 case "${d_msg}${d_sem}${d_shm}" in 
20098                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
20099                 esac
20100                 ;;
20101         *)      avail_ext="$avail_ext $xxx"
20102                 ;;
20103         esac
20104 done
20105
20106 set X $avail_ext
20107 shift
20108 avail_ext="$*"
20109
20110 case "$onlyextensions" in
20111 '') ;;
20112 *)  keepextensions=''
20113     echo "You have requested that only certains extensions be included..." >&4
20114     for i in $onlyextensions; do
20115         case " $avail_ext " in
20116         *" $i "*)
20117             echo "Keeping extension $i."
20118             keepextensions="$keepextensions $i"
20119             ;;
20120         *) echo "Ignoring extension $i." ;;
20121         esac
20122     done
20123     avail_ext="$keepextensions"
20124     ;;
20125 esac
20126
20127 case "$noextensions" in
20128 '') ;;
20129 *)  keepextensions=''
20130     echo "You have requested that certain extensions be ignored..." >&4
20131     for i in $avail_ext; do
20132         case " $noextensions " in
20133         *" $i "*) echo "Ignoring extension $i." ;;
20134         *) echo "Keeping extension $i.";
20135            keepextensions="$keepextensions $i"
20136            ;;
20137         esac
20138     done
20139     avail_ext="$keepextensions"
20140     ;;
20141 esac
20142
20143 : Now see which nonxs extensions are supported on this system.
20144 : For now assume all are.
20145 nonxs_ext=''
20146 for xxx in $nonxs_extensions ; do
20147         case "$xxx" in
20148         *)      nonxs_ext="$nonxs_ext $xxx"
20149                 ;;
20150         esac
20151 done
20152
20153 set X $nonxs_ext
20154 shift
20155 nonxs_ext="$*"
20156
20157 case $usedl in
20158 $define)
20159         $cat <<EOM
20160 A number of extensions are supplied with $package.  You may choose to
20161 compile these extensions for dynamic loading (the default), compile
20162 them into the $package executable (static loading), or not include
20163 them at all.  Answer "none" to include no extensions.
20164 Note that DynaLoader is always built and need not be mentioned here.
20165
20166 EOM
20167         case "$dynamic_ext" in
20168         '')
20169                 : Exclude those listed in static_ext
20170                 dflt=''
20171                 for xxx in $avail_ext; do
20172                         case " $static_ext " in
20173                         *" $xxx "*) ;;
20174                         *) dflt="$dflt $xxx" ;;
20175                         esac
20176                 done
20177                 set X $dflt
20178                 shift
20179                 dflt="$*"
20180                 ;;
20181         *)      dflt="$dynamic_ext"
20182                 # Perhaps we are reusing an old out-of-date config.sh.
20183                 case "$hint" in
20184                 previous)
20185                         if test X"$dynamic_ext" != X"$avail_ext"; then
20186                                 $cat <<EOM
20187 NOTICE:  Your previous config.sh list may be incorrect. 
20188 The extensions now available to you are 
20189         ${avail_ext}
20190 but the default list from your previous config.sh is
20191         ${dynamic_ext} 
20192
20193 EOM
20194                         fi
20195                         ;;
20196                 esac
20197                 ;;
20198         esac
20199         case "$dflt" in
20200         '')     dflt=none;;
20201         esac
20202         rp="What extensions do you wish to load dynamically?"
20203         . ./myread
20204         case "$ans" in
20205         none) dynamic_ext=' ' ;;
20206         *) dynamic_ext="$ans" ;;
20207         esac
20208
20209         case "$static_ext" in
20210         '')
20211                 : Exclude those already listed in dynamic linking
20212                 dflt=''
20213                 for xxx in $avail_ext; do
20214                         case " $dynamic_ext " in
20215                         *" $xxx "*) ;;
20216                         *) dflt="$dflt $xxx" ;;
20217                         esac
20218                 done
20219                 set X $dflt
20220                 shift
20221                 dflt="$*"
20222                 ;;
20223         *)  dflt="$static_ext" 
20224                 ;;
20225         esac
20226
20227         case "$dflt" in
20228         '')     dflt=none;;
20229         esac
20230         rp="What extensions do you wish to load statically?"
20231         . ./myread
20232         case "$ans" in
20233         none) static_ext=' ' ;;
20234         *) static_ext="$ans" ;;
20235         esac
20236         ;;
20237 *)
20238         $cat <<EOM
20239 A number of extensions are supplied with $package.  Answer "none" 
20240 to include no extensions. 
20241 Note that DynaLoader is always built and need not be mentioned here.
20242
20243 EOM
20244         case "$static_ext" in
20245         '') dflt="$avail_ext" ;;
20246         *)      dflt="$static_ext"
20247                 # Perhaps we are reusing an old out-of-date config.sh.
20248                 case "$hint" in
20249                 previous)
20250                         if test X"$static_ext" != X"$avail_ext"; then
20251                                 $cat <<EOM
20252 NOTICE:  Your previous config.sh list may be incorrect. 
20253 The extensions now available to you are 
20254         ${avail_ext}
20255 but the default list from your previous config.sh is
20256         ${static_ext} 
20257
20258 EOM
20259                         fi
20260                         ;;
20261                 esac
20262                 ;;
20263         esac
20264         : Exclude those that are not xs extensions
20265         case "$dflt" in
20266         '')     dflt=none;;
20267         esac
20268         rp="What extensions do you wish to include?"
20269         . ./myread
20270         case "$ans" in
20271         none) static_ext=' ' ;;
20272         *) static_ext="$ans" ;;
20273         esac
20274         ;;
20275 esac
20276 #        
20277 # Encode is a special case.  If we are building Encode as a static
20278 # extension, we need to explicitly list its subextensions as well.
20279 # For other nested extensions, this is handled automatically by
20280 # the appropriate Makefile.PL.
20281 case " $static_ext " in
20282         *" Encode "*) # Add the subextensions of Encode
20283         cd "$rsrc/ext"
20284         for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
20285                 static_ext="$static_ext Encode/$xxx"
20286         done
20287         cd "$tdir"
20288         ;;
20289 esac
20290
20291 set X $dynamic_ext $static_ext $nonxs_ext
20292 shift
20293 extensions="$*"
20294
20295 # Sanity check:  We require an extension suitable for use with
20296 # AnyDBM_File, as well as Fcntl and IO.  (Failure to have these
20297 # should show up as failures in the test suite, but it's helpful to
20298 # catch them now.) The 'extensions' list is normally sorted
20299 # alphabetically, so we need to accept either
20300 #    DB_File ... Fcntl ... IO  ....
20301 # or something like
20302 #    Fcntl ... NDBM_File ... IO  ....
20303 case " $extensions"  in
20304 *"_File "*" Fcntl "*" IO "*) ;; # DB_File
20305 *" Fcntl "*"_File "*" IO "*) ;; # GDBM_File
20306 *" Fcntl "*" IO "*"_File "*) ;; # NDBM_File
20307 *) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
20308    echo "WARNING: The Perl you are building will be quite crippled." >& 4
20309    ;;
20310 esac
20311
20312 : Remove libraries needed only for extensions
20313 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
20314 : The exception is SunOS 4.x, which needs them.
20315 case "${osname}X${osvers}" in
20316 sunos*X4*)
20317     perllibs="$libs"
20318     ;;
20319 *) case "$usedl" in
20320     $define|true|[yY]*)
20321             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
20322             shift
20323             perllibs="$*"
20324             ;;
20325     *)  perllibs="$libs"
20326             ;;
20327     esac
20328     ;;
20329 esac
20330
20331 : Remove build directory name from cppstdin so it can be used from
20332 : either the present location or the final installed location.
20333 echo " "
20334 : Get out of the UU directory to get correct path name.
20335 cd ..
20336 case "$cppstdin" in
20337 `pwd`/cppstdin)
20338         echo "Stripping down cppstdin path name"
20339         cppstdin=cppstdin
20340         ;;
20341 esac
20342 cd UU
20343
20344 : end of configuration questions
20345 echo " "
20346 echo "End of configuration questions."
20347 echo " "
20348
20349 : back to where it started
20350 if test -d ../UU; then
20351         cd ..
20352 fi
20353
20354 : configuration may be patched via a 'config.arch' file
20355 if $test -f config.arch; then
20356         echo "I see a config.arch file, loading it."
20357         . ./config.arch
20358 fi
20359
20360 : configuration may be patched via a 'config.over' file
20361 if $test -f config.over; then
20362         echo " "
20363         dflt=y
20364         rp='I see a config.over file.  Do you wish to load it?'
20365         . UU/myread
20366         case "$ans" in
20367         n*) echo "OK, I'll ignore it.";;
20368         *)      . ./config.over
20369                 echo "Configuration override changes have been loaded."
20370                 ;;
20371         esac
20372 fi
20373
20374 : in case they want portability, strip down executable paths
20375 case "$d_portable" in
20376 "$define")
20377         echo " "
20378         echo "Stripping down executable paths..." >&4
20379         for file in $loclist $trylist; do
20380                 eval temp=\$$file
20381                 eval $file=`basename $temp`
20382         done
20383         ;;
20384 esac
20385
20386 : create config.sh file
20387 echo " "
20388 echo "Creating config.sh..." >&4
20389 $spitshell <<EOT >config.sh
20390 $startsh
20391 #
20392 # This file was produced by running the Configure script. It holds all the
20393 # definitions figured out by Configure. Should you modify one of these values,
20394 # do not forget to propagate your changes by running "Configure -der". You may
20395 # instead choose to run each of the .SH files by yourself, or "Configure -S".
20396 #
20397
20398 # Package name      : $package
20399 # Source directory  : $src
20400 # Configuration time: $cf_time
20401 # Configured by     : $cf_by
20402 # Target system     : $myuname
20403
20404 Author='$Author'
20405 Date='$Date'
20406 Header='$Header'
20407 Id='$Id'
20408 Locker='$Locker'
20409 Log='$Log'
20410 Mcc='$Mcc'
20411 RCSfile='$RCSfile'
20412 Revision='$Revision'
20413 Source='$Source'
20414 State='$State'
20415 _a='$_a'
20416 _exe='$_exe'
20417 _o='$_o'
20418 afs='$afs'
20419 afsroot='$afsroot'
20420 alignbytes='$alignbytes'
20421 ansi2knr='$ansi2knr'
20422 aphostname='$aphostname'
20423 api_revision='$api_revision'
20424 api_subversion='$api_subversion'
20425 api_version='$api_version'
20426 api_versionstring='$api_versionstring'
20427 ar='$ar'
20428 archlib='$archlib'
20429 archlibexp='$archlibexp'
20430 archname64='$archname64'
20431 archname='$archname'
20432 archobjs='$archobjs'
20433 asctime_r_proto='$asctime_r_proto'
20434 awk='$awk'
20435 baserev='$baserev'
20436 bash='$bash'
20437 bin='$bin'
20438 binexp='$binexp'
20439 bison='$bison'
20440 byacc='$byacc'
20441 byteorder='$byteorder'
20442 c='$c'
20443 castflags='$castflags'
20444 cat='$cat'
20445 cc='$cc'
20446 cccdlflags='$cccdlflags'
20447 ccdlflags='$ccdlflags'
20448 ccflags='$ccflags'
20449 ccflags_uselargefiles='$ccflags_uselargefiles'
20450 ccname='$ccname'
20451 ccsymbols='$ccsymbols'
20452 ccversion='$ccversion'
20453 cf_by='$cf_by'
20454 cf_email='$cf_email'
20455 cf_time='$cf_time'
20456 charsize='$charsize'
20457 chgrp='$chgrp'
20458 chmod='$chmod'
20459 chown='$chown'
20460 clocktype='$clocktype'
20461 comm='$comm'
20462 compress='$compress'
20463 contains='$contains'
20464 cp='$cp'
20465 cpio='$cpio'
20466 cpp='$cpp'
20467 cpp_stuff='$cpp_stuff'
20468 cppccsymbols='$cppccsymbols'
20469 cppflags='$cppflags'
20470 cpplast='$cpplast'
20471 cppminus='$cppminus'
20472 cpprun='$cpprun'
20473 cppstdin='$cppstdin'
20474 cppsymbols='$cppsymbols'
20475 crypt_r_proto='$crypt_r_proto'
20476 cryptlib='$cryptlib'
20477 csh='$csh'
20478 ctermid_r_proto='$ctermid_r_proto'
20479 ctime_r_proto='$ctime_r_proto'
20480 d_Gconvert='$d_Gconvert'
20481 d_PRIEUldbl='$d_PRIEUldbl'
20482 d_PRIFUldbl='$d_PRIFUldbl'
20483 d_PRIGUldbl='$d_PRIGUldbl'
20484 d_PRIXU64='$d_PRIXU64'
20485 d_PRId64='$d_PRId64'
20486 d_PRIeldbl='$d_PRIeldbl'
20487 d_PRIfldbl='$d_PRIfldbl'
20488 d_PRIgldbl='$d_PRIgldbl'
20489 d_PRIi64='$d_PRIi64'
20490 d_PRIo64='$d_PRIo64'
20491 d_PRIu64='$d_PRIu64'
20492 d_PRIx64='$d_PRIx64'
20493 d_SCNfldbl='$d_SCNfldbl'
20494 d__fwalk='$d__fwalk'
20495 d_access='$d_access'
20496 d_accessx='$d_accessx'
20497 d_aintl='$d_aintl'
20498 d_alarm='$d_alarm'
20499 d_archlib='$d_archlib'
20500 d_asctime_r='$d_asctime_r'
20501 d_atolf='$d_atolf'
20502 d_atoll='$d_atoll'
20503 d_attribut='$d_attribut'
20504 d_bcmp='$d_bcmp'
20505 d_bcopy='$d_bcopy'
20506 d_bsd='$d_bsd'
20507 d_bsdgetpgrp='$d_bsdgetpgrp'
20508 d_bsdsetpgrp='$d_bsdsetpgrp'
20509 d_bzero='$d_bzero'
20510 d_casti32='$d_casti32'
20511 d_castneg='$d_castneg'
20512 d_charvspr='$d_charvspr'
20513 d_chown='$d_chown'
20514 d_chroot='$d_chroot'
20515 d_chsize='$d_chsize'
20516 d_class='$d_class'
20517 d_closedir='$d_closedir'
20518 d_cmsghdr_s='$d_cmsghdr_s'
20519 d_const='$d_const'
20520 d_copysignl='$d_copysignl'
20521 d_crypt='$d_crypt'
20522 d_crypt_r='$d_crypt_r'
20523 d_csh='$d_csh'
20524 d_ctermid_r='$d_ctermid_r'
20525 d_ctime_r='$d_ctime_r'
20526 d_cuserid='$d_cuserid'
20527 d_dbl_dig='$d_dbl_dig'
20528 d_dbminitproto='$d_dbminitproto'
20529 d_difftime='$d_difftime'
20530 d_dirfd='$d_dirfd'
20531 d_dirnamlen='$d_dirnamlen'
20532 d_dlerror='$d_dlerror'
20533 d_dlopen='$d_dlopen'
20534 d_dlsymun='$d_dlsymun'
20535 d_dosuid='$d_dosuid'
20536 d_drand48_r='$d_drand48_r'
20537 d_drand48proto='$d_drand48proto'
20538 d_dup2='$d_dup2'
20539 d_eaccess='$d_eaccess'
20540 d_endgrent='$d_endgrent'
20541 d_endgrent_r='$d_endgrent_r'
20542 d_endhent='$d_endhent'
20543 d_endhostent_r='$d_endhostent_r'
20544 d_endnent='$d_endnent'
20545 d_endnetent_r='$d_endnetent_r'
20546 d_endpent='$d_endpent'
20547 d_endprotoent_r='$d_endprotoent_r'
20548 d_endpwent='$d_endpwent'
20549 d_endpwent_r='$d_endpwent_r'
20550 d_endsent='$d_endsent'
20551 d_endservent_r='$d_endservent_r'
20552 d_eofnblk='$d_eofnblk'
20553 d_eunice='$d_eunice'
20554 d_faststdio='$d_faststdio'
20555 d_fchdir='$d_fchdir'
20556 d_fchmod='$d_fchmod'
20557 d_fchown='$d_fchown'
20558 d_fcntl='$d_fcntl'
20559 d_fcntl_can_lock='$d_fcntl_can_lock'
20560 d_fd_macros='$d_fd_macros'
20561 d_fd_set='$d_fd_set'
20562 d_fds_bits='$d_fds_bits'
20563 d_fgetpos='$d_fgetpos'
20564 d_finite='$d_finite'
20565 d_finitel='$d_finitel'
20566 d_flexfnam='$d_flexfnam'
20567 d_flock='$d_flock'
20568 d_flockproto='$d_flockproto'
20569 d_fork='$d_fork'
20570 d_fp_class='$d_fp_class'
20571 d_fpathconf='$d_fpathconf'
20572 d_fpclass='$d_fpclass'
20573 d_fpclassify='$d_fpclassify'
20574 d_fpclassl='$d_fpclassl'
20575 d_fpos64_t='$d_fpos64_t'
20576 d_frexpl='$d_frexpl'
20577 d_fs_data_s='$d_fs_data_s'
20578 d_fseeko='$d_fseeko'
20579 d_fsetpos='$d_fsetpos'
20580 d_fstatfs='$d_fstatfs'
20581 d_fstatvfs='$d_fstatvfs'
20582 d_fsync='$d_fsync'
20583 d_ftello='$d_ftello'
20584 d_ftime='$d_ftime'
20585 d_getcwd='$d_getcwd'
20586 d_getespwnam='$d_getespwnam'
20587 d_getfsstat='$d_getfsstat'
20588 d_getgrent='$d_getgrent'
20589 d_getgrent_r='$d_getgrent_r'
20590 d_getgrgid_r='$d_getgrgid_r'
20591 d_getgrnam_r='$d_getgrnam_r'
20592 d_getgrps='$d_getgrps'
20593 d_gethbyaddr='$d_gethbyaddr'
20594 d_gethbyname='$d_gethbyname'
20595 d_gethent='$d_gethent'
20596 d_gethname='$d_gethname'
20597 d_gethostbyaddr_r='$d_gethostbyaddr_r'
20598 d_gethostbyname_r='$d_gethostbyname_r'
20599 d_gethostent_r='$d_gethostent_r'
20600 d_gethostprotos='$d_gethostprotos'
20601 d_getitimer='$d_getitimer'
20602 d_getlogin='$d_getlogin'
20603 d_getlogin_r='$d_getlogin_r'
20604 d_getmnt='$d_getmnt'
20605 d_getmntent='$d_getmntent'
20606 d_getnbyaddr='$d_getnbyaddr'
20607 d_getnbyname='$d_getnbyname'
20608 d_getnent='$d_getnent'
20609 d_getnetbyaddr_r='$d_getnetbyaddr_r'
20610 d_getnetbyname_r='$d_getnetbyname_r'
20611 d_getnetent_r='$d_getnetent_r'
20612 d_getnetprotos='$d_getnetprotos'
20613 d_getpagsz='$d_getpagsz'
20614 d_getpbyname='$d_getpbyname'
20615 d_getpbynumber='$d_getpbynumber'
20616 d_getpent='$d_getpent'
20617 d_getpgid='$d_getpgid'
20618 d_getpgrp2='$d_getpgrp2'
20619 d_getpgrp='$d_getpgrp'
20620 d_getppid='$d_getppid'
20621 d_getprior='$d_getprior'
20622 d_getprotobyname_r='$d_getprotobyname_r'
20623 d_getprotobynumber_r='$d_getprotobynumber_r'
20624 d_getprotoent_r='$d_getprotoent_r'
20625 d_getprotoprotos='$d_getprotoprotos'
20626 d_getprpwnam='$d_getprpwnam'
20627 d_getpwent='$d_getpwent'
20628 d_getpwent_r='$d_getpwent_r'
20629 d_getpwnam_r='$d_getpwnam_r'
20630 d_getpwuid_r='$d_getpwuid_r'
20631 d_getsbyname='$d_getsbyname'
20632 d_getsbyport='$d_getsbyport'
20633 d_getsent='$d_getsent'
20634 d_getservbyname_r='$d_getservbyname_r'
20635 d_getservbyport_r='$d_getservbyport_r'
20636 d_getservent_r='$d_getservent_r'
20637 d_getservprotos='$d_getservprotos'
20638 d_getspnam='$d_getspnam'
20639 d_getspnam_r='$d_getspnam_r'
20640 d_gettimeod='$d_gettimeod'
20641 d_gmtime_r='$d_gmtime_r'
20642 d_gnulibc='$d_gnulibc'
20643 d_grpasswd='$d_grpasswd'
20644 d_hasmntopt='$d_hasmntopt'
20645 d_htonl='$d_htonl'
20646 d_ilogbl='$d_ilogbl'
20647 d_index='$d_index'
20648 d_inetaton='$d_inetaton'
20649 d_int64_t='$d_int64_t'
20650 d_isascii='$d_isascii'
20651 d_isfinite='$d_isfinite'
20652 d_isinf='$d_isinf'
20653 d_isnan='$d_isnan'
20654 d_isnanl='$d_isnanl'
20655 d_killpg='$d_killpg'
20656 d_lchown='$d_lchown'
20657 d_ldbl_dig='$d_ldbl_dig'
20658 d_link='$d_link'
20659 d_localtime_r='$d_localtime_r'
20660 d_locconv='$d_locconv'
20661 d_lockf='$d_lockf'
20662 d_longdbl='$d_longdbl'
20663 d_longlong='$d_longlong'
20664 d_lseekproto='$d_lseekproto'
20665 d_lstat='$d_lstat'
20666 d_madvise='$d_madvise'
20667 d_mblen='$d_mblen'
20668 d_mbstowcs='$d_mbstowcs'
20669 d_mbtowc='$d_mbtowc'
20670 d_memchr='$d_memchr'
20671 d_memcmp='$d_memcmp'
20672 d_memcpy='$d_memcpy'
20673 d_memmove='$d_memmove'
20674 d_memset='$d_memset'
20675 d_mkdir='$d_mkdir'
20676 d_mkdtemp='$d_mkdtemp'
20677 d_mkfifo='$d_mkfifo'
20678 d_mkstemp='$d_mkstemp'
20679 d_mkstemps='$d_mkstemps'
20680 d_mktime='$d_mktime'
20681 d_mmap='$d_mmap'
20682 d_modfl='$d_modfl'
20683 d_modfl_pow32_bug='$d_modfl_pow32_bug'
20684 d_modflproto='$d_modflproto'
20685 d_mprotect='$d_mprotect'
20686 d_msg='$d_msg'
20687 d_msg_ctrunc='$d_msg_ctrunc'
20688 d_msg_dontroute='$d_msg_dontroute'
20689 d_msg_oob='$d_msg_oob'
20690 d_msg_peek='$d_msg_peek'
20691 d_msg_proxy='$d_msg_proxy'
20692 d_msgctl='$d_msgctl'
20693 d_msgget='$d_msgget'
20694 d_msghdr_s='$d_msghdr_s'
20695 d_msgrcv='$d_msgrcv'
20696 d_msgsnd='$d_msgsnd'
20697 d_msync='$d_msync'
20698 d_munmap='$d_munmap'
20699 d_mymalloc='$d_mymalloc'
20700 d_nice='$d_nice'
20701 d_nl_langinfo='$d_nl_langinfo'
20702 d_nv_preserves_uv='$d_nv_preserves_uv'
20703 d_off64_t='$d_off64_t'
20704 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
20705 d_oldpthreads='$d_oldpthreads'
20706 d_oldsock='$d_oldsock'
20707 d_open3='$d_open3'
20708 d_pathconf='$d_pathconf'
20709 d_pause='$d_pause'
20710 d_perl_otherlibdirs='$d_perl_otherlibdirs'
20711 d_phostname='$d_phostname'
20712 d_pipe='$d_pipe'
20713 d_poll='$d_poll'
20714 d_portable='$d_portable'
20715 d_procselfexe='$d_procselfexe'
20716 d_pthread_atfork='$d_pthread_atfork'
20717 d_pthread_attr_setscope='$d_pthread_attr_setscope'
20718 d_pthread_yield='$d_pthread_yield'
20719 d_pwage='$d_pwage'
20720 d_pwchange='$d_pwchange'
20721 d_pwclass='$d_pwclass'
20722 d_pwcomment='$d_pwcomment'
20723 d_pwexpire='$d_pwexpire'
20724 d_pwgecos='$d_pwgecos'
20725 d_pwpasswd='$d_pwpasswd'
20726 d_pwquota='$d_pwquota'
20727 d_qgcvt='$d_qgcvt'
20728 d_quad='$d_quad'
20729 d_random_r='$d_random_r'
20730 d_readdir64_r='$d_readdir64_r'
20731 d_readdir='$d_readdir'
20732 d_readdir_r='$d_readdir_r'
20733 d_readlink='$d_readlink'
20734 d_readv='$d_readv'
20735 d_recvmsg='$d_recvmsg'
20736 d_rename='$d_rename'
20737 d_rewinddir='$d_rewinddir'
20738 d_rmdir='$d_rmdir'
20739 d_safebcpy='$d_safebcpy'
20740 d_safemcpy='$d_safemcpy'
20741 d_sanemcmp='$d_sanemcmp'
20742 d_sbrkproto='$d_sbrkproto'
20743 d_scalbnl='$d_scalbnl'
20744 d_sched_yield='$d_sched_yield'
20745 d_scm_rights='$d_scm_rights'
20746 d_seekdir='$d_seekdir'
20747 d_select='$d_select'
20748 d_sem='$d_sem'
20749 d_semctl='$d_semctl'
20750 d_semctl_semid_ds='$d_semctl_semid_ds'
20751 d_semctl_semun='$d_semctl_semun'
20752 d_semget='$d_semget'
20753 d_semop='$d_semop'
20754 d_sendmsg='$d_sendmsg'
20755 d_setegid='$d_setegid'
20756 d_seteuid='$d_seteuid'
20757 d_setgrent='$d_setgrent'
20758 d_setgrent_r='$d_setgrent_r'
20759 d_setgrps='$d_setgrps'
20760 d_sethent='$d_sethent'
20761 d_sethostent_r='$d_sethostent_r'
20762 d_setitimer='$d_setitimer'
20763 d_setlinebuf='$d_setlinebuf'
20764 d_setlocale='$d_setlocale'
20765 d_setlocale_r='$d_setlocale_r'
20766 d_setnent='$d_setnent'
20767 d_setnetent_r='$d_setnetent_r'
20768 d_setpent='$d_setpent'
20769 d_setpgid='$d_setpgid'
20770 d_setpgrp2='$d_setpgrp2'
20771 d_setpgrp='$d_setpgrp'
20772 d_setprior='$d_setprior'
20773 d_setproctitle='$d_setproctitle'
20774 d_setprotoent_r='$d_setprotoent_r'
20775 d_setpwent='$d_setpwent'
20776 d_setpwent_r='$d_setpwent_r'
20777 d_setregid='$d_setregid'
20778 d_setresgid='$d_setresgid'
20779 d_setresuid='$d_setresuid'
20780 d_setreuid='$d_setreuid'
20781 d_setrgid='$d_setrgid'
20782 d_setruid='$d_setruid'
20783 d_setsent='$d_setsent'
20784 d_setservent_r='$d_setservent_r'
20785 d_setsid='$d_setsid'
20786 d_setvbuf='$d_setvbuf'
20787 d_sfio='$d_sfio'
20788 d_shm='$d_shm'
20789 d_shmat='$d_shmat'
20790 d_shmatprototype='$d_shmatprototype'
20791 d_shmctl='$d_shmctl'
20792 d_shmdt='$d_shmdt'
20793 d_shmget='$d_shmget'
20794 d_sigaction='$d_sigaction'
20795 d_sigprocmask='$d_sigprocmask'
20796 d_sigsetjmp='$d_sigsetjmp'
20797 d_sockatmark='$d_sockatmark'
20798 d_sockatmarkproto='$d_sockatmarkproto'
20799 d_socket='$d_socket'
20800 d_socklen_t='$d_socklen_t'
20801 d_sockpair='$d_sockpair'
20802 d_socks5_init='$d_socks5_init'
20803 d_sqrtl='$d_sqrtl'
20804 d_srand48_r='$d_srand48_r'
20805 d_srandom_r='$d_srandom_r'
20806 d_sresgproto='$d_sresgproto'
20807 d_sresuproto='$d_sresuproto'
20808 d_statblks='$d_statblks'
20809 d_statfs_f_flags='$d_statfs_f_flags'
20810 d_statfs_s='$d_statfs_s'
20811 d_statvfs='$d_statvfs'
20812 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20813 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20814 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20815 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20816 d_stdio_stream_array='$d_stdio_stream_array'
20817 d_stdiobase='$d_stdiobase'
20818 d_stdstdio='$d_stdstdio'
20819 d_strchr='$d_strchr'
20820 d_strcoll='$d_strcoll'
20821 d_strctcpy='$d_strctcpy'
20822 d_strerrm='$d_strerrm'
20823 d_strerror='$d_strerror'
20824 d_strerror_r='$d_strerror_r'
20825 d_strftime='$d_strftime'
20826 d_strtod='$d_strtod'
20827 d_strtol='$d_strtol'
20828 d_strtold='$d_strtold'
20829 d_strtoll='$d_strtoll'
20830 d_strtoq='$d_strtoq'
20831 d_strtoul='$d_strtoul'
20832 d_strtoull='$d_strtoull'
20833 d_strtouq='$d_strtouq'
20834 d_strxfrm='$d_strxfrm'
20835 d_suidsafe='$d_suidsafe'
20836 d_symlink='$d_symlink'
20837 d_syscall='$d_syscall'
20838 d_syscallproto='$d_syscallproto'
20839 d_sysconf='$d_sysconf'
20840 d_sysernlst='$d_sysernlst'
20841 d_syserrlst='$d_syserrlst'
20842 d_system='$d_system'
20843 d_tcgetpgrp='$d_tcgetpgrp'
20844 d_tcsetpgrp='$d_tcsetpgrp'
20845 d_telldir='$d_telldir'
20846 d_telldirproto='$d_telldirproto'
20847 d_time='$d_time'
20848 d_times='$d_times'
20849 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20850 d_tm_tm_zone='$d_tm_tm_zone'
20851 d_tmpnam_r='$d_tmpnam_r'
20852 d_truncate='$d_truncate'
20853 d_ttyname_r='$d_ttyname_r'
20854 d_tzname='$d_tzname'
20855 d_u32align='$d_u32align'
20856 d_ualarm='$d_ualarm'
20857 d_umask='$d_umask'
20858 d_uname='$d_uname'
20859 d_union_semun='$d_union_semun'
20860 d_unordered='$d_unordered'
20861 d_usleep='$d_usleep'
20862 d_usleepproto='$d_usleepproto'
20863 d_ustat='$d_ustat'
20864 d_vendorarch='$d_vendorarch'
20865 d_vendorbin='$d_vendorbin'
20866 d_vendorlib='$d_vendorlib'
20867 d_vendorscript='$d_vendorscript'
20868 d_vfork='$d_vfork'
20869 d_void_closedir='$d_void_closedir'
20870 d_voidsig='$d_voidsig'
20871 d_voidtty='$d_voidtty'
20872 d_volatile='$d_volatile'
20873 d_vprintf='$d_vprintf'
20874 d_wait4='$d_wait4'
20875 d_waitpid='$d_waitpid'
20876 d_wcstombs='$d_wcstombs'
20877 d_wctomb='$d_wctomb'
20878 d_writev='$d_writev'
20879 d_xenix='$d_xenix'
20880 date='$date'
20881 db_hashtype='$db_hashtype'
20882 db_prefixtype='$db_prefixtype'
20883 db_version_major='$db_version_major'
20884 db_version_minor='$db_version_minor'
20885 db_version_patch='$db_version_patch'
20886 defvoidused='$defvoidused'
20887 direntrytype='$direntrytype'
20888 dlext='$dlext'
20889 dlsrc='$dlsrc'
20890 doublesize='$doublesize'
20891 drand01='$drand01'
20892 drand48_r_proto='$drand48_r_proto'
20893 dynamic_ext='$dynamic_ext'
20894 eagain='$eagain'
20895 ebcdic='$ebcdic'
20896 echo='$echo'
20897 egrep='$egrep'
20898 emacs='$emacs'
20899 endgrent_r_proto='$endgrent_r_proto'
20900 endhostent_r_proto='$endhostent_r_proto'
20901 endnetent_r_proto='$endnetent_r_proto'
20902 endprotoent_r_proto='$endprotoent_r_proto'
20903 endpwent_r_proto='$endpwent_r_proto'
20904 endservent_r_proto='$endservent_r_proto'
20905 eunicefix='$eunicefix'
20906 exe_ext='$exe_ext'
20907 expr='$expr'
20908 extensions='$extensions'
20909 extras='$extras'
20910 fflushNULL='$fflushNULL'
20911 fflushall='$fflushall'
20912 find='$find'
20913 firstmakefile='$firstmakefile'
20914 flex='$flex'
20915 fpossize='$fpossize'
20916 fpostype='$fpostype'
20917 freetype='$freetype'
20918 from='$from'
20919 full_ar='$full_ar'
20920 full_csh='$full_csh'
20921 full_sed='$full_sed'
20922 gccansipedantic='$gccansipedantic'
20923 gccosandvers='$gccosandvers'
20924 gccversion='$gccversion'
20925 getgrent_r_proto='$getgrent_r_proto'
20926 getgrgid_r_proto='$getgrgid_r_proto'
20927 getgrnam_r_proto='$getgrnam_r_proto'
20928 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
20929 gethostbyname_r_proto='$gethostbyname_r_proto'
20930 gethostent_r_proto='$gethostent_r_proto'
20931 getlogin_r_proto='$getlogin_r_proto'
20932 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
20933 getnetbyname_r_proto='$getnetbyname_r_proto'
20934 getnetent_r_proto='$getnetent_r_proto'
20935 getprotobyname_r_proto='$getprotobyname_r_proto'
20936 getprotobynumber_r_proto='$getprotobynumber_r_proto'
20937 getprotoent_r_proto='$getprotoent_r_proto'
20938 getpwent_r_proto='$getpwent_r_proto'
20939 getpwnam_r_proto='$getpwnam_r_proto'
20940 getpwuid_r_proto='$getpwuid_r_proto'
20941 getservbyname_r_proto='$getservbyname_r_proto'
20942 getservbyport_r_proto='$getservbyport_r_proto'
20943 getservent_r_proto='$getservent_r_proto'
20944 getspnam_r_proto='$getspnam_r_proto'
20945 gidformat='$gidformat'
20946 gidsign='$gidsign'
20947 gidsize='$gidsize'
20948 gidtype='$gidtype'
20949 glibpth='$glibpth'
20950 gmake='$gmake'
20951 gmtime_r_proto='$gmtime_r_proto'
20952 gnulibc_version='$gnulibc_version'
20953 grep='$grep'
20954 groupcat='$groupcat'
20955 groupstype='$groupstype'
20956 gzip='$gzip'
20957 h_fcntl='$h_fcntl'
20958 h_sysfile='$h_sysfile'
20959 hint='$hint'
20960 hostcat='$hostcat'
20961 html1dir='$html1dir'
20962 html1direxp='$html1direxp'
20963 html3dir='$html3dir'
20964 html3direxp='$html3direxp'
20965 i16size='$i16size'
20966 i16type='$i16type'
20967 i32size='$i32size'
20968 i32type='$i32type'
20969 i64size='$i64size'
20970 i64type='$i64type'
20971 i8size='$i8size'
20972 i8type='$i8type'
20973 i_arpainet='$i_arpainet'
20974 i_bsdioctl='$i_bsdioctl'
20975 i_crypt='$i_crypt'
20976 i_db='$i_db'
20977 i_dbm='$i_dbm'
20978 i_dirent='$i_dirent'
20979 i_dld='$i_dld'
20980 i_dlfcn='$i_dlfcn'
20981 i_fcntl='$i_fcntl'
20982 i_float='$i_float'
20983 i_fp='$i_fp'
20984 i_fp_class='$i_fp_class'
20985 i_gdbm='$i_gdbm'
20986 i_grp='$i_grp'
20987 i_ieeefp='$i_ieeefp'
20988 i_inttypes='$i_inttypes'
20989 i_langinfo='$i_langinfo'
20990 i_libutil='$i_libutil'
20991 i_limits='$i_limits'
20992 i_locale='$i_locale'
20993 i_machcthr='$i_machcthr'
20994 i_malloc='$i_malloc'
20995 i_math='$i_math'
20996 i_memory='$i_memory'
20997 i_mntent='$i_mntent'
20998 i_ndbm='$i_ndbm'
20999 i_netdb='$i_netdb'
21000 i_neterrno='$i_neterrno'
21001 i_netinettcp='$i_netinettcp'
21002 i_niin='$i_niin'
21003 i_poll='$i_poll'
21004 i_prot='$i_prot'
21005 i_pthread='$i_pthread'
21006 i_pwd='$i_pwd'
21007 i_rpcsvcdbm='$i_rpcsvcdbm'
21008 i_sfio='$i_sfio'
21009 i_sgtty='$i_sgtty'
21010 i_shadow='$i_shadow'
21011 i_socks='$i_socks'
21012 i_stdarg='$i_stdarg'
21013 i_stddef='$i_stddef'
21014 i_stdlib='$i_stdlib'
21015 i_string='$i_string'
21016 i_sunmath='$i_sunmath'
21017 i_sysaccess='$i_sysaccess'
21018 i_sysdir='$i_sysdir'
21019 i_sysfile='$i_sysfile'
21020 i_sysfilio='$i_sysfilio'
21021 i_sysin='$i_sysin'
21022 i_sysioctl='$i_sysioctl'
21023 i_syslog='$i_syslog'
21024 i_sysmman='$i_sysmman'
21025 i_sysmode='$i_sysmode'
21026 i_sysmount='$i_sysmount'
21027 i_sysndir='$i_sysndir'
21028 i_sysparam='$i_sysparam'
21029 i_sysresrc='$i_sysresrc'
21030 i_syssecrt='$i_syssecrt'
21031 i_sysselct='$i_sysselct'
21032 i_syssockio='$i_syssockio'
21033 i_sysstat='$i_sysstat'
21034 i_sysstatfs='$i_sysstatfs'
21035 i_sysstatvfs='$i_sysstatvfs'
21036 i_systime='$i_systime'
21037 i_systimek='$i_systimek'
21038 i_systimes='$i_systimes'
21039 i_systypes='$i_systypes'
21040 i_sysuio='$i_sysuio'
21041 i_sysun='$i_sysun'
21042 i_sysutsname='$i_sysutsname'
21043 i_sysvfs='$i_sysvfs'
21044 i_syswait='$i_syswait'
21045 i_termio='$i_termio'
21046 i_termios='$i_termios'
21047 i_time='$i_time'
21048 i_unistd='$i_unistd'
21049 i_ustat='$i_ustat'
21050 i_utime='$i_utime'
21051 i_values='$i_values'
21052 i_varargs='$i_varargs'
21053 i_varhdr='$i_varhdr'
21054 i_vfork='$i_vfork'
21055 ignore_versioned_solibs='$ignore_versioned_solibs'
21056 inc_version_list='$inc_version_list'
21057 inc_version_list_init='$inc_version_list_init'
21058 incpath='$incpath'
21059 inews='$inews'
21060 installarchlib='$installarchlib'
21061 installbin='$installbin'
21062 installhtml1dir='$installhtml1dir'
21063 installhtml3dir='$installhtml3dir'
21064 installman1dir='$installman1dir'
21065 installman3dir='$installman3dir'
21066 installprefix='$installprefix'
21067 installprefixexp='$installprefixexp'
21068 installprivlib='$installprivlib'
21069 installscript='$installscript'
21070 installsitearch='$installsitearch'
21071 installsitebin='$installsitebin'
21072 installsitehtml1dir='$installsitehtml1dir'
21073 installsitehtml3dir='$installsitehtml3dir'
21074 installsitelib='$installsitelib'
21075 installsiteman1dir='$installsiteman1dir'
21076 installsiteman3dir='$installsiteman3dir'
21077 installsitescript='$installsitescript'
21078 installstyle='$installstyle'
21079 installusrbinperl='$installusrbinperl'
21080 installvendorarch='$installvendorarch'
21081 installvendorbin='$installvendorbin'
21082 installvendorhtml1dir='$installvendorhtml1dir'
21083 installvendorhtml3dir='$installvendorhtml3dir'
21084 installvendorlib='$installvendorlib'
21085 installvendorman1dir='$installvendorman1dir'
21086 installvendorman3dir='$installvendorman3dir'
21087 installvendorscript='$installvendorscript'
21088 intsize='$intsize'
21089 issymlink='$issymlink'
21090 ivdformat='$ivdformat'
21091 ivsize='$ivsize'
21092 ivtype='$ivtype'
21093 known_extensions='$known_extensions'
21094 ksh='$ksh'
21095 ld='$ld'
21096 lddlflags='$lddlflags'
21097 ldflags='$ldflags'
21098 ldflags_uselargefiles='$ldflags_uselargefiles'
21099 ldlibpthname='$ldlibpthname'
21100 less='$less'
21101 lib_ext='$lib_ext'
21102 libc='$libc'
21103 libperl='$libperl'
21104 libpth='$libpth'
21105 libs='$libs'
21106 libsdirs='$libsdirs'
21107 libsfiles='$libsfiles'
21108 libsfound='$libsfound'
21109 libspath='$libspath'
21110 libswanted='$libswanted'
21111 libswanted_uselargefiles='$libswanted_uselargefiles'
21112 line='$line'
21113 lint='$lint'
21114 lkflags='$lkflags'
21115 ln='$ln'
21116 lns='$lns'
21117 localtime_r_proto='$localtime_r_proto'
21118 locincpth='$locincpth'
21119 loclibpth='$loclibpth'
21120 longdblsize='$longdblsize'
21121 longlongsize='$longlongsize'
21122 longsize='$longsize'
21123 lp='$lp'
21124 lpr='$lpr'
21125 ls='$ls'
21126 lseeksize='$lseeksize'
21127 lseektype='$lseektype'
21128 mail='$mail'
21129 mailx='$mailx'
21130 make='$make'
21131 make_set_make='$make_set_make'
21132 mallocobj='$mallocobj'
21133 mallocsrc='$mallocsrc'
21134 malloctype='$malloctype'
21135 man1dir='$man1dir'
21136 man1direxp='$man1direxp'
21137 man1ext='$man1ext'
21138 man3dir='$man3dir'
21139 man3direxp='$man3direxp'
21140 man3ext='$man3ext'
21141 mips_type='$mips_type'
21142 mistrustnm='$mistrustnm'
21143 mkdir='$mkdir'
21144 mmaptype='$mmaptype'
21145 modetype='$modetype'
21146 more='$more'
21147 multiarch='$multiarch'
21148 mv='$mv'
21149 myarchname='$myarchname'
21150 mydomain='$mydomain'
21151 myhostname='$myhostname'
21152 myuname='$myuname'
21153 n='$n'
21154 need_va_copy='$need_va_copy'
21155 netdb_hlen_type='$netdb_hlen_type'
21156 netdb_host_type='$netdb_host_type'
21157 netdb_name_type='$netdb_name_type'
21158 netdb_net_type='$netdb_net_type'
21159 nm='$nm'
21160 nm_opt='$nm_opt'
21161 nm_so_opt='$nm_so_opt'
21162 nonxs_ext='$nonxs_ext'
21163 nroff='$nroff'
21164 nvEUformat='$nvEUformat'
21165 nvFUformat='$nvFUformat'
21166 nvGUformat='$nvGUformat'
21167 nv_preserves_uv_bits='$nv_preserves_uv_bits'
21168 nveformat='$nveformat'
21169 nvfformat='$nvfformat'
21170 nvgformat='$nvgformat'
21171 nvsize='$nvsize'
21172 nvtype='$nvtype'
21173 o_nonblock='$o_nonblock'
21174 obj_ext='$obj_ext'
21175 old_pthread_create_joinable='$old_pthread_create_joinable'
21176 optimize='$optimize'
21177 orderlib='$orderlib'
21178 osname='$osname'
21179 osvers='$osvers'
21180 otherlibdirs='$otherlibdirs'
21181 package='$package'
21182 pager='$pager'
21183 passcat='$passcat'
21184 patchlevel='$patchlevel'
21185 path_sep='$path_sep'
21186 perl5='$perl5'
21187 perl='$perl'
21188 perl_patchlevel='$perl_patchlevel'
21189 perladmin='$perladmin'
21190 perllibs='$perllibs'
21191 perlpath='$perlpath'
21192 pg='$pg'
21193 phostname='$phostname'
21194 pidtype='$pidtype'
21195 plibpth='$plibpth'
21196 pm_apiversion='$pm_apiversion'
21197 pmake='$pmake'
21198 pr='$pr'
21199 prefix='$prefix'
21200 prefixexp='$prefixexp'
21201 privlib='$privlib'
21202 privlibexp='$privlibexp'
21203 procselfexe='$procselfexe'
21204 prototype='$prototype'
21205 ptrsize='$ptrsize'
21206 quadkind='$quadkind'
21207 quadtype='$quadtype'
21208 randbits='$randbits'
21209 randfunc='$randfunc'
21210 random_r_proto='$random_r_proto'
21211 randseedtype='$randseedtype'
21212 ranlib='$ranlib'
21213 rd_nodata='$rd_nodata'
21214 readdir64_r_proto='$readdir64_r_proto'
21215 readdir_r_proto='$readdir_r_proto'
21216 revision='$revision'
21217 rm='$rm'
21218 rmail='$rmail'
21219 run='$run'
21220 runnm='$runnm'
21221 sPRIEUldbl='$sPRIEUldbl'
21222 sPRIFUldbl='$sPRIFUldbl'
21223 sPRIGUldbl='$sPRIGUldbl'
21224 sPRIXU64='$sPRIXU64'
21225 sPRId64='$sPRId64'
21226 sPRIeldbl='$sPRIeldbl'
21227 sPRIfldbl='$sPRIfldbl'
21228 sPRIgldbl='$sPRIgldbl'
21229 sPRIi64='$sPRIi64'
21230 sPRIo64='$sPRIo64'
21231 sPRIu64='$sPRIu64'
21232 sPRIx64='$sPRIx64'
21233 sSCNfldbl='$sSCNfldbl'
21234 sched_yield='$sched_yield'
21235 scriptdir='$scriptdir'
21236 scriptdirexp='$scriptdirexp'
21237 sed='$sed'
21238 seedfunc='$seedfunc'
21239 selectminbits='$selectminbits'
21240 selecttype='$selecttype'
21241 sendmail='$sendmail'
21242 setgrent_r_proto='$setgrent_r_proto'
21243 sethostent_r_proto='$sethostent_r_proto'
21244 setlocale_r_proto='$setlocale_r_proto'
21245 setnetent_r_proto='$setnetent_r_proto'
21246 setprotoent_r_proto='$setprotoent_r_proto'
21247 setpwent_r_proto='$setpwent_r_proto'
21248 setservent_r_proto='$setservent_r_proto'
21249 sh='$sh'
21250 shar='$shar'
21251 sharpbang='$sharpbang'
21252 shmattype='$shmattype'
21253 shortsize='$shortsize'
21254 shrpenv='$shrpenv'
21255 shsharp='$shsharp'
21256 sig_count='$sig_count'
21257 sig_name='$sig_name'
21258 sig_name_init='$sig_name_init'
21259 sig_num='$sig_num'
21260 sig_num_init='$sig_num_init'
21261 sig_size='$sig_size'
21262 signal_t='$signal_t'
21263 sitearch='$sitearch'
21264 sitearchexp='$sitearchexp'
21265 sitebin='$sitebin'
21266 sitebinexp='$sitebinexp'
21267 sitehtml1dir='$sitehtml1dir'
21268 sitehtml1direxp='$sitehtml1direxp'
21269 sitehtml3dir='$sitehtml3dir'
21270 sitehtml3direxp='$sitehtml3direxp'
21271 sitelib='$sitelib'
21272 sitelib_stem='$sitelib_stem'
21273 sitelibexp='$sitelibexp'
21274 siteman1dir='$siteman1dir'
21275 siteman1direxp='$siteman1direxp'
21276 siteman3dir='$siteman3dir'
21277 siteman3direxp='$siteman3direxp'
21278 siteprefix='$siteprefix'
21279 siteprefixexp='$siteprefixexp'
21280 sitescript='$sitescript'
21281 sitescriptexp='$sitescriptexp'
21282 sizesize='$sizesize'
21283 sizetype='$sizetype'
21284 sleep='$sleep'
21285 smail='$smail'
21286 so='$so'
21287 sockethdr='$sockethdr'
21288 socketlib='$socketlib'
21289 socksizetype='$socksizetype'
21290 sort='$sort'
21291 spackage='$spackage'
21292 spitshell='$spitshell'
21293 srand48_r_proto='$srand48_r_proto'
21294 srandom_r_proto='$srandom_r_proto'
21295 src='$src'
21296 ssizetype='$ssizetype'
21297 startperl='$startperl'
21298 startsh='$startsh'
21299 static_ext='$static_ext'
21300 stdchar='$stdchar'
21301 stdio_base='$stdio_base'
21302 stdio_bufsiz='$stdio_bufsiz'
21303 stdio_cnt='$stdio_cnt'
21304 stdio_filbuf='$stdio_filbuf'
21305 stdio_ptr='$stdio_ptr'
21306 stdio_stream_array='$stdio_stream_array'
21307 strerror_r_proto='$strerror_r_proto'
21308 strings='$strings'
21309 submit='$submit'
21310 subversion='$subversion'
21311 sysman='$sysman'
21312 tail='$tail'
21313 tar='$tar'
21314 targetarch='$targetarch'
21315 tbl='$tbl'
21316 tee='$tee'
21317 test='$test'
21318 timeincl='$timeincl'
21319 timetype='$timetype'
21320 tmpnam_r_proto='$tmpnam_r_proto'
21321 to='$to'
21322 touch='$touch'
21323 tr='$tr'
21324 trnl='$trnl'
21325 troff='$troff'
21326 ttyname_r_proto='$ttyname_r_proto'
21327 u16size='$u16size'
21328 u16type='$u16type'
21329 u32size='$u32size'
21330 u32type='$u32type'
21331 u64size='$u64size'
21332 u64type='$u64type'
21333 u8size='$u8size'
21334 u8type='$u8type'
21335 uidformat='$uidformat'
21336 uidsign='$uidsign'
21337 uidsize='$uidsize'
21338 uidtype='$uidtype'
21339 uname='$uname'
21340 uniq='$uniq'
21341 uquadtype='$uquadtype'
21342 use5005threads='$use5005threads'
21343 use64bitall='$use64bitall'
21344 use64bitint='$use64bitint'
21345 usecrosscompile='$usecrosscompile'
21346 usedl='$usedl'
21347 usefaststdio='$usefaststdio'
21348 useithreads='$useithreads'
21349 uselargefiles='$uselargefiles'
21350 uselongdouble='$uselongdouble'
21351 usemorebits='$usemorebits'
21352 usemultiplicity='$usemultiplicity'
21353 usemymalloc='$usemymalloc'
21354 usenm='$usenm'
21355 useopcode='$useopcode'
21356 useperlio='$useperlio'
21357 useposix='$useposix'
21358 usereentrant='$usereentrant'
21359 usesfio='$usesfio'
21360 useshrplib='$useshrplib'
21361 usesocks='$usesocks'
21362 usethreads='$usethreads'
21363 usevendorprefix='$usevendorprefix'
21364 usevfork='$usevfork'
21365 usrinc='$usrinc'
21366 uuname='$uuname'
21367 uvXUformat='$uvXUformat'
21368 uvoformat='$uvoformat'
21369 uvsize='$uvsize'
21370 uvtype='$uvtype'
21371 uvuformat='$uvuformat'
21372 uvxformat='$uvxformat'
21373 vendorarch='$vendorarch'
21374 vendorarchexp='$vendorarchexp'
21375 vendorbin='$vendorbin'
21376 vendorbinexp='$vendorbinexp'
21377 vendorhtml1dir='$vendorhtml1dir'
21378 vendorhtml1direxp='$vendorhtml1direxp'
21379 vendorhtml3dir='$vendorhtml3dir'
21380 vendorhtml3direxp='$vendorhtml3direxp'
21381 vendorlib='$vendorlib'
21382 vendorlib_stem='$vendorlib_stem'
21383 vendorlibexp='$vendorlibexp'
21384 vendorman1dir='$vendorman1dir'
21385 vendorman1direxp='$vendorman1direxp'
21386 vendorman3dir='$vendorman3dir'
21387 vendorman3direxp='$vendorman3direxp'
21388 vendorprefix='$vendorprefix'
21389 vendorprefixexp='$vendorprefixexp'
21390 vendorscript='$vendorscript'
21391 vendorscriptexp='$vendorscriptexp'
21392 version='$version'
21393 version_patchlevel_string='$version_patchlevel_string'
21394 versiononly='$versiononly'
21395 vi='$vi'
21396 voidflags='$voidflags'
21397 xlibpth='$xlibpth'
21398 xs_apiversion='$xs_apiversion'
21399 yacc='$yacc'
21400 yaccflags='$yaccflags'
21401 zcat='$zcat'
21402 zip='$zip'
21403 EOT
21404
21405 : Add in command line options if available
21406 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
21407
21408 : add special variables
21409 $test -f $src/patchlevel.h && \
21410 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
21411 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
21412 echo "PERL_CONFIG_SH=true" >>config.sh
21413
21414 : propagate old symbols
21415 if $test -f UU/config.sh; then
21416         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
21417         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
21418         $sort | $uniq -u >UU/oldsyms
21419         set X `cat UU/oldsyms`
21420         shift
21421         case $# in
21422         0) ;;
21423         *)
21424                 cat <<EOM
21425 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
21426 EOM
21427                 echo "# Variables propagated from previous config.sh file." >>config.sh
21428                 for sym in `cat UU/oldsyms`; do
21429                         echo "    Propagating $hint variable "'$'"$sym..."
21430                         eval 'tmp="$'"${sym}"'"'
21431                         echo "$tmp" | \
21432                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
21433                 done
21434                 ;;
21435         esac
21436 fi
21437
21438 : Finish up by extracting the .SH files
21439 case "$alldone" in
21440 exit)
21441         $rm -rf UU
21442         echo "Extraction done."
21443         exit 0
21444         ;;
21445 cont)
21446         ;;
21447 '')
21448         dflt=''
21449         nostick=true
21450         $cat <<EOM
21451
21452 If you'd like to make any changes to the config.sh file before I begin
21453 to configure things, do it as a shell escape now (e.g. !vi config.sh).
21454
21455 EOM
21456         rp="Press return or use a shell escape to edit config.sh:"
21457         . UU/myread
21458         nostick=''
21459         case "$ans" in
21460         '') ;;
21461         *) : in case they cannot read
21462                 sh 1>&4 -c "$ans";;
21463         esac
21464         ;;
21465 esac
21466
21467 : if this fails, just run all the .SH files by hand
21468 . ./config.sh
21469
21470 echo " "
21471 exec 1>&4
21472 pwd=`pwd`
21473 . ./UU/extract
21474 cd "$pwd"
21475
21476 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
21477         dflt=y
21478         case "$silent" in
21479         true) ;;
21480         *)
21481                 $cat <<EOM
21482
21483 Now you need to generate make dependencies by running "$make depend".
21484 You might prefer to run it in background: "$make depend > makedepend.out &"
21485 It can take a while, so you might not want to run it right now.
21486
21487 EOM
21488                 ;;
21489         esac
21490         rp="Run $make depend now?"
21491         . UU/myread
21492         case "$ans" in
21493         y*)
21494                 $make depend && echo "Now you must run '$make'."
21495                 ;;
21496         *)
21497                 echo "You must run '$make depend' then '$make'."
21498                 ;;
21499         esac
21500 elif test -f [Mm]akefile; then
21501         echo " "
21502         echo "Now you must run a $make."
21503 else
21504         echo "Configure done."
21505 fi
21506
21507 if $test -f Policy.sh; then
21508     $cat <<EOM
21509
21510 If you compile $package on a different machine or from a different object
21511 directory, copy the Policy.sh file from this object directory to the
21512 new one before you run Configure -- this will help you with most of
21513 the policy defaults.
21514
21515 EOM
21516 fi
21517 if $test -f config.msg; then
21518     echo "Hmm.  I also noted the following information while running:"
21519     echo " "
21520     $cat config.msg >&4
21521     $rm -f config.msg
21522 fi
21523 $rm -f kit*isdone ark*isdone
21524 $rm -rf UU
21525
21526 : End of Configure
21527