[ PATCH ] Re: no snapshot today, no RC1 Monday
[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 Mon Apr  8 17:56:15 EET DST 2002 [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 : compute my invocation name
51 me=$0
52 case "$0" in
53 */*)
54         me=`echo $0 | sed -e 's!.*/\(.*\)!\1!' 2>/dev/null`
55         test "$me" || me=$0
56         ;;
57 esac
58
59 : Proper separator for the PATH environment variable
60 p_=:
61 : On OS/2 this directory should exist if this is not floppy only system :-]
62 if test -d c:/. ; then
63     if test -n "$OS2_SHELL"; then
64                 p_=\;
65                 PATH=`cmd /c "echo %PATH%" | tr '\\\\' / `
66                 OS2_SHELL=`cmd /c "echo %OS2_SHELL%" | tr '\\\\' / | tr '[A-Z]' '[a-z]'`
67         elif test -n "$DJGPP"; then
68                 case "X${MACHTYPE:-nonesuchmach}" in
69                 *cygwin) ;;
70                 *) p_=\; ;;
71                 esac
72         fi
73 fi
74
75 : Proper PATH setting
76 paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin'
77 paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin"
78 paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin"
79 paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
80 paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
81 paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /usr/ccs/bin"
82 paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
83 paths="$paths /sbin /usr/sbin /usr/libexec"
84 paths="$paths /system/gnu_library/bin"
85
86 for p in $paths
87 do
88         case "$p_$PATH$p_" in
89         *$p_$p$p_*) ;;
90         *) test -d $p && PATH=$PATH$p_$p ;;
91         esac
92 done
93
94 PATH=.$p_$PATH
95 export PATH
96
97 : shall we be using ksh?
98 inksh=''
99 needksh=''
100 avoidksh=''
101 newsh=/bin/ksh
102 changesh=''
103 if (PATH=.; alias -x) >/dev/null 2>&1; then
104                 inksh=true
105 fi
106 if test -f /hp-ux -a -f /bin/ksh; then
107         needksh='to avoid sh bug in "here document" expansion'
108 fi
109 if test -d /usr/lpp -a -f /usr/bin/bsh -a -f /usr/bin/uname; then
110         if test X`/usr/bin/uname -v` = X4; then
111                 avoidksh="to avoid AIX 4's /bin/sh"
112                 newsh=/usr/bin/bsh
113         fi
114 fi
115 if test -f /osf_boot -a -f /usr/sbin/setld; then
116         if test X`/usr/bin/uname -s` = XOSF1; then
117                 avoidksh="to avoid Digital UNIX' ksh"
118                 newsh=/bin/sh
119                 unset BIN_SH # if this is 'xpg4' sh will start up ksh
120         fi
121 fi
122 case "$inksh/$needksh" in
123 /[a-z]*)
124                 ENV=''
125                 changesh=true
126                 reason="$needksh"
127         ;;
128 esac
129 case "$inksh/$avoidksh" in
130 true/[a-z]*)
131         changesh=true
132         reason="$avoidksh"
133         ;;
134 esac
135 case "$inksh/$needksh-$avoidksh-" in
136 true/--)
137                 cat <<EOM
138 (I see you are using the Korn shell.  Some ksh's blow up on $me,
139 mainly on older exotic systems.  If yours does, try the Bourne shell instead.)
140 EOM
141         ;;
142 esac
143 case "$changesh" in
144 true)
145         export newsh
146         echo "(Feeding myself to $newsh $reason.)"
147         case "$0" in
148         Configure|*/Configure) exec $newsh $0 "$@";;
149         *) exec $newsh Configure "$@";;
150         esac
151         ;;
152 esac
153
154 : if needed set CDPATH to a harmless value that is not chatty
155 : avoid bash 2.02 problems with empty CDPATH.
156 case "$CDPATH" in
157 '')     ;;
158 *)      case "$SHELL" in
159         *bash*) CDPATH='.' ;;
160         *)              CDPATH='' ;;
161         esac
162         ;;
163 esac
164 : Configure runs within the UU subdirectory
165 test -d UU || mkdir UU
166 cd UU && rm -f ./*
167
168
169 ccname=''
170 ccversion=''
171 ccsymbols=''
172 cppccsymbols=''
173 cppsymbols=''
174 from=''
175 run=''
176 targetarch=''
177 to=''
178 usecrosscompile=''
179 perllibs=''
180 dynamic_ext=''
181 extensions=''
182 known_extensions=''
183 nonxs_ext=''
184 static_ext=''
185 useopcode=''
186 useposix=''
187 extras=''
188 d_bsd=''
189 d_eunice=''
190 d_xenix=''
191 eunicefix=''
192 Mcc=''
193 ar=''
194 awk=''
195 bash=''
196 bison=''
197 byacc=''
198 cat=''
199 chgrp=''
200 chmod=''
201 chown=''
202 comm=''
203 compress=''
204 cp=''
205 cpio=''
206 cpp=''
207 csh=''
208 date=''
209 echo=''
210 egrep=''
211 emacs=''
212 expr=''
213 find=''
214 flex=''
215 gmake=''
216 grep=''
217 gzip=''
218 inews=''
219 ksh=''
220 less=''
221 line=''
222 lint=''
223 ln=''
224 lp=''
225 lpr=''
226 ls=''
227 mail=''
228 mailx=''
229 make=''
230 mkdir=''
231 more=''
232 mv=''
233 nm=''
234 nroff=''
235 perl=''
236 pg=''
237 pmake=''
238 pr=''
239 rm=''
240 rmail=''
241 sed=''
242 sendmail=''
243 shar=''
244 sleep=''
245 smail=''
246 sort=''
247 submit=''
248 tail=''
249 tar=''
250 tbl=''
251 tee=''
252 test=''
253 touch=''
254 tr=''
255 troff=''
256 uname=''
257 uniq=''
258 uuname=''
259 vi=''
260 zcat=''
261 zip=''
262 full_ar=''
263 full_sed=''
264 libswanted=''
265 hint=''
266 myuname=''
267 osname=''
268 osvers=''
269 Author=''
270 Date=''
271 Header=''
272 Id=''
273 Locker=''
274 Log=''
275 RCSfile=''
276 Revision=''
277 Source=''
278 State=''
279 _a=''
280 _exe=''
281 _o=''
282 archobjs=''
283 exe_ext=''
284 firstmakefile=''
285 lib_ext=''
286 obj_ext=''
287 path_sep=''
288 afs=''
289 afsroot=''
290 alignbytes=''
291 ansi2knr=''
292 archlib=''
293 archlibexp=''
294 d_archlib=''
295 installarchlib=''
296 archname=''
297 myarchname=''
298 d_atolf=''
299 d_atoll=''
300 baserev=''
301 bin=''
302 binexp=''
303 installbin=''
304 bincompat5005=''
305 d_bincompat5005=''
306 byteorder=''
307 cc=''
308 ccflags=''
309 cppflags=''
310 ldflags=''
311 lkflags=''
312 locincpth=''
313 optimize=''
314 cf_email=''
315 cf_by=''
316 cf_time=''
317 charsize=''
318 contains=''
319 cpp_stuff=''
320 cpplast=''
321 cppminus=''
322 cpprun=''
323 cppstdin=''
324 d__fwalk=''
325 d_access=''
326 d_accessx=''
327 d_alarm=''
328 asctime_r_proto=''
329 d_asctime_r=''
330 d_attribut=''
331 d_bcmp=''
332 d_bcopy=''
333 d_bzero=''
334 d_casti32=''
335 castflags=''
336 d_castneg=''
337 d_chown=''
338 d_chroot=''
339 d_chsize=''
340 d_class=''
341 d_closedir=''
342 d_void_closedir=''
343 d_cmsghdr_s=''
344 d_const=''
345 cryptlib=''
346 d_crypt=''
347 crypt_r_proto=''
348 d_crypt_r=''
349 d_csh=''
350 full_csh=''
351 ctermid_r_proto=''
352 d_ctermid_r=''
353 ctime_r_proto=''
354 d_ctime_r=''
355 d_cuserid=''
356 d_dbl_dig=''
357 d_dbminitproto=''
358 d_difftime=''
359 d_dirfd=''
360 d_dlerror=''
361 d_dlopen=''
362 d_dlsymun=''
363 d_dosuid=''
364 d_suidsafe=''
365 d_drand48_r=''
366 drand48_r_proto=''
367 d_drand48proto=''
368 d_dup2=''
369 d_eaccess=''
370 d_endgrent=''
371 d_endgrent_r=''
372 endgrent_r_proto=''
373 d_endhent=''
374 d_endhostent_r=''
375 endhostent_r_proto=''
376 d_endnent=''
377 d_endnetent_r=''
378 endnetent_r_proto=''
379 d_endpent=''
380 d_endprotoent_r=''
381 endprotoent_r_proto=''
382 d_endpwent=''
383 d_endpwent_r=''
384 endpwent_r_proto=''
385 d_endsent=''
386 d_endservent_r=''
387 endservent_r_proto=''
388 d_fchdir=''
389 d_fchmod=''
390 d_fchown=''
391 d_fcntl=''
392 d_fcntl_can_lock=''
393 d_fd_macros=''
394 d_fd_set=''
395 d_fds_bits=''
396 d_fgetpos=''
397 d_finite=''
398 d_finitel=''
399 d_flexfnam=''
400 d_flock=''
401 d_flockproto=''
402 d_fork=''
403 d_fp_class=''
404 d_fpclass=''
405 d_fpclassify=''
406 d_fpclassl=''
407 d_fpos64_t=''
408 d_frexpl=''
409 d_fs_data_s=''
410 d_fseeko=''
411 d_fsetpos=''
412 d_fstatfs=''
413 d_fsync=''
414 d_ftello=''
415 d_ftime=''
416 d_gettimeod=''
417 d_Gconvert=''
418 d_getcwd=''
419 d_getespwnam=''
420 d_getfsstat=''
421 d_getgrent=''
422 d_getgrent_r=''
423 getgrent_r_proto=''
424 d_getgrgid_r=''
425 getgrgid_r_proto=''
426 d_getgrnam_r=''
427 getgrnam_r_proto=''
428 d_getgrps=''
429 d_gethbyaddr=''
430 d_gethbyname=''
431 d_gethent=''
432 aphostname=''
433 d_gethname=''
434 d_phostname=''
435 d_uname=''
436 d_gethostbyaddr_r=''
437 gethostbyaddr_r_proto=''
438 d_gethostbyname_r=''
439 gethostbyname_r_proto=''
440 d_gethostent_r=''
441 gethostent_r_proto=''
442 d_gethostprotos=''
443 d_getitimer=''
444 d_getlogin=''
445 d_getlogin_r=''
446 getlogin_r_proto=''
447 d_getmnt=''
448 d_getmntent=''
449 d_getnbyaddr=''
450 d_getnbyname=''
451 d_getnent=''
452 d_getnetbyaddr_r=''
453 getnetbyaddr_r_proto=''
454 d_getnetbyname_r=''
455 getnetbyname_r_proto=''
456 d_getnetent_r=''
457 getnetent_r_proto=''
458 d_getnetprotos=''
459 d_getpagsz=''
460 d_getpent=''
461 d_getpgid=''
462 d_getpgrp2=''
463 d_bsdgetpgrp=''
464 d_getpgrp=''
465 d_getppid=''
466 d_getprior=''
467 d_getpbyname=''
468 d_getpbynumber=''
469 d_getprotobyname_r=''
470 getprotobyname_r_proto=''
471 d_getprotobynumber_r=''
472 getprotobynumber_r_proto=''
473 d_getprotoent_r=''
474 getprotoent_r_proto=''
475 d_getprotoprotos=''
476 d_getprpwnam=''
477 d_getpwent=''
478 d_getpwent_r=''
479 getpwent_r_proto=''
480 d_getpwnam_r=''
481 getpwnam_r_proto=''
482 d_getpwuid_r=''
483 getpwuid_r_proto=''
484 d_getsent=''
485 d_getservbyname_r=''
486 getservbyname_r_proto=''
487 d_getservbyport_r=''
488 getservbyport_r_proto=''
489 d_getservent_r=''
490 getservent_r_proto=''
491 d_getservprotos=''
492 d_getspnam=''
493 d_getspnam_r=''
494 getspnam_r_proto=''
495 d_getsbyname=''
496 d_getsbyport=''
497 d_gmtime_r=''
498 gmtime_r_proto=''
499 d_gnulibc=''
500 d_hasmntopt=''
501 d_htonl=''
502 d_inetaton=''
503 d_int64_t=''
504 d_isascii=''
505 d_isfinite=''
506 d_isinf=''
507 d_isnan=''
508 d_isnanl=''
509 d_killpg=''
510 d_lchown=''
511 d_ldbl_dig=''
512 d_link=''
513 d_localtime_r=''
514 localtime_r_proto=''
515 d_locconv=''
516 d_lockf=''
517 d_longdbl=''
518 longdblsize=''
519 d_longlong=''
520 longlongsize=''
521 d_lseekproto=''
522 d_lstat=''
523 d_madvise=''
524 d_mblen=''
525 d_mbstowcs=''
526 d_mbtowc=''
527 d_memchr=''
528 d_memcmp=''
529 d_memcpy=''
530 d_memmove=''
531 d_memset=''
532 d_mkdir=''
533 d_mkdtemp=''
534 d_mkfifo=''
535 d_mkstemp=''
536 d_mkstemps=''
537 d_mktime=''
538 d_mmap=''
539 mmaptype=''
540 d_modfl=''
541 d_modfl_pow32_bug=''
542 d_mprotect=''
543 d_msg=''
544 d_msgctl=''
545 d_msgget=''
546 d_msghdr_s=''
547 d_msgrcv=''
548 d_msgsnd=''
549 d_msync=''
550 d_munmap=''
551 d_nice=''
552 d_nl_langinfo=''
553 d_off64_t=''
554 d_open3=''
555 d_fpathconf=''
556 d_pathconf=''
557 d_pause=''
558 d_pipe=''
559 d_poll=''
560 d_portable=''
561 d_procselfexe=''
562 procselfexe=''
563 d_old_pthread_create_joinable=''
564 old_pthread_create_joinable=''
565 d_pthread_atfork=''
566 d_pthread_yield=''
567 d_sched_yield=''
568 sched_yield=''
569 d_qgcvt=''
570 d_random_r=''
571 random_r_proto=''
572 d_readdir64_r=''
573 readdir64_r_proto=''
574 d_readdir=''
575 d_rewinddir=''
576 d_seekdir=''
577 d_telldir=''
578 d_readdir_r=''
579 readdir_r_proto=''
580 d_readlink=''
581 d_readv=''
582 d_recvmsg=''
583 d_rename=''
584 d_rmdir=''
585 d_safebcpy=''
586 d_safemcpy=''
587 d_sanemcmp=''
588 d_sbrkproto=''
589 d_select=''
590 d_sem=''
591 d_semctl=''
592 d_semget=''
593 d_semop=''
594 d_sendmsg=''
595 d_setegid=''
596 d_seteuid=''
597 d_setgrent=''
598 d_setgrent_r=''
599 setgrent_r_proto=''
600 d_setgrps=''
601 d_sethent=''
602 d_sethostent_r=''
603 sethostent_r_proto=''
604 d_setitimer=''
605 d_setlinebuf=''
606 d_setlocale=''
607 d_setlocale_r=''
608 setlocale_r_proto=''
609 d_setnent=''
610 d_setnetent_r=''
611 setnetent_r_proto=''
612 d_setpent=''
613 d_setpgid=''
614 d_setpgrp2=''
615 d_bsdsetpgrp=''
616 d_setpgrp=''
617 d_setprior=''
618 d_setproctitle=''
619 d_setprotoent_r=''
620 setprotoent_r_proto=''
621 d_setpwent=''
622 d_setpwent_r=''
623 setpwent_r_proto=''
624 d_setregid=''
625 d_setresgid=''
626 d_setresuid=''
627 d_setreuid=''
628 d_setrgid=''
629 d_setruid=''
630 d_setsent=''
631 d_setservent_r=''
632 setservent_r_proto=''
633 d_setsid=''
634 d_setvbuf=''
635 d_sfio=''
636 usesfio=''
637 d_shm=''
638 d_shmat=''
639 d_shmatprototype=''
640 shmattype=''
641 d_shmctl=''
642 d_shmdt=''
643 d_shmget=''
644 d_sigaction=''
645 d_sigprocmask=''
646 d_sigsetjmp=''
647 d_sockatmark=''
648 d_sockatmarkproto=''
649 d_msg_ctrunc=''
650 d_msg_dontroute=''
651 d_msg_oob=''
652 d_msg_peek=''
653 d_msg_proxy=''
654 d_oldsock=''
655 d_scm_rights=''
656 d_socket=''
657 d_sockpair=''
658 sockethdr=''
659 socketlib=''
660 d_socklen_t=''
661 d_socks5_init=''
662 d_sqrtl=''
663 d_srand48_r=''
664 srand48_r_proto=''
665 d_srandom_r=''
666 srandom_r_proto=''
667 d_sresgproto=''
668 d_sresuproto=''
669 d_statblks=''
670 d_statfs_f_flags=''
671 d_statfs_s=''
672 d_fstatvfs=''
673 d_statvfs=''
674 d_stdio_cnt_lval=''
675 d_stdio_ptr_lval=''
676 d_stdio_ptr_lval_nochange_cnt=''
677 d_stdio_ptr_lval_sets_cnt=''
678 d_stdiobase=''
679 d_stdstdio=''
680 stdio_base=''
681 stdio_bufsiz=''
682 stdio_cnt=''
683 stdio_filbuf=''
684 stdio_ptr=''
685 d_index=''
686 d_strchr=''
687 d_strcoll=''
688 d_strctcpy=''
689 d_strerrm=''
690 d_strerror=''
691 d_sysernlst=''
692 d_syserrlst=''
693 d_strerror_r=''
694 strerror_r_proto=''
695 d_strftime=''
696 d_strtod=''
697 d_strtol=''
698 d_strtold=''
699 d_strtoll=''
700 d_strtoq=''
701 d_strtoul=''
702 d_strtoull=''
703 d_strtouq=''
704 d_strxfrm=''
705 d_symlink=''
706 d_syscall=''
707 d_syscallproto=''
708 d_sysconf=''
709 d_system=''
710 d_tcgetpgrp=''
711 d_tcsetpgrp=''
712 d_telldirproto=''
713 d_time=''
714 timetype=''
715 clocktype=''
716 d_times=''
717 d_tmpnam_r=''
718 tmpnam_r_proto=''
719 d_truncate=''
720 d_ttyname_r=''
721 ttyname_r_proto=''
722 d_tzname=''
723 d_u32align=''
724 d_ualarm=''
725 d_umask=''
726 d_semctl_semid_ds=''
727 d_semctl_semun=''
728 d_union_semun=''
729 d_unordered=''
730 d_usleep=''
731 d_usleepproto=''
732 d_ustat=''
733 d_vfork=''
734 usevfork=''
735 d_voidsig=''
736 signal_t=''
737 d_volatile=''
738 d_charvspr=''
739 d_vprintf=''
740 d_wait4=''
741 d_waitpid=''
742 d_wcstombs=''
743 d_wctomb=''
744 d_writev=''
745 dlext=''
746 cccdlflags=''
747 ccdlflags=''
748 dlsrc=''
749 ld=''
750 lddlflags=''
751 usedl=''
752 doublesize=''
753 ebcdic=''
754 fflushNULL=''
755 fflushall=''
756 fpossize=''
757 fpostype=''
758 gccosandvers=''
759 gccversion=''
760 gidformat=''
761 gidsign=''
762 gidsize=''
763 gidtype=''
764 groupstype=''
765 h_fcntl=''
766 h_sysfile=''
767 i_arpainet=''
768 i_crypt=''
769 db_hashtype=''
770 db_prefixtype=''
771 db_version_major=''
772 db_version_minor=''
773 db_version_patch=''
774 i_db=''
775 i_dbm=''
776 i_rpcsvcdbm=''
777 d_dirnamlen=''
778 direntrytype=''
779 i_dirent=''
780 i_dld=''
781 i_dlfcn=''
782 i_fcntl=''
783 i_float=''
784 i_fp=''
785 i_fp_class=''
786 i_gdbm=''
787 d_grpasswd=''
788 i_grp=''
789 i_ieeefp=''
790 i_inttypes=''
791 i_langinfo=''
792 i_libutil=''
793 i_limits=''
794 i_locale=''
795 i_machcthr=''
796 i_malloc=''
797 i_math=''
798 i_memory=''
799 i_mntent=''
800 i_ndbm=''
801 i_netdb=''
802 i_neterrno=''
803 i_netinettcp=''
804 i_niin=''
805 i_sysin=''
806 i_poll=''
807 i_prot=''
808 i_pthread=''
809 d_pwage=''
810 d_pwchange=''
811 d_pwclass=''
812 d_pwcomment=''
813 d_pwexpire=''
814 d_pwgecos=''
815 d_pwpasswd=''
816 d_pwquota=''
817 i_pwd=''
818 i_sfio=''
819 i_shadow=''
820 i_socks=''
821 i_stddef=''
822 i_stdlib=''
823 i_string=''
824 strings=''
825 i_sunmath=''
826 i_sysaccess=''
827 i_sysdir=''
828 i_sysfile=''
829 d_voidtty=''
830 i_bsdioctl=''
831 i_sysfilio=''
832 i_sysioctl=''
833 i_syssockio=''
834 i_syslog=''
835 i_sysmman=''
836 i_sysmode=''
837 i_sysmount=''
838 i_sysndir=''
839 i_sysparam=''
840 i_sysresrc=''
841 i_syssecrt=''
842 i_sysselct=''
843 i_sysstat=''
844 i_sysstatfs=''
845 i_sysstatvfs=''
846 i_systimes=''
847 i_systypes=''
848 i_sysuio=''
849 i_sysun=''
850 i_sysutsname=''
851 i_sysvfs=''
852 i_syswait=''
853 i_sgtty=''
854 i_termio=''
855 i_termios=''
856 d_tm_tm_gmtoff=''
857 d_tm_tm_zone=''
858 i_systime=''
859 i_systimek=''
860 i_time=''
861 timeincl=''
862 i_unistd=''
863 i_ustat=''
864 i_utime=''
865 i_values=''
866 i_stdarg=''
867 i_varargs=''
868 i_varhdr=''
869 i_vfork=''
870 inc_version_list=''
871 inc_version_list_init=''
872 installprefix=''
873 installprefixexp=''
874 installstyle=''
875 installusrbinperl=''
876 intsize=''
877 longsize=''
878 shortsize=''
879 issymlink=''
880 libc=''
881 ldlibpthname=''
882 libperl=''
883 shrpenv=''
884 useshrplib=''
885 glibpth=''
886 libpth=''
887 loclibpth=''
888 plibpth=''
889 xlibpth=''
890 ignore_versioned_solibs=''
891 libs=''
892 libsdirs=''
893 libsfiles=''
894 libsfound=''
895 libspath=''
896 lns=''
897 d_PRIEUldbl=''
898 d_PRIFUldbl=''
899 d_PRIGUldbl=''
900 d_PRIeldbl=''
901 d_PRIfldbl=''
902 d_PRIgldbl=''
903 d_SCNfldbl=''
904 sPRIEUldbl=''
905 sPRIFUldbl=''
906 sPRIGUldbl=''
907 sPRIeldbl=''
908 sPRIfldbl=''
909 sPRIgldbl=''
910 sSCNfldbl=''
911 lseeksize=''
912 lseektype=''
913 make_set_make=''
914 d_mymalloc=''
915 freetype=''
916 mallocobj=''
917 mallocsrc=''
918 malloctype=''
919 usemymalloc=''
920 installman1dir=''
921 man1dir=''
922 man1direxp=''
923 man1ext=''
924 installman3dir=''
925 man3dir=''
926 man3direxp=''
927 man3ext=''
928 modetype=''
929 multiarch=''
930 mydomain=''
931 myhostname=''
932 phostname=''
933 c=''
934 n=''
935 d_eofnblk=''
936 eagain=''
937 o_nonblock=''
938 rd_nodata=''
939 need_va_copy=''
940 netdb_hlen_type=''
941 netdb_host_type=''
942 netdb_name_type=''
943 netdb_net_type=''
944 groupcat=''
945 hostcat=''
946 passcat=''
947 orderlib=''
948 ranlib=''
949 d_perl_otherlibdirs=''
950 otherlibdirs=''
951 package=''
952 spackage=''
953 pager=''
954 api_revision=''
955 api_subversion=''
956 api_version=''
957 api_versionstring=''
958 patchlevel=''
959 perl_patchlevel=''
960 revision=''
961 subversion=''
962 version=''
963 version_patchlevel_string=''
964 perl5=''
965 perladmin=''
966 perlpath=''
967 d_nv_preserves_uv=''
968 i16size=''
969 i16type=''
970 i32size=''
971 i32type=''
972 i64size=''
973 i64type=''
974 i8size=''
975 i8type=''
976 ivsize=''
977 ivtype=''
978 nv_preserves_uv_bits=''
979 nvsize=''
980 nvtype=''
981 u16size=''
982 u16type=''
983 u32size=''
984 u32type=''
985 u64size=''
986 u64type=''
987 u8size=''
988 u8type=''
989 uvsize=''
990 uvtype=''
991 ivdformat=''
992 nvEUformat=''
993 nvFUformat=''
994 nvGUformat=''
995 nveformat=''
996 nvfformat=''
997 nvgformat=''
998 uvXUformat=''
999 uvoformat=''
1000 uvuformat=''
1001 uvxformat=''
1002 pidtype=''
1003 prefix=''
1004 prefixexp=''
1005 installprivlib=''
1006 privlib=''
1007 privlibexp=''
1008 prototype=''
1009 ptrsize=''
1010 d_PRIXU64=''
1011 d_PRId64=''
1012 d_PRIi64=''
1013 d_PRIo64=''
1014 d_PRIu64=''
1015 d_PRIx64=''
1016 sPRIXU64=''
1017 sPRId64=''
1018 sPRIi64=''
1019 sPRIo64=''
1020 sPRIu64=''
1021 sPRIx64=''
1022 d_quad=''
1023 quadkind=''
1024 quadtype=''
1025 uquadtype=''
1026 drand01=''
1027 randbits=''
1028 randfunc=''
1029 randseedtype=''
1030 seedfunc=''
1031 installscript=''
1032 scriptdir=''
1033 scriptdirexp=''
1034 selectminbits=''
1035 selecttype=''
1036 sh=''
1037 sig_count=''
1038 sig_name=''
1039 sig_name_init=''
1040 sig_num=''
1041 sig_num_init=''
1042 sig_size=''
1043 installsitearch=''
1044 sitearch=''
1045 sitearchexp=''
1046 installsitebin=''
1047 sitebin=''
1048 sitebinexp=''
1049 installsitelib=''
1050 sitelib=''
1051 sitelib_stem=''
1052 sitelibexp=''
1053 siteprefix=''
1054 siteprefixexp=''
1055 sizesize=''
1056 sizetype=''
1057 so=''
1058 socksizetype=''
1059 sharpbang=''
1060 shsharp=''
1061 spitshell=''
1062 src=''
1063 ssizetype=''
1064 startperl=''
1065 startsh=''
1066 stdchar=''
1067 d_stdio_stream_array=''
1068 stdio_stream_array=''
1069 sysman=''
1070 trnl=''
1071 uidformat=''
1072 uidsign=''
1073 uidsize=''
1074 uidtype=''
1075 archname64=''
1076 use64bitall=''
1077 use64bitint=''
1078 ccflags_uselargefiles=''
1079 ldflags_uselargefiles=''
1080 libswanted_uselargefiles=''
1081 uselargefiles=''
1082 uselongdouble=''
1083 usemorebits=''
1084 usemultiplicity=''
1085 nm_opt=''
1086 nm_so_opt=''
1087 runnm=''
1088 usenm=''
1089 useperlio=''
1090 usesocks=''
1091 d_oldpthreads=''
1092 use5005threads=''
1093 useithreads=''
1094 usereentrant=''
1095 usethreads=''
1096 incpath=''
1097 mips_type=''
1098 usrinc=''
1099 d_vendorarch=''
1100 installvendorarch=''
1101 vendorarch=''
1102 vendorarchexp=''
1103 d_vendorbin=''
1104 installvendorbin=''
1105 vendorbin=''
1106 vendorbinexp=''
1107 d_vendorlib=''
1108 installvendorlib=''
1109 vendorlib=''
1110 vendorlib_stem=''
1111 vendorlibexp=''
1112 usevendorprefix=''
1113 vendorprefix=''
1114 vendorprefixexp=''
1115 versiononly=''
1116 defvoidused=''
1117 voidflags=''
1118 pm_apiversion=''
1119 xs_apiversion=''
1120 yacc=''
1121 yaccflags=''
1122 CONFIG=''
1123
1124 define='define'
1125 undef='undef'
1126 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
1127 rmlist=''
1128
1129 : We must find out about Eunice early
1130 eunicefix=':'
1131 if test -f /etc/unixtovms; then
1132         eunicefix=/etc/unixtovms
1133 fi
1134 if test -f /etc/unixtovms.exe; then
1135         eunicefix=/etc/unixtovms.exe
1136 fi
1137
1138 : Set executable suffix now -- needed before hints available
1139 if test -f "/libs/version.library"; then
1140 : Amiga OS
1141     _exe=""
1142 elif test -f "/system/gnu_library/bin/ar.pm"; then
1143 : Stratus VOS
1144     _exe=".pm"
1145 elif test -n "$DJGPP"; then
1146 : DOS DJGPP
1147     _exe=".exe"
1148 elif test -d c:/. ; then
1149 : OS/2 or cygwin
1150     _exe=".exe"
1151 fi
1152
1153 i_whoami=''
1154 ccname=''
1155 ccversion=''
1156 perllibs=''
1157 : set useposix=false in your hint file to disable the POSIX extension.
1158 useposix=true
1159 : set useopcode=false in your hint file to disable the Opcode extension.
1160 useopcode=true
1161 : Trailing extension.  Override this in a hint file, if needed.
1162 : Extra object files, if any, needed on this platform.
1163 archobjs=''
1164 archname=''
1165 : Possible local include directories to search.
1166 : Set locincpth to "" in a hint file to defeat local include searches.
1167 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1168 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1169 :
1170 : no include file wanted by default
1171 inclwanted=''
1172
1173 groupstype=''
1174 libnames=''
1175 : change the next line if compiling for Xenix/286 on Xenix/386
1176 xlibpth='/usr/lib/386 /lib/386'
1177 : Possible local library directories to search.
1178 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1179 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1180
1181 : general looking path for locating libraries
1182 glibpth="/lib /usr/lib $xlibpth"
1183 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1184 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1185 test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1186
1187 : Private path used by Configure to find libraries.  Its value
1188 : is prepended to libpth. This variable takes care of special
1189 : machines, like the mips.  Usually, it should be empty.
1190 plibpth=''
1191
1192 : default library list
1193 libswanted=''
1194 : some systems want to use only the non-versioned libso:s
1195 ignore_versioned_solibs=''
1196 archname64=''
1197 ccflags_uselargefiles=''
1198 ldflags_uselargefiles=''
1199 libswanted_uselargefiles=''
1200 : set usemultiplicity on the Configure command line to enable multiplicity.
1201 : set usesocks on the Configure command line to enable socks.
1202 : set usethreads on the Configure command line to enable threads.
1203 usereentrant='undef'
1204 : full support for void wanted by default
1205 defvoidused=15
1206
1207 : List of libraries we want.
1208 : If anyone needs -lnet, put it in a hint file.
1209 libswanted='sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl'
1210 libswanted="$libswanted dld ld sun m c cposix posix"
1211 libswanted="$libswanted ndir dir crypt sec"
1212 libswanted="$libswanted ucb bsd BSD PW x util"
1213 : We probably want to search /usr/shlib before most other libraries.
1214 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1215 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1216 glibpth="/usr/shlib $glibpth"
1217 : Do not use vfork unless overridden by a hint file.
1218 usevfork=false
1219
1220 : Find the basic shell for Bourne shell scripts
1221 case "$sh" in
1222 '')
1223         case "$SYSTYPE" in
1224         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1225         *) xxx='/bin/sh';;
1226         esac
1227         if test -f "$xxx"; then
1228                 sh="$xxx"
1229         else
1230                 : Build up a list and do a single loop so we can 'break' out.
1231                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1232                 for xxx in sh bash ksh pdksh ash; do
1233                         for p in $pth; do
1234                                 try="$try ${p}/${xxx}"
1235                         done
1236                 done
1237                 for xxx in $try; do
1238                         if test -f "$xxx"; then
1239                                 sh="$xxx";
1240                                 break
1241                         elif test "X$_exe" != X -a -f "$xxx$_exe"; then
1242                                 sh="$xxx";
1243                                 break
1244                         elif test -f "$xxx.exe"; then
1245                                 sh="$xxx";
1246                                 break
1247                         fi
1248                 done
1249         fi
1250         ;;
1251 esac
1252
1253 case "$sh" in
1254 '')     cat >&2 <<EOM
1255 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
1256
1257 Usually it's in /bin/sh.  How did you even get this far?
1258 Please contact me (Perl Maintainers) at perlbug@perl.org and 
1259 we'll try to straighten this all out.
1260 EOM
1261         exit 1
1262         ;;
1263 esac
1264
1265 : see if sh knows # comments
1266 if `$sh -c '#' >/dev/null 2>&1`; then
1267         shsharp=true
1268         spitshell=cat
1269         xcat=/bin/cat
1270         test -f $xcat$_exe || xcat=/usr/bin/cat
1271         if test ! -f $xcat$_exe; then
1272                 for p in `echo $PATH | sed -e "s/$p_/ /g"` $paths; do
1273                         if test -f $p/cat$_exe; then
1274                                 xcat=$p/cat
1275                                 break
1276                         fi
1277                 done
1278                 if test ! -f $xcat$_exe; then
1279                         echo "Can't find cat anywhere!"
1280                         exit 1
1281                 fi
1282         fi
1283         echo "#!$xcat" >sharp
1284         $eunicefix sharp
1285         chmod +x sharp
1286         ./sharp > today
1287         if test -s today; then
1288                 sharpbang='#!'
1289         else
1290                 echo "#! $xcat" > sharp
1291                 $eunicefix sharp
1292                 chmod +x sharp
1293                 ./sharp > today
1294                 if test -s today; then
1295                         sharpbang='#! '
1296                 else
1297                         sharpbang=': use '
1298                 fi
1299         fi
1300 else
1301         echo " "
1302         echo "Your $sh doesn't grok # comments--I will strip them later on."
1303         shsharp=false
1304         cd ..
1305         echo "exec grep -v '^[  ]*#'" >spitshell
1306         chmod +x spitshell
1307         $eunicefix spitshell
1308         spitshell=`pwd`/spitshell
1309         cd UU
1310         echo "I presume that if # doesn't work, #! won't work either!"
1311         sharpbang=': use '
1312 fi
1313 rm -f sharp today
1314
1315 : figure out how to guarantee sh startup
1316 case "$startsh" in
1317 '') startsh=${sharpbang}${sh} ;;
1318 *)
1319 esac
1320 cat >sharp <<EOSS
1321 $startsh
1322 set abc
1323 test "$?abc" != 1
1324 EOSS
1325
1326 chmod +x sharp
1327 $eunicefix sharp
1328 if ./sharp; then
1329         : echo "Yup, it does."
1330 else
1331         echo "Hmm... '$startsh' does not guarantee sh startup..."
1332         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1333 fi
1334 rm -f sharp
1335
1336
1337 : Save command line options in file UU/cmdline.opt for later use in
1338 : generating config.sh.
1339 cat > cmdline.opt <<EOSH
1340 # Configure command line arguments.
1341 config_arg0='$0'
1342 config_args='$*'
1343 config_argc=$#
1344 EOSH
1345 argn=1
1346 args_exp=''
1347 args_sep=''
1348 for arg in "$@"; do
1349         cat >>cmdline.opt <<EOSH
1350 config_arg$argn='$arg'
1351 EOSH
1352         # Extreme backslashitis: replace each ' by '"'"'
1353         cat <<EOC | sed -e "s/'/'"'"'"'"'"'"'/g" > cmdl.opt
1354 $arg
1355 EOC
1356         arg_exp=`cat cmdl.opt`
1357         args_exp="$args_exp$args_sep'$arg_exp'"
1358         argn=`expr $argn + 1`
1359         args_sep=' '
1360 done
1361 # args_exp is good for restarting self: eval "set X $args_exp"; shift; $0 "$@"
1362 # used by ./hints/os2.sh
1363 rm -f cmdl.opt
1364
1365 : produce awk script to parse command line options
1366 cat >options.awk <<'EOF'
1367 BEGIN {
1368         optstr = "A:dD:eEf:hKOrsSU:V";  # getopt-style specification
1369
1370         len = length(optstr);
1371         for (i = 1; i <= len; i++) {
1372                 c = substr(optstr, i, 1);
1373                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1374                 if (a == ":") {
1375                         arg[c] = 1;
1376                         i++;
1377                 }
1378                 opt[c] = 1;
1379         }
1380 }
1381 {
1382         expect = 0;
1383         str = $0;
1384         if (substr(str, 1, 1) != "-") {
1385                 printf("'%s'\n", str);
1386                 next;
1387         }
1388         len = length($0);
1389         for (i = 2; i <= len; i++) {
1390                 c = substr(str, i, 1);
1391                 if (!opt[c]) {
1392                         printf("-%s\n", substr(str, i));
1393                         next;
1394                 }
1395                 printf("-%s\n", c);
1396                 if (arg[c]) {
1397                         if (i < len)
1398                                 printf("'%s'\n", substr(str, i + 1));
1399                         else
1400                                 expect = 1;
1401                         next;
1402                 }
1403         }
1404 }
1405 END {
1406         if (expect)
1407                 print "?";
1408 }
1409 EOF
1410
1411 : process the command line options
1412 set X `for arg in "$@"; do echo "X$arg"; done |
1413         sed -e s/X// | awk -f options.awk`
1414 eval "set $*"
1415 shift
1416 rm -f options.awk
1417
1418 : set up default values
1419 fastread=''
1420 reuseval=false
1421 config_sh=''
1422 alldone=''
1423 error=''
1424 silent=''
1425 extractsh=''
1426 override=''
1427 knowitall=''
1428 rm -f optdef.sh posthint.sh
1429 cat >optdef.sh <<EOS
1430 $startsh
1431 EOS
1432
1433
1434 : option parsing
1435 while test $# -gt 0; do
1436         case "$1" in
1437         -d) shift; fastread=yes;;
1438         -e) shift; alldone=cont;;
1439         -f)
1440                 shift
1441                 cd ..
1442                 if test -r "$1"; then
1443                         config_sh="$1"
1444                 else
1445                         echo "$me: cannot read config file $1." >&2
1446                         error=true
1447                 fi
1448                 cd UU
1449                 shift;;
1450         -h) shift; error=true;;
1451         -r) shift; reuseval=true;;
1452         -s) shift; silent=true; realsilent=true;;
1453         -E) shift; alldone=exit;;
1454         -K) shift; knowitall=true;;
1455         -O) shift; override=true;;
1456         -S) shift; silent=true; extractsh=true;;
1457         -D)
1458                 shift
1459                 case "$1" in
1460                 *=)
1461                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1462                         echo "$me: ignoring -D $1" >&2
1463                         ;;
1464                 *=*) echo "$1" | \
1465                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1466                 *) echo "$1='define'" >> optdef.sh;;
1467                 esac
1468                 shift
1469                 ;;
1470         -U)
1471                 shift
1472                 case "$1" in
1473                 *=) echo "$1" >> optdef.sh;;
1474                 *=*)
1475                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1476                         echo "$me: ignoring -U $1" >&2
1477                         ;;
1478                 *) echo "$1='undef'" >> optdef.sh;;
1479                 esac
1480                 shift
1481                 ;;
1482         -A)
1483             shift
1484             xxx=''
1485             yyy="$1"
1486             zzz=''
1487             uuu=undef
1488             case "$yyy" in
1489             *=*) zzz=`echo $yyy|sed 's!=.*!!'`
1490                  case "$zzz" in
1491                  *:*) zzz='' ;;
1492                  *)   xxx=append
1493                       zzz=" "`echo $yyy|sed 's!^[^=]*=!!'` 
1494                       yyy=`echo $yyy|sed 's!=.*!!'` ;;
1495                  esac
1496                  ;;
1497             esac
1498             case "$xxx" in
1499             '')  case "$yyy" in
1500                  *:*) xxx=`echo $yyy|sed 's!:.*!!'`
1501                       yyy=`echo $yyy|sed 's!^[^:]*:!!'`
1502                       zzz=`echo $yyy|sed 's!^[^=]*=!!'`
1503                       yyy=`echo $yyy|sed 's!=.*!!'` ;;
1504                  *)   xxx=`echo $yyy|sed 's!:.*!!'`
1505                       yyy=`echo $yyy|sed 's!^[^:]*:!!'` ;;
1506                  esac
1507                  ;;       
1508             esac
1509             case "$xxx" in
1510             append)
1511                 echo "$yyy=\"\${$yyy}$zzz\""    >> posthint.sh ;;
1512             clear)
1513                 echo "$yyy=''"                  >> posthint.sh ;;
1514             define)
1515                 case "$zzz" in
1516                 '') zzz=define ;;
1517                 esac
1518                 echo "$yyy='$zzz'"              >> posthint.sh ;;
1519             eval)
1520                 echo "eval \"$yyy=$zzz\""       >> posthint.sh ;;
1521             prepend)
1522                 echo "$yyy=\"$zzz\${$yyy}\""    >> posthint.sh ;;
1523             undef)
1524                 case "$zzz" in
1525                 '') zzz="$uuu" ;;
1526                 esac
1527                 echo "$yyy=$zzz"                >> posthint.sh ;;
1528             *)  echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1529             esac
1530             shift
1531             ;;
1532         -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1533             exit 0;;
1534         --) break;;
1535         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1536         *) break;;
1537         esac
1538 done
1539
1540 case "$error" in
1541 true)
1542         cat >&2 <<EOM
1543 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1544                  [-U symbol] [-U symbol=] [-A command:symbol...]
1545   -d : use defaults for all answers.
1546   -e : go on without questioning past the production of config.sh.
1547   -f : specify an alternate default configuration file.
1548   -h : print this help message and exit (with an error status).
1549   -r : reuse C symbols value if possible (skips costly nm extraction).
1550   -s : silent mode, only echoes questions and essential information.
1551   -D : define symbol to have some value:
1552          -D symbol         symbol gets the value 'define'
1553          -D symbol=value   symbol gets the value 'value'
1554   -E : stop at the end of questions, after having produced config.sh.
1555   -K : do not use unless you know what you are doing.
1556   -O : let -D and -U override definitions from loaded configuration file.
1557   -S : perform variable substitutions on all .SH files (can mix with -f)
1558   -U : undefine symbol:
1559          -U symbol    symbol gets the value 'undef'
1560          -U symbol=   symbol gets completely empty
1561   -A : manipulate symbol after the platform specific hints have been applied:
1562          -A symbol=value                append " "value to symbol
1563          -A append:symbol=value         append value to symbol
1564          -A define:symbol=value         define symbol to have value
1565          -A clear:symbol                define symbol to be ''
1566          -A define:symbol               define symbol to be 'define'
1567          -A eval:symbol=value           define symbol to be eval of value
1568          -A prepend:symbol=value        prepend value to symbol
1569          -A undef:symbol                define symbol to be 'undef'
1570          -A undef:symbol=               define symbol to be ''
1571   -V : print version number and exit (with a zero status).
1572 EOM
1573         exit 1
1574         ;;
1575 esac
1576
1577 : Sanity checks
1578 case "$fastread$alldone" in
1579 yescont|yesexit) ;;
1580 *)
1581         case "$extractsh" in
1582         true) ;;
1583         *)
1584                 if test ! -t 0; then
1585                         echo "Say 'sh Configure', not 'sh <Configure'"
1586                         exit 1
1587                 fi
1588                 ;;
1589         esac
1590         ;;
1591 esac
1592
1593 exec 4>&1
1594 case "$silent" in
1595 true) exec 1>/dev/null;;
1596 esac
1597
1598 : run the defines and the undefines, if any, but leave the file out there...
1599 touch optdef.sh
1600 . ./optdef.sh
1601 : create the posthint manipulation script and leave the file out there...
1602 touch posthint.sh
1603
1604 : set package name
1605 package=perl5
1606 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1607 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1608 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1609 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1610 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1611 esac
1612
1613 : Some greps do not return status, grrr.
1614 echo "grimblepritz" >grimble
1615 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1616         contains=contains
1617 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1618         contains=grep
1619 else
1620         contains=contains
1621 fi
1622 rm -f grimble
1623 : the following should work in any shell
1624 case "$contains" in
1625 contains*)
1626         echo " "
1627         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1628         cat >contains <<'EOSS'
1629 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1630 EOSS
1631 chmod +x contains
1632 esac
1633
1634 : Find the path to the source tree
1635 case "$src" in
1636 '') case "$0" in
1637     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1638          case "$src" in
1639          /*)    ;;
1640          .)     ;;
1641          *)     src=`cd ../$src && pwd` ;;
1642          esac
1643          ;;
1644     *)   src='.';;
1645     esac;;
1646 esac
1647 case "$src" in
1648 '')     src=/
1649         rsrc=/
1650         ;;
1651 /*) rsrc="$src";;
1652 *) rsrc="../$src";;
1653 esac
1654 if test -f $rsrc/Configure && \
1655         $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1656 then
1657    : found it, so we are ok.
1658 else
1659         rsrc=''
1660         for src in . .. ../.. ../../.. ../../../..; do
1661                 if test -f ../$src/Configure && \
1662                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1663                 then
1664                         rsrc=../$src
1665                         break
1666                 fi
1667         done
1668 fi
1669 case "$rsrc" in
1670 '')
1671         cat <<EOM >&4
1672
1673 Sorry, I can't seem to locate the source dir for $package.  Please start
1674 Configure with an explicit path -- i.e. /some/path/Configure.
1675
1676 EOM
1677         exit 1
1678         ;;
1679 ../.)   rsrc='..';;
1680 *)
1681         echo " "
1682         echo "Sources for $package found in \"$src\"." >&4
1683         ;;
1684 esac
1685
1686 : script used to extract .SH files with variable substitutions
1687 cat >extract <<'EOS'
1688 PERL_CONFIG_SH=true
1689 echo "Doing variable substitutions on .SH files..."
1690 if test -f MANIFEST; then
1691         set x `awk '{print $1}' < MANIFEST | grep '\.SH$'`
1692 else
1693         echo "(Looking for .SH files under the source directory.)"
1694         set x `(cd "$src"; find . -name "*.SH" -print)`
1695 fi
1696 shift
1697 case $# in
1698 0) set x `(cd "$src"; echo *.SH)`; shift;;
1699 esac
1700 if test ! -f "$src/$1"; then
1701         shift
1702 fi
1703 mkdir_p='
1704 name=$1;
1705 create="";
1706 while test $name; do
1707         if test ! -d "$name"; then
1708                 create="$name $create";
1709                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1710                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1711         else
1712                 name="";
1713         fi;
1714 done;
1715 for file in $create; do
1716         mkdir $file;
1717 done
1718 '
1719 for file in $*; do
1720         case "$src" in
1721         ".")
1722                 case "$file" in
1723                 */*)
1724                         dir=`expr X$file : 'X\(.*\)/'`
1725                         file=`expr X$file : 'X.*/\(.*\)'`
1726                         (cd "$dir" && . ./$file)
1727                         ;;
1728                 *)
1729                         . ./$file
1730                         ;;
1731                 esac
1732                 ;;
1733         *)
1734                 case "$file" in
1735                 */*)
1736                         dir=`expr X$file : 'X\(.*\)/'`
1737                         file=`expr X$file : 'X.*/\(.*\)'`
1738                         (set x $dir; shift; eval $mkdir_p)
1739                         sh <"$src/$dir/$file"
1740                         ;;
1741                 *)
1742                         sh <"$src/$file"
1743                         ;;
1744                 esac
1745                 ;;
1746         esac
1747 done
1748 if test -f "$src/config_h.SH"; then
1749         if test ! -f config.h; then
1750         : oops, they left it out of MANIFEST, probably, so do it anyway.
1751         . "$src/config_h.SH"
1752         fi
1753 fi
1754 EOS
1755
1756 : extract files and exit if asked to do so
1757 case "$extractsh" in
1758 true)
1759         case "$realsilent" in
1760         true) ;;
1761         *) exec 1>&4;;
1762         esac
1763         case "$config_sh" in
1764         '') config_sh='config.sh';;
1765         esac
1766         echo " "
1767         echo "Fetching answers from $config_sh..."
1768         cd ..
1769         . $config_sh
1770         test "$override" && . ./optdef.sh
1771         echo " "
1772         . UU/extract
1773         rm -rf UU
1774         echo "Extraction done."
1775         exit 0
1776         ;;
1777 esac
1778
1779 : Eunice requires " " instead of "", can you believe it
1780 echo " "
1781 : Here we go...
1782 echo "Beginning of configuration questions for $package."
1783
1784 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1785
1786 : first determine how to suppress newline on echo command
1787 echo " "
1788 echo "Checking echo to see how to suppress newlines..."
1789 (echo "hi there\c" ; echo " ") >.echotmp
1790 if $contains c .echotmp >/dev/null 2>&1 ; then
1791         echo "...using -n."
1792         n='-n'
1793         c=''
1794 else
1795         cat <<'EOM'
1796 ...using \c
1797 EOM
1798         n=''
1799         c='\c'
1800 fi
1801 echo $n "The star should be here-->$c"
1802 echo '*'
1803 rm -f .echotmp
1804
1805 : Now test for existence of everything in MANIFEST
1806 echo " "
1807 if test -f "$rsrc/MANIFEST"; then
1808         echo "First let's make sure your kit is complete.  Checking..." >&4
1809         awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | (split -l 50 2>/dev/null || split -50)
1810         rm -f missing
1811         tmppwd=`pwd`
1812         for filelist in x??; do
1813                 (cd "$rsrc"; ls `cat "$tmppwd/$filelist"` >/dev/null 2>>"$tmppwd/missing")
1814         done
1815         if test -s missing; then
1816                 cat missing >&4
1817                 cat >&4 <<'EOM'
1818
1819 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1820
1821 You have the option of continuing the configuration process, despite the
1822 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1823 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1824 and contact the author (perlbug@perl.org).
1825
1826 EOM
1827                 echo $n "Continue? [n] $c" >&4
1828                 read ans
1829                 case "$ans" in
1830                 y*)
1831                         echo "Continuing..." >&4
1832                         rm -f missing
1833                         ;;
1834                 *)
1835                         echo "ABORTING..." >&4
1836                         kill $$
1837                         ;;
1838                 esac
1839         else
1840                 echo "Looks good..."
1841         fi
1842 else
1843         echo "There is no MANIFEST file.  I hope your kit is complete !"
1844 fi
1845 rm -f missing x??
1846
1847 echo " "
1848 : Find the appropriate value for a newline for tr
1849 if test -n "$DJGPP"; then
1850        trnl='\012'
1851 fi
1852 if test X"$trnl" = X; then
1853         case "`echo foo|tr '\n' x 2>/dev/null`" in
1854         foox) trnl='\n' ;;
1855         esac
1856 fi
1857 if test X"$trnl" = X; then
1858         case "`echo foo|tr '\012' x 2>/dev/null`" in
1859         foox) trnl='\012' ;;
1860         esac
1861 fi
1862 if test X"$trnl" = X; then
1863         cat <<EOM >&2
1864
1865 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1866
1867 EOM
1868         exit 1
1869 fi
1870
1871 : compute the number of columns on the terminal for proper question formatting
1872 case "$COLUMNS" in
1873 '') COLUMNS='80';;
1874 esac
1875
1876 : set up the echo used in my read
1877 myecho="case \"\$xxxm\" in
1878 '') echo $n \"\$rp $c\" >&4;;
1879 *) case \"\$rp\" in
1880         '') echo $n \"[\$xxxm] $c\";;
1881         *)
1882                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
1883                         echo \"\$rp\" >&4
1884                         echo $n \"[\$xxxm] $c\" >&4
1885                 else
1886                         echo $n \"\$rp [\$xxxm] $c\" >&4
1887                 fi
1888                 ;;
1889         esac;;
1890 esac"
1891
1892 : now set up to do reads with possible shell escape and default assignment
1893 cat <<EOSC >myread
1894 $startsh
1895 xxxm=\$dflt
1896 $myecho
1897 ans='!'
1898 case "\$fastread" in
1899 yes) case "\$dflt" in
1900         '') ;;
1901         *) ans='';
1902                 case "\$silent-\$rp" in
1903                 true-) ;;
1904                 *) echo " " >&4;;
1905                 esac;;
1906         esac;;
1907 *) case "\$silent" in
1908         true) case "\$rp" in
1909                 '') ans='';;
1910                 esac;;
1911         esac;;
1912 esac
1913 while expr "X\$ans" : "X!" >/dev/null; do
1914         read answ
1915         set x \$xxxm
1916         shift
1917         aok=''; eval "ans=\\"\$answ\\"" && aok=y
1918         case  "\$answ" in
1919         "!")
1920                 sh 1>&4
1921                 echo " "
1922                 $myecho
1923                 ;;
1924         !*)
1925                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
1926                 shift
1927                 sh 1>&4 -c "\$*"
1928                 echo " "
1929                 $myecho
1930                 ;;
1931         "\$ans")
1932                 case "\$ans" in
1933                 \\&*)
1934                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
1935                         shift
1936                         case "\$1" in
1937                         -d)
1938                                 fastread=yes
1939                                 echo "(OK, I'll run with -d after this question.)" >&4
1940                                 ;;
1941                         -*)
1942                                 echo "*** Sorry, \$1 not supported yet." >&4
1943                                 ;;
1944                         esac
1945                         $myecho
1946                         ans=!
1947                         ;;
1948                 esac;;
1949         *)
1950                 case "\$aok" in
1951                 y)
1952                         echo "*** Substitution done -- please confirm."
1953                         xxxm="\$ans"
1954                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
1955                         xxxm="\$ans"
1956                         ans=!
1957                         ;;
1958                 *)
1959                         echo "*** Error -- try again."
1960                         ans=!
1961                         ;;
1962                 esac
1963                 $myecho
1964                 ;;
1965         esac
1966         case "\$ans\$xxxm\$nostick" in
1967         '')
1968                 ans=!
1969                 $myecho
1970                 ;;
1971         esac
1972 done
1973 case "\$ans" in
1974 '') ans="\$xxxm";;
1975 esac
1976 EOSC
1977
1978 : create .config dir to save info across Configure sessions
1979 test -d ../.config || mkdir ../.config
1980 cat >../.config/README <<EOF
1981 This directory created by Configure to save information that should
1982 persist across sessions for $package.
1983
1984 You may safely delete it if you wish.
1985 EOF
1986
1987 xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
1988 case "$usedevel" in
1989 $define|true|[yY]*) ;;
1990 *) case "$xversion" in
1991    *[13579])
1992         cat >&4 <<EOH
1993 *** WHOA THERE!!! ***
1994
1995     This is an UNSTABLE DEVELOPMENT release.
1996     The version of this $package distribution is $xversion, that is, odd,
1997     (as opposed to even) and that signifies a development release.
1998     If you want a maintenance release, you want an even-numbered version.
1999
2000     Do ***NOT*** install this into production use.
2001     Data corruption and crashes are possible.
2002
2003     It is most seriously suggested that you do not continue any further
2004     unless you want to help in developing and debugging Perl.
2005
2006     If you *still* want to build perl, you can answer 'y' now,
2007     or pass -Dusedevel to Configure.
2008
2009 EOH
2010         rp='Do you really want to continue?'
2011         dflt='n'
2012         . ./myread
2013         case "$ans" in
2014         [yY]) echo >&4 "Okay, continuing."
2015               usedevel="$define" ;;
2016         *) echo >&4 "Okay, bye."
2017            exit 1
2018            ;;
2019         esac
2020         ;;
2021     esac
2022     ;;
2023 esac
2024 case "$usedevel" in
2025 $define|true|[yY]*)
2026         case "$versiononly" in
2027         '') versiononly="$define" ;;
2028         esac
2029         case "$installusrbinperl" in
2030         '') installusrbinperl="$undef" ;;
2031         esac
2032         ;;
2033 esac
2034
2035 : general instructions
2036 needman=true
2037 firsttime=true
2038 user=`(logname) 2>/dev/null`
2039 case "$user" in
2040 '') user=`whoami 2>&1`;;
2041 esac
2042 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2043         firsttime=false
2044         echo " "
2045         rp='Would you like to see the instructions?'
2046         dflt=n
2047         . ./myread
2048         case "$ans" in
2049         [yY]*) ;;
2050         *) needman=false;;
2051         esac
2052 fi
2053 if $needman; then
2054         cat <<EOH
2055
2056 This installation shell script will examine your system and ask you questions
2057 to determine how the perl5 package should be installed. If you get
2058 stuck on a question, you may use a ! shell escape to start a subshell or
2059 execute a command.  Many of the questions will have default answers in square
2060 brackets; typing carriage return will give you the default.
2061
2062 On some of the questions which ask for file or directory names you are allowed
2063 to use the ~name construct to specify the login directory belonging to "name",
2064 even if you don't have a shell which knows about that.  Questions where this is
2065 allowed will be marked "(~name ok)".
2066
2067 EOH
2068         rp=''
2069         dflt='Type carriage return to continue'
2070         . ./myread
2071         cat <<'EOH'
2072
2073 The prompter used in this script allows you to use shell variables and
2074 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
2075 in the default answer, as if the default line was a set of arguments given to a
2076 script shell.  This means you may also use $* to repeat the whole default line,
2077 so you do not have to re-type everything to add something to the default.
2078
2079 Everytime there is a substitution, you will have to confirm.  If there is an
2080 error (e.g. an unmatched backtick), the default answer will remain unchanged
2081 and you will be prompted again.
2082
2083 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
2084 the questions and use the computed defaults (or the previous answers if there
2085 was already a config.sh file). Type 'Configure -h' for a list of options.
2086 You may also start interactively and then answer '& -d' at any prompt to turn
2087 on the non-interactive behaviour for the remainder of the execution.
2088
2089 EOH
2090         . ./myread
2091         cat <<EOH
2092
2093 Much effort has been expended to ensure that this shell script will run on any
2094 Unix system.  If despite that it blows up on yours, your best bet is to edit
2095 Configure and run it again.  If you can't run Configure for some reason,
2096 you'll have to generate a config.sh file by hand.  Whatever problems you
2097 have, let me (perlbug@perl.org) know how I blew it.
2098
2099 This installation script affects things in two ways:
2100
2101 1) it may do direct variable substitutions on some of the files included
2102    in this kit.
2103 2) it builds a config.h file for inclusion in C programs.  You may edit
2104    any of these files as the need arises after running this script.
2105
2106 If you make a mistake on a question, there is no easy way to back up to it
2107 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
2108 files.  Configure will offer to let you do this before it runs the SH files.
2109
2110 EOH
2111         dflt='Type carriage return to continue'
2112         . ./myread
2113         case "$firsttime" in
2114         true) echo $user >>../.config/instruct;;
2115         esac
2116 fi
2117
2118 : find out where common programs are
2119 echo " "
2120 echo "Locating common programs..." >&4
2121 cat <<EOSC >loc
2122 $startsh
2123 case \$# in
2124 0) exit 1;;
2125 esac
2126 thing=\$1
2127 shift
2128 dflt=\$1
2129 shift
2130 for dir in \$*; do
2131         case "\$thing" in
2132         .)
2133         if test -d \$dir/\$thing; then
2134                 echo \$dir
2135                 exit 0
2136         fi
2137         ;;
2138         *)
2139         for thisthing in \$dir/\$thing; do
2140                 : just loop through to pick last item
2141         done
2142         if test -f \$thisthing; then
2143                 echo \$thisthing
2144                 exit 0
2145         elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2146                 echo \$thisthing
2147                 exit 0
2148         elif test -f \$dir/\$thing.exe; then
2149                 if test -n "$DJGPP"; then
2150                         echo \$dir/\$thing.exe
2151                 else
2152                         : on Eunice apparently
2153                         echo \$dir/\$thing
2154                 fi
2155                 exit 0
2156         fi
2157         ;;
2158         esac
2159 done
2160 echo \$dflt
2161 exit 1
2162 EOSC
2163 chmod +x loc
2164 $eunicefix loc
2165 loclist="
2166 awk
2167 cat
2168 chmod
2169 comm
2170 cp
2171 echo
2172 expr
2173 grep
2174 ls
2175 mkdir
2176 rm
2177 sed
2178 sort
2179 touch
2180 tr
2181 uniq
2182 "
2183 trylist="
2184 Mcc
2185 ar
2186 bison
2187 byacc
2188 cpp
2189 csh
2190 date
2191 egrep
2192 gmake
2193 gzip
2194 less
2195 ln
2196 make
2197 more
2198 nm
2199 nroff
2200 pg
2201 test
2202 uname
2203 zip
2204 "
2205 pth=`echo $PATH | sed -e "s/$p_/ /g"`
2206 pth="$pth /lib /usr/lib"
2207 for file in $loclist; do
2208         eval xxx=\$$file
2209         case "$xxx" in
2210         /*|?:[\\/]*)
2211                 if test -f "$xxx"; then
2212                         : ok
2213                 else
2214                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2215                         xxx=`./loc $file $file $pth`
2216                 fi
2217                 ;;
2218         '') xxx=`./loc $file $file $pth`;;
2219         *) xxx=`./loc $xxx $xxx $pth`;;
2220         esac
2221         eval $file=$xxx$_exe
2222         eval _$file=$xxx
2223         case "$xxx" in
2224         /*)
2225                 echo $file is in $xxx.
2226                 ;;
2227         ?:[\\/]*)
2228                 echo $file is in $xxx.
2229                 ;;
2230         *)
2231                 echo "I don't know where '$file' is, and my life depends on it." >&4
2232                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2233                 exit 1
2234                 ;;
2235         esac
2236 done
2237 echo " "
2238 echo "Don't worry if any of the following aren't found..."
2239 say=offhand
2240 for file in $trylist; do
2241         eval xxx=\$$file
2242         case "$xxx" in
2243         /*|?:[\\/]*)
2244                 if test -f "$xxx"; then
2245                         : ok
2246                 else
2247                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2248                         xxx=`./loc $file $file $pth`
2249                 fi
2250                 ;;
2251         '') xxx=`./loc $file $file $pth`;;
2252         *) xxx=`./loc $xxx $xxx $pth`;;
2253         esac
2254         eval $file=$xxx$_exe
2255         eval _$file=$xxx
2256         case "$xxx" in
2257         /*)
2258                 echo $file is in $xxx.
2259                 ;;
2260         ?:[\\/]*)
2261                 echo $file is in $xxx.
2262                 ;;
2263         *)
2264                 echo "I don't see $file out there, $say."
2265                 say=either
2266                 ;;
2267         esac
2268 done
2269 case "$egrep" in
2270 egrep)
2271         echo "Substituting grep for egrep."
2272         egrep=$grep
2273         _egrep=$grep
2274         ;;
2275 esac
2276 case "$ln" in
2277 ln)
2278         echo "Substituting cp for ln."
2279         ln=$cp
2280         _ln=$cp
2281         ;;
2282 esac
2283 case "$make" in
2284 make)   
2285         case "$gmake" in
2286         gmake)
2287         echo "I can't find make or gmake, and my life depends on it." >&4
2288         echo "Go find a public domain implementation or fix your PATH setting!" >&4
2289         exit 1
2290         ;;
2291         esac
2292         ;;
2293 esac    
2294 case "$gmake" in
2295 gmake)  ;;
2296 *)      # We can't have osname yet.
2297         if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2298                 # Assume that gmake, if found, is definitely GNU make
2299                 # and prefer it over the system make.
2300                 echo "Substituting gmake for make."
2301                 make=$gmake
2302                 _make=$gmake
2303         fi
2304         ;;
2305 esac
2306 case "$test" in
2307 test)
2308         echo "Hopefully test is built into your sh."
2309         ;;
2310 *)
2311         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2312                 echo "Using the test built into your sh."
2313                 test=test
2314                 _test=test
2315         fi
2316         ;;
2317 esac
2318 case "$echo" in
2319 echo)
2320         echo "Hopefully echo is built into your sh."
2321         ;;
2322 '') ;;
2323 *)
2324         echo " "
2325 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2326         $echo $n "hi there$c" >foo1
2327         echo $n "hi there$c" >foo2
2328         if cmp foo1 foo2 >/dev/null 2>&1; then
2329                 echo "They are compatible.  In fact, they may be identical."
2330         else
2331                 case "$n" in
2332                 '-n') n='' c='\c';;
2333                 *) n='-n' c='';;
2334                 esac
2335                 cat <<FOO
2336 They are not compatible!  You are probably running ksh on a non-USG system.
2337 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2338 have echo built in and we may have to run some Bourne shell scripts.  That
2339 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2340
2341 FOO
2342                 $echo $n "The star should be here-->$c"
2343                 $echo "*"
2344         fi
2345         $rm -f foo1 foo2
2346         ;;
2347 esac
2348
2349 cat <<EOS >trygcc
2350 $startsh
2351 EOS
2352 cat <<'EOSC' >>trygcc
2353 case "$cc" in
2354 '') ;;
2355 *)  $rm -f try try.*
2356     $cat >try.c <<EOM
2357 int main(int argc, char *argv[]) {
2358   return 0;
2359 }
2360 EOM
2361     if $cc -o try $ccflags $ldflags try.c; then
2362        :
2363     else
2364         echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2365         despair=yes
2366         trygcc=yes
2367         case "$cc" in
2368         *gcc*) trygcc=no ;;
2369         esac
2370         case "`$cc -v -c try.c 2>&1`" in
2371         *gcc*) trygcc=no ;;
2372         esac
2373         if $test X"$trygcc" = Xyes; then
2374             if gcc -o try -c try.c; then
2375                 echo " "
2376                 echo "You seem to have a working gcc, though." >&4
2377                 rp="Would you like to use it?"
2378                 dflt=y
2379                 if $test -f myread; then
2380                     . ./myread
2381                 else
2382                     if $test -f UU/myread; then
2383                         . ./UU/myread
2384                     else
2385                         echo "Cannot find myread, sorry.  Aborting." >&2
2386                         exit 1
2387                     fi
2388                 fi  
2389                 case "$ans" in
2390                 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2391                        if $test -f usethreads.cbu; then
2392                            $cat >&4 <<EOM 
2393
2394 *** However, any setting of the C compiler flags (e.g. for thread support)
2395 *** has been lost.  It may be necessary to pass -Dcc=gcc to Configure
2396 *** (together with e.g. -Dusethreads).
2397
2398 EOM
2399                        fi;;
2400                 esac
2401             fi
2402         fi
2403     fi
2404     $rm -f try try.*
2405     ;;
2406 esac
2407 EOSC
2408
2409 cat <<EOS >checkcc
2410 $startsh
2411 EOS
2412 cat <<'EOSC' >>checkcc
2413 case "$cc" in        
2414 '') ;;
2415 *)  $rm -f try try.*              
2416     $cat >try.c <<EOM
2417 int main(int argc, char *argv[]) {
2418   return 0;
2419 }
2420 EOM
2421     if $cc -o try $ccflags $ldflags try.c; then
2422        :
2423     else
2424         if $test X"$despair" = Xyes; then
2425            echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2426         fi
2427         $cat >&4 <<EOM         
2428 You need to find a working C compiler.
2429 Either (purchase and) install the C compiler supplied by your OS vendor,
2430 or for a free C compiler try http://gcc.gnu.org/
2431 I cannot continue any further, aborting.
2432 EOM
2433         exit 1
2434     fi
2435     $rm -f try try.*
2436     ;;
2437 esac
2438 EOSC
2439
2440 : determine whether symbolic links are supported
2441 echo " "
2442 $touch blurfl
2443 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2444         echo "Symbolic links are supported." >&4
2445         lns="$ln -s"
2446 else
2447         echo "Symbolic links are NOT supported." >&4
2448         lns="$ln"
2449 fi
2450 $rm -f blurfl sym
2451
2452 : determine whether symbolic links are supported
2453 echo " "
2454 case "$lns" in
2455 *"ln"*" -s")
2456         echo "Checking how to test for symbolic links..." >&4
2457         $lns blurfl sym
2458         if $test "X$issymlink" = X; then
2459                 case "$newsh" in
2460                 '') sh     -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2461                 *)  $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2462                 esac
2463                 if test $? = 0; then
2464                         issymlink="test -h"
2465                 else
2466                         echo "Your builtin 'test -h' may be broken." >&4
2467                         case "$test" in
2468                         /*)     ;;
2469                         *)      pth=`echo $PATH | sed -e "s/$p_/ /g"`
2470                                 for p in $pth
2471                                 do
2472                                         if test -f "$p/$test"; then
2473                                                 test="$p/$test"
2474                                                 break
2475                                         fi
2476                                 done
2477                                 ;;
2478                         esac
2479                         case "$test" in
2480                         /*)
2481                                 echo "Trying external '$test -h'." >&4
2482                                 issymlink="$test -h"
2483                                 if $test ! -h sym >/dev/null 2>&1; then
2484                                         echo "External '$test -h' is broken, too." >&4
2485                                         issymlink=''
2486                                 fi
2487                                 ;;
2488                         *)      issymlink='' ;;
2489                         esac
2490                 fi              
2491         fi
2492         if $test "X$issymlink" = X; then
2493                 if $test -L sym 2>/dev/null; then
2494                         issymlink="$test -L"
2495                         echo "The builtin '$test -L' worked." >&4
2496                 fi
2497         fi
2498         if $test "X$issymlink" != X; then
2499                 echo "You can test for symbolic links with '$issymlink'." >&4
2500         else
2501                 echo "I do not know how you can test for symbolic links." >&4
2502         fi
2503         $rm -f blurfl sym
2504         ;;
2505 *)      echo "No symbolic links, so not testing for their testing..." >&4
2506         ;;
2507 esac
2508 echo " "
2509
2510
2511 case "$mksymlinks" in
2512 $define|true|[yY]*)
2513         case "$src" in
2514         ''|'.') echo "Cannot create symlinks in the original directory." >&4
2515                 exit 1
2516                 ;;
2517         *)      case "$lns:$issymlink" in
2518                 *"ln"*" -s:"*"test -"?)
2519                         echo "Creating the symbolic links..." >&4
2520                         echo "(First creating the subdirectories...)" >&4
2521                         cd ..
2522                         awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2523                                 read directory
2524                                 test -z "$directory" && break
2525                                 mkdir -p $directory
2526                         done
2527                         # Sanity check 1.
2528                         if test ! -d t/base; then
2529                                 echo "Failed to create the subdirectories.  Aborting." >&4
2530                                 exit 1
2531                         fi
2532                         echo "(Then creating the symlinks...)" >&4
2533                         awk '{print $1}' $src/MANIFEST | while true; do
2534                                 read filename
2535                                 test -z "$filename" && break
2536                                 if test -f $filename; then
2537                                         if $issymlink $filename; then
2538                                                 rm -f $filename
2539                                         fi
2540                                 fi
2541                                 if test -f $filename; then
2542                                         echo "$filename already exists, not symlinking."
2543                                 else
2544                                         ln -s $src/$filename $filename
2545                                 fi
2546                         done
2547                         # Sanity check 2.
2548                         if test ! -f t/base/lex.t; then
2549                                 echo "Failed to create the symlinks (t/base/lex.t missing).  Aborting." >&4
2550                                 exit 1
2551                         fi
2552                         cd UU
2553                         ;;
2554                 *)      echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2555                         ;;
2556                 esac
2557                 ;;
2558         esac
2559         ;;
2560 esac
2561
2562
2563 case "$usecrosscompile" in
2564 $define|true|[yY]*)
2565         $echo "Cross-compiling..."
2566         croak=''
2567         case "$cc" in
2568         *-*-gcc) # A cross-compiling gcc, probably.
2569             targetarch=`$echo $cc|$sed 's/-gcc$//'`
2570             ar=$targetarch-ar
2571             # leave out ld, choosing it is more complex
2572             nm=$targetarch-nm
2573             ranlib=$targetarch-ranlib
2574             $echo 'extern int foo;' > try.c
2575             set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2576             shift
2577             if $test $# -gt 0; then
2578                 incpth="$incpth $*"
2579                 incpth="`$echo $incpth|$sed 's/^ //'`"
2580                 echo "Guessing incpth '$incpth'." >&4
2581                 for i in $*; do
2582                     j="`$echo $i|$sed 's,/include$,/lib,'`"
2583                     if $test -d $j; then
2584                         libpth="$libpth $j"
2585                     fi
2586                 done   
2587                 libpth="`$echo $libpth|$sed 's/^ //'`"
2588                 echo "Guessing libpth '$libpth'." >&4
2589             fi
2590             $rm -f try.c
2591             ;;
2592         esac
2593         case "$targetarch" in
2594         '') echo "Targetarch not defined." >&4; croak=y ;;
2595         *)  echo "Using targetarch $targetarch." >&4 ;;
2596         esac
2597         case "$incpth" in
2598         '') echo "Incpth not defined." >&4; croak=y ;;
2599         *)  echo "Using incpth '$incpth'." >&4 ;;
2600         esac
2601         case "$libpth" in
2602         '') echo "Libpth not defined." >&4; croak=y ;;
2603         *)  echo "Using libpth '$libpth'." >&4 ;;
2604         esac
2605         case "$usrinc" in
2606         '') for i in $incpth; do
2607                 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2608                     usrinc=$i
2609                     echo "Guessing usrinc $usrinc." >&4
2610                     break
2611                 fi
2612             done
2613             case "$usrinc" in
2614             '') echo "Usrinc not defined." >&4; croak=y ;;
2615             esac
2616             ;;
2617         *)  echo "Using usrinc $usrinc." >&4 ;;
2618         esac
2619         case "$targethost" in
2620         '') echo "Targethost not defined." >&4; croak=y ;;
2621         *)  echo "Using targethost $targethost." >&4
2622         esac
2623         locincpth=' '
2624         loclibpth=' '
2625         case "$croak" in
2626         y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2627         esac
2628         case "$src" in
2629         /*) run=$src/Cross/run
2630             targetmkdir=$src/Cross/mkdir
2631             to=$src/Cross/to
2632             from=$src/Cross/from
2633             ;;
2634         *)  pwd=`$test -f ../Configure & cd ..; pwd`
2635             run=$pwd/Cross/run
2636             targetmkdir=$pwd/Cross/mkdir
2637             to=$pwd/Cross/to
2638             from=$pwd/Cross/from
2639             ;;
2640         esac
2641         case "$targetrun" in
2642         '') targetrun=ssh ;;
2643         esac
2644         case "$targetto" in
2645         '') targetto=scp ;;
2646         esac
2647         case "$targetfrom" in
2648         '') targetfrom=scp ;;
2649         esac
2650         run=$run-$targetrun
2651         to=$to-$targetto
2652         from=$from-$targetfrom
2653         case "$targetdir" in
2654         '')  targetdir=/tmp
2655              echo "Guessing targetdir $targetdir." >&4
2656              ;;
2657         esac
2658         case "$targetuser" in
2659         '')  targetuser=root
2660              echo "Guessing targetuser $targetuser." >&4
2661              ;;
2662         esac
2663         case "$targetfrom" in
2664         scp)    q=-q ;;
2665         *)      q='' ;;
2666         esac
2667         case "$targetrun" in
2668         ssh|rsh)
2669             cat >$run <<EOF
2670 #!/bin/sh
2671 case "\$1" in
2672 -cwd)
2673   shift
2674   cwd=\$1
2675   shift
2676   ;;
2677 esac
2678 case "\$cwd" in
2679 '') cwd=$targetdir ;;
2680 esac
2681 exe=\$1
2682 shift
2683 if $test ! -f \$exe.xok; then
2684   $to \$exe
2685   $touch \$exe.xok
2686 fi
2687 $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2688 EOF
2689             ;;
2690         *)  echo "Unknown targetrun '$targetrun'" >&4
2691             exit 1
2692             ;;
2693         esac
2694         case "$targetmkdir" in
2695         */Cross/mkdir)
2696             cat >$targetmkdir <<EOF
2697 #!/bin/sh
2698 $targetrun -l $targetuser $targethost "mkdir -p \$@"
2699 EOF
2700             $chmod a+rx $targetmkdir
2701             ;;
2702         *)  echo "Unknown targetmkdir '$targetmkdir'" >&4
2703             exit 1
2704             ;;
2705         esac
2706         case "$targetto" in
2707         scp|rcp)
2708             cat >$to <<EOF
2709 #!/bin/sh
2710 for f in \$@
2711 do
2712   case "\$f" in
2713   /*)
2714     $targetmkdir \`dirname \$f\`
2715     $targetto $q \$f $targetuser@$targethost:\$f            || exit 1
2716     ;;
2717   *)
2718     $targetmkdir $targetdir/\`dirname \$f\`
2719     $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2720     ;;
2721   esac
2722 done
2723 exit 0
2724 EOF
2725             ;;
2726         cp) cat >$to <<EOF
2727 #!/bin/sh
2728 for f in \$@
2729 do
2730   case "\$f" in
2731   /*)
2732     $mkdir -p $targetdir/\`dirname \$f\`
2733     $cp \$f $targetdir/\$f || exit 1
2734     ;;
2735   *)
2736     $targetmkdir $targetdir/\`dirname \$f\`
2737     $cp \$f $targetdir/\$f || exit 1
2738     ;;
2739   esac
2740 done
2741 exit 0
2742 EOF
2743             ;;
2744         *)  echo "Unknown targetto '$targetto'" >&4
2745             exit 1
2746             ;;
2747         esac
2748         case "$targetfrom" in
2749         scp|rcp)
2750           cat >$from <<EOF
2751 #!/bin/sh
2752 for f in \$@
2753 do
2754   $rm -f \$f
2755   $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2756 done
2757 exit 0
2758 EOF
2759             ;;
2760         cp) cat >$from <<EOF
2761 #!/bin/sh
2762 for f in \$@
2763 do
2764   $rm -f \$f
2765   cp $targetdir/\$f . || exit 1
2766 done
2767 exit 0
2768 EOF
2769             ;;
2770         *)  echo "Unknown targetfrom '$targetfrom'" >&4
2771             exit 1
2772             ;;
2773         esac
2774         if $test ! -f $run; then
2775             echo "Target 'run' script '$run' not found." >&4
2776         else
2777             $chmod a+rx $run
2778         fi
2779         if $test ! -f $to; then
2780             echo "Target 'to' script '$to' not found." >&4
2781         else
2782             $chmod a+rx $to
2783         fi
2784         if $test ! -f $from; then
2785             echo "Target 'from' script '$from' not found." >&4
2786         else
2787             $chmod a+rx $from
2788         fi
2789         if $test ! -f $run -o ! -f $to -o ! -f $from; then
2790             exit 1
2791         fi
2792         cat >&4 <<EOF
2793 Using '$run' for remote execution,
2794 and '$from' and '$to'
2795 for remote file transfer.
2796 EOF
2797         ;;
2798 *)      run=''
2799         to=:
2800         from=:
2801         usecrosscompile='undef'
2802         targetarch=''
2803         ;;
2804 esac
2805
2806 : see whether [:lower:] and [:upper:] are supported character classes
2807 echo " "
2808 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2809 ABYZ)
2810         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2811         up='[:upper:]'
2812         low='[:lower:]'
2813         ;;
2814 *)      # There is a discontinuity in EBCDIC between 'I' and 'J'
2815         # (0xc9 and 0xd1), therefore that is a nice testing point.
2816         if test "X$up" = X -o "X$low" = X; then
2817             case "`echo IJ | $tr '[I-J]' '[i-j]' 2>/dev/null`" in
2818             ij) up='[A-Z]'
2819                 low='[a-z]'
2820                 ;;
2821             esac
2822         fi
2823         if test "X$up" = X -o "X$low" = X; then
2824             case "`echo IJ | $tr I-J i-j 2>/dev/null`" in
2825             ij) up='A-Z'
2826                 low='a-z'
2827                 ;;
2828             esac
2829         fi
2830         if test "X$up" = X -o "X$low" = X; then
2831             case "`echo IJ | od -x 2>/dev/null`" in
2832             *C9D1*|*c9d1*)
2833                 echo "Hey, this might be EBCDIC." >&4
2834                 if test "X$up" = X -o "X$low" = X; then
2835                     case "`echo IJ | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2836                     ij) up='[A-IJ-RS-Z]'
2837                         low='[a-ij-rs-z]'
2838                         ;;
2839                     esac
2840                 fi
2841                 if test "X$up" = X -o "X$low" = X; then
2842                     case "`echo IJ | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2843                     ij) up='A-IJ-RS-Z'
2844                         low='a-ij-rs-z'
2845                         ;;
2846                     esac
2847                 fi
2848                 ;;
2849             esac
2850         fi
2851 esac
2852 case "`echo IJ | $tr \"$up\" \"$low\" 2>/dev/null`" in
2853 ij)
2854     echo "Using $up and $low to convert case." >&4
2855     ;;
2856 *)
2857     echo "I don't know how to translate letters from upper to lower case." >&4
2858     echo "Your tr is not acting any way I know of." >&4
2859     exit 1
2860     ;;
2861 esac
2862 : set up the translation script tr, must be called with ./tr of course
2863 cat >tr <<EOSC
2864 $startsh
2865 case "\$1\$2" in
2866 '[A-Z][a-z]') exec $tr '$up' '$low';;
2867 '[a-z][A-Z]') exec $tr '$low' '$up';;
2868 esac
2869 exec $tr "\$@"
2870 EOSC
2871 chmod +x tr
2872 $eunicefix tr
2873
2874 : Try to determine whether config.sh was made on this system
2875 case "$config_sh" in
2876 '')
2877 myuname=`$uname -a 2>/dev/null`
2878 $test -z "$myuname" && myuname=`hostname 2>/dev/null`
2879 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
2880 # because the A-Z/a-z are not consecutive.
2881 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
2882         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
2883 newmyuname="$myuname"
2884 dflt=n
2885 case "$knowitall" in
2886 '')
2887         if test -f ../config.sh; then
2888                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
2889                         eval "`grep myuname= ../config.sh`"
2890                 fi
2891                 if test "X$myuname" = "X$newmyuname"; then
2892                         dflt=y
2893                 fi
2894         fi
2895         ;;
2896 *) dflt=y;;
2897 esac
2898
2899 : Get old answers from old config file if Configure was run on the
2900 : same system, otherwise use the hints.
2901 hint=default
2902 cd ..
2903 if test -f config.sh; then
2904         echo " "
2905         rp="I see a config.sh file.  Shall I use it to set the defaults?"
2906         . UU/myread
2907         case "$ans" in
2908         n*|N*) echo "OK, I'll ignore it."
2909                 mv config.sh config.sh.old
2910                 myuname="$newmyuname"
2911                 ;;
2912         *)  echo "Fetching default answers from your old config.sh file..." >&4
2913                 tmp_n="$n"
2914                 tmp_c="$c"
2915                 tmp_sh="$sh"
2916                 . ./config.sh
2917                 cp config.sh UU
2918                 n="$tmp_n"
2919                 c="$tmp_c"
2920                 : Older versions did not always set $sh.  Catch re-use of such
2921                 : an old config.sh.
2922                 case "$sh" in
2923                 '') sh="$tmp_sh" ;;
2924                 esac
2925                 hint=previous
2926                 ;;
2927         esac
2928 fi
2929 . ./UU/checkcc
2930 if test ! -f config.sh; then
2931         $cat <<EOM
2932
2933 First time through, eh?  I have some defaults handy for some systems
2934 that need some extra help getting the Configure answers right:
2935
2936 EOM
2937         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
2938         dflt=''
2939         : Half the following guesses are probably wrong... If you have better
2940         : tests or hints, please send them to perlbug@perl.org
2941         : The metaconfig authors would also appreciate a copy...
2942         $test -f /irix && osname=irix
2943         $test -f /xenix && osname=sco_xenix
2944         $test -f /dynix && osname=dynix
2945         $test -f /dnix && osname=dnix
2946         $test -f /lynx.os && osname=lynxos
2947         $test -f /unicos && osname=unicos && osvers=`$uname -r`
2948         $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
2949         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
2950         $test -f /bin/mips && /bin/mips && osname=mips
2951         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
2952                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
2953         $test -d /usr/apollo/bin && osname=apollo
2954         $test -f /etc/saf/_sactab && osname=svr4
2955         $test -d /usr/include/minix && osname=minix
2956         $test -f /system/gnu_library/bin/ar.pm && osname=vos
2957         if $test -d /MachTen -o -d /MachTen_Folder; then
2958                 osname=machten
2959                 if $test -x /sbin/version; then
2960                         osvers=`/sbin/version | $awk '{print $2}' |
2961                         $sed -e 's/[A-Za-z]$//'`
2962                 elif $test -x /usr/etc/version; then
2963                         osvers=`/usr/etc/version | $awk '{print $2}' |
2964                         $sed -e 's/[A-Za-z]$//'`
2965                 else
2966                         osvers="$2.$3"
2967                 fi
2968         fi
2969
2970         $test -f /sys/posix.dll &&
2971                 $test -f /usr/bin/what &&
2972                 set X `/usr/bin/what /sys/posix.dll` &&
2973                 $test "$3" = UWIN &&
2974                 osname=uwin &&
2975                 osvers="$5"
2976
2977         if $test -f $uname; then
2978                 set X $myuname
2979                 shift
2980
2981                 case "$5" in
2982                 fps*) osname=fps ;;
2983                 mips*)
2984                         case "$4" in
2985                         umips) osname=umips ;;
2986                         *) osname=mips ;;
2987                         esac;;
2988                 [23]100) osname=mips ;;
2989                 next*) osname=next ;;
2990                 i386*)
2991                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
2992                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
2993                                 osname='sco'
2994                                 osvers=$tmp
2995                         elif $test -f /etc/kconfig; then
2996                                 osname=isc
2997                                 if test "$lns" = "$ln -s"; then
2998                                         osvers=4
2999                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3000                                         osvers=3
3001                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3002                                         osvers=2
3003                                 fi
3004                         fi
3005                         tmp=''
3006                         ;;
3007                 pc*)
3008                         if test -n "$DJGPP"; then
3009                                 osname=dos
3010                                 osvers=djgpp
3011                         fi
3012                         ;;
3013                 esac
3014
3015                 case "$1" in
3016                 aix) osname=aix
3017                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3018                         case "$tmp" in
3019                         'not found') osvers="$4"."$3" ;;
3020                         '<3240'|'<>3240') osvers=3.2.0 ;;
3021                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3022                         '=3250'|'>3250') osvers=3.2.5 ;;
3023                         *) osvers=$tmp;;
3024                         esac
3025                         ;;
3026                 bsd386) osname=bsd386
3027                         osvers=`$uname -r`
3028                         ;;
3029                 cygwin*) osname=cygwin
3030                         osvers="$3"
3031                         ;;
3032                 *dc.osx) osname=dcosx
3033                         osvers="$3"
3034                         ;;
3035                 dnix) osname=dnix
3036                         osvers="$3"
3037                         ;;
3038                 domainos) osname=apollo
3039                         osvers="$3"
3040                         ;;
3041                 dgux) osname=dgux 
3042                         osvers="$3"
3043                         ;;
3044                 dynixptx*) osname=dynixptx
3045                         osvers=`echo "$4"|sed 's/^v//'`
3046                         ;;
3047                 freebsd) osname=freebsd 
3048                         osvers="$3" ;;
3049                 genix) osname=genix ;;
3050                 hp*) osname=hpux 
3051                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3052                         ;;
3053                 irix*) osname=irix
3054                         case "$3" in
3055                         4*) osvers=4 ;;
3056                         5*) osvers=5 ;;
3057                         *)      osvers="$3" ;;
3058                         esac
3059                         ;;
3060                 linux) osname=linux
3061                         case "$3" in
3062                         *)      osvers="$3" ;;
3063                         esac
3064                         ;;
3065                 MiNT) osname=mint
3066                         ;;
3067                 netbsd*) osname=netbsd
3068                         osvers="$3"
3069                         ;;
3070                 news-os) osvers="$3"
3071                         case "$3" in
3072                         4*) osname=newsos4 ;;
3073                         *) osname=newsos ;;
3074                         esac
3075                         ;;
3076                 next*) osname=next ;;
3077                 nonstop-ux) osname=nonstopux ;;
3078                 openbsd) osname=openbsd
3079                         osvers="$3"
3080                         ;;
3081                 POSIX-BC | posix-bc ) osname=posix-bc
3082                         osvers="$3"
3083                         ;;
3084                 powerux | power_ux | powermax_os | powermaxos | \
3085                 powerunix | power_unix) osname=powerux
3086                         osvers="$3"
3087                         ;;
3088                 qnx) osname=qnx
3089                         osvers="$4"
3090                         ;;
3091                 solaris) osname=solaris
3092                         case "$3" in
3093                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3094                         *)      osvers="$3" ;;
3095                         esac
3096                         ;;
3097                 sunos) osname=sunos
3098                         case "$3" in
3099                         5*) osname=solaris
3100                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3101                         *)      osvers="$3" ;;
3102                         esac
3103                         ;;
3104                 titanos) osname=titanos
3105                         case "$3" in
3106                         1*) osvers=1 ;;
3107                         2*) osvers=2 ;;
3108                         3*) osvers=3 ;;
3109                         4*) osvers=4 ;;
3110                         *)      osvers="$3" ;;
3111                         esac
3112                         ;;
3113                 ultrix) osname=ultrix
3114                         osvers="$3"
3115                         ;;
3116                 osf1|mls+)      case "$5" in
3117                                 alpha)
3118                                         osname=dec_osf
3119                                         osvers=`sizer -v | awk '{print $3}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3120                                         case "$osvers" in
3121                                         [1-9].[0-9]*) ;;
3122                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3123                                         esac
3124                                         ;;
3125                         hp*)    osname=hp_osf1  ;;
3126                         mips)   osname=mips_osf1 ;;
3127                         esac
3128                         ;;
3129                 unixware) osname=svr5
3130                         osvers="$4"
3131                         ;;
3132                 uts)    osname=uts
3133                         osvers="$3"
3134                         ;;
3135                 vos) osvers="$3"
3136                         ;;
3137                 $2) case "$osname" in
3138                         *isc*) ;;
3139                         *freebsd*) ;;
3140                         svr*)
3141                                 : svr4.x or possibly later
3142                                 case "svr$3" in 
3143                                 ${osname}*)
3144                                         osname=svr$3
3145                                         osvers=$4
3146                                         ;;
3147                                 esac
3148                                 case "$osname" in
3149                                 svr4.0)
3150                                         : Check for ESIX
3151                                         if test -f /stand/boot ; then
3152                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3153                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3154                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3155                                                         if test -n "$isesix"; then
3156                                                                 osname=esix4
3157                                                         fi
3158                                                 fi
3159                                         fi
3160                                         ;;
3161                                 esac
3162                                 ;;
3163                         *)      if test -f /etc/systemid; then
3164                                         osname=sco
3165                                         set `echo $3 | $sed 's/\./ /g'` $4
3166                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3167                                                 osvers=$1.$2.$3
3168                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3169                                                 osvers=$1.$2
3170                                         elif $test -f $src/hints/sco_$1.sh; then
3171                                                 osvers=$1
3172                                         fi
3173                                 else
3174                                         case "$osname" in
3175                                         '') : Still unknown.  Probably a generic Sys V.
3176                                                 osname="sysv"
3177                                                 osvers="$3"
3178                                                 ;;
3179                                         esac
3180                                 fi
3181                                 ;;
3182                         esac
3183                         ;;
3184                 *)      case "$osname" in
3185                         '') : Still unknown.  Probably a generic BSD.
3186                                 osname="$1"
3187                                 osvers="$3"
3188                                 ;;
3189                         esac
3190                         ;;
3191                 esac
3192         else
3193                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3194                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3195                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3196                                 osname=news_os
3197                         fi
3198                         $rm -f UU/kernel.what
3199                 elif test -d c:/.; then
3200                         set X $myuname
3201                         osname=os2
3202                         osvers="$5"
3203                 fi
3204         fi
3205         
3206         case "$targetarch" in
3207         '') ;;
3208         *)  hostarch=$osname
3209             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3210             osvers=''
3211             ;;
3212         esac
3213
3214         : Now look for a hint file osname_osvers, unless one has been
3215         : specified already.
3216         case "$hintfile" in
3217         ''|' ')
3218                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3219                 : Also try without trailing minor version numbers.
3220                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3221                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3222                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3223                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3224                 case "$file" in
3225                 '') dflt=none ;;
3226                 *)  case "$osvers" in
3227                         '') dflt=$file
3228                                 ;;
3229                         *)  if $test -f $src/hints/$file.sh ; then
3230                                         dflt=$file
3231                                 elif $test -f $src/hints/$xfile.sh ; then
3232                                         dflt=$xfile
3233                                 elif $test -f $src/hints/$xxfile.sh ; then
3234                                         dflt=$xxfile
3235                                 elif $test -f $src/hints/$xxxfile.sh ; then
3236                                         dflt=$xxxfile
3237                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3238                                         dflt=$xxxxfile
3239                                 elif $test -f "$src/hints/${osname}.sh" ; then
3240                                         dflt="${osname}"
3241                                 else
3242                                         dflt=none
3243                                 fi
3244                                 ;;
3245                         esac
3246                         ;;
3247                 esac
3248                 if $test -f Policy.sh ; then
3249                         case "$dflt" in
3250                         *Policy*) ;;
3251                         none) dflt="Policy" ;;
3252                         *) dflt="Policy $dflt" ;;
3253                         esac
3254                 fi
3255                 ;;
3256         *)
3257                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3258                 ;;
3259         esac
3260
3261         if $test -f Policy.sh ; then
3262                 $cat <<EOM
3263
3264 There's also a Policy hint file available, which should make the
3265 site-specific (policy) questions easier to answer.
3266 EOM
3267
3268         fi
3269
3270         $cat <<EOM
3271
3272 You may give one or more space-separated answers, or "none" if appropriate.
3273 A well-behaved OS will have no hints, so answering "none" or just "Policy"
3274 is a good thing.  DO NOT give a wrong version or a wrong OS.
3275
3276 EOM
3277
3278         rp="Which of these apply, if any?"
3279         . UU/myread
3280         tans=$ans
3281         for file in $tans; do
3282                 if $test X$file = XPolicy -a -f Policy.sh; then
3283                         . Policy.sh
3284                         $cat Policy.sh >> UU/config.sh
3285                 elif $test -f $src/hints/$file.sh; then
3286                         . $src/hints/$file.sh
3287                         $cat $src/hints/$file.sh >> UU/config.sh
3288                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3289                         : nothing
3290                 else
3291                         : Give one chance to correct a possible typo.
3292                         echo "$file.sh does not exist"
3293                         dflt=$file
3294                         rp="hint to use instead?"
3295                         . UU/myread
3296                         for file in $ans; do
3297                                 if $test -f "$src/hints/$file.sh"; then
3298                                         . $src/hints/$file.sh
3299                                         $cat $src/hints/$file.sh >> UU/config.sh
3300                                 elif $test X$ans = X -o X$ans = Xnone ; then
3301                                         : nothing
3302                                 else
3303                                         echo "$file.sh does not exist -- ignored."
3304                                 fi
3305                         done
3306                 fi
3307         done
3308
3309         hint=recommended
3310         : Remember our hint file for later.
3311         if $test -f "$src/hints/$file.sh" ; then
3312                 hintfile="$file"
3313         else
3314                 hintfile=''
3315         fi
3316 fi
3317 cd UU
3318 ;;
3319 *)
3320         echo " "
3321         echo "Fetching default answers from $config_sh..." >&4
3322         tmp_n="$n"
3323         tmp_c="$c"
3324         cd ..
3325         cp $config_sh config.sh 2>/dev/null
3326         chmod +w config.sh
3327         . ./config.sh
3328         cd UU
3329         cp ../config.sh .
3330         n="$tmp_n"
3331         c="$tmp_c"
3332         hint=previous
3333         ;;
3334 esac
3335 test "$override" && . ./optdef.sh
3336
3337 : Restore computed paths
3338 for file in $loclist $trylist; do
3339         eval $file="\$_$file"
3340 done
3341
3342 cat << EOM
3343
3344 Configure uses the operating system name and version to set some defaults.
3345 The default value is probably right if the name rings a bell. Otherwise,
3346 since spelling matters for me, either accept the default or answer "none"
3347 to leave it blank.
3348
3349 EOM
3350 case "$osname" in
3351         ''|' ')
3352                 case "$hintfile" in
3353                 ''|' '|none) dflt=none ;;
3354                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3355                 esac
3356                 ;;
3357         *) dflt="$osname" ;;
3358 esac
3359 rp="Operating system name?"
3360 . ./myread
3361 case "$ans" in
3362 none)  osname='' ;;
3363 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3364 esac
3365 echo " "
3366 case "$osvers" in
3367         ''|' ')
3368                 case "$hintfile" in
3369                 ''|' '|none) dflt=none ;;
3370                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3371                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3372                         case "$dflt" in
3373                         ''|' ') dflt=none ;;
3374                         esac
3375                         ;;
3376                 esac
3377                 ;;
3378         *) dflt="$osvers" ;;
3379 esac
3380 rp="Operating system version?"
3381 . ./myread
3382 case "$ans" in
3383 none)  osvers='' ;;
3384 *) osvers="$ans" ;;
3385 esac
3386
3387
3388 . ./posthint.sh
3389
3390 : who configured the system
3391 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3392 cf_by=`(logname) 2>/dev/null`
3393 case "$cf_by" in
3394 "")
3395         cf_by=`(whoami) 2>/dev/null`
3396         case "$cf_by" in
3397         "") cf_by=unknown ;;
3398         esac ;;
3399 esac
3400
3401 : set up the script used to warn in case of inconsistency
3402 cat <<EOS >whoa
3403 $startsh
3404 EOS
3405 cat <<'EOSC' >>whoa
3406 dflt=y
3407 echo " "
3408 echo "*** WHOA THERE!!! ***" >&4
3409 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
3410 rp="    Keep the $hint value?"
3411 . ./myread
3412 case "$ans" in
3413 y) td=$was; tu=$was;;
3414 esac
3415 EOSC
3416
3417 : function used to set $1 to $val
3418 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3419 case "$val$was" in
3420 $define$undef) . ./whoa; eval "$var=\$td";;
3421 $undef$define) . ./whoa; eval "$var=\$tu";;
3422 *) eval "$var=$val";;
3423 esac'
3424
3425 case "$usethreads" in
3426 $define|true|[yY]*)     dflt='y';;
3427 *)     # Catch case where user specified ithreads or 5005threads but
3428        # forgot -Dusethreads (A.D. 4/2002)
3429        case "$useithreads$use5005threads" in
3430        *$define*)      dflt='y' ;;
3431        *)      dflt='n';;
3432        esac
3433        ;;
3434 esac
3435 cat <<EOM
3436
3437 Perl can be built to take advantage of threads on some systems.
3438 To do so, Configure can be run with -Dusethreads.
3439
3440 Note that threading is a highly experimental feature, and
3441 some known race conditions still remain.  If you choose to try
3442 it, be very sure to not actually deploy it for production
3443 purposes.  README.threads has more details, and is required
3444 reading if you enable threads.
3445
3446 If this doesn't make any sense to you, just accept the default '$dflt'.
3447 EOM
3448 rp='Build a threading Perl?'
3449 . ./myread
3450 case "$ans" in
3451 y|Y)    val="$define" ;;
3452 *)      val="$undef" ;;
3453 esac
3454 set usethreads
3455 eval $setvar
3456
3457 case "$usethreads" in
3458 $define)
3459         $cat <<EOM
3460
3461 As of release 5.6, Perl has two different threading implementations,
3462 an interpreter-based version (ithreads) with one interpreter per
3463 thread, and the 5.005 version (5005threads).  Both implementations
3464 are considered experimental, but since 5.8 ithreads somewhat less so.
3465 The 5005threads is effectively unmaintained.
3466
3467 EOM
3468         : Default to ithreads unless overridden on command line or with
3469         : old config.sh
3470         dflt='y'
3471         case "$use5005threads" in
3472                 $define|true|[yY]*) dflt='n';;
3473         esac
3474         case "$useithreads" in
3475                 $undef|false|[nN]*) dflt='n';;
3476         esac
3477         rp='Use interpreter-based ithreads?'
3478         . ./myread
3479         case "$ans" in
3480         y|Y)    val="$define" ;;
3481         *)      val="$undef" ;;
3482         esac
3483         set useithreads
3484         eval $setvar
3485         : Now set use5005threads to the opposite value.
3486         case "$useithreads" in
3487         $define) val="$undef" ;;
3488         *) val="$define" ;;
3489         esac
3490         set use5005threads
3491         eval $setvar
3492         ;;
3493 *)
3494         useithreads="$undef"
3495         use5005threads="$undef"
3496         ;;
3497 esac
3498
3499 case "$useithreads$use5005threads" in
3500 "$define$define")
3501         $cat >&4 <<EOM
3502
3503 You cannot have both the ithreads and the 5.005 threads enabled
3504 at the same time.  Disabling the 5.005 threads since they are
3505 much less stable than the ithreads.
3506
3507 EOM
3508         use5005threads="$undef"
3509         ;;
3510 esac
3511
3512 case "$d_oldpthreads" in
3513 '')     : Configure tests would be welcome here.  For now, assume undef.
3514         val="$undef" ;;
3515 *)      val="$d_oldpthreads" ;;
3516 esac
3517 set d_oldpthreads
3518 eval $setvar
3519
3520
3521 case "$usethreads" in
3522 "$define"|true|[yY]*)
3523 : Look for a hint-file generated 'call-back-unit'.  If the
3524 : user has specified that a threading perl is to be built,
3525 : we may need to set or change some other defaults.
3526         if $test -f usethreads.cbu; then
3527                 echo "Your platform has some specific hints for threaded builds, using them..."
3528                 . ./usethreads.cbu
3529         else
3530                 $cat <<EOM
3531 (Your platform doesn't have any specific hints for threaded builds.
3532  Assuming POSIX threads, then.)
3533 EOM
3534         fi
3535         ;;
3536 esac
3537
3538 cat <<EOM
3539
3540 Perl can be built so that multiple Perl interpreters can coexist
3541 within the same Perl executable.
3542 EOM
3543
3544 case "$useithreads" in
3545 $define)
3546         cat <<EOM
3547 This multiple interpreter support is required for interpreter-based threads.
3548 EOM
3549         val="$define"
3550         ;;
3551 *)      case "$usemultiplicity" in
3552         $define|true|[yY]*)     dflt='y';;
3553         *) dflt='n';;
3554         esac
3555         echo " "
3556         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
3557         rp='Build Perl for multiplicity?'
3558         . ./myread
3559         case "$ans" in
3560         y|Y)    val="$define" ;;
3561         *)      val="$undef" ;;
3562         esac
3563         ;;
3564 esac
3565 set usemultiplicity
3566 eval $setvar
3567
3568
3569 case "$usemorebits" in
3570 "$define"|true|[yY]*)
3571         use64bitint="$define"
3572         uselongdouble="$define"
3573         usemorebits="$define"
3574         ;;
3575 *)      usemorebits="$undef"
3576         ;;
3577 esac
3578
3579 : make some quick guesses about what we are up against
3580 echo " "
3581 $echo $n "Hmm...  $c"
3582 echo exit 1 >bsd
3583 echo exit 1 >usg
3584 echo exit 1 >v7
3585 echo exit 1 >osf1
3586 echo exit 1 >eunice
3587 echo exit 1 >xenix
3588 echo exit 1 >venix
3589 echo exit 1 >os2
3590 d_bsd="$undef"
3591 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3592 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3593 then
3594         echo "Looks kind of like an OSF/1 system, but we'll see..."
3595         echo exit 0 >osf1
3596 elif test `echo abc | $tr a-z A-Z` = Abc ; then
3597         xxx=`./loc addbib blurfl $pth`
3598         if $test -f $xxx; then
3599         echo "Looks kind of like a USG system with BSD features, but we'll see..."
3600                 echo exit 0 >bsd
3601                 echo exit 0 >usg
3602         else
3603                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3604                         echo "Looks kind of like an extended USG system, but we'll see..."
3605                 else
3606                         echo "Looks kind of like a USG system, but we'll see..."
3607                 fi
3608                 echo exit 0 >usg
3609         fi
3610 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3611         echo "Looks kind of like a BSD system, but we'll see..."
3612         d_bsd="$define"
3613         echo exit 0 >bsd
3614 else
3615         echo "Looks kind of like a Version 7 system, but we'll see..."
3616         echo exit 0 >v7
3617 fi
3618 case "$eunicefix" in
3619 *unixtovms*)
3620         $cat <<'EOI'
3621 There is, however, a strange, musty smell in the air that reminds me of
3622 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3623 EOI
3624         echo exit 0 >eunice
3625         d_eunice="$define"
3626 : it so happens the Eunice I know will not run shell scripts in Unix format
3627         ;;
3628 *)
3629         echo " "
3630         echo "Congratulations.  You aren't running Eunice."
3631         d_eunice="$undef"
3632         ;;
3633 esac
3634 : Detect OS2.  The p_ variable is set above in the Head.U unit.
3635 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
3636 : semicolon as a patch separator
3637 case "$p_" in
3638 :) ;;
3639 *)
3640         $cat <<'EOI'
3641 I have the feeling something is not exactly right, however...don't tell me...
3642 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3643 (Or you may be running DOS with DJGPP.)
3644 EOI
3645         echo exit 0 >os2
3646         ;;
3647 esac
3648 if test -f /xenix; then
3649         echo "Actually, this looks more like a XENIX system..."
3650         echo exit 0 >xenix
3651         d_xenix="$define"
3652 else
3653         echo " "
3654         echo "It's not Xenix..."
3655         d_xenix="$undef"
3656 fi
3657 chmod +x xenix
3658 $eunicefix xenix
3659 if test -f /venix; then
3660         echo "Actually, this looks more like a VENIX system..."
3661         echo exit 0 >venix
3662 else
3663         echo " "
3664         if ./xenix; then
3665                 : null
3666         else
3667                 echo "Nor is it Venix..."
3668         fi
3669 fi
3670 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3671 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3672 $rm -f foo
3673
3674 case "$cc" in
3675 '') dflt=cc;;
3676 *) dflt="$cc";;
3677 esac
3678 rp="Use which C compiler?"
3679 . ./myread
3680 cc="$ans"
3681
3682 : See if they have not cc but they do have gcc
3683 . ./trygcc
3684 : Look for a hint-file generated 'call-back-unit'.  Now that the
3685 : user has specified the compiler, we may need to set or change some
3686 : other defaults.
3687 if $test -f cc.cbu; then
3688     . ./cc.cbu
3689 fi
3690 . ./checkcc
3691
3692 echo " "
3693 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3694 $cat >try.c <<EOM
3695 #include <stdio.h>
3696 int main() {
3697 #ifdef __GNUC__
3698 #ifdef __VERSION__
3699         printf("%s\n", __VERSION__);
3700 #else
3701         printf("%s\n", "1");
3702 #endif
3703 #endif
3704         exit(0);
3705 }
3706 EOM
3707 if $cc -o try $ccflags $ldflags try.c; then
3708         gccversion=`$run ./try`
3709         case "$gccversion" in
3710         '') echo "You are not using GNU cc." ;;
3711         *)  echo "You are using GNU cc $gccversion."
3712             ccname=gcc  
3713             ;;
3714         esac
3715 else
3716         echo " "
3717         echo "*** WHOA THERE!!! ***" >&4
3718         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3719         case "$knowitall" in
3720         '')
3721         echo "    You'd better start hunting for one and let me know about it." >&4
3722                 exit 1
3723                 ;;
3724         esac
3725 fi
3726 $rm -f try try.*
3727 case "$gccversion" in
3728 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3729 esac
3730 case "$gccversion" in
3731 '') gccosandvers='' ;;
3732 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
3733    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
3734    gccshortvers=''
3735    case "$gccosandvers" in
3736    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
3737    $osname$osvers) ;; # looking good
3738    $osname*) cat <<EOM >&4
3739
3740 *** WHOA THERE!!! ***
3741
3742     Your gcc has not been compiled for the exact release of
3743     your operating system ($gccosandvers versus $osname$osvers).
3744
3745     In general it is a good idea to keep gcc synchronized with
3746     the operating system because otherwise serious problems
3747     may ensue when trying to compile software, like Perl.
3748
3749     I'm trying to be optimistic here, though, and will continue.
3750     If later during the configuration and build icky compilation
3751     problems appear (headerfile conflicts being the most common
3752     manifestation), I suggest reinstalling the gcc to match
3753     your operating system release.
3754
3755 EOM
3756       ;;
3757    *) gccosandvers='' ;; # failed to parse, better be silent
3758    esac
3759    ;;
3760 esac
3761 case "$ccname" in
3762 '') ccname="$cc" ;;
3763 esac
3764
3765
3766 : decide how portable to be.  Allow command line overrides.
3767 case "$d_portable" in
3768 "$undef") ;;
3769 *)      d_portable="$define" ;;
3770 esac
3771
3772 : set up shell script to do ~ expansion
3773 cat >filexp <<EOSS
3774 $startsh
3775 : expand filename
3776 case "\$1" in
3777  ~/*|~)
3778         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3779         ;;
3780  ~*)
3781         if $test -f /bin/csh; then
3782                 /bin/csh -f -c "glob \$1"
3783                 failed=\$?
3784                 echo ""
3785                 exit \$failed
3786         else
3787                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3788                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3789                 if $test ! -d "\$dir"; then
3790                         me=\`basename \$0\`
3791                         echo "\$me: can't locate home directory for: \$name" >&2
3792                         exit 1
3793                 fi
3794                 case "\$1" in
3795                 */*)
3796                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3797                         ;;
3798                 *)
3799                         echo \$dir
3800                         ;;
3801                 esac
3802         fi
3803         ;;
3804 *)
3805         echo \$1
3806         ;;
3807 esac
3808 EOSS
3809 chmod +x filexp
3810 $eunicefix filexp
3811
3812 : now set up to get a file name
3813 cat <<EOS >getfile
3814 $startsh
3815 EOS
3816 cat <<'EOSC' >>getfile
3817 tilde=''
3818 fullpath=''
3819 already=''
3820 skip=''
3821 none_ok=''
3822 exp_file=''
3823 nopath_ok=''
3824 orig_rp="$rp"
3825 orig_dflt="$dflt"
3826 case "$gfpth" in
3827 '') gfpth='.' ;;
3828 esac
3829
3830 case "$fn" in
3831 *\(*)
3832         expr $fn : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
3833         fn=`echo $fn | sed 's/(.*)//'`
3834         ;;
3835 esac
3836
3837 case "$fn" in
3838 *:*)
3839         loc_file=`expr $fn : '.*:\(.*\)'`
3840         fn=`expr $fn : '\(.*\):.*'`
3841         ;;
3842 esac
3843
3844 case "$fn" in
3845 *~*) tilde=true;;
3846 esac
3847 case "$fn" in
3848 */*) fullpath=true;;
3849 esac
3850 case "$fn" in
3851 *+*) skip=true;;
3852 esac
3853 case "$fn" in
3854 *n*) none_ok=true;;
3855 esac
3856 case "$fn" in
3857 *e*) exp_file=true;;
3858 esac
3859 case "$fn" in
3860 *p*) nopath_ok=true;;
3861 esac
3862
3863 case "$fn" in
3864 *f*) type='File';;
3865 *d*) type='Directory';;
3866 *l*) type='Locate';;
3867 esac
3868
3869 what="$type"
3870 case "$what" in
3871 Locate) what='File';;
3872 esac
3873
3874 case "$exp_file" in
3875 '')
3876         case "$d_portable" in
3877         "$define") ;;
3878         *) exp_file=true;;
3879         esac
3880         ;;
3881 esac
3882
3883 cd ..
3884 while test "$type"; do
3885         redo=''
3886         rp="$orig_rp"
3887         dflt="$orig_dflt"
3888         case "$tilde" in
3889         true) rp="$rp (~name ok)";;
3890         esac
3891         . UU/myread
3892         if test -f UU/getfile.ok && \
3893                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
3894         then
3895                 value="$ans"
3896                 ansexp="$ans"
3897                 break
3898         fi
3899         case "$ans" in
3900         none)
3901                 value=''
3902                 ansexp=''
3903                 case "$none_ok" in
3904                 true) type='';;
3905                 esac
3906                 ;;
3907         *)
3908                 case "$tilde" in
3909                 '') value="$ans"
3910                         ansexp="$ans";;
3911                 *)
3912                         value=`UU/filexp $ans`
3913                         case $? in
3914                         0)
3915                                 if test "$ans" != "$value"; then
3916                                         echo "(That expands to $value on this system.)"
3917                                 fi
3918                                 ;;
3919                         *) value="$ans";;
3920                         esac
3921                         ansexp="$value"
3922                         case "$exp_file" in
3923                         '') value="$ans";;
3924                         esac
3925                         ;;
3926                 esac
3927                 case "$fullpath" in
3928                 true)
3929                         case "$ansexp" in
3930                         /*) value="$ansexp" ;;
3931                         [a-zA-Z]:/*) value="$ansexp" ;;
3932                         *)
3933                                 redo=true
3934                                 case "$already" in
3935                                 true)
3936                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
3937                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
3938                                         ;;
3939                                 *)
3940                                 echo "Please give a full path name, starting with slash." >&4
3941                                         case "$tilde" in
3942                                         true)
3943                                 echo "Note that using ~name is ok provided it expands well." >&4
3944                                                 already=true
3945                                                 ;;
3946                                         esac
3947                                 esac
3948                                 ;;
3949                         esac
3950                         ;;
3951                 esac
3952                 case "$redo" in
3953                 '')
3954                         case "$type" in
3955                         File)
3956                                 for fp in $gfpth; do
3957                                         if test "X$fp" = X.; then
3958                                             pf="$ansexp"
3959                                         else    
3960                                             pf="$fp/$ansexp"
3961                                         fi
3962                                         if test -f "$pf"; then
3963                                                 type=''
3964                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
3965                                         then
3966                                                 echo "($value is not a plain file, but that's ok.)"
3967                                                 type=''
3968                                         fi
3969                                         if test X"$type" = X; then
3970                                             value="$pf"
3971                                             break
3972                                         fi
3973                                 done
3974                                 ;;
3975                         Directory)
3976                                 for fp in $gfpth; do
3977                                         if test "X$fp" = X.; then
3978                                             dir="$ans"
3979                                             direxp="$ansexp"
3980                                         else    
3981                                             dir="$fp/$ansexp"
3982                                             direxp="$fp/$ansexp"
3983                                         fi
3984                                         if test -d "$direxp"; then
3985                                                 type=''
3986                                                 value="$dir"
3987                                                 break
3988                                         fi
3989                                 done
3990                                 ;;
3991                         Locate)
3992                                 if test -d "$ansexp"; then
3993                                         echo "(Looking for $loc_file in directory $value.)"
3994                                         value="$value/$loc_file"
3995                                         ansexp="$ansexp/$loc_file"
3996                                 fi
3997                                 if test -f "$ansexp"; then
3998                                         type=''
3999                                 fi
4000                                 case "$nopath_ok" in
4001                                 true)   case "$value" in
4002                                         */*) ;;
4003                                         *)      echo "Assuming $value will be in people's path."
4004                                                 type=''
4005                                                 ;;
4006                                         esac
4007                                         ;;
4008                                 esac
4009                                 ;;
4010                         esac
4011
4012                         case "$skip" in
4013                         true) type='';
4014                         esac
4015
4016                         case "$type" in
4017                         '') ;;
4018                         *)
4019                                 if test "$fastread" = yes; then
4020                                         dflt=y
4021                                 else
4022                                         dflt=n
4023                                 fi
4024                                 rp="$what $value doesn't exist.  Use that name anyway?"
4025                                 . UU/myread
4026                                 dflt=''
4027                                 case "$ans" in
4028                                 y*) type='';;
4029                                 *) echo " ";;
4030                                 esac
4031                                 ;;
4032                         esac
4033                         ;;
4034                 esac
4035                 ;;
4036         esac
4037 done
4038 cd UU
4039 ans="$value"
4040 rp="$orig_rp"
4041 dflt="$orig_dflt"
4042 rm -f getfile.ok
4043 test "X$gfpthkeep" != Xy && gfpth=""
4044 EOSC
4045
4046 : What should the include directory be ?
4047 echo " "
4048 $echo $n "Hmm...  $c"
4049 dflt='/usr/include'
4050 incpath=''
4051 mips_type=''
4052 if $test -f /bin/mips && /bin/mips; then
4053         echo "Looks like a MIPS system..."
4054         $cat >usr.c <<'EOCP'
4055 #ifdef SYSTYPE_BSD43
4056 /bsd43
4057 #endif
4058 EOCP
4059         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4060                 dflt='/bsd43/usr/include'
4061                 incpath='/bsd43'
4062                 mips_type='BSD 4.3'
4063         else
4064                 mips_type='System V'
4065         fi
4066         $rm -f usr.c usr.out
4067         echo "and you're compiling with the $mips_type compiler and libraries."
4068         xxx_prompt=y
4069         echo "exit 0" >mips
4070 else
4071         echo "Doesn't look like a MIPS system."
4072         xxx_prompt=n
4073         echo "exit 1" >mips
4074 fi
4075 chmod +x mips
4076 $eunicefix mips
4077 case "$usrinc" in
4078 '') ;;
4079 *) dflt="$usrinc";;
4080 esac
4081 case "$xxx_prompt" in
4082 y)      fn=d/
4083         echo " "
4084         rp='Where are the include files you want to use?'
4085         . ./getfile
4086         usrinc="$ans"
4087         ;;
4088 *)      usrinc="$dflt"
4089         ;;
4090 esac
4091
4092 : see how we invoke the C preprocessor
4093 echo " "
4094 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4095 cat <<'EOT' >testcpp.c
4096 #define ABC abc
4097 #define XYZ xyz
4098 ABC.XYZ
4099 EOT
4100 cd ..
4101 if test ! -f cppstdin; then
4102         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4103                 # AIX cc -E doesn't show the absolute headerfile
4104                 # locations but we'll cheat by using the -M flag.
4105                 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
4106         else
4107                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4108         fi
4109 else
4110         echo "Keeping your $hint cppstdin wrapper."
4111 fi
4112 chmod 755 cppstdin
4113 wrapper=`pwd`/cppstdin
4114 ok='false'
4115 cd UU
4116
4117 if $test "X$cppstdin" != "X" && \
4118         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4119         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4120 then
4121         echo "You used to use $cppstdin $cppminus so we'll use that again."
4122         case "$cpprun" in
4123         '') echo "But let's see if we can live without a wrapper..." ;;
4124         *)
4125                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4126                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4127                 then
4128                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4129                         ok='true'
4130                 else
4131                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4132                 fi
4133                 ;;
4134         esac
4135 else
4136         case "$cppstdin" in
4137         '') ;;
4138         *)
4139                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4140                 ;;
4141         esac
4142 fi
4143
4144 if $ok; then
4145         : nothing
4146 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4147         $cc -E <testcpp.c >testcpp.out 2>&1; \
4148         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4149         echo "Yup, it does."
4150         x_cpp="$cc -E"
4151         x_minus='';
4152 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4153         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4154         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4155         echo "Yup, it does."
4156         x_cpp="$cc -E"
4157         x_minus='-';
4158 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4159         $cc -P <testcpp.c >testcpp.out 2>&1; \
4160         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4161         echo "Yipee, that works!"
4162         x_cpp="$cc -P"
4163         x_minus='';
4164 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4165         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4166         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4167         echo "At long last!"
4168         x_cpp="$cc -P"
4169         x_minus='-';
4170 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4171         $cpp <testcpp.c >testcpp.out 2>&1; \
4172         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4173         echo "It works!"
4174         x_cpp="$cpp"
4175         x_minus='';
4176 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4177         $cpp - <testcpp.c >testcpp.out 2>&1; \
4178         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4179         echo "Hooray, it works!  I was beginning to wonder."
4180         x_cpp="$cpp"
4181         x_minus='-';
4182 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4183         $wrapper <testcpp.c >testcpp.out 2>&1; \
4184         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4185         x_cpp="$wrapper"
4186         x_minus=''
4187         echo "Eureka!"
4188 else
4189         dflt=''
4190         rp="No dice.  I can't find a C preprocessor.  Name one:"
4191         . ./myread
4192         x_cpp="$ans"
4193         x_minus=''
4194         $x_cpp <testcpp.c >testcpp.out 2>&1
4195         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4196                 echo "OK, that will do." >&4
4197         else
4198 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4199                 exit 1
4200         fi
4201 fi
4202
4203 case "$ok" in
4204 false)
4205         cppstdin="$x_cpp"
4206         cppminus="$x_minus"
4207         cpprun="$x_cpp"
4208         cpplast="$x_minus"
4209         set X $x_cpp
4210         shift
4211         case "$1" in
4212         "$cpp")
4213                 echo "Perhaps can we force $cc -E using a wrapper..."
4214                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4215                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4216                 then
4217                         echo "Yup, we can."
4218                         cppstdin="$wrapper"
4219                         cppminus='';
4220                 else
4221                         echo "Nope, we'll have to live without it..."
4222                 fi
4223                 ;;
4224         esac
4225         case "$cpprun" in
4226         "$wrapper")
4227                 cpprun=''
4228                 cpplast=''
4229                 ;;
4230         esac
4231         ;;
4232 esac
4233
4234 case "$cppstdin" in
4235 "$wrapper"|'cppstdin') ;;
4236 *) $rm -f $wrapper;;
4237 esac
4238 $rm -f testcpp.c testcpp.out
4239
4240 : Set private lib path
4241 case "$plibpth" in
4242 '') if ./mips; then
4243                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4244         fi;;
4245 esac
4246 case "$libpth" in
4247 ' ') dlist='';;
4248 '') dlist="$loclibpth $plibpth $glibpth";;
4249 *) dlist="$libpth";;
4250 esac
4251
4252 : Now check and see which directories actually exist, avoiding duplicates
4253 libpth=''
4254 for xxx in $dlist
4255 do
4256     if $test -d $xxx; then
4257                 case " $libpth " in
4258                 *" $xxx "*) ;;
4259                 *) libpth="$libpth $xxx";;
4260                 esac
4261     fi
4262 done
4263 $cat <<'EOM'
4264
4265 Some systems have incompatible or broken versions of libraries.  Among
4266 the directories listed in the question below, please remove any you
4267 know not to be holding relevant libraries, and add any that are needed.
4268 Say "none" for none.
4269
4270 EOM
4271 case "$libpth" in
4272 '') dflt='none';;
4273 *)
4274         set X $libpth
4275         shift
4276         dflt=${1+"$@"}
4277         ;;
4278 esac
4279 rp="Directories to use for library searches?"
4280 . ./myread
4281 case "$ans" in
4282 none) libpth=' ';;
4283 *) libpth="$ans";;
4284 esac
4285
4286 : compute shared library extension
4287 case "$so" in
4288 '')
4289         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4290                 dflt='sl'
4291         else
4292                 dflt='so'
4293         fi
4294         ;;
4295 *) dflt="$so";;
4296 esac
4297 $cat <<EOM
4298
4299 On some systems, shared libraries may be available.  Answer 'none' if
4300 you want to suppress searching of shared libraries for the remainder
4301 of this configuration.
4302
4303 EOM
4304 rp='What is the file extension used for shared libraries?'
4305 . ./myread
4306 so="$ans"
4307
4308 : Define several unixisms.
4309 : Hints files or command line option can be used to override them.
4310 : The convoluted testing is in case hints files set either the old
4311 : or the new name.
4312 case "$_exe" in
4313 '')     case "$exe_ext" in
4314         '')     ;;
4315         *)      _exe="$exe_ext" ;;
4316         esac
4317         ;;
4318 esac
4319 case "$_a" in
4320 '')     case "$lib_ext" in
4321     '') _a='.a';;
4322         *)      _a="$lib_ext" ;;
4323         esac
4324         ;;
4325 esac
4326 case "$_o" in
4327 '') case "$obj_ext" in
4328         '')     _o='.o';;
4329         *)      _o="$obj_ext";;
4330         esac
4331         ;;
4332 esac
4333 case "$p_" in
4334 '') case "$path_sep" in
4335         '')     p_=':';;
4336         *)      p_="$path_sep";;
4337         esac
4338         ;;
4339 esac
4340 exe_ext=$_exe
4341 lib_ext=$_a
4342 obj_ext=$_o
4343 path_sep=$p_
4344
4345 : Which makefile gets called first.  This is used by make depend.
4346 case "$firstmakefile" in
4347 '') firstmakefile='makefile';;
4348 esac
4349
4350 case "$usesocks" in
4351 $define|true|[yY]*)     dflt='y';;
4352 *) dflt='n';;
4353 esac
4354 cat <<EOM
4355
4356 Perl can be built to use the SOCKS proxy protocol library.  To do so,
4357 Configure must be run with -Dusesocks.  If you use SOCKS you also need
4358 to use the PerlIO abstraction layer, this will be implicitly selected.
4359
4360 If this doesn't make any sense to you, just accept the default '$dflt'.
4361 EOM
4362 rp='Build Perl for SOCKS?'
4363 . ./myread
4364 case "$ans" in
4365 y|Y)    val="$define" ;;     
4366 *)      val="$undef" ;;
4367 esac
4368 set usesocks
4369 eval $setvar
4370
4371 case "$usesocks" in
4372 $define|true|[yY]*) useperlio="$define";;
4373 esac
4374
4375 : Looking for optional libraries
4376 echo " "
4377 echo "Checking for optional libraries..." >&4
4378 case "$libs" in
4379 ' '|'') dflt='';;
4380 *) dflt="$libs";;
4381 esac
4382 case "$libswanted" in
4383 '') libswanted='c_s';;
4384 esac
4385 case "$usesocks" in
4386 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4387 esac
4388 libsfound=''
4389 libsfiles=''
4390 libsdirs=''
4391 libspath=''
4392 for thisdir in $libpth $xlibpth; do
4393   test -d $thisdir && libspath="$libspath $thisdir"
4394 done
4395 for thislib in $libswanted; do
4396         for thisdir in $libspath; do
4397             xxx=''
4398             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4399                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4400                 $test -f "$xxx" && eval $libscheck
4401                 $test -f "$xxx" && libstyle=shared
4402             fi
4403             if test ! -f "$xxx"; then
4404                 xxx=$thisdir/lib$thislib.$so
4405                 $test -f "$xxx" && eval $libscheck
4406                 $test -f "$xxx" && libstyle=shared
4407             fi  
4408             if test ! -f "$xxx"; then
4409                 xxx=$thisdir/lib$thislib$_a
4410                 $test -f "$xxx" && eval $libscheck
4411                 $test -f "$xxx" && libstyle=static
4412             fi
4413             if test ! -f "$xxx"; then
4414                 xxx=$thisdir/$thislib$_a
4415                 $test -f "$xxx" && eval $libscheck
4416                 $test -f "$xxx" && libstyle=static
4417             fi
4418             if test ! -f "$xxx"; then
4419                 xxx=$thisdir/lib${thislib}_s$_a
4420                 $test -f "$xxx" && eval $libscheck
4421                 $test -f "$xxx" && libstyle=static
4422                 $test -f "$xxx" && thislib=${thislib}_s
4423             fi
4424             if test ! -f "$xxx"; then
4425                 xxx=$thisdir/Slib$thislib$_a
4426                 $test -f "$xxx" && eval $libscheck
4427                 $test -f "$xxx" && libstyle=static
4428             fi
4429             if $test -f "$xxx"; then
4430                 case "$libstyle" in
4431                 shared) echo "Found -l$thislib (shared)." ;;
4432                 static) echo "Found -l$thislib." ;;
4433                 *)      echo "Found -l$thislib ($libstyle)." ;;
4434                 esac
4435                 case " $dflt " in
4436                 *"-l$thislib "*);;
4437                 *) dflt="$dflt -l$thislib"
4438                    libsfound="$libsfound $xxx"
4439                    yyy=`basename $xxx`
4440                    libsfiles="$libsfiles $yyy"
4441                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4442                    case " $libsdirs " in
4443                    *" $yyy "*) ;;
4444                    *) libsdirs="$libsdirs $yyy" ;;
4445                    esac
4446                    ;;
4447                 esac
4448                 break
4449             fi  
4450         done
4451         if $test ! -f "$xxx"; then
4452             echo "No -l$thislib."
4453         fi
4454 done
4455 set X $dflt
4456 shift
4457 dflt="$*"
4458 case "$libs" in
4459 '') dflt="$dflt";;
4460 *) dflt="$libs";;
4461 esac
4462 case "$dflt" in
4463 ' '|'') dflt='none';;
4464 esac
4465
4466 $cat <<EOM
4467
4468 In order to compile $package on your machine, a number of libraries
4469 are usually needed.  Include any other special libraries here as well.
4470 Say "none" for none.  The default list is almost always right.
4471 EOM
4472
4473 echo " "
4474 rp="What libraries to use?"
4475 . ./myread
4476 case "$ans" in
4477 none) libs=' ';;
4478 *) libs="$ans";;
4479 esac
4480
4481 : determine optimization, if desired, or use for debug flag also
4482 case "$optimize" in
4483 ' '|$undef) dflt='none';;
4484 '') dflt='-O';;
4485 *) dflt="$optimize";;
4486 esac
4487 $cat <<EOH
4488
4489 By default, $package compiles with the -O flag to use the optimizer.
4490 Alternately, you might want to use the symbolic debugger, which uses
4491 the -g flag (on traditional Unix systems).  Either flag can be
4492 specified here.  To use neither flag, specify the word "none".
4493
4494 EOH
4495 rp="What optimizer/debugger flag should be used?"
4496 . ./myread
4497 optimize="$ans"
4498 case "$optimize" in
4499 'none') optimize=" ";;
4500 esac
4501
4502 dflt=''
4503 : We will not override a previous value, but we might want to
4504 : augment a hint file
4505 case "$hint" in
4506 default|recommended)
4507         case "$gccversion" in
4508         1*) dflt='-fpcc-struct-return' ;;
4509         esac
4510         case "$optimize" in
4511         *-g*) dflt="$dflt -DDEBUGGING";;
4512         esac
4513         case "$gccversion" in
4514         2*) if test -d /etc/conf/kconfig.d &&
4515                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
4516                 then
4517                         dflt="$dflt -posix"
4518                 fi
4519                 ;;
4520         esac
4521         case "$gccversion" in
4522         1*) ;;
4523         2.[0-8]*) ;;
4524         ?*)     echo " "
4525                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
4526                 echo 'int main(void) { return 0; }' > gcctest.c
4527                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
4528                         echo "Yes, it does." 2>&1
4529                         case "$ccflags" in
4530                         *strict-aliasing*) 
4531                                 echo "Leaving current flags $ccflags alone." 2>&1
4532                                 ;;
4533                         *) dflt="$dflt -fno-strict-aliasing" ;;
4534                         esac
4535                 else
4536                         echo "Nope, it doesn't, but that's ok." 2>&1
4537                 fi
4538                 ;;
4539         esac
4540         ;;
4541 esac
4542
4543 case "$mips_type" in
4544 *BSD*|'') inclwanted="$locincpth $usrinc";;
4545 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
4546 esac
4547 for thisincl in $inclwanted; do
4548         if $test -d $thisincl; then
4549                 if $test x$thisincl != x$usrinc; then
4550                         case "$dflt" in
4551                         *" -I$thisincl "*);;
4552                         *) dflt="$dflt -I$thisincl ";;
4553                         esac
4554                 fi
4555         fi
4556 done
4557
4558 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
4559         xxx=true;
4560 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
4561         xxx=true;
4562 else
4563         xxx=false;
4564 fi;
4565 if $xxx; then
4566         case "$dflt" in
4567         *$2*);;
4568         *) dflt="$dflt -D$2";;
4569         esac;
4570 fi'
4571
4572 set signal.h LANGUAGE_C; eval $inctest
4573
4574 case "$usesocks" in
4575 $define)
4576         ccflags="$ccflags -DSOCKS"
4577         ;;
4578 esac
4579
4580 case "$hint" in
4581 default|recommended) dflt="$ccflags $dflt" ;;
4582 *) dflt="$ccflags";;
4583 esac
4584
4585 case "$dflt" in
4586 ''|' ') dflt=none;;
4587 esac
4588
4589 $cat <<EOH
4590
4591 Your C compiler may want other flags.  For this question you should include
4592 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4593 but you should NOT include libraries or ld flags like -lwhatever.  If you
4594 want $package to honor its debug switch, you should include -DDEBUGGING here.
4595 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4596
4597 To use no flags, specify the word "none".
4598
4599 EOH
4600 set X $dflt
4601 shift
4602 dflt=${1+"$@"}
4603 rp="Any additional cc flags?"
4604 . ./myread
4605 case "$ans" in
4606 none) ccflags='';;
4607 *) ccflags="$ans";;
4608 esac
4609
4610 : the following weeds options from ccflags that are of no interest to cpp
4611 case "$cppflags" in
4612 '') cppflags="$ccflags" ;;
4613 *)  cppflags="$cppflags $ccflags" ;;
4614 esac
4615 case "$gccversion" in
4616 1*) cppflags="$cppflags -D__GNUC__"
4617 esac
4618 case "$mips_type" in
4619 '');;
4620 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4621 esac
4622 case "$cppflags" in
4623 '');;
4624 *)
4625         echo " "
4626         echo "Let me guess what the preprocessor flags are..." >&4
4627         set X $cppflags
4628         shift
4629         cppflags=''
4630         $cat >cpp.c <<'EOM'
4631 #define BLURFL foo
4632
4633 BLURFL xx LFRULB
4634 EOM
4635         previous=''
4636         for flag in $*
4637         do
4638                 case "$flag" in
4639                 -*) ftry="$flag";;
4640                 *) ftry="$previous $flag";;
4641                 esac
4642                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4643                         >cpp1.out 2>/dev/null && \
4644                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4645                         >cpp2.out 2>/dev/null && \
4646                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4647                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4648                 then
4649                         cppflags="$cppflags $ftry"
4650                         previous=''
4651                 else
4652                         previous="$flag"
4653                 fi
4654         done
4655         set X $cppflags
4656         shift
4657         cppflags=${1+"$@"}
4658         case "$cppflags" in
4659         *-*)  echo "They appear to be: $cppflags";;
4660         esac
4661         $rm -f cpp.c cpp?.out
4662         ;;
4663 esac
4664
4665 : flags used in final linking phase
4666 case "$ldflags" in
4667 '') if ./venix; then
4668                 dflt='-i -z'
4669         else
4670                 dflt=''
4671         fi
4672         case "$ccflags" in
4673         *-posix*) dflt="$dflt -posix" ;;
4674         esac
4675         ;;
4676 *) dflt="$ldflags";;
4677 esac
4678
4679 : Try to guess additional flags to pick up local libraries.
4680 for thislibdir in $libpth; do
4681         case " $loclibpth " in
4682         *" $thislibdir "*)
4683                 case "$dflt " in 
4684                 *"-L$thislibdir "*) ;;
4685                 *)  dflt="$dflt -L$thislibdir" ;;
4686                 esac
4687                 ;;
4688         esac
4689 done
4690
4691 case "$dflt" in
4692 '') dflt='none' ;;
4693 esac
4694
4695 $cat <<EOH
4696
4697 Your C linker may need flags.  For this question you should
4698 include -L/whatever and any other flags used by the C linker, but you
4699 should NOT include libraries like -lwhatever.
4700
4701 Make sure you include the appropriate -L/path flags if your C linker
4702 does not normally search all of the directories you specified above,
4703 namely
4704         $libpth
4705 To use no flags, specify the word "none".
4706
4707 EOH
4708
4709 rp="Any additional ld flags (NOT including libraries)?"
4710 . ./myread
4711 case "$ans" in
4712 none) ldflags='';;
4713 *) ldflags="$ans";;
4714 esac
4715 rmlist="$rmlist pdp11"
4716
4717 : coherency check
4718 echo " "
4719 echo "Checking your choice of C compiler and flags for coherency..." >&4
4720 $cat > try.c <<'EOF'
4721 #include <stdio.h>
4722 int main() { printf("Ok\n"); exit(0); }
4723 EOF
4724 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
4725 shift
4726 $cat >try.msg <<'EOM'
4727 I've tried to compile and run the following simple program:
4728
4729 EOM
4730 $cat try.c >> try.msg
4731
4732 $cat >> try.msg <<EOM
4733
4734 I used the command:
4735
4736         $*
4737         $run ./try
4738
4739 and I got the following output:
4740
4741 EOM
4742 dflt=y
4743 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
4744         if $sh -c "$run ./try" >>try.msg 2>&1; then
4745                 xxx=`$run ./try`
4746                 case "$xxx" in
4747                 "Ok") dflt=n ;;
4748                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4749                         case " $libs " in
4750                         *" -lsfio "*)
4751                                 cat >> try.msg <<'EOQS'
4752 If $libs contains -lsfio, and sfio is mis-configured, then it
4753 sometimes (apparently) runs and exits with a 0 status, but with no
4754 output!  It may have to do with sfio's use of _exit vs. exit.
4755
4756 EOQS
4757                                 rp="You have a big problem.  Shall I abort Configure"
4758                                 dflt=y
4759                                 ;;
4760                         esac
4761                         ;;
4762                 esac
4763         else
4764                 echo "The program compiled OK, but exited with status $?." >>try.msg
4765                 rp="You have a problem.  Shall I abort Configure"
4766                 dflt=y
4767         fi
4768 else
4769         echo "I can't compile the test program." >>try.msg
4770         rp="You have a BIG problem.  Shall I abort Configure"
4771         dflt=y
4772 fi
4773 case "$dflt" in
4774 y)
4775         $cat try.msg >&4
4776         case "$knowitall" in
4777         '')
4778                 echo "(The supplied flags or libraries might be incorrect.)"
4779                 ;;
4780         *) dflt=n;;
4781         esac
4782         echo " "
4783         . ./myread
4784         case "$ans" in
4785         n*|N*) ;;
4786         *)      echo "Ok.  Stopping Configure." >&4
4787                 exit 1
4788                 ;;
4789         esac
4790         ;;
4791 n) echo "OK, that should do.";;
4792 esac
4793 $rm -f try try.* core
4794
4795 : define a shorthand compile call
4796 compile='
4797 mc_file=$1;
4798 shift;
4799 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
4800 : define a shorthand compile call for compilations that should be ok.
4801 compile_ok='
4802 mc_file=$1;
4803 shift;
4804 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
4805
4806 : check for lengths of integral types
4807 echo " "
4808 case "$intsize" in
4809 '')
4810         echo "Checking to see how big your integers are..." >&4
4811         $cat >try.c <<'EOCP'
4812 #include <stdio.h>
4813 int main()
4814 {
4815         printf("intsize=%d;\n", (int)sizeof(int));
4816         printf("longsize=%d;\n", (int)sizeof(long));
4817         printf("shortsize=%d;\n", (int)sizeof(short));
4818         exit(0);
4819 }
4820 EOCP
4821         set try
4822         if eval $compile_ok && $run ./try > /dev/null; then
4823                 eval `$run ./try`
4824                 echo "Your integers are $intsize bytes long."
4825                 echo "Your long integers are $longsize bytes long."
4826                 echo "Your short integers are $shortsize bytes long."
4827         else
4828                 $cat >&4 <<EOM
4829 !
4830 Help! I can't compile and run the intsize test program: please enlighten me!
4831 (This is probably a misconfiguration in your system or libraries, and
4832 you really ought to fix it.  Still, I'll try anyway.)
4833 !
4834 EOM
4835                 dflt=4
4836                 rp="What is the size of an integer (in bytes)?"
4837                 . ./myread
4838                 intsize="$ans"
4839                 dflt=$intsize
4840                 rp="What is the size of a long integer (in bytes)?"
4841                 . ./myread
4842                 longsize="$ans"
4843                 dflt=2
4844                 rp="What is the size of a short integer (in bytes)?"
4845                 . ./myread
4846                 shortsize="$ans"
4847         fi
4848         ;;
4849 esac
4850 $rm -f try try.*
4851
4852 : check for void type
4853 echo " "
4854 echo "Checking to see how well your C compiler groks the void type..." >&4
4855 case "$voidflags" in
4856 '')
4857         $cat >try.c <<'EOCP'
4858 #if TRY & 1
4859 void sub() {
4860 #else
4861 sub() {
4862 #endif
4863         extern void moo();      /* function returning void */
4864         void (*goo)();          /* ptr to func returning void */
4865 #if TRY & 8
4866         void *hue;              /* generic ptr */
4867 #endif
4868 #if TRY & 2
4869         void (*foo[10])();
4870 #endif
4871
4872 #if TRY & 4
4873         if(goo == moo) {
4874                 exit(0);
4875         }
4876 #endif
4877         exit(0);
4878 }
4879 int main() { sub(); }
4880 EOCP
4881         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
4882                 voidflags=$defvoidused
4883         echo "Good.  It appears to support void to the level $package wants.">&4
4884                 if $contains warning .out >/dev/null 2>&1; then
4885                         echo "However, you might get some warnings that look like this:"
4886                         $cat .out
4887                 fi
4888         else
4889 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
4890                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
4891                         echo "It supports 1..."
4892                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
4893                                 echo "It also supports 2..."
4894                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
4895                                         voidflags=7
4896                                         echo "And it supports 4 but not 8 definitely."
4897                                 else
4898                                         echo "It doesn't support 4..."
4899                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
4900                                                 voidflags=11
4901                                                 echo "But it supports 8."
4902                                         else
4903                                                 voidflags=3
4904                                                 echo "Neither does it support 8."
4905                                         fi
4906                                 fi
4907                         else
4908                                 echo "It does not support 2..."
4909                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
4910                                         voidflags=13
4911                                         echo "But it supports 4 and 8."
4912                                 else
4913                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
4914                                                 voidflags=5
4915                                                 echo "And it supports 4 but has not heard about 8."
4916                                         else
4917                                                 echo "However it supports 8 but not 4."
4918                                         fi
4919                                 fi
4920                         fi
4921                 else
4922                         echo "There is no support at all for void."
4923                         voidflags=0
4924                 fi
4925         fi
4926 esac
4927 case "$voidflags" in
4928 "$defvoidused") ;;
4929 *)      $cat >&4 <<'EOM'
4930   Support flag bits are:
4931     1: basic void declarations.
4932     2: arrays of pointers to functions returning void.
4933     4: operations between pointers to and addresses of void functions.
4934     8: generic void pointers.
4935 EOM
4936         dflt="$voidflags";
4937         rp="Your void support flags add up to what?"
4938         . ./myread
4939         voidflags="$ans"
4940         ;;
4941 esac
4942 $rm -f try.* .out
4943
4944 : check for length of pointer
4945 echo " "
4946 case "$ptrsize" in
4947 '')
4948         echo "Checking to see how big your pointers are..." >&4
4949         if test "$voidflags" -gt 7; then
4950                 echo '#define VOID_PTR char *' > try.c
4951         else
4952                 echo '#define VOID_PTR void *' > try.c
4953         fi
4954         $cat >>try.c <<'EOCP'
4955 #include <stdio.h>
4956 int main()
4957 {
4958     printf("%d\n", (int)sizeof(VOID_PTR));
4959     exit(0);
4960 }
4961 EOCP
4962         set try
4963         if eval $compile_ok; then
4964                 ptrsize=`$run ./try`
4965                 echo "Your pointers are $ptrsize bytes long."
4966         else
4967                 dflt='4'
4968                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
4969                 rp="What is the size of a pointer (in bytes)?"
4970                 . ./myread
4971                 ptrsize="$ans"
4972         fi
4973         ;;
4974 esac
4975 $rm -f try.c try
4976
4977 : check for long long
4978 echo " "
4979 echo "Checking to see if you have long long..." >&4
4980 echo 'int main() { long long x = 7; return 0; }' > try.c
4981 set try
4982 if eval $compile; then
4983         val="$define"
4984         echo "You have long long."
4985 else
4986         val="$undef"
4987         echo "You do not have long long."
4988 fi
4989 $rm try.*
4990 set d_longlong
4991 eval $setvar
4992
4993 : check for length of long long
4994 case "${d_longlong}${longlongsize}" in
4995 $define)
4996         echo " "
4997         echo "Checking to see how big your long longs are..." >&4
4998         $cat >try.c <<'EOCP'
4999 #include <stdio.h>
5000 int main()
5001 {
5002     printf("%d\n", (int)sizeof(long long));
5003     return(0);
5004 }
5005 EOCP
5006         set try
5007         if eval $compile_ok; then
5008                 longlongsize=`$run ./try`
5009                 echo "Your long longs are $longlongsize bytes long."
5010         else
5011                 dflt='8'
5012                 echo " "
5013                 echo "(I can't seem to compile the test program.  Guessing...)"
5014                 rp="What is the size of a long long (in bytes)?"
5015                 . ./myread
5016                 longlongsize="$ans"
5017         fi
5018         if $test "X$longsize" = "X$longlongsize"; then
5019                 echo "(That isn't any different from an ordinary long.)"
5020         fi      
5021         ;;
5022 esac
5023 $rm -f try.* try
5024
5025 : determine filename position in cpp output
5026 echo " "
5027 echo "Computing filename position in cpp output for #include directives..." >&4
5028 case "$osname" in
5029 vos) testaccess=-e ;;
5030 *)   testaccess=-r ;;
5031 esac
5032 echo '#include <stdio.h>' > foo.c
5033 $cat >fieldn <<EOF
5034 $startsh
5035 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5036 $grep '^[       ]*#.*stdio\.h' | \
5037 while read cline; do
5038         pos=1
5039         set \$cline
5040         while $test \$# -gt 0; do
5041                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5042                         echo "\$pos"
5043                         exit 0
5044                 fi
5045                 shift
5046                 pos=\`expr \$pos + 1\`
5047         done
5048 done
5049 EOF
5050 chmod +x fieldn
5051 fieldn=`./fieldn`
5052 $rm -f foo.c fieldn
5053 case $fieldn in
5054 '') pos='???';;
5055 1) pos=first;;
5056 2) pos=second;;
5057 3) pos=third;;
5058 *) pos="${fieldn}th";;
5059 esac
5060 echo "Your cpp writes the filename in the $pos field of the line."
5061
5062 case "$osname" in
5063 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5064 *)   cppfilter='' ;;
5065 esac
5066 : locate header file
5067 $cat >findhdr <<EOF
5068 $startsh
5069 wanted=\$1
5070 name=''
5071 for usrincdir in $usrinc
5072 do
5073         if test -f \$usrincdir/\$wanted; then
5074                 echo "\$usrincdir/\$wanted"
5075                 exit 0
5076         fi
5077 done
5078 awkprg='{ print \$$fieldn }'
5079 echo "#include <\$wanted>" > foo\$\$.c
5080 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5081 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5082 while read cline; do
5083         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5084         case "\$name" in
5085         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5086         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5087         *) exit 2;;
5088         esac;
5089 done;
5090 #
5091 # status = 0: grep returned 0 lines, case statement not executed
5092 # status = 1: headerfile found
5093 # status = 2: while loop executed, no headerfile found
5094 #
5095 status=\$?
5096 $rm -f foo\$\$.c;
5097 if test \$status -eq 1; then
5098         exit 0;
5099 fi
5100 exit 1
5101 EOF
5102 chmod +x findhdr
5103
5104 : define an alternate in-header-list? function
5105 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5106 cont=true; xxf="echo \"<\$1> found.\" >&4";
5107 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5108 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5109 esac;
5110 case $# in 4) instead=instead;; *) instead="at last";; esac;
5111 while $test "$cont"; do
5112         xxx=`./findhdr $1`
5113         var=$2; eval "was=\$$2";
5114         if $test "$xxx" && $test -r "$xxx";
5115         then eval $xxf;
5116         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5117                 cont="";
5118         else eval $xxnf;
5119         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5120         set $yyy; shift; shift; yyy=$@;
5121         case $# in 0) cont="";;
5122         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5123                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5124         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5125                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5126         esac;
5127 done;
5128 while $test "$yyy";
5129 do set $yyy; var=$2; eval "was=\$$2";
5130         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5131         set $yyy; shift; shift; yyy=$@;
5132 done'
5133
5134 : see if inttypes.h is available
5135 : we want a real compile instead of Inhdr because some systems
5136 : have an inttypes.h which includes non-existent headers
5137 echo " "
5138 $cat >try.c <<EOCP
5139 #include <inttypes.h>
5140 int main() {
5141         static int32_t foo32 = 0x12345678;
5142 }
5143 EOCP
5144 set try
5145 if eval $compile; then
5146         echo "<inttypes.h> found." >&4
5147         val="$define"
5148 else
5149         echo "<inttypes.h> NOT found." >&4
5150         val="$undef"
5151 fi
5152 $rm -f try.c try
5153 set i_inttypes
5154 eval $setvar
5155
5156 : check for int64_t
5157 echo " "
5158 echo "Checking to see if you have int64_t..." >&4
5159 $cat >try.c <<EOCP
5160 #include <sys/types.h>
5161 #$i_inttypes I_INTTYPES
5162 #ifdef I_INTTYPES
5163 #include <inttypes.h>
5164 #endif
5165 int main() { int64_t x = 7; }
5166 EOCP
5167 set try
5168 if eval $compile; then
5169         val="$define"
5170         echo "You have int64_t."
5171 else
5172         val="$undef"
5173         echo "You do not have int64_t."
5174 fi
5175 $rm -f try try.*
5176 set d_int64_t
5177 eval $setvar
5178
5179
5180 echo " "
5181 echo "Checking which 64-bit integer type we could use..." >&4
5182
5183 case "$intsize" in
5184 8) val=int
5185    set quadtype
5186    eval $setvar
5187    val='"unsigned int"'
5188    set uquadtype
5189    eval $setvar
5190    quadkind=1
5191    ;;
5192 *) case "$longsize" in
5193    8) val=long
5194       set quadtype
5195       eval $setvar
5196       val='"unsigned long"'
5197       set uquadtype
5198       eval $setvar
5199       quadkind=2
5200       ;;
5201    *) case "$d_longlong:$longlongsize" in
5202       define:8)
5203         val='"long long"'
5204         set quadtype
5205         eval $setvar
5206         val='"unsigned long long"'
5207         set uquadtype
5208         eval $setvar
5209         quadkind=3
5210         ;;
5211       *) case "$d_int64_t" in
5212          define)
5213            val=int64_t
5214            set quadtype
5215            eval $setvar
5216            val=uint64_t
5217            set uquadtype
5218            eval $setvar
5219            quadkind=4
5220            ;;
5221          esac
5222          ;;
5223       esac
5224       ;;
5225    esac
5226    ;;
5227 esac
5228
5229 case "$quadtype" in
5230 '')     echo "Alas, no 64-bit integer types in sight." >&4
5231         d_quad="$undef"
5232         ;;
5233 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5234         d_quad="$define"
5235         ;;
5236 esac
5237
5238
5239 case "$uselonglong" in
5240 "$define"|true|[yY]*)
5241         cat <<EOM >&4
5242
5243 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5244 EOM
5245         use64bitint="$define"
5246         ;;
5247 esac                          
5248 case "$use64bits" in
5249 "$define"|true|[yY]*)
5250         cat <<EOM >&4
5251
5252 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5253 EOM
5254         use64bitint="$define"
5255         ;;
5256 esac                          
5257 case "$use64bitints" in
5258 "$define"|true|[yY]*)
5259         cat <<EOM >&4
5260
5261 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5262 EOM
5263         use64bitint="$define"
5264         ;;
5265 esac                          
5266 case "$use64bitsint" in
5267 "$define"|true|[yY]*)
5268         cat <<EOM >&4
5269
5270 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5271 EOM
5272         use64bitint="$define"
5273         ;;
5274 esac                          
5275 case "$uselonglongs" in
5276 "$define"|true|[yY]*)
5277         cat <<EOM >&4
5278
5279 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5280 EOM
5281         use64bitint="$define"
5282         ;;
5283 esac                          
5284 case "$use64bitsall" in
5285 "$define"|true|[yY]*)
5286         cat <<EOM >&4
5287
5288 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5289 EOM
5290         use64bitall="$define"
5291         ;;
5292 esac                          
5293
5294 case "$ccflags" in
5295 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5296 esac
5297 case "$use64bitall" in
5298 "$define"|true|[yY]*) use64bitint="$define" ;;
5299 esac
5300
5301 case "$longsize" in
5302 8) cat <<EOM
5303
5304 You have natively 64-bit long integers.
5305 EOM
5306    val="$define"
5307    ;;
5308 *) case "$use64bitint" in
5309    "$define"|true|[yY]*) dflt='y';;
5310    *) dflt='n';;
5311    esac
5312    case "$d_quad" in
5313    "$define") ;;
5314    *) dflt='n' ;;
5315    esac
5316    cat <<EOM
5317
5318 Perl can be built to take advantage of 64-bit integer types
5319 on some systems.  To do so, Configure can be run with -Duse64bitint.
5320 Choosing this option will most probably introduce binary incompatibilities.
5321
5322 If this doesn't make any sense to you, just accept the default '$dflt'.
5323 (The default has been chosen based on your configuration.)
5324 EOM
5325    rp='Try to use 64-bit integers, if available?'
5326    . ./myread
5327    case "$ans" in
5328    [yY]*) val="$define" ;;
5329    *)     val="$undef"  ;;
5330    esac
5331    ;;
5332 esac
5333 set use64bitint
5334 eval $setvar
5335
5336 case "$use64bitall" in
5337 "$define"|true|[yY]*) dflt='y' ;;
5338 *) case "$longsize" in
5339    8) dflt='y' ;;
5340    *) dflt='n' ;;
5341    esac
5342    ;;
5343 esac    
5344 cat <<EOM
5345
5346 You may also choose to try maximal 64-bitness.  It means using as much
5347 64-bitness as possible on the platform.  This in turn means even more
5348 binary incompatibilities.  On the other hand, your platform may not
5349 have any more 64-bitness available than what you already have chosen.
5350
5351 If this doesn't make any sense to you, just accept the default '$dflt'.
5352 (The default has been chosen based on your configuration.)
5353 EOM
5354 rp='Try to use maximal 64-bit support, if available?'
5355 . ./myread
5356 case "$ans" in
5357 [yY]*) val="$define" ;;
5358 *)     val="$undef"  ;;
5359 esac
5360 set use64bitall
5361 eval $setvar
5362 case "$use64bitall" in
5363 "$define")
5364         case "$use64bitint" in
5365         "$undef")
5366                 cat <<EOM
5367
5368 Since you have chosen a maximally 64-bit build, I'm also turning on
5369 the use of 64-bit integers.
5370 EOM
5371                 use64bitint="$define" ;;
5372         esac
5373         ;;
5374 esac
5375
5376 case "$use64bitall" in
5377 "$define"|true|[yY]*)
5378         case "$ptrsize" in
5379         4)      cat <<EOM >&4
5380
5381 *** You have chosen a maximally 64-bit build, but your pointers
5382 *** are only 4 bytes wide, disabling maximal 64-bitness.
5383
5384 EOM
5385                 use64bitall="$undef"
5386                 case "$use64bitint" in
5387                 "$define"|true|[yY]*) ;;
5388                 *)      cat <<EOM >&4
5389
5390 *** Downgrading from maximal 64-bitness to using 64-bit integers.
5391
5392 EOM
5393                         use64bitint="$define"
5394                         ;;
5395                 esac
5396                 ;;
5397         esac
5398         ;;
5399 esac
5400
5401 case "$use64bitint" in
5402 "$define"|true|[yY]*)
5403 : Look for a hint-file generated 'call-back-unit'.  If the
5404 : user has specified that a 64-bit perl is to be built,
5405 : we may need to set or change some other defaults.
5406         if $test -f use64bitint.cbu; then
5407                 echo "Your platform has some specific hints for 64-bit integers, using them..."
5408                 . ./use64bitint.cbu
5409         fi
5410         case "$longsize" in
5411         4) case "$archname64" in
5412            '') archname64=64int ;;
5413            esac
5414            ;;
5415         esac
5416         ;;
5417 esac
5418
5419 case "$use64bitall" in
5420 "$define"|true|[yY]*)
5421 : Look for a hint-file generated 'call-back-unit'.  If the
5422 : user has specified that a maximally 64-bit perl is to be built,
5423 : we may need to set or change some other defaults.
5424         if $test -f use64bitall.cbu; then
5425                 echo "Your platform has some specific hints for 64-bit builds, using them..."
5426                 . ./use64bitall.cbu
5427         fi
5428         case "$longsize" in
5429         4) case "$archname64" in
5430            ''|64int) archname64=64all ;;
5431            esac
5432            ;;
5433         esac
5434         ;;
5435 esac
5436
5437 echo " "
5438 echo "Checking for GNU C Library..." >&4
5439 cat >try.c <<EOM
5440 #include <stdio.h>
5441 int main()
5442 {
5443 #ifdef __GLIBC__
5444     exit(0);
5445 #else
5446     exit(1);
5447 #endif
5448 }
5449 EOM
5450 set try
5451 if eval $compile_ok && $run ./try; then
5452         val="$define"
5453         echo "You are using the GNU C Library"
5454 else
5455         val="$undef"
5456         echo "You are not using the GNU C Library"
5457 fi
5458 $rm -f try try.*
5459 set d_gnulibc
5460 eval $setvar
5461
5462 : see if nm is to be used to determine whether a symbol is defined or not
5463 case "$usenm" in
5464 '')
5465         dflt=''
5466         case "$d_gnulibc" in
5467         "$define")
5468                 echo " "
5469                 echo "nm probably won't work on the GNU C Library." >&4
5470                 dflt=n
5471                 ;;
5472         esac
5473         case "$dflt" in
5474         '') 
5475                 if $test "$osname" = aix -a ! -f /lib/syscalls.exp; then
5476                         echo " "
5477                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
5478                         echo "'nm' won't be sufficient on this sytem." >&4
5479                         dflt=n
5480                 fi
5481                 ;;
5482         esac
5483         case "$dflt" in
5484         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
5485                 if $test $dflt -gt 20; then
5486                         dflt=y
5487                 else
5488                         dflt=n
5489                 fi
5490                 ;;
5491         esac
5492         ;;
5493 *)
5494         case "$usenm" in
5495         true|$define) dflt=y;;
5496         *) dflt=n;;
5497         esac
5498         ;;
5499 esac
5500 $cat <<EOM
5501
5502 I can use $nm to extract the symbols from your C libraries. This
5503 is a time consuming task which may generate huge output on the disk (up
5504 to 3 megabytes) but that should make the symbols extraction faster. The
5505 alternative is to skip the 'nm' extraction part and to compile a small
5506 test program instead to determine whether each symbol is present. If
5507 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
5508 this may be the best solution.
5509
5510 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
5511
5512 EOM
5513 rp="Shall I use $nm to extract C symbols from the libraries?"
5514 . ./myread
5515 case "$ans" in
5516 [Nn]*) usenm=false;;
5517 *) usenm=true;;
5518 esac
5519
5520 runnm=$usenm
5521 case "$reuseval" in
5522 true) runnm=false;;
5523 esac
5524
5525 : nm options which may be necessary
5526 case "$nm_opt" in
5527 '') if $test -f /mach_boot; then
5528                 nm_opt=''       # Mach
5529         elif $test -d /usr/ccs/lib; then
5530                 nm_opt='-p'     # Solaris (and SunOS?)
5531         elif $test -f /dgux; then
5532                 nm_opt='-p'     # DG-UX
5533         elif $test -f /lib64/rld; then
5534                 nm_opt='-p'     # 64-bit Irix
5535         else
5536                 nm_opt=''
5537         fi;;
5538 esac
5539
5540 : nm options which may be necessary for shared libraries but illegal
5541 : for archive libraries.  Thank you, Linux.
5542 case "$nm_so_opt" in
5543 '')     case "$myuname" in
5544         *linux*)
5545                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
5546                         nm_so_opt='--dynamic'
5547                 fi
5548                 ;;
5549         esac
5550         ;;
5551 esac
5552
5553 case "$runnm" in
5554 true)
5555 : get list of predefined functions in a handy place
5556 echo " "
5557 case "$libc" in
5558 '') libc=unknown
5559         case "$libs" in
5560         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
5561         esac
5562         ;;
5563 esac
5564 case "$libs" in
5565 '') ;;
5566 *)  for thislib in $libs; do
5567         case "$thislib" in
5568         -lc|-lc_s)
5569                 : Handle C library specially below.
5570                 ;;
5571         -l*)
5572                 thislib=`echo $thislib | $sed -e 's/^-l//'`
5573                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
5574                         :
5575                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
5576                         :
5577                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
5578                         :
5579                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
5580                         :
5581                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
5582                         :
5583                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
5584                         :
5585                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
5586                         :
5587                 else
5588                         try=''
5589                 fi
5590                 libnames="$libnames $try"
5591                 ;;
5592         *) libnames="$libnames $thislib" ;;
5593         esac
5594         done
5595         ;;
5596 esac
5597 xxx=normal
5598 case "$libc" in
5599 unknown)
5600         set /lib/libc.$so
5601         for xxx in $libpth; do
5602                 $test -r $1 || set $xxx/libc.$so
5603                 : The messy sed command sorts on library version numbers.
5604                 $test -r $1 || \
5605                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
5606                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
5607                                 h
5608                                 s/[0-9][0-9]*/0000&/g
5609                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
5610                                 G
5611                                 s/\n/ /' | \
5612                          $sort | $sed -e 's/^.* //'`
5613                 eval set \$$#
5614         done
5615         $test -r $1 || set /usr/ccs/lib/libc.$so
5616         $test -r $1 || set /lib/libsys_s$_a
5617         ;;
5618 *)
5619         set blurfl
5620         ;;
5621 esac
5622 if $test -r "$1"; then
5623         echo "Your (shared) C library seems to be in $1."
5624         libc="$1"
5625 elif $test -r /lib/libc && $test -r /lib/clib; then
5626         echo "Your C library seems to be in both /lib/clib and /lib/libc."
5627         xxx=apollo
5628         libc='/lib/clib /lib/libc'
5629         if $test -r /lib/syslib; then
5630                 echo "(Your math library is in /lib/syslib.)"
5631                 libc="$libc /lib/syslib"
5632         fi
5633 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
5634         echo "Your C library seems to be in $libc, as you said before."
5635 elif $test -r $incpath/usr/lib/libc$_a; then
5636         libc=$incpath/usr/lib/libc$_a;
5637         echo "Your C library seems to be in $libc.  That's fine."
5638 elif $test -r /lib/libc$_a; then
5639         libc=/lib/libc$_a;
5640         echo "Your C library seems to be in $libc.  You're normal."
5641 else
5642         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
5643                 :
5644         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
5645                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
5646         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
5647                 :
5648         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
5649                 :
5650         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
5651                 :
5652         else
5653                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
5654         fi
5655         if $test -r "$tans"; then
5656                 echo "Your C library seems to be in $tans, of all places."
5657                 libc=$tans
5658         else
5659                 libc='blurfl'
5660         fi
5661 fi
5662 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
5663         dflt="$libc"
5664         cat <<EOM
5665
5666 If the guess above is wrong (which it might be if you're using a strange
5667 compiler, or your machine supports multiple models), you can override it here.
5668
5669 EOM
5670 else
5671         dflt=''
5672         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
5673         cat >&4 <<EOM
5674 I can't seem to find your C library.  I've looked in the following places:
5675
5676 EOM
5677         $sed 's/^/      /' libpath
5678         cat <<EOM
5679
5680 None of these seems to contain your C library. I need to get its name...
5681
5682 EOM
5683 fi
5684 fn=f
5685 rp='Where is your C library?'
5686 . ./getfile
5687 libc="$ans"
5688
5689 echo " "
5690 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
5691 set X `cat libnames`
5692 shift
5693 xxx=files
5694 case $# in 1) xxx=file; esac
5695 echo "Extracting names from the following $xxx for later perusal:" >&4
5696 echo " "
5697 $sed 's/^/      /' libnames >&4
5698 echo " "
5699 $echo $n "This may take a while...$c" >&4
5700
5701 for file in $*; do
5702         case $file in
5703         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
5704         *) $nm $nm_opt $file 2>/dev/null;;
5705         esac
5706 done >libc.tmp
5707
5708 $echo $n ".$c"
5709 $grep fprintf libc.tmp > libc.ptf
5710 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
5711 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
5712 xxx='[ADTSIW]'
5713 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *_[_.]*//p' -e 's/^.* $xxx  *//p'";\
5714         eval $xscan;\
5715         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5716                 eval $xrun
5717 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
5718         eval $xscan;\
5719         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5720                 eval $xrun
5721 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
5722         eval $xscan;\
5723         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5724                 eval $xrun
5725 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
5726         eval $xscan;\
5727         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5728                 eval $xrun
5729 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
5730         eval $xscan;\
5731         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5732                 eval $xrun
5733 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
5734         eval $xscan;\
5735         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5736                 eval $xrun
5737 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
5738                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
5739         eval $xscan;\
5740         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5741                 eval $xrun
5742 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
5743         eval $xscan;\
5744         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5745                 eval $xrun
5746 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
5747         eval $xscan;\
5748         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5749                 eval $xrun
5750 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
5751         eval $xscan;\
5752         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5753                 eval $xrun
5754 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
5755         eval $xscan;\
5756         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5757                 eval $xrun
5758 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
5759         eval $xscan;\
5760         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5761                 eval $xrun
5762 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
5763         eval $xscan;\
5764         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5765                 eval $xrun
5766 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
5767         eval $xscan;\
5768         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5769                 eval $xrun
5770 else
5771         $nm -p $* 2>/dev/null >libc.tmp
5772         $grep fprintf libc.tmp > libc.ptf
5773         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
5774                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
5775         then
5776                 nm_opt='-p'
5777                 eval $xrun
5778         else
5779                 echo " "
5780                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
5781                 com=''
5782                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
5783                         for thisname in $libnames $libc; do
5784                                 $ar t $thisname >>libc.tmp
5785                         done
5786                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
5787                         echo "Ok." >&4
5788                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
5789                         # Repeat libc to extract forwarders to DLL entries too
5790                         for thisname in $libnames $libc; do
5791                                 $ar tv $thisname >>libc.tmp
5792                                 # Revision 50 of EMX has bug in $ar.
5793                                 # it will not extract forwarders to DLL entries
5794                                 # Use emximp which will extract exactly them.
5795                                 emximp -o tmp.imp $thisname \
5796                                     2>/dev/null && \
5797                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
5798                                     < tmp.imp >>libc.tmp
5799                                 $rm tmp.imp
5800                         done
5801                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
5802                         echo "Ok." >&4
5803                 else
5804                         echo "$ar didn't seem to work right." >&4
5805                         echo "Maybe this is a Cray...trying bld instead..." >&4
5806                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
5807                         then
5808                                 for thisname in $libnames; do
5809                                         bld t $libnames | \
5810                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
5811                                         $ar t $thisname >>libc.tmp
5812                                 done
5813                                 echo "Ok." >&4
5814                         else
5815                                 echo "That didn't work either.  Giving up." >&4
5816                                 exit 1
5817                         fi
5818                 fi
5819         fi
5820 fi
5821 nm_extract="$com"
5822 if $test -f /lib/syscalls.exp; then
5823         echo " "
5824         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
5825         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
5826 fi
5827 ;;
5828 esac
5829 $rm -f libnames libpath
5830
5831 : is a C symbol defined?
5832 csym='tlook=$1;
5833 case "$3" in
5834 -v) tf=libc.tmp; tc=""; tdc="";;
5835 -a) tf=libc.tmp; tc="[0]"; tdc="[]";;
5836 *) tlook="^$1\$"; tf=libc.list; tc="()"; tdc="()";;
5837 esac;
5838 tx=yes;
5839 case "$reuseval-$4" in
5840 true-) ;;
5841 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
5842 esac;
5843 case "$tx" in
5844 yes)
5845         case "$runnm" in
5846         true)
5847                 if $contains $tlook $tf >/dev/null 2>&1;
5848                 then tval=true;
5849                 else tval=false;
5850                 fi;;
5851         *)
5852                 echo "int main() { extern short $1$tdc; printf(\"%hd\", $1$tc); }" > t.c;
5853                 if $cc -o t $optimize $ccflags $ldflags t.c $libs >/dev/null 2>&1;
5854                 then tval=true;
5855                 else tval=false;
5856                 fi;
5857                 $rm -f t t.c;;
5858         esac;;
5859 *)
5860         case "$tval" in
5861         $define) tval=true;;
5862         *) tval=false;;
5863         esac;;
5864 esac;
5865 eval "$2=$tval"'
5866
5867 : define an is-in-libc? function
5868 inlibc='echo " "; td=$define; tu=$undef;
5869 sym=$1; var=$2; eval "was=\$$2";
5870 tx=yes;
5871 case "$reuseval$was" in
5872 true) ;;
5873 true*) tx=no;;
5874 esac;
5875 case "$tx" in
5876 yes)
5877         set $sym tres -f;
5878         eval $csym;
5879         case "$tres" in
5880         true)
5881                 echo "$sym() found." >&4;
5882                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
5883         *)
5884                 echo "$sym() NOT found." >&4;
5885                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
5886         esac;;
5887 *)
5888         case "$was" in
5889         $define) echo "$sym() found." >&4;;
5890         *) echo "$sym() NOT found." >&4;;
5891         esac;;
5892 esac'
5893
5894 : see if sqrtl exists
5895 set sqrtl d_sqrtl
5896 eval $inlibc
5897
5898 : check for length of double
5899 echo " "
5900 case "$doublesize" in
5901 '')
5902         echo "Checking to see how big your double precision numbers are..." >&4
5903         $cat >try.c <<'EOCP'
5904 #include <stdio.h>
5905 int main()
5906 {
5907     printf("%d\n", (int)sizeof(double));
5908     exit(0);
5909 }
5910 EOCP
5911         set try
5912         if eval $compile_ok; then
5913                 doublesize=`$run ./try`
5914                 echo "Your double is $doublesize bytes long."
5915         else
5916                 dflt='8'
5917                 echo "(I can't seem to compile the test program.  Guessing...)"
5918                 rp="What is the size of a double precision number (in bytes)?"
5919                 . ./myread
5920                 doublesize="$ans"
5921         fi
5922         ;;
5923 esac
5924 $rm -f try.c try
5925
5926 : check for long doubles
5927 echo " "
5928 echo "Checking to see if you have long double..." >&4
5929 echo 'int main() { long double x = 7.0; }' > try.c
5930 set try
5931 if eval $compile; then
5932         val="$define"
5933         echo "You have long double."
5934 else
5935         val="$undef"
5936         echo "You do not have long double."
5937 fi
5938 $rm try.*
5939 set d_longdbl
5940 eval $setvar
5941
5942 : check for length of long double
5943 case "${d_longdbl}${longdblsize}" in
5944 $define)
5945         echo " "
5946         echo "Checking to see how big your long doubles are..." >&4
5947         $cat >try.c <<'EOCP'
5948 #include <stdio.h>
5949 int main()
5950 {
5951         printf("%d\n", sizeof(long double));
5952 }
5953 EOCP
5954         set try
5955         set try
5956         if eval $compile; then
5957                 longdblsize=`$run ./try`
5958                 echo "Your long doubles are $longdblsize bytes long."
5959         else
5960                 dflt='8'
5961                 echo " "
5962                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
5963                 rp="What is the size of a long double (in bytes)?"
5964                 . ./myread
5965                 longdblsize="$ans"
5966         fi
5967         if $test "X$doublesize" = "X$longdblsize"; then
5968                 echo "(That isn't any different from an ordinary double.)"
5969         fi      
5970         ;;
5971 esac
5972 $rm -f try.* try
5973
5974 echo " "
5975
5976 if $test X"$d_longdbl" = X"$define"; then
5977
5978 echo "Checking how to print long doubles..." >&4
5979
5980 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
5981         $cat >try.c <<'EOCP'
5982 #include <sys/types.h>
5983 #include <stdio.h>
5984 int main() {
5985   double d = 123.456;
5986   printf("%.3f\n", d);
5987 }
5988 EOCP
5989         set try
5990         if eval $compile; then
5991                 yyy=`$run ./try`
5992                 case "$yyy" in
5993                 123.456)
5994                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
5995                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
5996                         echo "We will use %f."
5997                         ;;
5998                 esac
5999         fi
6000 fi
6001
6002 if $test X"$sPRIfldbl" = X; then
6003         $cat >try.c <<'EOCP'
6004 #include <sys/types.h>
6005 #include <stdio.h>
6006 int main() {
6007   long double d = 123.456;
6008   printf("%.3Lf\n", d);
6009 }
6010 EOCP
6011         set try
6012         if eval $compile; then
6013                 yyy=`$run ./try`
6014                 case "$yyy" in
6015                 123.456)
6016                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
6017                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
6018                         echo "We will use %Lf."
6019                         ;;
6020                 esac
6021         fi
6022 fi
6023
6024 if $test X"$sPRIfldbl" = X; then
6025         $cat >try.c <<'EOCP'
6026 #include <sys/types.h>
6027 #include <stdio.h>
6028 int main() {
6029   long double d = 123.456;
6030   printf("%.3llf\n", d);
6031 }
6032 EOCP
6033         set try
6034         if eval $compile; then
6035                 yyy=`$run ./try`
6036                 case "$yyy" in
6037                 123.456)
6038                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
6039                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
6040                         echo "We will use %llf."
6041                         ;;
6042                 esac
6043         fi
6044 fi
6045
6046 if $test X"$sPRIfldbl" = X; then
6047         $cat >try.c <<'EOCP'
6048 #include <sys/types.h>
6049 #include <stdio.h>
6050 int main() {
6051   long double d = 123.456;
6052   printf("%.3lf\n", d);
6053 }
6054 EOCP
6055         set try
6056         if eval $compile; then
6057                 yyy=`$run ./try`
6058                 case "$yyy" in
6059                 123.456)
6060                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
6061                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
6062                         echo "We will use %lf."
6063                         ;;
6064                 esac
6065         fi
6066 fi
6067
6068 if $test X"$sPRIfldbl" = X; then
6069         echo "Cannot figure out how to print long doubles." >&4
6070 else
6071         sSCNfldbl=$sPRIfldbl    # expect consistency
6072 fi
6073
6074 $rm -f try try.*
6075
6076 fi # d_longdbl
6077
6078 case "$sPRIfldbl" in
6079 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
6080         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
6081         d_SCNfldbl="$undef";
6082         ;;
6083 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
6084         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
6085         d_SCNfldbl="$define";
6086         ;;
6087 esac
6088
6089 : see if modfl exists
6090 set modfl d_modfl
6091 eval $inlibc
6092
6093 d_modfl_pow32_bug="$undef"
6094
6095 case "$d_longdbl$d_modfl" in
6096 $define$define)
6097         $cat <<EOM
6098 Checking to see whether your modfl() is okay for large values...
6099 EOM
6100 $cat >try.c <<EOCP
6101 #include <math.h> 
6102 #include <stdio.h>
6103 int main() {
6104     long double nv = 4294967303.15;
6105     long double v, w;
6106     v = modfl(nv, &w);         
6107 #ifdef __GLIBC__
6108     printf("glibc");
6109 #endif
6110     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
6111     return 0;
6112 }
6113 EOCP
6114         case "$osname:$gccversion" in
6115         aix:)   saveccflags="$ccflags"
6116                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
6117         esac
6118         set try
6119         if eval $compile; then
6120                 foo=`$run ./try`
6121                 case "$foo" in
6122                 *" 4294967303.150000 1.150000 4294967302.000000")
6123                         echo >&4 "Your modfl() is broken for large values."
6124                         d_modfl_pow32_bug="$define"
6125                         case "$foo" in
6126                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
6127                         ;;
6128                         esac
6129                         ;;
6130                 *" 4294967303.150000 0.150000 4294967303.000000")
6131                         echo >&4 "Your modfl() seems okay for large values."
6132                         ;;
6133                 *)      echo >&4 "I don't understand your modfl() at all."
6134                         d_modfl="$undef"
6135                         ;;
6136                 esac
6137                 $rm -f try.* try core core.try.*
6138         else
6139                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
6140                 d_modfl="$undef"
6141         fi
6142         case "$osname:$gccversion" in
6143         aix:)   ccflags="$saveccflags" ;; # restore
6144         esac
6145         ;;
6146 esac
6147
6148 case "$ccflags" in
6149 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
6150 esac
6151
6152 case "$uselongdouble" in
6153 $define|true|[yY]*)     dflt='y';;
6154 *) dflt='n';;
6155 esac
6156 cat <<EOM
6157
6158 Perl can be built to take advantage of long doubles which
6159 (if available) may give more accuracy and range for floating point numbers.
6160
6161 If this doesn't make any sense to you, just accept the default '$dflt'.
6162 EOM
6163 rp='Try to use long doubles if available?'
6164 . ./myread
6165 case "$ans" in
6166 y|Y)    val="$define"   ;;
6167 *)      val="$undef"    ;;
6168 esac
6169 set uselongdouble
6170 eval $setvar
6171
6172 case "$uselongdouble" in
6173 true|[yY]*) uselongdouble="$define" ;;
6174 esac
6175
6176 case "$uselongdouble" in
6177 $define)
6178 : Look for a hint-file generated 'call-back-unit'.  If the
6179 : user has specified that long doubles should be used,
6180 : we may need to set or change some other defaults.
6181         if $test -f uselongdouble.cbu; then
6182                 echo "Your platform has some specific hints for long doubles, using them..."
6183                 . ./uselongdouble.cbu
6184         else
6185                 $cat <<EOM
6186 (Your platform doesn't have any specific hints for long doubles.)
6187 EOM
6188         fi
6189         ;;
6190 esac
6191
6192 message=X
6193 case "$uselongdouble:$d_sqrtl:$d_modfl" in
6194 $define:$define:$define)
6195         : You have both
6196         ;;
6197 $define:$define:$undef)
6198         message="I could not find modfl"
6199         ;;
6200 $define:$undef:$define)
6201         message="I could not find sqrtl"
6202         ;;
6203 $define:$undef:$undef)
6204         message="I found neither sqrtl nor modfl"
6205         ;;
6206 esac
6207
6208 if $test "$message" != X; then
6209         $cat <<EOM >&4
6210
6211 *** You requested the use of long doubles but you do not seem to have
6212 *** the mathematic functions for long doubles.
6213 *** ($message)
6214 *** I'm disabling the use of long doubles.
6215
6216 EOM
6217
6218         uselongdouble=$undef
6219 fi
6220
6221 case "$useperlio" in
6222 $define|true|[yY]*|'')  dflt='y';;
6223 *) dflt='n';;
6224 esac
6225 cat <<EOM
6226
6227 Previous version of $package used the standard IO mechanisms as
6228 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
6229 alternate IO mechanisms via the PerlIO abstraction layer, but the
6230 stdio mechanism is still available if needed.  The abstraction layer
6231 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
6232 Using PerlIO with sfio may cause problems with some extension modules.
6233
6234 If this doesn't make any sense to you, just accept the default '$dflt'.
6235 EOM
6236 rp='Use the PerlIO abstraction layer?'
6237 . ./myread
6238 case "$ans" in
6239 y|Y) 
6240         val="$define"
6241         ;;
6242 *)      
6243         echo "Ok, doing things the stdio way."
6244         val="$undef"
6245         ;;
6246 esac
6247 set useperlio
6248 eval $setvar 
6249
6250 case "$usesocks" in
6251 $define|true|[yY]*)
6252         case "$useperlio" in
6253         $define|true|[yY]*) ;;
6254         *)      cat >&4 <<EOM
6255
6256 You are using the SOCKS proxy protocol library which means that you
6257 should also use the PerlIO layer.  You may be headed for trouble.
6258
6259 EOM
6260                 ;;
6261         esac
6262         ;;
6263 esac
6264
6265         
6266 : determine the architecture name
6267 echo " "
6268 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
6269         tarch=`arch`"-$osname"
6270 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
6271         if uname -m > tmparch 2>&1 ; then
6272                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
6273                         -e 's/$/'"-$osname/" tmparch`
6274         else
6275                 tarch="$osname"
6276         fi
6277         $rm -f tmparch
6278 else
6279         tarch="$osname"
6280 fi
6281 case "$myarchname" in
6282 ''|"$tarch") ;;
6283 *)
6284         echo "(Your architecture name used to be $myarchname.)"
6285         archname=''
6286         ;;
6287 esac
6288 case "$targetarch" in
6289 '') ;;
6290 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
6291 esac
6292 myarchname="$tarch"
6293 case "$archname" in
6294 '') dflt="$tarch";;
6295 *) dflt="$archname";;
6296 esac
6297 rp='What is your architecture name'
6298 . ./myread
6299 archname="$ans"
6300 case "$usethreads" in
6301 $define)
6302         echo "Threads selected." >&4
6303         case "$archname" in
6304         *-thread*) echo "...and architecture name already has -thread." >&4
6305                 ;;
6306         *)      archname="$archname-thread"
6307                 echo "...setting architecture name to $archname." >&4
6308                 ;;
6309         esac
6310         ;;
6311 esac
6312 case "$usemultiplicity" in
6313 $define)
6314         echo "Multiplicity selected." >&4
6315         case "$archname" in
6316         *-multi*) echo "...and architecture name already has -multi." >&4
6317                 ;;
6318         *)      archname="$archname-multi"
6319                 echo "...setting architecture name to $archname." >&4
6320                 ;;
6321         esac
6322         ;;
6323 esac
6324 case "$use64bitint$use64bitall" in
6325 *"$define"*)
6326         case "$archname64" in
6327         '')
6328                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
6329                 ;;
6330         *)
6331                 case "$use64bitint" in
6332                 "$define") echo "64 bit integers selected." >&4 ;;
6333                 esac
6334                 case "$use64bitall" in
6335                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
6336                 esac
6337                 case "$archname" in
6338                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
6339                         ;;
6340                 *)      archname="$archname-$archname64"
6341                         echo "...setting architecture name to $archname." >&4
6342                         ;;
6343                 esac
6344                 ;;
6345         esac
6346 esac
6347 case "$uselongdouble" in
6348 $define)
6349         echo "Long doubles selected." >&4
6350         case "$longdblsize" in
6351         $doublesize)
6352                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
6353                 ;;
6354         *)
6355                 case "$archname" in
6356                 *-ld*) echo "...and architecture name already has -ld." >&4
6357                         ;;
6358                 *)      archname="$archname-ld"
6359                         echo "...setting architecture name to $archname." >&4
6360                         ;;
6361                 esac
6362                 ;;
6363         esac
6364         ;;
6365 esac
6366 case "$useperlio" in
6367 $define)
6368         echo "Perlio selected." >&4
6369         ;;
6370 *)
6371         echo "Perlio not selected, using stdio." >&4
6372         case "$archname" in
6373         *-stdio*) echo "...and architecture name already has -stdio." >&4
6374                 ;;
6375         *)      archname="$archname-stdio"
6376                 echo "...setting architecture name to $archname." >&4
6377                 ;;
6378         esac
6379         ;;
6380 esac
6381
6382 : determine root of directory hierarchy where package will be installed.
6383 case "$prefix" in
6384 '')
6385         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
6386         ;;
6387 *)
6388         dflt="$prefix"
6389         ;;
6390 esac
6391 $cat <<EOM
6392
6393 By default, $package will be installed in $dflt/bin, manual pages
6394 under $dflt/man, etc..., i.e. with $dflt as prefix for all
6395 installation directories. Typically this is something like /usr/local.
6396 If you wish to have binaries under /usr/bin but other parts of the
6397 installation under /usr/local, that's ok: you will be prompted
6398 separately for each of the installation directories, the prefix being
6399 only used to set the defaults.
6400
6401 EOM
6402 fn=d~
6403 rp='Installation prefix to use?'
6404 . ./getfile
6405 oldprefix=''
6406 case "$prefix" in
6407 '') ;;
6408 *)
6409         case "$ans" in
6410         "$prefix") ;;
6411         *) oldprefix="$prefix";;
6412         esac
6413         ;;
6414 esac
6415 prefix="$ans"
6416 prefixexp="$ansexp"
6417
6418 case "$afsroot" in
6419 '')     afsroot=/afs ;;
6420 *)      afsroot=$afsroot ;;
6421 esac
6422
6423 : is AFS running?
6424 echo " "
6425 case "$afs" in
6426 $define|true)   afs=true ;;
6427 $undef|false)   afs=false ;;
6428 *)      if test -d $afsroot; then
6429                 afs=true
6430         else
6431                 afs=false
6432         fi
6433         ;;
6434 esac
6435 if $afs; then
6436         echo "AFS may be running... I'll be extra cautious then..." >&4
6437 else
6438         echo "AFS does not seem to be running..." >&4
6439 fi
6440
6441 : determine installation prefix for where package is to be installed.
6442 if $afs; then 
6443 $cat <<EOM
6444
6445 Since you are running AFS, I need to distinguish the directory in which
6446 files will reside from the directory in which they are installed (and from
6447 which they are presumably copied to the former directory by occult means).
6448
6449 EOM
6450         case "$installprefix" in
6451         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
6452         *) dflt="$installprefix";;
6453         esac
6454 else
6455 $cat <<EOM
6456
6457 In some special cases, particularly when building $package for distribution,
6458 it is convenient to distinguish between the directory in which files should 
6459 be installed from the directory ($prefix) in which they 
6460 will eventually reside.  For most users, these two directories are the same.
6461
6462 EOM
6463         case "$installprefix" in
6464         '') dflt=$prefix ;;
6465         *) dflt=$installprefix;;
6466         esac
6467 fi
6468 fn=d~
6469 rp='What installation prefix should I use for installing files?'
6470 . ./getfile
6471 installprefix="$ans"
6472 installprefixexp="$ansexp"
6473
6474 : set the prefixit variable, to compute a suitable default value
6475 prefixit='case "$3" in
6476 ""|none)
6477         case "$oldprefix" in
6478         "") eval "$1=\"\$$2\"";;
6479         *)
6480                 case "$3" in
6481                 "") eval "$1=";;
6482                 none)
6483                         eval "tp=\"\$$2\"";
6484                         case "$tp" in
6485                         ""|" ") eval "$1=\"\$$2\"";;
6486                         *) eval "$1=";;
6487                         esac;;
6488                 esac;;
6489         esac;;
6490 *)
6491         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
6492         case "$tp" in
6493         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
6494         /*-$oldprefix/*|\~*-$oldprefix/*)
6495                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
6496         *) eval "$1=\"\$$2\"";;
6497         esac;;
6498 esac'
6499
6500 : get the patchlevel
6501 echo " "
6502 echo "Getting the current patchlevel..." >&4
6503 if $test -r $rsrc/patchlevel.h;then
6504         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
6505         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
6506         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
6507         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
6508         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
6509         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
6510        perl_patchlevel=`grep ',"DEVEL[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
6511 else
6512         revision=0
6513         patchlevel=0
6514         subversion=0
6515         api_revision=0
6516         api_version=0
6517         api_subversion=0
6518         perl_patchlevel=0
6519         $echo "(You do not have patchlevel.h.  Eek.)"
6520 fi
6521 if $test -r $rsrc/.patch ; then  
6522         if $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
6523                 perl_patchlevel=`cat $rsrc/.patch`
6524         fi
6525 fi
6526 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
6527 version_patchlevel_string="version $patchlevel subversion $subversion"
6528 case "$perl_patchlevel" in
6529 0|'') ;;
6530 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
6531 esac
6532
6533 $echo "(You have $package $version_patchlevel_string.)"
6534
6535 case "$osname" in
6536 dos|vms)
6537         : XXX Should be a Configure test for double-dots in filenames.
6538         version=`echo $revision $patchlevel $subversion | \
6539                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
6540         api_versionstring=`echo $api_revision $api_version $api_subversion | \
6541                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
6542         ;;
6543 *)
6544         version=`echo $revision $patchlevel $subversion | \
6545                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
6546         api_versionstring=`echo $api_revision $api_version $api_subversion | \
6547                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
6548         ;;
6549 esac
6550 : Special case the 5.005_xx maintenance series, which used 5.005
6551 : without any subversion label as a subdirectory in $sitelib
6552 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
6553         api_versionstring='5.005'
6554 fi
6555
6556 : determine installation style
6557 : For now, try to deduce it from prefix unless it is already set.
6558 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
6559 case "$installstyle" in
6560 '')     case "$prefix" in
6561                 *perl*) dflt='lib';;
6562                 *) dflt='lib/perl5' ;;
6563         esac
6564         ;;
6565 *)      dflt="$installstyle" ;;
6566 esac
6567 : Probably not worth prompting for this since we prompt for all
6568 : the directories individually, and the prompt would be too long and
6569 : confusing anyway.
6570 installstyle=$dflt
6571
6572 : determine where private library files go
6573 : Usual default is /usr/local/lib/perl5/$version.
6574 : Also allow things like /opt/perl/lib/$version, since 
6575 : /opt/perl/lib/perl5... would be redundant.
6576 : The default "style" setting is made in installstyle.U
6577 case "$installstyle" in
6578 *lib/perl5*) set dflt privlib lib/$package/$version ;;
6579 *)       set dflt privlib lib/$version ;;
6580 esac
6581 eval $prefixit
6582 $cat <<EOM
6583
6584 There are some auxiliary files for $package that need to be put into a
6585 private library directory that is accessible by everyone.
6586
6587 EOM
6588 fn=d~+
6589 rp='Pathname where the private library files will reside?'
6590 . ./getfile
6591 privlib="$ans"
6592 privlibexp="$ansexp"
6593 : Change installation prefix, if necessary.
6594 if $test X"$prefix" != X"$installprefix"; then
6595         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
6596 else
6597         installprivlib="$privlibexp"
6598 fi
6599
6600 : set the prefixup variable, to restore leading tilda escape
6601 prefixup='case "$prefixexp" in
6602 "$prefix") ;;
6603 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
6604 esac'
6605
6606 : determine where public architecture dependent libraries go
6607 set archlib archlib
6608 eval $prefixit
6609 : privlib default is /usr/local/lib/$package/$version
6610 : archlib default is /usr/local/lib/$package/$version/$archname
6611 : privlib may have an optional trailing /share.
6612 tdflt=`echo $privlib | $sed 's,/share$,,'`
6613 tdflt=$tdflt/$archname
6614 case "$archlib" in
6615 '')     dflt=$tdflt
6616         ;;
6617 *)      dflt="$archlib"
6618     ;;
6619 esac
6620 $cat <<EOM
6621
6622 $spackage contains architecture-dependent library files.  If you are
6623 sharing libraries in a heterogeneous environment, you might store
6624 these files in a separate location.  Otherwise, you can just include
6625 them with the rest of the public library files.
6626
6627 EOM
6628 fn=d+~
6629 rp='Where do you want to put the public architecture-dependent libraries?'
6630 . ./getfile
6631 archlib="$ans"
6632 archlibexp="$ansexp"
6633 if $test X"$archlib" = X"$privlib"; then
6634         d_archlib="$undef"
6635 else
6636         d_archlib="$define"
6637 fi
6638 : Change installation prefix, if necessary.
6639 if $test X"$prefix" != X"$installprefix"; then
6640         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
6641 else
6642         installarchlib="$archlibexp"
6643 fi
6644
6645
6646 : Binary compatibility with 5.005 is not possible for builds
6647 : with advanced features
6648 case "$usethreads$usemultiplicity" in
6649 *define*)
6650         bincompat5005="$undef"
6651         d_bincompat5005="$undef"
6652         ;;
6653 *)      $cat <<EOM
6654
6655 This version of Perl can be compiled for binary compatibility with 5.005.
6656 If you decide to do so, you will be able to continue using most of the
6657 extensions that were compiled for Perl 5.005.
6658
6659 EOM
6660         case "$bincompat5005$d_bincompat5005" in
6661         *"$undef"*) dflt=n ;;
6662         *) dflt=y ;;
6663         esac
6664         rp='Binary compatibility with Perl 5.005?'
6665         . ./myread
6666         case "$ans" in
6667         y*) val="$define" ;;
6668         *)  val="$undef" ;;
6669         esac
6670         set d_bincompat5005
6671         eval $setvar
6672         case "$d_bincompat5005" in
6673         "$define")
6674                 bincompat5005="$define"
6675                 ;;
6676         *)      bincompat5005="$undef"
6677                 d_bincompat5005="$undef"
6678                 ;;
6679         esac
6680         ;;
6681 esac
6682
6683
6684 : see if setuid scripts can be secure
6685 $cat <<EOM
6686
6687 Some kernels have a bug that prevents setuid #! scripts from being
6688 secure.  Some sites have disabled setuid #! scripts because of this.
6689
6690 First let's decide if your kernel supports secure setuid #! scripts.
6691 (If setuid #! scripts would be secure but have been disabled anyway,
6692 don't say that they are secure if asked.)
6693
6694 EOM
6695
6696 val="$undef"
6697 if $test -d /dev/fd; then
6698         echo "#!$ls" >reflect
6699         chmod +x,u+s reflect
6700         ./reflect >flect 2>&1
6701         if $contains "/dev/fd" flect >/dev/null; then
6702                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
6703                 val="$define"
6704         else
6705                 $cat <<EOM
6706 If you are not sure if they are secure, I can check but I'll need a
6707 username and password different from the one you are using right now.
6708 If you don't have such a username or don't want me to test, simply
6709 enter 'none'.
6710
6711 EOM
6712                 rp='Other username to test security of setuid scripts with?'
6713                 dflt='none'
6714                 . ./myread
6715                 case "$ans" in
6716                 n|none)
6717                         case "$d_suidsafe" in
6718                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
6719                                 dflt=n;;
6720                         "$undef")
6721                                 echo "Well, the $hint value is *not* secure." >&4
6722                                 dflt=n;;
6723                         *)      echo "Well, the $hint value *is* secure." >&4
6724                                 dflt=y;;
6725                         esac
6726                         ;;
6727                 *)
6728                         $rm -f reflect flect
6729                         echo "#!$ls" >reflect
6730                         chmod +x,u+s reflect
6731                         echo >flect
6732                         chmod a+w flect
6733                         echo '"su" will (probably) prompt you for '"$ans's password."
6734                         su $ans -c './reflect >flect'
6735                         if $contains "/dev/fd" flect >/dev/null; then
6736                                 echo "Okay, it looks like setuid scripts are secure." >&4
6737                                 dflt=y
6738                         else
6739                                 echo "I don't think setuid scripts are secure." >&4
6740                                 dflt=n
6741                         fi
6742                         ;;
6743                 esac
6744                 rp='Does your kernel have *secure* setuid scripts?'
6745                 . ./myread
6746                 case "$ans" in
6747                 [yY]*)  val="$define";;
6748                 *)      val="$undef";;
6749                 esac
6750         fi
6751 else
6752         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6753         echo "(That's for file descriptors, not floppy disks.)"
6754         val="$undef"
6755 fi
6756 set d_suidsafe
6757 eval $setvar
6758
6759 $rm -f reflect flect
6760
6761 : now see if they want to do setuid emulation
6762 echo " "
6763 val="$undef"
6764 case "$d_suidsafe" in
6765 "$define")
6766         val="$undef"
6767         echo "No need to emulate SUID scripts since they are secure here." >&4
6768         ;;
6769 *)
6770         $cat <<EOM
6771 Some systems have disabled setuid scripts, especially systems where
6772 setuid scripts cannot be secure.  On systems where setuid scripts have
6773 been disabled, the setuid/setgid bits on scripts are currently
6774 useless.  It is possible for $package to detect those bits and emulate
6775 setuid/setgid in a secure fashion.  This emulation will only work if
6776 setuid scripts have been disabled in your kernel.
6777
6778 EOM
6779         case "$d_dosuid" in
6780         "$define") dflt=y ;;
6781         *) dflt=n ;;
6782         esac
6783         rp="Do you want to do setuid/setgid emulation?"
6784         . ./myread
6785         case "$ans" in
6786         [yY]*)  val="$define";;
6787         *)      val="$undef";;
6788         esac
6789         ;;
6790 esac
6791 set d_dosuid
6792 eval $setvar
6793
6794 : see if this is a malloc.h system
6795 set malloc.h i_malloc
6796 eval $inhdr
6797
6798 : see if stdlib is available
6799 set stdlib.h i_stdlib
6800 eval $inhdr
6801
6802 : determine which malloc to compile in
6803 echo " "
6804 case "$usemymalloc" in
6805 [yY]*|true|$define)     dflt='y' ;;
6806 [nN]*|false|$undef)     dflt='n' ;;
6807 *)      case "$ptrsize" in
6808         4) dflt='y' ;;
6809         *) dflt='n' ;;
6810         esac
6811         ;;
6812 esac
6813 rp="Do you wish to attempt to use the malloc that comes with $package?"
6814 . ./myread
6815 usemymalloc="$ans"
6816 case "$ans" in
6817 y*|true)
6818         usemymalloc='y'
6819         mallocsrc='malloc.c'
6820         mallocobj="malloc$_o"
6821         d_mymalloc="$define"
6822         case "$libs" in
6823         *-lmalloc*)
6824                 : Remove malloc from list of libraries to use
6825                 echo "Removing unneeded -lmalloc from library list" >&4
6826                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6827                 shift
6828                 libs="$*"
6829                 echo "libs = $libs" >&4
6830                 ;;
6831         esac
6832         ;;
6833 *)
6834         usemymalloc='n'
6835         mallocsrc=''
6836         mallocobj=''
6837         d_mymalloc="$undef"
6838         ;;
6839 esac
6840
6841 : compute the return types of malloc and free
6842 echo " "
6843 $cat >malloc.c <<END
6844 #$i_malloc I_MALLOC
6845 #$i_stdlib I_STDLIB
6846 #include <stdio.h>
6847 #include <sys/types.h>
6848 #ifdef I_MALLOC
6849 #include <malloc.h>
6850 #endif
6851 #ifdef I_STDLIB
6852 #include <stdlib.h>
6853 #endif
6854 #ifdef TRY_MALLOC
6855 void *malloc();
6856 #endif
6857 #ifdef TRY_FREE
6858 void free();
6859 #endif
6860 END
6861 case "$malloctype" in
6862 '')
6863         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6864                 malloctype='void *'
6865         else
6866                 malloctype='char *'
6867         fi
6868         ;;
6869 esac
6870 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6871
6872 case "$freetype" in
6873 '')
6874         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6875                 freetype='void'
6876         else
6877                 freetype='int'
6878         fi
6879         ;;
6880 esac
6881 echo "Your system uses $freetype free(), it would seem." >&4
6882 $rm -f malloc.[co]
6883 $cat <<EOM
6884
6885 After $package is installed, you may wish to install various
6886 add-on modules and utilities.  Typically, these add-ons will
6887 be installed under $prefix with the rest
6888 of this package.  However, you may wish to install such add-ons
6889 elsewhere under a different prefix.
6890
6891 If you do not wish to put everything under a single prefix, that's
6892 ok.  You will be prompted for the individual locations; this siteprefix
6893 is only used to suggest the defaults.
6894
6895 The default should be fine for most people.
6896
6897 EOM
6898 fn=d~+
6899 rp='Installation prefix to use for add-on modules and utilities?'
6900 : XXX Here might be another good place for an installstyle setting.
6901 case "$siteprefix" in
6902 '') dflt=$prefix ;;
6903 *)  dflt=$siteprefix ;;
6904 esac
6905 . ./getfile
6906 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6907 oldsiteprefix=''
6908 case "$siteprefix" in
6909 '') ;;
6910 *)      case "$ans" in
6911         "$prefix") ;;
6912         *) oldsiteprefix="$prefix";;
6913         esac
6914         ;;
6915 esac
6916 siteprefix="$ans"
6917 siteprefixexp="$ansexp"
6918
6919 : determine where site specific libraries go.
6920 : Usual default is /usr/local/lib/perl5/site_perl/$version
6921 : The default "style" setting is made in installstyle.U
6922 : XXX No longer works with Prefixit stuff.
6923 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6924 case "$sitelib" in
6925 '') case "$installstyle" in
6926         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6927         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6928         esac
6929         ;;
6930 *)      dflt="$sitelib"
6931         ;;
6932 esac
6933 $cat <<EOM
6934
6935 The installation process will create a directory for
6936 site-specific extensions and modules.  Most users find it convenient
6937 to place all site-specific files in this directory rather than in the
6938 main distribution directory.
6939
6940 EOM
6941 fn=d~+
6942 rp='Pathname for the site-specific library files?'
6943 . ./getfile
6944 sitelib="$ans"
6945 sitelibexp="$ansexp"
6946 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6947 : Change installation prefix, if necessary.
6948 if $test X"$prefix" != X"$installprefix"; then
6949         installsitelib=`echo $sitelibexp | $sed "s#^$prefix#$installprefix#"`
6950 else
6951         installsitelib="$sitelibexp"
6952 fi
6953
6954 : determine where site specific architecture-dependent libraries go.
6955 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6956 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6957 : sitelib may have an optional trailing /share.
6958 case "$sitearch" in
6959 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6960         dflt="$dflt/$archname"
6961         ;;
6962 *)      dflt="$sitearch"
6963         ;;
6964 esac
6965 set sitearch sitearch none
6966 eval $prefixit
6967 $cat <<EOM
6968
6969 The installation process will also create a directory for
6970 architecture-dependent site-specific extensions and modules.
6971
6972 EOM
6973 fn=d~+
6974 rp='Pathname for the site-specific architecture-dependent library files?'
6975 . ./getfile
6976 sitearch="$ans"
6977 sitearchexp="$ansexp"
6978 : Change installation prefix, if necessary.
6979 if $test X"$prefix" != X"$installprefix"; then
6980         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
6981 else
6982         installsitearch="$sitearchexp"
6983 fi
6984
6985 $cat <<EOM
6986
6987 The installation process will also create a directory for
6988 vendor-supplied add-ons.  Vendors who supply perl with their system
6989 may find it convenient to place all vendor-supplied files in this
6990 directory rather than in the main distribution directory.  This will
6991 ease upgrades between binary-compatible maintenance versions of perl.
6992
6993 Of course you may also use these directories in whatever way you see
6994 fit.  For example, you might use them to access modules shared over a
6995 company-wide network.
6996
6997 The default answer should be fine for most people.
6998 This causes further questions about vendor add-ons to be skipped
6999 and no vendor-specific directories will be configured for perl.
7000
7001 EOM
7002 rp='Do you want to configure vendor-specific add-on directories?'
7003 case "$usevendorprefix" in
7004 define|true|[yY]*) dflt=y ;;
7005 *)      : User may have set vendorprefix directly on Configure command line.
7006         case "$vendorprefix" in
7007         ''|' ') dflt=n ;;
7008         *)      dflt=y ;;
7009         esac
7010         ;;
7011 esac
7012 . ./myread
7013 case "$ans" in
7014 [yY]*)  fn=d~+
7015         rp='Installation prefix to use for vendor-supplied add-ons?'
7016         case "$vendorprefix" in
7017         '') dflt='' ;;
7018         *)  dflt=$vendorprefix ;;
7019         esac
7020         . ./getfile
7021         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
7022         oldvendorprefix=''
7023         case "$vendorprefix" in
7024         '') ;;
7025         *)      case "$ans" in
7026                 "$prefix") ;;
7027                 *) oldvendorprefix="$prefix";;
7028                 esac
7029                 ;;
7030         esac
7031         usevendorprefix="$define"
7032         vendorprefix="$ans"
7033         vendorprefixexp="$ansexp"
7034         ;;
7035 *)      usevendorprefix="$undef"
7036         vendorprefix=''
7037         vendorprefixexp=''
7038         ;;
7039 esac
7040
7041 case "$vendorprefix" in
7042 '')     d_vendorlib="$undef"
7043         vendorlib=''
7044         vendorlibexp=''
7045         ;;
7046 *)      d_vendorlib="$define"
7047         : determine where vendor-supplied modules go.
7048         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
7049         case "$vendorlib" in
7050         '')
7051                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
7052                 case "$installstyle" in
7053                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
7054                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
7055                 esac
7056                 ;;
7057         *)      dflt="$vendorlib"
7058                 ;;
7059         esac
7060         fn=d~+
7061         rp='Pathname for the vendor-supplied library files?'
7062         . ./getfile
7063         vendorlib="$ans"
7064         vendorlibexp="$ansexp"
7065         ;;
7066 esac
7067 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
7068 : Change installation prefix, if necessary.
7069 if $test X"$prefix" != X"$installprefix"; then
7070         installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
7071 else
7072         installvendorlib="$vendorlibexp"
7073 fi
7074
7075 case "$vendorprefix" in
7076 '')     d_vendorarch="$undef"
7077         vendorarch=''
7078         vendorarchexp=''
7079         ;;
7080 *)      d_vendorarch="$define"
7081         : determine where vendor-supplied architecture-dependent libraries go.
7082         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
7083         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
7084         : vendorlib may have an optional trailing /share.
7085         case "$vendorarch" in
7086         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
7087                 dflt="$dflt/$archname"
7088                 ;;
7089         *)      dflt="$vendorarch" ;;
7090         esac
7091         fn=d~+
7092         rp='Pathname for vendor-supplied architecture-dependent files?'
7093         . ./getfile
7094         vendorarch="$ans"
7095         vendorarchexp="$ansexp"
7096         ;;
7097 esac
7098 : Change installation prefix, if necessary.
7099 if $test X"$prefix" != X"$installprefix"; then
7100         installvendorarch=`echo $vendorarchexp | sed "s#^$prefix#$installprefix#"`
7101 else
7102         installvendorarch="$vendorarchexp"
7103 fi
7104
7105 : Final catch-all directories to search
7106 $cat <<EOM
7107
7108 Lastly, you can have perl look in other directories for extensions and
7109 modules in addition to those already specified.
7110 These directories will be searched after 
7111         $sitearch 
7112         $sitelib 
7113 EOM
7114 test X"$vendorlib" != "X" && echo '     ' $vendorlib
7115 test X"$vendorarch" != "X" && echo '    ' $vendorarch
7116 echo ' '
7117 case "$otherlibdirs" in
7118 ''|' ') dflt='none' ;;
7119 *)      dflt="$otherlibdirs" ;;
7120 esac
7121 $cat <<EOM
7122 Enter a colon-separated set of extra paths to include in perl's @INC
7123 search path, or enter 'none' for no extra paths.
7124
7125 EOM
7126
7127 rp='Colon-separated list of additional directories for perl to search?'
7128 . ./myread
7129 case "$ans" in
7130 ' '|''|none)    otherlibdirs=' ' ;;     
7131 *)      otherlibdirs="$ans" ;;
7132 esac
7133 case "$otherlibdirs" in
7134 ' ') val=$undef ;;
7135 *)      val=$define ;;
7136 esac
7137 set d_perl_otherlibdirs
7138 eval $setvar
7139
7140 : Cruising for prototypes
7141 echo " "
7142 echo "Checking out function prototypes..." >&4
7143 $cat >prototype.c <<'EOCP'
7144 int main(int argc, char *argv[]) {
7145         exit(0);}
7146 EOCP
7147 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
7148         echo "Your C compiler appears to support function prototypes."
7149         val="$define"
7150 else
7151         echo "Your C compiler doesn't seem to understand function prototypes."
7152         val="$undef"
7153 fi
7154 set prototype
7155 eval $setvar
7156 $rm -f prototype*
7157
7158 case "$prototype" in
7159 "$define") ;;
7160 *)      ansi2knr='ansi2knr'
7161         echo " "
7162         cat <<EOM >&4
7163
7164 $me:  FATAL ERROR:
7165 This version of $package can only be compiled by a compiler that 
7166 understands function prototypes.  Unfortunately, your C compiler 
7167         $cc $ccflags
7168 doesn't seem to understand them.  Sorry about that.
7169
7170 If GNU cc is available for your system, perhaps you could try that instead.  
7171
7172 Eventually, we hope to support building Perl with pre-ANSI compilers.
7173 If you would like to help in that effort, please contact <perlbug@perl.org>.
7174
7175 Aborting Configure now.
7176 EOM
7177         exit 2
7178         ;;
7179 esac
7180
7181 : determine where public executables go
7182 echo " "
7183 set dflt bin bin
7184 eval $prefixit
7185 fn=d~
7186 rp='Pathname where the public executables will reside?'
7187 . ./getfile
7188 if $test "X$ansexp" != "X$binexp"; then
7189         installbin=''
7190 fi
7191 bin="$ans"
7192 binexp="$ansexp"
7193 : Change installation prefix, if necessary.
7194 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
7195 if $test X"$prefix" != X"$installprefix"; then
7196         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
7197 else
7198         installbin="$binexp"
7199 fi
7200
7201 echo " "
7202 case "$extras" in
7203 '') dflt='n';;
7204 *) dflt='y';;
7205 esac
7206 cat <<EOM
7207 Perl can be built with extra modules or bundles of modules which
7208 will be fetched from the CPAN and installed alongside Perl.
7209
7210 Notice that you will need access to the CPAN; either via the Internet,
7211 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
7212 be asked later to configure the CPAN.pm module which will in turn do
7213 the installation of the rest of the extra modules or bundles.)
7214
7215 Notice also that if the modules require any external software such as
7216 libraries and headers (the libz library and the zlib.h header for the
7217 Compress::Zlib module, for example) you MUST have any such software
7218 already installed, this configuration process will NOT install such
7219 things for you.
7220
7221 If this doesn't make any sense to you, just accept the default '$dflt'.
7222 EOM
7223 rp='Install any extra modules (y or n)?'
7224 . ./myread
7225 case "$ans" in
7226 y|Y)
7227         cat <<EOM
7228
7229 Please list any extra modules or bundles to be installed from CPAN,
7230 with spaces between the names.  The names can be in any format the
7231 'install' command of CPAN.pm will understand.  (Answer 'none',
7232 without the quotes, to install no extra modules or bundles.)
7233 EOM
7234         rp='Extras?'
7235         dflt="$extras"
7236         . ./myread
7237         extras="$ans"
7238 esac
7239 case "$extras" in
7240 ''|'none')
7241         val=''
7242         $rm -f ../extras.lst
7243         ;;
7244 *)      echo "(Saving the list of extras for later...)"
7245         echo "$extras" > ../extras.lst
7246         val="'$extras'"
7247         ;;
7248 esac
7249 set extras
7250 eval $setvar
7251 echo " "
7252
7253 : Find perl5.005 or later.
7254 echo "Looking for a previously installed perl5.005 or later... "
7255 case "$perl5" in
7256 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
7257                 : Check if this perl is recent and can load a simple module
7258                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
7259                         perl5=$tdir/perl
7260                         break;
7261                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
7262                         perl5=$tdir/perl5
7263                         break;
7264                 fi
7265         done
7266         ;;
7267 *)      perl5="$perl5"
7268         ;;
7269 esac
7270 case "$perl5" in
7271 '')     echo "None found.  That's ok.";;
7272 *)      echo "Using $perl5." ;;
7273 esac
7274
7275 : Determine list of previous versions to include in @INC
7276 $cat > getverlist <<EOPL
7277 #!$perl5 -w
7278 use File::Basename;
7279 \$api_versionstring = "$api_versionstring";
7280 \$version = "$version";
7281 \$stem = "$sitelib_stem";
7282 \$archname = "$archname";
7283 EOPL
7284         $cat >> getverlist <<'EOPL'
7285 # Can't have leading @ because metaconfig interprets it as a command!
7286 ;@inc_version_list=();
7287 # XXX Redo to do opendir/readdir? 
7288 if (-d $stem) {
7289     chdir($stem);
7290     ;@candidates = glob("5.*");
7291 }
7292 else {
7293     ;@candidates = ();
7294 }
7295
7296 # XXX ToDo:  These comparisons must be reworked when two-digit
7297 # subversions come along, so that 5.7.10 compares as greater than
7298 # 5.7.3!  By that time, hope that 5.6.x is sufficiently
7299 # widespread that we can use the built-in version vectors rather
7300 # than reinventing them here.  For 5.6.0, however, we must
7301 # assume this script will likely be run by 5.005_0x.  --AD 1/2000.
7302 foreach $d (@candidates) {
7303     if ($d lt $version) {
7304         if ($d ge $api_versionstring) {
7305             unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
7306         }
7307         elsif ($d ge "5.005") {
7308             unshift(@inc_version_list, grep { -d } $d);
7309         }
7310     }
7311     else {
7312         # Skip newer version.  I.e. don't look in
7313         # 5.7.0 if we're installing 5.6.1.
7314     }
7315 }
7316
7317 if (@inc_version_list) {
7318     print join(' ', @inc_version_list);
7319 }
7320 else {
7321     # Blank space to preserve value for next Configure run.
7322     print " ";
7323 }
7324 EOPL
7325 chmod +x getverlist
7326 case "$inc_version_list" in
7327 '')     if test -x "$perl5$exe_ext"; then
7328                 dflt=`$perl5 getverlist`
7329         else
7330                 dflt='none'
7331         fi
7332         ;;
7333 $undef) dflt='none' ;;
7334 *)  eval dflt=\"$inc_version_list\" ;;
7335 esac
7336 case "$dflt" in
7337 ''|' ') dflt=none ;;
7338 esac
7339 case "$dflt" in
7340 5.005) case "$bincompat5005" in
7341        $define|true|[yY]*) ;;
7342        *) dflt=none ;;
7343        esac
7344        ;;
7345 esac
7346 $cat <<'EOM'
7347
7348 In order to ease the process of upgrading, this version of perl 
7349 can be configured to use modules built and installed with earlier 
7350 versions of perl that were installed under $prefix.  Specify here
7351 the list of earlier versions that this version of perl should check.
7352 If Configure detected no earlier versions of perl installed under
7353 $prefix, then the list will be empty.  Answer 'none' to tell perl
7354 to not search earlier versions.
7355
7356 The default should almost always be sensible, so if you're not sure,
7357 just accept the default.
7358 EOM
7359
7360 rp='List of earlier versions to include in @INC?'
7361 . ./myread
7362 case "$ans" in
7363 [Nn]one|''|' ') inc_version_list=' ' ;;
7364 *) inc_version_list="$ans" ;;
7365 esac
7366 case "$inc_version_list" in
7367 ''|' ') 
7368         inc_version_list_init='0';;
7369 *)      inc_version_list_init=`echo $inc_version_list |
7370                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
7371         ;;
7372 esac
7373 $rm -f getverlist
7374
7375 : determine whether to install perl also as /usr/bin/perl
7376
7377 echo " "
7378 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
7379         $cat <<EOM
7380 Many scripts expect perl to be installed as /usr/bin/perl.
7381 I can install the perl you are about to compile also as /usr/bin/perl
7382 (in addition to $installbin/perl).
7383 EOM
7384         case "$installusrbinperl" in
7385         "$undef"|[nN]*) dflt='n';;
7386         *)              dflt='y';;
7387         esac
7388         rp="Do you want to install perl as /usr/bin/perl?"
7389         . ./myread
7390         case "$ans" in
7391         [yY]*)  val="$define";;
7392         *)      val="$undef" ;;
7393         esac
7394 else
7395         val="$undef"
7396 fi
7397 set installusrbinperl
7398 eval $setvar
7399
7400 : see if dld is available
7401 set dld.h i_dld
7402 eval $inhdr
7403
7404 : see if dlopen exists
7405 xxx_runnm="$runnm"
7406 runnm=false
7407 set dlopen d_dlopen
7408 eval $inlibc
7409 runnm="$xxx_runnm"
7410
7411 : determine which dynamic loading, if any, to compile in
7412 echo " "
7413 dldir="ext/DynaLoader"
7414 case "$usedl" in
7415 $define|y|true)
7416         dflt='y'
7417         usedl="$define"
7418         ;;
7419 $undef|n|false)
7420         dflt='n'
7421         usedl="$undef"
7422         ;;
7423 *) 
7424         dflt='n'
7425         case "$d_dlopen" in
7426             $define) dflt='y' ;;
7427         esac
7428         case "$i_dld" in
7429             $define) dflt='y' ;;
7430         esac
7431         : Does a dl_xxx.xs file exist for this operating system
7432         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7433         ;;
7434 esac
7435 rp="Do you wish to use dynamic loading?"
7436 . ./myread
7437 usedl="$ans"
7438 case "$ans" in
7439 y*) usedl="$define"
7440         case "$dlsrc" in
7441         '')
7442                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7443                         dflt="$dldir/dl_${osname}.xs"
7444                 elif $test "$d_dlopen" = "$define" ; then
7445                         dflt="$dldir/dl_dlopen.xs"
7446                 elif $test "$i_dld" = "$define" ; then
7447                         dflt="$dldir/dl_dld.xs"
7448                 else
7449                         dflt=''
7450                 fi
7451                 ;;
7452         *)      dflt="$dldir/$dlsrc"
7453                 ;;
7454         esac
7455     echo "The following dynamic loading files are available:"
7456         : Can not go over to $dldir because getfile has path hard-coded in.
7457         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7458         rp="Source file to use for dynamic loading"
7459         fn="fne"
7460         gfpth="$src"
7461         . ./getfile
7462         usedl="$define"
7463         : emulate basename
7464         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7465
7466         $cat << EOM
7467
7468 Some systems may require passing special flags to $cc -c to
7469 compile modules that will be used to create a shared library.
7470 To use no flags, say "none".
7471
7472 EOM
7473     case "$cccdlflags" in
7474     '') case "$gccversion" in
7475                 '') case "$osname" in
7476                         hpux)   dflt='+z' ;;
7477                         next)   dflt='none' ;;
7478                         irix*)  dflt='-KPIC' ;;
7479                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7480                         sunos)  dflt='-pic' ;;
7481                         *)      dflt='none' ;;
7482                     esac
7483                         ;;
7484                 *)  case "$osname" in
7485                         darwin) dflt='none' ;;
7486                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7487                         *)      dflt='-fpic' ;;
7488                     esac ;;
7489             esac ;;
7490         ' ') dflt='none' ;;
7491     *)  dflt="$cccdlflags" ;;
7492     esac
7493     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7494     . ./myread
7495     case "$ans" in
7496     none) cccdlflags=' ' ;;
7497     *) cccdlflags="$ans" ;;
7498     esac
7499
7500     cat << EOM
7501
7502 Some systems use ld to create libraries that can be dynamically loaded,
7503 while other systems (such as those using ELF) use $cc.
7504
7505 EOM
7506         case "$ld" in
7507         '')     $cat >try.c <<'EOM'
7508 /* Test for whether ELF binaries are produced */
7509 #include <fcntl.h>
7510 #include <stdlib.h>
7511 int main() {
7512         char b[4];
7513         int i = open("a.out",O_RDONLY);
7514         if(i == -1) 
7515                 exit(1); /* fail */
7516         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7517                 exit(0); /* succeed (yes, it's ELF) */
7518         else
7519                 exit(1); /* fail */
7520 }
7521 EOM
7522                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7523                         cat <<EOM
7524 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7525 EOM
7526                         dflt="$cc"
7527                 else
7528                         echo "I'll use ld to build dynamic libraries."
7529                         dflt='ld'
7530                 fi
7531                 rm -f try.c a.out
7532                 ;;
7533         *)      dflt="$ld"
7534                 ;;
7535         esac
7536
7537     rp="What command should be used to create dynamic libraries?"
7538     . ./myread
7539         ld="$ans"
7540
7541     cat << EOM
7542
7543 Some systems may require passing special flags to $ld to create a
7544 library that can be dynamically loaded.  If your ld flags include
7545 -L/other/path options to locate libraries outside your loader's normal
7546 search path, you may need to specify those -L options here as well.  To
7547 use no flags, say "none".
7548
7549 EOM
7550     case "$lddlflags" in
7551     '') case "$osname" in
7552                         beos) dflt='-nostart' ;;
7553                         hpux) dflt='-b';
7554                               case "$gccversion" in
7555                               '') dflt="$dflt +vnocompatwarnings" ;;
7556                               esac
7557                               ;;        
7558                         linux|irix*)    dflt='-shared' ;;
7559                         next)  dflt='none' ;;
7560                         solaris) dflt='-G' ;;
7561                         sunos) dflt='-assert nodefinitions' ;;
7562                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7563                 *)     dflt='none' ;;
7564                         esac
7565                         ;;
7566     *) dflt="$lddlflags" ;;
7567     esac
7568
7569         : Try to guess additional flags to pick up local libraries.
7570         : Be careful not to append to a plain 'none'
7571         case "$dflt" in
7572         none) dflt='' ;;
7573         esac
7574         for thisflag in $ldflags; do
7575                 case "$thisflag" in
7576                 -L*|-R*|-Wl,-R*)
7577                         case " $dflt " in
7578                         *" $thisflag "*) ;;
7579                         *) dflt="$dflt $thisflag" ;;
7580                         esac
7581                         ;;
7582                 esac
7583         done
7584
7585         case "$dflt" in
7586         ''|' ') dflt='none' ;;
7587         esac
7588
7589     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7590     . ./myread
7591     case "$ans" in
7592     none) lddlflags=' ' ;;
7593     *) lddlflags="$ans" ;;
7594     esac
7595
7596         cat <<EOM
7597
7598 Some systems may require passing special flags to $cc to indicate that
7599 the resulting executable will use dynamic linking.  To use no flags,
7600 say "none".
7601
7602 EOM
7603     case "$ccdlflags" in
7604     '') case "$osname" in
7605                 hpux)   dflt='-Wl,-E' ;;
7606                 linux)  dflt='-rdynamic' ;;
7607                 next)   dflt='none' ;;
7608                 sunos)  dflt='none' ;;
7609                 *)      dflt='none' ;;
7610             esac ;;
7611     ' ')  dflt='none' ;;
7612     *)  dflt="$ccdlflags" ;;
7613     esac
7614     rp="Any special flags to pass to $cc to use dynamic linking?"
7615     . ./myread
7616     case "$ans" in
7617     none) ccdlflags=' ' ;;
7618     *) ccdlflags="$ans" ;;
7619     esac
7620     ;;
7621 *)  usedl="$undef"
7622         ld='ld'
7623     dlsrc='dl_none.xs'
7624     lddlflags=''
7625     ccdlflags=''
7626     ;;
7627 esac
7628
7629 also=''
7630 case "$usedl" in
7631 $undef)
7632         # No dynamic loading being used, so don't bother even to prompt.
7633         useshrplib='false'
7634         ;;
7635 *)      case "$useshrplib" in
7636         '')     case "$osname" in
7637                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7638                         dflt=y
7639                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7640                         ;;
7641                 next*)
7642                         case "$osvers" in
7643                         4*)     dflt=y
7644                                 also='Building a shared libperl is needed for MAB support.'
7645                                 ;;
7646                         *)      dflt=n
7647                                 ;;
7648                         esac
7649                         ;;
7650                 *)      dflt=n
7651                         ;;
7652                 esac
7653                 ;;
7654         $define|true|[Yy]*)
7655                 dflt=y
7656                 ;;
7657         *)      dflt=n
7658                 ;;
7659         esac
7660         $cat << EOM
7661
7662 The perl executable is normally obtained by linking perlmain.c with
7663 libperl${_a}, any static extensions (usually just DynaLoader), and
7664 any other libraries needed on this system (such as -lm, etc.).  Since
7665 your system supports dynamic loading, it is probably possible to build
7666 a shared libperl.$so.  If you will have more than one executable linked
7667 to libperl.$so, this will significantly reduce the size of each
7668 executable, but it may have a noticeable affect on performance.  The
7669 default is probably sensible for your system.
7670 $also
7671
7672 EOM
7673         rp="Build a shared libperl.$so (y/n)"
7674         . ./myread
7675         case "$ans" in
7676         true|$define|[Yy]*)
7677                 useshrplib='true'  ;;
7678         *)      useshrplib='false' ;;
7679         esac
7680         ;;
7681 esac
7682
7683 case "$useshrplib" in
7684 true)
7685         case "$libperl" in
7686         '')
7687                 # Figure out a good name for libperl.so.  Since it gets stored in
7688                 # a version-specific architecture-dependent library, the version
7689                 # number isn't really that important, except for making cc/ld happy.
7690                 #
7691                 # A name such as libperl.so.3.1
7692                 majmin="libperl.$so.$patchlevel.$subversion"
7693                 # A name such as libperl.so.301
7694                 majonly=`echo $patchlevel $subversion |
7695                         $awk '{printf "%d%02d", $1, $2}'`
7696                 majonly=libperl.$so.$majonly
7697                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7698                 # rely on figuring it out from the naming of libc.
7699                 case "${osname}${osvers}" in
7700                 next4*)
7701                         dflt=libperl.5.$so
7702                         # XXX How handle the --version stuff for MAB?
7703                         ;;
7704                 linux*)  # ld won't link with a bare -lperl otherwise.
7705                         dflt=libperl.$so
7706                         ;;
7707                 cygwin*) # ld links against an importlib
7708                         dflt=libperl$lib_ext
7709                         ;;
7710                 *)      # Try to guess based on whether libc has major.minor.
7711                         case "$libc" in
7712                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7713                         *libc.$so.[0-9]*) dflt=$majonly ;;
7714                         *)      dflt=libperl.$so ;;
7715                         esac
7716                         ;;
7717                 esac
7718                 ;;
7719         *)      dflt=$libperl
7720                 ;;
7721         esac
7722         cat << EOM
7723
7724 I need to select a good name for the shared libperl.  If your system uses
7725 library names with major and minor numbers, then you might want something
7726 like $majmin.  Alternatively, if your system uses a single version
7727 number for shared libraries, then you might want to use $majonly.
7728 Or, your system might be quite happy with a simple libperl.$so.
7729
7730 Since the shared libperl will get installed into a version-specific
7731 architecture-dependent directory, the version number of the shared perl
7732 library probably isn't important, so the default should be o.k.
7733
7734 EOM
7735         rp='What name do you want to give to the shared libperl?'
7736         . ./myread
7737         libperl=$ans
7738         echo "Ok, I'll use $libperl"
7739         ;;
7740 *)
7741         libperl="libperl${_a}"
7742         ;;
7743 esac
7744
7745 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
7746 case "$shrpdir" in
7747 '') ;;
7748 *)      $cat >&4 <<EOM
7749 WARNING:  Use of the shrpdir variable for the installation location of
7750 the shared $libperl is not supported.  It was never documented and
7751 will not work in this version.  Let me (perlbug@perl.org)
7752 know of any problems this may cause.
7753
7754 EOM
7755         case "$shrpdir" in
7756         "$archlibexp/CORE")
7757                 $cat >&4 <<EOM
7758 But your current setting of $shrpdir is
7759 the default anyway, so it's harmless.
7760 EOM
7761                 ;;
7762         *)
7763                 $cat >&4 <<EOM
7764 Further, your current attempted setting of $shrpdir
7765 conflicts with the value of $archlibexp/CORE
7766 that installperl will use.
7767 EOM
7768                 ;;
7769         esac
7770         ;;
7771 esac
7772
7773 # How will the perl executable find the installed shared $libperl?
7774 # Add $xxx to ccdlflags.
7775 # If we can't figure out a command-line option, use $shrpenv to
7776 # set env LD_RUN_PATH.  The main perl makefile uses this.
7777 shrpdir=$archlibexp/CORE
7778 xxx=''
7779 tmp_shrpenv=''
7780 if "$useshrplib"; then
7781     case "$osname" in 
7782         aix)
7783                 # We'll set it in Makefile.SH...
7784                 ;;
7785         solaris)
7786                 xxx="-R $shrpdir"
7787                 ;;
7788         freebsd|netbsd)
7789                 xxx="-Wl,-R$shrpdir"
7790                 ;;
7791         bsdos|linux|irix*|dec_osf)
7792                 xxx="-Wl,-rpath,$shrpdir"
7793                 ;;
7794         next)
7795                 # next doesn't like the default...
7796                 ;;
7797         beos)
7798                 # beos doesn't like the default, either.
7799                 ;;
7800         hpux*)
7801                 # hpux doesn't like the default, either.
7802                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7803                 ;;
7804         *)
7805                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7806                 ;;
7807         esac
7808         case "$xxx" in
7809         '') ;;
7810         *)      
7811                 # Only add $xxx if it isn't already in ccdlflags.
7812                 case " $ccdlflags " in
7813                 *" $xxx "*)     ;;
7814                 *)      ccdlflags="$ccdlflags $xxx"
7815                         cat <<EOM >&4
7816
7817 Adding $xxx to the flags
7818 passed to $ld so that the perl executable will find the 
7819 installed shared $libperl.
7820
7821 EOM
7822                         ;;
7823                 esac
7824                 ;;
7825         esac
7826 fi
7827 # Fix ccdlflags in AIX for building external extensions.
7828 # (For building Perl itself bare -bE:perl.exp is needed,
7829 #  Makefile.SH takes care of this.)
7830 case "$osname" in
7831 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7832 esac
7833 # Respect a hint or command-line value.
7834 case "$shrpenv" in
7835 '') shrpenv="$tmp_shrpenv" ;;
7836 esac
7837 case "$ldlibpthname" in
7838 '')     ldlibpthname=LD_LIBRARY_PATH ;;
7839 none)   ldlibpthname='' ;;
7840 esac
7841
7842 : determine where manual pages are on this system
7843 echo " "
7844 case "$sysman" in
7845 '') 
7846         syspath='/usr/share/man/man1 /usr/man/man1'
7847         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7848         syspath="$syspath /usr/man/u_man/man1"
7849         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7850         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7851         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7852         sysman=`./loc . /usr/man/man1 $syspath`
7853         ;;
7854 esac
7855 if $test -d "$sysman"; then
7856         echo "System manual is in $sysman." >&4
7857 else
7858         echo "Could not find manual pages in source form." >&4
7859 fi
7860
7861 : determine where manual pages go
7862 set man1dir man1dir none
7863 eval $prefixit
7864 $cat <<EOM
7865
7866 $spackage has manual pages available in source form.
7867 EOM
7868 case "$nroff" in
7869 nroff)
7870         echo "However, you don't have nroff, so they're probably useless to you."
7871         case "$man1dir" in
7872         '') man1dir="none";;
7873         esac;;
7874 esac
7875 echo "If you don't want the manual sources installed, answer 'none'."
7876 case "$man1dir" in
7877 ' ') dflt=none
7878         ;;
7879 '')
7880         lookpath="$prefixexp/share/man/man1"
7881         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
7882         lookpath="$lookpath $prefixexp/man/p_man/man1"
7883         lookpath="$lookpath $prefixexp/man/u_man/man1"
7884         lookpath="$lookpath $prefixexp/man/man.1"
7885         case "$sysman" in
7886         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
7887         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
7888         esac
7889         set dflt
7890         eval $prefixup
7891         ;;
7892 *)  dflt="$man1dir"
7893         ;;
7894 esac
7895 echo " "
7896 fn=dn+~
7897 rp="Where do the main $spackage manual pages (source) go?"
7898 . ./getfile
7899 if $test "X$man1direxp" != "X$ansexp"; then
7900         installman1dir=''
7901 fi
7902 man1dir="$ans"
7903 man1direxp="$ansexp"
7904 case "$man1dir" in
7905 '')     man1dir=' '
7906         installman1dir='';;
7907 esac
7908
7909 : Change installation prefix, if necessary.
7910 if $test X"$prefix" != X"$installprefix"; then
7911         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
7912 else
7913         installman1dir="$man1direxp"
7914 fi
7915
7916 : What suffix to use on installed man pages
7917
7918 case "$man1dir" in
7919 ' ')
7920         man1ext='0'
7921         ;;
7922 *)
7923         rp="What suffix should be used for the main $spackage man pages?"
7924         case "$man1ext" in
7925         '')     case "$man1dir" in
7926                 *1)  dflt=1 ;;
7927                 *1p) dflt=1p ;;
7928                 *1pm) dflt=1pm ;;
7929                 *l) dflt=l;;
7930                 *n) dflt=n;;
7931                 *o) dflt=o;;
7932                 *p) dflt=p;;
7933                 *C) dflt=C;;
7934                 *L) dflt=L;;
7935                 *L1) dflt=L1;;
7936                 *) dflt=1;;
7937                 esac
7938                 ;;
7939         *)      dflt="$man1ext";;
7940         esac
7941         . ./myread
7942         man1ext="$ans"
7943         ;;
7944 esac
7945
7946 : see if we can have long filenames
7947 echo " "
7948 first=123456789abcdef
7949 $rm -f $first
7950 if (echo hi >$first) 2>/dev/null; then
7951         if $test -f 123456789abcde; then
7952                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
7953                 val="$undef"
7954         else
7955                 echo 'You can have filenames longer than 14 characters.'>&4
7956                 val="$define"
7957         fi
7958 else
7959         $cat <<'EOM'
7960 You can't have filenames longer than 14 chars.
7961 You can't even think about them!
7962 EOM
7963         val="$undef"
7964 fi 
7965 set d_flexfnam
7966 eval $setvar
7967 $rm -rf 123456789abcde*
7968
7969 : determine where library module manual pages go
7970 set man3dir man3dir none
7971 eval $prefixit
7972 $cat <<EOM
7973
7974 $spackage has manual pages for many of the library modules.
7975 EOM
7976
7977 case "$nroff" in
7978 nroff)
7979         $cat <<'EOM'
7980 However, you don't have nroff, so they're probably useless to you.
7981 EOM
7982         case "$man3dir" in
7983         '') man3dir="none";;
7984         esac;;
7985 esac
7986
7987 case "$d_flexfnam" in
7988 undef)
7989         $cat <<'EOM'
7990 However, your system can't handle the long file names like File::Basename.3. 
7991 EOM
7992         case "$man3dir" in
7993         '') man3dir="none";;
7994         esac;;
7995 esac
7996
7997 echo "If you don't want the manual sources installed, answer 'none'."
7998 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
7999 case "$man3dir" in
8000 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8001         if $test -d "$privlib/man/man3"; then
8002                 cat <<EOM >&4
8003
8004 WARNING:  Previous versions of perl installed man3 pages into
8005 $privlib/man/man3.  This version will suggest a 
8006 new default of $dflt.  
8007 EOM
8008                 tdflt=$dflt
8009                 dflt='n'
8010                 rp='Do you wish to preserve the old behavior?(y/n)'
8011                 . ./myread
8012                 case "$ans" in
8013                 y*) dflt="$privlib/man/man3" ;;
8014                 *)  dflt=$tdflt ;;
8015                 esac
8016     fi
8017         ;;
8018 *)      dflt="$man3dir" ;;
8019 esac
8020 case "$dflt" in
8021 ' ') dflt=none ;;
8022 esac
8023 echo " "
8024 fn=dn+~
8025 rp="Where do the $package library man pages (source) go?"
8026 . ./getfile
8027 man3dir="$ans"
8028 man3direxp="$ansexp"
8029 case "$man3dir" in
8030 '')     man3dir=' '
8031         installman3dir='';;
8032 esac
8033
8034 : Change installation prefix, if necessary.
8035 if $test X"$prefix" != X"$installprefix"; then
8036         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
8037 else
8038         installman3dir="$man3direxp"
8039 fi
8040
8041 : What suffix to use on installed man pages
8042 case "$man3dir" in
8043 ' ')
8044         man3ext='0'
8045         ;;
8046 *)
8047         rp="What suffix should be used for the $package library man pages?"
8048         case "$man3ext" in
8049         '')     case "$man3dir" in
8050                 *3)  dflt=3 ;;
8051                 *3p) dflt=3p ;;
8052                 *3pm) dflt=3pm ;;
8053                 *l) dflt=l;;
8054                 *n) dflt=n;;
8055                 *o) dflt=o;;
8056                 *p) dflt=p;;
8057                 *C) dflt=C;;
8058                 *L) dflt=L;;
8059                 *L3) dflt=L3;;
8060                 *) dflt=3;;
8061                 esac
8062                 ;;
8063         *)      dflt="$man3ext";;
8064         esac
8065         . ./myread
8066         man3ext="$ans"
8067         ;;
8068 esac
8069
8070 : see if we have to deal with yellow pages, now NIS.
8071 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8072         if $test -f /usr/etc/nibindd; then
8073                 echo " "
8074                 echo "I'm fairly confident you're on a NeXT."
8075                 echo " "
8076                 rp='Do you get the hosts file via NetInfo?'
8077                 dflt=y
8078                 case "$hostcat" in
8079                 nidump*) ;;
8080                 '') ;;
8081                 *) dflt=n;;
8082                 esac
8083                 . ./myread
8084                 case "$ans" in
8085                 y*) hostcat='nidump hosts .';;
8086                 *)      case "$hostcat" in
8087                         nidump*) hostcat='';;
8088                         esac
8089                         ;;
8090                 esac
8091         fi
8092         case "$hostcat" in
8093         nidump*) ;;
8094         *)
8095                 case "$hostcat" in
8096                 *ypcat*) dflt=y;;
8097                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8098                                 dflt=y
8099                         else
8100                                 dflt=n
8101                         fi;;
8102                 *) dflt=n;;
8103                 esac
8104                 echo " "
8105                 rp='Are you getting the hosts file via yellow pages?'
8106                 . ./myread
8107                 case "$ans" in
8108                 y*) hostcat='ypcat hosts';;
8109                 *) hostcat='cat /etc/hosts';;
8110                 esac
8111                 ;;
8112         esac
8113 fi
8114 case "$hostcat" in
8115 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8116 esac
8117 case "$groupcat" in
8118 '') test -f /etc/group && groupcat='cat /etc/group';;
8119 esac
8120 case "$passcat" in
8121 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8122 esac
8123
8124 : now get the host name
8125 echo " "
8126 echo "Figuring out host name..." >&4
8127 case "$myhostname" in
8128 '') cont=true
8129         echo 'Maybe "hostname" will work...'
8130         if tans=`sh -c hostname 2>&1` ; then
8131                 myhostname=$tans
8132                 phostname=hostname
8133                 cont=''
8134         fi
8135         ;;
8136 *) cont='';;
8137 esac
8138 if $test "$cont"; then
8139         if ./xenix; then
8140                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8141                 if tans=`cat /etc/systemid 2>&1` ; then
8142                         myhostname=$tans
8143                         phostname='cat /etc/systemid'
8144                         echo "Whadyaknow.  Xenix always was a bit strange..."
8145                         cont=''
8146                 fi
8147         elif $test -r /etc/systemid; then
8148                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8149         fi
8150 fi
8151 if $test "$cont"; then
8152         echo 'No, maybe "uuname -l" will work...'
8153         if tans=`sh -c 'uuname -l' 2>&1` ; then
8154                 myhostname=$tans
8155                 phostname='uuname -l'
8156         else
8157                 echo 'Strange.  Maybe "uname -n" will work...'
8158                 if tans=`sh -c 'uname -n' 2>&1` ; then
8159                         myhostname=$tans
8160                         phostname='uname -n'
8161                 else
8162                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8163                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8164                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8165                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8166                         else
8167                                 case "$myhostname" in
8168                                 '') echo "Does this machine have an identity crisis or something?"
8169                                         phostname='';;
8170                                 *)
8171                                         echo "Well, you said $myhostname before..."
8172                                         phostname='echo $myhostname';;
8173                                 esac
8174                         fi
8175                 fi
8176         fi
8177 fi
8178 case "$myhostname" in
8179 '') myhostname=noname ;;
8180 esac
8181 : you do not want to know about this
8182 set $myhostname
8183 myhostname=$1
8184
8185 : verify guess
8186 if $test "$myhostname" ; then
8187         dflt=y
8188         rp='Your host name appears to be "'$myhostname'".'" Right?"
8189         . ./myread
8190         case "$ans" in
8191         y*) ;;
8192         *) myhostname='';;
8193         esac
8194 fi
8195
8196 : bad guess or no guess
8197 while $test "X$myhostname" = X ; do
8198         dflt=''
8199         rp="Please type the (one word) name of your host:"
8200         . ./myread
8201         myhostname="$ans"
8202 done
8203
8204 : translate upper to lower if necessary
8205 case "$myhostname" in
8206 *[A-Z]*)
8207         echo "(Normalizing case in your host name)"
8208         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8209         ;;
8210 esac
8211
8212 case "$myhostname" in
8213 *.*)
8214         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8215         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8216         echo "(Trimming domain name from host name--host name is now $myhostname)"
8217         ;;
8218 *) case "$mydomain" in
8219         '')
8220                 {
8221                         test "X$hostcat" = "Xypcat hosts" &&
8222                         ypmatch "$myhostname" hosts 2>/dev/null |\
8223                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8224                         $test -s hosts
8225                 } || {
8226                         test "X$hostcat" != "X" &&
8227                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8228                                         /[       ]$myhostname[  . ]/p" > hosts
8229                 }
8230                 tmp_re="[       . ]"
8231                 if $test -f hosts; then
8232                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8233                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8234                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8235                                 hosts | $sort | $uniq | \
8236                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8237                         case `$echo X$dflt` in
8238                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8239                                 dflt=.
8240                                 ;;
8241                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8242                                 ;;
8243                         esac
8244                 else
8245                         echo "(I cannot locate a hosts database anywhere)"
8246                         dflt=.
8247                 fi
8248                 case "$dflt" in
8249                 .)
8250                         tans=`./loc resolv.conf X /etc /usr/etc`
8251                         if $test -f "$tans"; then
8252                                 echo "(Attempting domain name extraction from $tans)"
8253                                 dflt=.`$sed -n -e 's/   / /g' \
8254                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8255                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8256                                 case "$dflt" in
8257                                 .) dflt=.`$sed -n -e 's/        / /g' \
8258                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8259                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8260                                         ;;
8261                                 esac
8262                         fi
8263                         ;;
8264                 esac
8265                 case "$dflt" in
8266                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8267                         dflt=.`sh -c domainname 2>/dev/null`
8268                         case "$dflt" in
8269                         '') dflt='.';;
8270                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8271                         esac
8272                         ;;
8273                 esac
8274                 case "$dflt$osname" in
8275                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8276                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8277                         ;;
8278                 esac
8279                 case "$dflt" in
8280                 .) echo "(Lost all hope -- silly guess then)"
8281                         dflt='.nonet'
8282                         ;;
8283                 esac
8284                 $rm -f hosts
8285                 ;;
8286         *) dflt="$mydomain";;
8287         esac;;
8288 esac
8289 echo " "
8290 rp="What is your domain name?"
8291 . ./myread
8292 tans="$ans"
8293 case "$ans" in
8294 '') ;;
8295 .*) ;;
8296 *) tans=".$tans";;
8297 esac
8298 mydomain="$tans"
8299
8300 : translate upper to lower if necessary
8301 case "$mydomain" in
8302 *[A-Z]*)
8303         echo "(Normalizing case in your domain name)"
8304         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8305         ;;
8306 esac
8307
8308 : a little sanity check here
8309 case "$phostname" in
8310 '') ;;
8311 *)
8312         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8313         $myhostname$mydomain|$myhostname) ;;
8314         *)
8315                 case "$phostname" in
8316                 sed*)
8317                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8318                         ;;
8319                 *)
8320                         echo "(That doesn't agree with your $phostname command, by the way.)"
8321                         ;;
8322                 esac
8323         ;;
8324         esac
8325         ;;
8326 esac
8327
8328 $cat <<EOM
8329
8330 I need to get your e-mail address in Internet format if possible, i.e.
8331 something like user@host.domain. Please answer accurately since I have
8332 no easy means to double check it. The default value provided below
8333 is most probably close to reality but may not be valid from outside
8334 your organization...
8335
8336 EOM
8337 cont=x
8338 while test "$cont"; do
8339         case "$cf_email" in
8340         '') dflt="$cf_by@$myhostname$mydomain";;
8341         *) dflt="$cf_email";;
8342         esac
8343         rp='What is your e-mail address?'
8344         . ./myread
8345         cf_email="$ans"
8346         case "$cf_email" in
8347         *@*.*) cont='' ;;
8348         *)
8349                 rp='Address does not look like an Internet one.  Use it anyway?'
8350                 case "$fastread" in
8351                 yes) dflt=y ;;
8352                 *) dflt=n ;;
8353                 esac
8354                 . ./myread
8355                 case "$ans" in
8356                 y*) cont='' ;;
8357                 *) echo " " ;;
8358                 esac
8359                 ;;
8360         esac
8361 done
8362
8363 $cat <<EOM
8364
8365 If you or somebody else will be maintaining perl at your site, please
8366 fill in the correct e-mail address here so that they may be contacted
8367 if necessary. Currently, the "perlbug" program included with perl
8368 will send mail to this address in addition to perlbug@perl.org. You may
8369 enter "none" for no administrator.
8370
8371 EOM
8372 case "$perladmin" in
8373 '') dflt="$cf_email";;
8374 *) dflt="$perladmin";;
8375 esac
8376 rp='Perl administrator e-mail address'
8377 . ./myread
8378 perladmin="$ans"
8379
8380 : determine whether to only install version-specific parts.
8381 echo " "
8382 $cat <<EOM
8383 Do you want to install only the version-specific parts of the perl
8384 distribution?  Usually you do *not* want to do this.
8385 EOM
8386 case "$versiononly" in
8387 "$define"|[Yy]*|true) dflt='y' ;;
8388 *) dflt='n';
8389 esac
8390 rp="Do you want to install only the version-specific parts of perl?"
8391 . ./myread
8392 case "$ans" in
8393 [yY]*)  val="$define";;
8394 *)      val="$undef" ;;
8395 esac
8396 set versiononly
8397 eval $setvar
8398
8399 case "$versiononly" in
8400 "$define") inc_version_list=''
8401            inc_version_list_init=0
8402            ;;
8403 esac
8404
8405 : figure out how to guarantee perl startup
8406 case "$startperl" in
8407 '')
8408         case "$sharpbang" in
8409         *!)
8410                 $cat <<EOH
8411
8412 I can use the #! construct to start perl on your system. This will
8413 make startup of perl scripts faster, but may cause problems if you
8414 want to share those scripts and perl is not in a standard place
8415 ($binexp/perl) on all your platforms. The alternative is to force
8416 a shell by starting the script with a single ':' character.
8417
8418 EOH
8419                 case "$versiononly" in
8420                 "$define")      dflt="$binexp/perl$version";;  
8421                 *)              dflt="$binexp/perl";;
8422                 esac
8423                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8424                 . ./myread
8425                 case "$ans" in
8426                 none)   startperl=": # use perl";;
8427                 *)      startperl="#!$ans"
8428                         if $test 30 -lt `echo "$ans" | wc -c`; then
8429                                 $cat >&4 <<EOM
8430
8431 WARNING:  Some systems limit the #! command to 32 characters.
8432 If you experience difficulty running Perl scripts with #!, try
8433 installing Perl in a directory with a shorter pathname.
8434
8435 EOM
8436                         fi ;;
8437                 esac
8438                 ;;
8439         *) startperl=": # use perl"
8440                 ;;
8441         esac
8442         ;;
8443 esac
8444 echo "I'll use $startperl to start perl scripts."
8445
8446 : figure best path for perl in scripts
8447 case "$perlpath" in
8448 '')
8449         case "$versiononly" in
8450         "$define")      perlpath="$binexp/perl$version";;
8451         *)              perlpath="$binexp/perl";;
8452         esac
8453         case "$startperl" in
8454         *!*) ;;
8455         *)
8456                 $cat <<EOH
8457
8458 I will use the "eval 'exec'" idiom to start Perl on your system.
8459 I can use the full path of your Perl binary for this purpose, but
8460 doing so may cause problems if you want to share those scripts and
8461 Perl is not always in a standard place ($binexp/perl).
8462
8463 EOH
8464                 dflt="$binexp/perl"
8465                 rp="What path shall I use in \"eval 'exec'\"?"
8466                 . ./myread
8467                 perlpath="$ans"
8468                 ;;
8469         esac
8470         ;;
8471 esac
8472 case "$startperl" in
8473 *!*)    ;;
8474 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8475 esac
8476
8477 : determine where public executable scripts go
8478 set scriptdir scriptdir
8479 eval $prefixit
8480 case "$scriptdir" in
8481 '')
8482         dflt="$bin"
8483         : guess some guesses
8484         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8485         $test -d /usr/share/bin     && dflt=/usr/share/bin
8486         $test -d /usr/local/script  && dflt=/usr/local/script
8487         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8488         $test -d $prefixexp/script  && dflt=$prefixexp/script
8489         set dflt
8490         eval $prefixup
8491         ;;
8492 *)  dflt="$scriptdir"
8493         ;;
8494 esac
8495 $cat <<EOM
8496  
8497 Some installations have a separate directory just for executable scripts so
8498 that they can mount it across multiple architectures but keep the scripts in
8499 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8500 Or you might just lump your scripts in with all your other executables.
8501  
8502 EOM
8503 fn=d~
8504 rp='Where do you keep publicly executable scripts?'
8505 . ./getfile
8506 if $test "X$ansexp" != "X$scriptdirexp"; then
8507         installscript=''
8508 fi
8509 scriptdir="$ans"
8510 scriptdirexp="$ansexp"
8511 : Change installation prefix, if necessary.
8512 if $test X"$prefix" != X"$installprefix"; then
8513         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
8514 else
8515         installscript="$scriptdirexp"
8516 fi
8517
8518 : determine where add-on public executables go
8519 case "$sitebin" in
8520 '')     dflt=$siteprefix/bin ;;
8521 *)      dflt=$sitebin ;;
8522 esac
8523 fn=d~
8524 rp='Pathname where the add-on public executables should be installed?'
8525 . ./getfile
8526 sitebin="$ans"
8527 sitebinexp="$ansexp"
8528 : Change installation prefix, if necessary.
8529 if $test X"$prefix" != X"$installprefix"; then
8530         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
8531 else
8532         installsitebin="$sitebinexp"
8533 fi
8534
8535 : define an is-a-typedef? function
8536 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8537 case "$inclist" in
8538 "") inclist="sys/types.h";;
8539 esac;
8540 eval "varval=\$$var";
8541 case "$varval" in
8542 "")
8543         $rm -f temp.c;
8544         for inc in $inclist; do
8545                 echo "#include <$inc>" >>temp.c;
8546         done;
8547         echo "#ifdef $type" >> temp.c;
8548         echo "printf(\"We have $type\");" >> temp.c;
8549         echo "#endif" >> temp.c;
8550         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8551         if $contains $type temp.E >/dev/null 2>&1; then
8552                 eval "$var=\$type";
8553         else
8554                 eval "$var=\$def";
8555         fi;
8556         $rm -f temp.?;;
8557 *) eval "$var=\$varval";;
8558 esac'
8559
8560 : define an is-a-typedef? function that prompts if the type is not available.
8561 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8562 case "$inclist" in
8563 "") inclist="sys/types.h";;
8564 esac;
8565 eval "varval=\$$var";
8566 case "$varval" in
8567 "")
8568         $rm -f temp.c;
8569         for inc in $inclist; do
8570                 echo "#include <$inc>" >>temp.c;
8571         done;
8572         echo "#ifdef $type" >> temp.c;
8573         echo "printf(\"We have $type\");" >> temp.c;
8574         echo "#endif" >> temp.c;
8575         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8576         echo " " ;
8577         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8578         if $contains $type temp.E >/dev/null 2>&1; then
8579                 echo "$type found." >&4;
8580                 eval "$var=\$type";
8581         else
8582                 echo "$type NOT found." >&4;
8583                 dflt="$def";
8584                 . ./myread ;
8585                 eval "$var=\$ans";
8586         fi;
8587         $rm -f temp.?;;
8588 *) eval "$var=\$varval";;
8589 esac'
8590
8591 : see what type lseek is declared as in the kernel
8592 rp="What is the type used for lseek's offset on this system?"
8593 set off_t lseektype long stdio.h sys/types.h
8594 eval $typedef_ask
8595
8596 echo " "
8597 echo "Checking to see how big your file offsets are..." >&4
8598 $cat >try.c <<EOCP
8599 #include <sys/types.h>
8600 #include <stdio.h>
8601 int main()
8602 {
8603     printf("%d\n", (int)sizeof($lseektype));
8604     return(0); 
8605 }
8606 EOCP
8607 set try
8608 if eval $compile_ok; then
8609         lseeksize=`$run ./try`
8610         echo "Your file offsets are $lseeksize bytes long."
8611 else
8612         dflt=$longsize
8613         echo " "
8614         echo "(I can't seem to compile the test program.  Guessing...)"
8615         rp="What is the size of your file offsets (in bytes)?"
8616         . ./myread
8617         lseeksize="$ans"
8618 fi
8619 $rm -f try.c try
8620
8621 : see what type file positions are declared as in the library
8622 rp="What is the type for file position used by fsetpos()?"
8623 set fpos_t fpostype long stdio.h sys/types.h
8624 eval $typedef_ask
8625
8626 echo " "
8627 case "$fpostype" in
8628 *_t) zzz="$fpostype"    ;;
8629 *)   zzz="fpos_t"       ;;
8630 esac
8631 echo "Checking the size of $zzz..." >&4 
8632 cat > try.c <<EOCP
8633 #include <sys/types.h>
8634 #include <stdio.h>
8635 int main() {
8636     printf("%d\n", (int)sizeof($fpostype));
8637     exit(0);
8638 }
8639 EOCP
8640 set try
8641 if eval $compile_ok; then
8642         yyy=`$run ./try`
8643         case "$yyy" in
8644         '')     fpossize=4
8645                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8646                 ;;
8647         *)      fpossize=$yyy
8648                 echo "Your $zzz is $fpossize bytes long."
8649                 ;;
8650         esac
8651 else
8652         dflt="$longsize"
8653         echo " " >&4
8654         echo "(I can't compile the test program.  Guessing...)" >&4
8655         rp="What is the size of your file positions (in bytes)?"
8656         . ./myread
8657         fpossize="$ans"
8658 fi
8659
8660
8661
8662 # Backward compatibility (uselfs is deprecated).
8663 case "$uselfs" in
8664 "$define"|true|[yY]*)
8665         cat <<EOM >&4
8666
8667 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
8668 EOM
8669         uselargefiles="$define"
8670         ;;
8671 esac                          
8672
8673 case "$lseeksize:$fpossize" in
8674 8:8) cat <<EOM
8675
8676 You can have files larger than 2 gigabytes.
8677 EOM
8678    val="$define" ;;
8679 *)    case "$uselargefiles" in
8680    "$undef"|false|[nN]*) dflt='n' ;;
8681    *)   dflt='y' ;;
8682    esac
8683    cat <<EOM
8684
8685 Perl can be built to understand large files (files larger than 2 gigabytes)
8686 on some systems.  To do so, Configure can be run with -Duselargefiles.
8687
8688 If this doesn't make any sense to you, just accept the default '$dflt'.
8689 EOM
8690    rp='Try to understand large files, if available?'
8691    . ./myread
8692    case "$ans" in
8693    y|Y)         val="$define" ;;
8694    *)           val="$undef"  ;;
8695    esac
8696    ;;
8697 esac
8698 set uselargefiles
8699 eval $setvar
8700 case "$uselargefiles" in
8701 "$define")
8702 : Look for a hint-file generated 'call-back-unit'.  If the
8703 : user has specified that a large files perl is to be built,
8704 : we may need to set or change some other defaults.
8705         if $test -f uselargefiles.cbu; then
8706                 echo "Your platform has some specific hints for large file builds, using them..."
8707                 . ./uselargefiles.cbu
8708                 echo " "
8709                 echo "Rechecking to see how big your file offsets are..." >&4
8710                 $cat >try.c <<EOCP
8711 #include <sys/types.h>
8712 #include <stdio.h>
8713 int main()
8714 {
8715     printf("%d\n", (int)sizeof($lseektype));
8716     return(0); 
8717 }
8718 EOCP
8719                 set try
8720                 if eval $compile_ok; then
8721                         lseeksize=`$run ./try`
8722                         $echo "Your file offsets are now $lseeksize bytes long."
8723                 else
8724                         dflt="$lseeksize"
8725                         echo " "
8726                         echo "(I can't seem to compile the test program.  Guessing...)"
8727                         rp="What is the size of your file offsets (in bytes)?"
8728                         . ./myread
8729                         lseeksize="$ans"
8730                 fi
8731                 case "$fpostype" in
8732                 *_t) zzz="$fpostype"    ;;
8733                 *)   zzz="fpos_t"       ;;
8734                 esac
8735                 $echo $n "Rechecking the size of $zzz...$c" >&4 
8736                 $cat > try.c <<EOCP
8737 #include <sys/types.h>
8738 #include <stdio.h>
8739 int main() {
8740     printf("%d\n", (int)sizeof($fpostype));
8741     exit(0);
8742 }
8743 EOCP
8744                 set try
8745                 if eval $compile_ok; then
8746                         yyy=`$run ./try`
8747                         dflt="$lseeksize"
8748                         case "$yyy" in
8749                         '')     echo " "
8750                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8751                                 ;;
8752                         *)      fpossize=$yyy
8753                                 echo " $fpossize bytes." >&4
8754                                 ;;
8755                         esac
8756                 else
8757                         dflt="$fpossize"
8758                         echo " "
8759                         echo "(I can't compile the test program.  Guessing...)" >&4
8760                         rp="What is the size of your file positions (in bytes)?"
8761                         . ./myread
8762                         fpossize="$ans"
8763                 fi
8764                 $rm -f try.c try
8765         fi
8766         ;;
8767 esac
8768
8769 case "$vendorprefix" in
8770 '')     d_vendorbin="$undef"
8771         vendorbin=''
8772         vendorbinexp=''
8773         ;;
8774 *)      d_vendorbin="$define"
8775         : determine where vendor-supplied executables go.
8776         case "$vendorbin" in
8777         '') dflt=$vendorprefix/bin ;;
8778         *)      dflt="$vendorbin" ;;
8779         esac
8780         fn=d~+
8781         rp='Pathname for the vendor-supplied executables directory?'
8782         . ./getfile
8783         vendorbin="$ans"
8784         vendorbinexp="$ansexp"
8785         ;;
8786 esac
8787 : Change installation prefix, if necessary.
8788 if $test X"$prefix" != X"$installprefix"; then
8789         installvendorbin=`echo $vendorbinexp | $sed "s#^$prefix#$installprefix#"`
8790 else
8791         installvendorbin="$vendorbinexp"
8792 fi
8793
8794 : see if qgcvt exists
8795 set qgcvt d_qgcvt
8796 eval $inlibc
8797
8798 : Check how to convert floats to strings.
8799
8800 if test "X$d_Gconvert" = X; then
8801
8802 echo " "
8803 echo "Checking for an efficient way to convert floats to strings."
8804 echo " " > try.c
8805 case "$uselongdouble" in
8806 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
8807 esac
8808 case "$d_longdbl" in
8809 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
8810 esac
8811 case "$d_PRIgldbl" in
8812 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
8813 esac
8814 $cat >>try.c <<EOP
8815 #ifdef TRY_gconvert
8816 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
8817 char *myname = "gconvert";
8818 #endif
8819 #ifdef TRY_gcvt
8820 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
8821 char *myname = "gcvt";
8822 #endif
8823 #ifdef TRY_qgcvt
8824 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
8825 char *myname = "qgcvt";
8826 #define DOUBLETYPE long double
8827 #endif
8828 #ifdef TRY_sprintf
8829 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
8830 #ifdef HAS_PRIgldbl
8831 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
8832 #else
8833 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
8834 #endif
8835 #else
8836 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
8837 #endif
8838 char *myname = "sprintf";
8839 #endif
8840
8841 #ifndef DOUBLETYPE
8842 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
8843 #define DOUBLETYPE long double
8844 #else
8845 #define DOUBLETYPE double
8846 #endif
8847 #endif
8848
8849 #include <stdio.h>
8850
8851 #define I_STDLIB $i_stdlib
8852 #ifdef I_STDLIB
8853 #include <stdlib.h>
8854 #endif
8855
8856 int
8857 checkit(expect, got)
8858 char *expect;
8859 char *got;
8860 {
8861     if (strcmp(expect, got)) {
8862                 printf("%s oddity:  Expected %s, got %s\n",
8863                         myname, expect, got);
8864                 exit(1);
8865         }
8866 }
8867
8868 int main()
8869
8870         char buf[64]; 
8871         buf[63] = '\0';
8872
8873         /* This must be 1st test on (which?) platform */
8874         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
8875         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
8876         checkit("0.1", buf);
8877
8878         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
8879         checkit("0.01", buf);
8880
8881         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
8882         checkit("0.001", buf);
8883
8884         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
8885         checkit("0.0001", buf);
8886
8887         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
8888         if (strlen(buf) > 5)
8889             checkit("9e-005", buf); /* for Microsoft ?? */
8890         else
8891             checkit("9e-05", buf);
8892
8893         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
8894         checkit("1", buf);
8895
8896         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
8897         checkit("1.1", buf);
8898
8899         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
8900         checkit("1.01", buf);
8901
8902         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
8903         checkit("1.001", buf);
8904
8905         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
8906         checkit("1.0001", buf);
8907
8908         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
8909         checkit("1.00001", buf);
8910
8911         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
8912         checkit("1.000001", buf);
8913
8914         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
8915         checkit("0", buf);
8916
8917         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
8918         checkit("-1", buf);
8919
8920         /* Some Linux gcvt's give 1.e+5 here. */
8921         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
8922         checkit("100000", buf);
8923         
8924         /* Some Linux gcvt's give -1.e+5 here. */
8925         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
8926         checkit("-100000", buf);
8927
8928         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
8929         checkit("123.456", buf);
8930
8931         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
8932         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
8933         /* 34 should be enough to scare even long double
8934          * places into using the e notation. */
8935         if (strlen(buf) > 5)
8936             checkit("1e+034", buf); /* for Microsoft */
8937         else
8938             checkit("1e+34", buf);
8939
8940         /* For Perl, if you add additional tests here, also add them to
8941          * t/base/num.t for benefit of platforms not using Configure or
8942          * overriding d_Gconvert */
8943
8944         exit(0);
8945 }
8946 EOP
8947 : first add preferred functions to our list
8948 xxx_list=""
8949 for xxx_convert in $gconvert_preference; do
8950     case $xxx_convert in
8951     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
8952     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
8953     esac 
8954 done
8955 : then add any others
8956 for xxx_convert in gconvert gcvt sprintf; do
8957     case "$xxx_list" in
8958     *$xxx_convert*) ;;
8959     *) xxx_list="$xxx_list $xxx_convert" ;;
8960     esac 
8961 done
8962
8963 case "$d_longdbl$uselongdouble" in
8964 "$define$define")
8965     : again, add prefered functions to our list first
8966     xxx_ld_list=""
8967     for xxx_convert in $gconvert_ld_preference; do
8968         case $xxx_convert in
8969         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
8970         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
8971         esac
8972     done
8973     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
8974     for xxx_convert in qgcvt sprintf $xxx_list; do
8975         case "$xxx_ld_list" in
8976         $xxx_convert*|*" $xxx_convert"*) ;;
8977         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
8978         esac
8979     done
8980     : if sprintf cannot do long doubles, move it to the end
8981     if test "$d_PRIgldbl" != "$define"; then
8982         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
8983     fi
8984     : if no qgcvt, remove it
8985     if test "$d_qgcvt" != "$define"; then
8986         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
8987     fi
8988     : use the ld_list
8989     xxx_list="$xxx_ld_list"
8990     ;;
8991 esac
8992
8993 for xxx_convert in $xxx_list; do
8994         echo "Trying $xxx_convert..."
8995         $rm -f try try$_o
8996         set try -DTRY_$xxx_convert
8997         if eval $compile; then
8998                 echo "$xxx_convert() found." >&4
8999                 if $run ./try; then
9000                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9001                         break;
9002                 else
9003                         echo "...But $xxx_convert didn't work as I expected."
9004                         xxx_convert=''
9005                 fi
9006         else
9007                 echo "$xxx_convert NOT found." >&4
9008         fi
9009 done
9010
9011 if test X$xxx_convert = X; then
9012     echo "*** WHOA THERE!!! ***" >&4
9013     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9014     xxx_convert=sprintf
9015 fi
9016
9017 case "$xxx_convert" in
9018 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9019 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9020 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9021 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9022    "$define$define$define")
9023       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9024    "$define$define$undef")
9025       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9026    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9027    esac
9028    ;;  
9029 esac
9030
9031 fi
9032
9033 : see if _fwalk exists
9034 set fwalk d__fwalk
9035 eval $inlibc
9036
9037 : Initialize h_fcntl
9038 h_fcntl=false
9039
9040 : Initialize h_sysfile
9041 h_sysfile=false
9042
9043 : access call always available on UNIX
9044 set access d_access
9045 eval $inlibc
9046
9047 : locate the flags for 'access()'
9048 case "$d_access" in
9049 "$define")
9050         echo " "
9051         $cat >access.c <<'EOCP'
9052 #include <sys/types.h>
9053 #ifdef I_FCNTL
9054 #include <fcntl.h>
9055 #endif
9056 #ifdef I_SYS_FILE
9057 #include <sys/file.h>
9058 #endif
9059 #ifdef I_UNISTD
9060 #include <unistd.h>
9061 #endif
9062 int main() {
9063         exit(R_OK);
9064 }
9065 EOCP
9066         : check sys/file.h first, no particular reason here
9067         if $test `./findhdr sys/file.h` && \
9068                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9069                 h_sysfile=true;
9070                 echo "<sys/file.h> defines the *_OK access constants." >&4
9071         elif $test `./findhdr fcntl.h` && \
9072                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9073                 h_fcntl=true;
9074                 echo "<fcntl.h> defines the *_OK access constants." >&4
9075         elif $test `./findhdr unistd.h` && \
9076                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9077                 echo "<unistd.h> defines the *_OK access constants." >&4
9078         else
9079                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9080         fi
9081         ;;
9082 esac
9083 $rm -f access*
9084
9085 : see if accessx exists
9086 set accessx d_accessx
9087 eval $inlibc
9088
9089 : see if alarm exists
9090 set alarm d_alarm
9091 eval $inlibc
9092
9093 : define a fucntion to check prototypes
9094 $cat > protochk <<EOSH
9095 $startsh
9096 cc="$cc"
9097 optimize="$optimize"
9098 ccflags="$ccflags"
9099 prototype="$prototype"
9100 define="$define"
9101 rm=$rm
9102 EOSH
9103
9104 $cat >> protochk <<'EOSH'
9105
9106 $rm -f try.c
9107 foo="$1"
9108 shift
9109 while test $# -ge 2; do
9110         case "$1" in
9111                 $define) echo "#include <$2>" >> try.c ;;
9112                 literal) echo "$2" >> try.c ;;
9113         esac
9114     # Extra magic for the benefit of systems that need pthread.h
9115     # to be included early to correctly detect threadsafe functions.
9116     # Such functions must guarantee themselves, though, that the usethreads
9117     # and i_pthread have been defined, before calling protochk.
9118     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9119         echo "#include <pthread.h>" >> try.c
9120         pthread_h_done=yes
9121     fi
9122     shift 2
9123 done
9124 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9125 cat >> try.c <<'EOCP'
9126 #ifdef CAN_PROTOTYPE
9127 #define _(args) args
9128 #else
9129 #define _(args) ()
9130 #endif
9131 EOCP
9132 echo "$foo" >> try.c
9133 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9134 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9135 status=$?
9136 $rm -f try.[co]
9137 exit $status
9138 EOSH
9139 chmod +x protochk
9140 $eunicefix protochk
9141
9142 hasproto='varname=$1; func=$2; shift; shift;
9143 while $test $# -ge 2; do
9144         case "$1" in
9145         $define) echo "#include <$2>";;
9146         esac ;
9147     shift 2;
9148 done > try.c;
9149 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9150 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9151         echo "$func() prototype found.";
9152         val="$define";
9153 else
9154         echo "$func() prototype NOT found.";
9155         val="$undef";
9156 fi;
9157 set $varname;
9158 eval $setvar;
9159 $rm -f try.c tryout.c'
9160
9161 : see if sys/types.h has to be included
9162 set sys/types.h i_systypes
9163 eval $inhdr
9164
9165 : see if sys/select.h has to be included
9166 set sys/select.h i_sysselct
9167 eval $inhdr
9168
9169 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9170 while $test $# -ge 2; do
9171         case "$1" in
9172         $define) echo "#include <$2>";;
9173         esac ;
9174     shift 2;
9175 done > try.c;
9176 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9177 set try;
9178 if eval $compile; then
9179         val="$define";
9180 else
9181         val="$undef";
9182 fi;
9183 set $varname;
9184 eval $setvar;
9185 $rm -f try.c try.o'
9186
9187 : see if we should include time.h, sys/time.h, or both
9188 echo " "
9189 if test "X$timeincl" = X; then
9190         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9191         $echo $n "I'm now running the test program...$c"
9192         $cat >try.c <<'EOCP'
9193 #include <sys/types.h>
9194 #ifdef I_TIME
9195 #include <time.h>
9196 #endif
9197 #ifdef I_SYSTIME
9198 #ifdef SYSTIMEKERNEL
9199 #define KERNEL
9200 #endif
9201 #include <sys/time.h>
9202 #endif
9203 #ifdef I_SYSSELECT
9204 #include <sys/select.h>
9205 #endif
9206 int main()
9207 {
9208         struct tm foo;
9209 #ifdef S_TIMEVAL
9210         struct timeval bar;
9211 #endif
9212 #ifdef S_TIMEZONE
9213         struct timezone tzp;
9214 #endif
9215         if (foo.tm_sec == foo.tm_sec)
9216                 exit(0);
9217 #ifdef S_TIMEVAL
9218         if (bar.tv_sec == bar.tv_sec)
9219                 exit(0);
9220 #endif
9221         exit(1);
9222 }
9223 EOCP
9224         flags=''
9225         for s_timezone in '-DS_TIMEZONE' ''; do
9226         sysselect=''
9227         for s_timeval in '-DS_TIMEVAL' ''; do
9228         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9229         for i_time in '' '-DI_TIME'; do
9230         for i_systime in '-DI_SYSTIME' ''; do
9231                 case "$flags" in
9232                 '') $echo $n ".$c"
9233                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9234                         if eval $compile; then
9235                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9236                                 shift
9237                                 flags="$*"
9238                                 echo " "
9239                                 $echo $n "Succeeded with $flags$c"
9240                         fi
9241                         ;;
9242                 esac
9243         done
9244         done
9245         done
9246         done
9247         done
9248         timeincl=''
9249         echo " "
9250         case "$flags" in
9251         *SYSTIMEKERNEL*) i_systimek="$define"
9252                 timeincl=`./findhdr sys/time.h`
9253                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9254         *) i_systimek="$undef";;
9255         esac
9256         case "$flags" in
9257         *I_TIME*) i_time="$define"
9258                 timeincl=`./findhdr time.h`" $timeincl"
9259                 echo "We'll include <time.h>." >&4;;
9260         *) i_time="$undef";;
9261         esac
9262         case "$flags" in
9263         *I_SYSTIME*) i_systime="$define"
9264                 timeincl=`./findhdr sys/time.h`" $timeincl"
9265                 echo "We'll include <sys/time.h>." >&4;;
9266         *) i_systime="$undef";;
9267         esac
9268         $rm -f try.c try
9269 fi
9270 : see if struct tm knows about tm_zone
9271 case "$i_systime$i_time" in
9272 *$define*) 
9273         echo " "
9274         echo "Checking to see if your struct tm has tm_zone field..." >&4
9275         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9276         eval $hasfield
9277         ;;
9278 *)      val="$undef"
9279         set d_tm_tm_zone
9280         eval $setvar
9281         ;;
9282 esac
9283 case "$d_tm_tm_zone" in
9284 "$define")      echo "Yes, it does."   ;;
9285 *)              echo "No, it doesn't." ;;
9286 esac
9287 : see if struct tm knows about tm_gmtoff
9288 case "$i_systime$i_time" in
9289 *$define*) 
9290         echo " "
9291         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9292         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9293         eval $hasfield
9294         ;;
9295 *)      val="$undef"
9296         set d_tm_tm_gmtoff
9297         eval $setvar
9298         ;;
9299 esac
9300 case "$d_tm_tm_gmtoff" in
9301 "$define")      echo "Yes, it does."   ;;
9302 *)              echo "No, it doesn't." ;;
9303 esac
9304
9305 : see if POSIX threads are available
9306 set pthread.h i_pthread
9307 eval $inhdr
9308
9309 : see if asctime_r exists
9310 set asctime_r d_asctime_r
9311 eval $inlibc
9312 case "$d_asctime_r" in
9313 "$define")
9314         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
9315         case "time" in
9316         time)
9317                 hdrs="$hdrs $i_systime sys/time.h"
9318                 ;;
9319         esac
9320         case "$d_asctime_r_proto:$usethreads" in
9321         ":define")      d_asctime_r_proto=define
9322                 set d_asctime_r_proto asctime_r $hdrs
9323                 eval $hasproto ;;
9324         *)      ;;
9325         esac
9326         case "$d_asctime_r_proto" in
9327         define)
9328         case "$asctime_r_proto" in
9329         ''|0) try='char* asctime_r(const struct tm*, char*);'
9330         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9331         esac
9332         case "$asctime_r_proto" in
9333         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9334         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9335         esac
9336         case "$asctime_r_proto" in
9337         ''|0) try='int asctime_r(const struct tm*, char*);'
9338         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9339         esac
9340         case "$asctime_r_proto" in
9341         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9342         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9343         esac
9344         case "$asctime_r_proto" in
9345         ''|0)   d_asctime_r=undef
9346                 asctime_r_proto=0
9347                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9348         * )     case "$asctime_r_proto" in
9349                 REENTRANT_PROTO*) ;;
9350                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9351                 esac
9352                 echo "Prototype: $try" ;;
9353         esac
9354         ;;
9355         *)      case "$usethreads" in
9356                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9357                 esac
9358                 d_asctime_r=undef
9359                 asctime_r_proto=0
9360                 ;;
9361         esac
9362         ;;
9363 *)      asctime_r_proto=0
9364         ;;
9365 esac
9366
9367 : see if atolf exists
9368 set atolf d_atolf
9369 eval $inlibc
9370
9371 : see if atoll exists
9372 set atoll d_atoll
9373 eval $inlibc
9374
9375 : Look for GNU-cc style attribute checking
9376 echo " "
9377 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9378 $cat >attrib.c <<'EOCP'
9379 #include <stdio.h>
9380 void croak (char* pat,...) __attribute__((format(printf,1,2),noreturn));
9381 EOCP
9382 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9383         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9384                 echo "Your C compiler doesn't fully support __attribute__."
9385                 val="$undef"
9386         else
9387                 echo "Your C compiler supports __attribute__."
9388                 val="$define"
9389         fi
9390 else
9391         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9392         val="$undef"
9393 fi
9394 set d_attribut
9395 eval $setvar
9396 $rm -f attrib*
9397
9398 : see if bcmp exists
9399 set bcmp d_bcmp
9400 eval $inlibc
9401
9402 : see if bcopy exists
9403 set bcopy d_bcopy
9404 eval $inlibc
9405
9406 : see if this is a unistd.h system
9407 set unistd.h i_unistd
9408 eval $inhdr
9409
9410 : see if getpgrp exists
9411 set getpgrp d_getpgrp
9412 eval $inlibc
9413
9414 case "$d_getpgrp" in
9415 "$define")
9416         echo " "
9417         echo "Checking to see which flavor of getpgrp is in use..."
9418         $cat >try.c <<EOP
9419 #$i_unistd I_UNISTD
9420 #include <sys/types.h>
9421 #ifdef I_UNISTD
9422 #  include <unistd.h>
9423 #endif
9424 int main()
9425 {
9426         if (getuid() == 0) {
9427                 printf("(I see you are running Configure as super-user...)\n");
9428                 setuid(1);
9429         }
9430 #ifdef TRY_BSD_PGRP
9431         if (getpgrp(1) == 0)
9432                 exit(0);
9433 #else
9434         if (getpgrp() > 0)
9435                 exit(0);
9436 #endif
9437         exit(1);
9438 }
9439 EOP
9440         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9441                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9442                 val="$define"
9443         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9444                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9445                 val="$undef"
9446         else
9447                 echo "I can't seem to compile and run the test program."
9448                 if ./usg; then
9449                         xxx="a USG one, i.e. you use getpgrp()."
9450                 else
9451                         # SVR4 systems can appear rather BSD-ish.
9452                         case "$i_unistd" in
9453                         $undef)
9454                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9455                                 val="$define"
9456                                 ;;
9457                         $define)
9458                                 xxx="probably a USG one, i.e. you use getpgrp()."
9459                                 val="$undef"
9460                                 ;;
9461                         esac
9462                 fi
9463                 echo "Assuming your getpgrp is $xxx" >&4
9464         fi
9465         ;;
9466 *) val="$undef";;
9467 esac
9468 set d_bsdgetpgrp
9469 eval $setvar
9470 $rm -f try try.*
9471
9472 : see if setpgrp exists
9473 set setpgrp d_setpgrp
9474 eval $inlibc
9475
9476 case "$d_setpgrp" in
9477 "$define")
9478         echo " "
9479         echo "Checking to see which flavor of setpgrp is in use..."
9480         $cat >try.c <<EOP
9481 #$i_unistd I_UNISTD
9482 #include <sys/types.h>
9483 #ifdef I_UNISTD
9484 #  include <unistd.h>
9485 #endif
9486 int main()
9487 {
9488         if (getuid() == 0) {
9489                 printf("(I see you are running Configure as super-user...)\n");
9490                 setuid(1);
9491         }
9492 #ifdef TRY_BSD_PGRP
9493         if (-1 == setpgrp(1, 1))
9494                 exit(0);
9495 #else
9496         if (setpgrp() != -1)
9497                 exit(0);
9498 #endif
9499         exit(1);
9500 }
9501 EOP
9502         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9503                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
9504                 val="$define"
9505         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9506                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
9507                 val="$undef"
9508         else
9509                 echo "(I can't seem to compile and run the test program.)"
9510                 if ./usg; then
9511                         xxx="a USG one, i.e. you use setpgrp()."
9512                 else
9513                         # SVR4 systems can appear rather BSD-ish.
9514                         case "$i_unistd" in
9515                         $undef)
9516                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
9517                                 val="$define"
9518                                 ;;
9519                         $define)
9520                                 xxx="probably a USG one, i.e. you use setpgrp()."
9521                                 val="$undef"
9522                                 ;;
9523                         esac
9524                 fi
9525                 echo "Assuming your setpgrp is $xxx" >&4
9526         fi
9527         ;;
9528 *) val="$undef";;
9529 esac
9530 set d_bsdsetpgrp
9531 eval $setvar
9532 $rm -f try try.*
9533 : see if bzero exists
9534 set bzero d_bzero
9535 eval $inlibc
9536
9537 : see if signal is declared as pointer to function returning int or void
9538 echo " "
9539 xxx=`./findhdr signal.h`
9540 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
9541 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
9542         echo "You have int (*signal())() instead of void." >&4
9543         val="$undef"
9544 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
9545         echo "You have void (*signal())()." >&4
9546         val="$define"
9547 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
9548         echo "You have int (*signal())() instead of void." >&4
9549         val="$undef"
9550 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
9551         echo "You have void (*signal())()." >&4
9552         val="$define"
9553 else
9554         case "$d_voidsig" in
9555         '')
9556         echo "I can't determine whether signal handler returns void or int..." >&4
9557                 dflt=void
9558                 rp="What type does your signal handler return?"
9559                 . ./myread
9560                 case "$ans" in
9561                 v*) val="$define";;
9562                 *) val="$undef";;
9563                 esac;;
9564         "$define")
9565                 echo "As you already told me, signal handler returns void." >&4
9566                 val="$define"
9567                 ;;
9568         *)      echo "As you already told me, signal handler returns int." >&4
9569                 val="$undef"
9570                 ;;
9571         esac
9572 fi
9573 set d_voidsig
9574 eval $setvar
9575 case "$d_voidsig" in
9576 "$define") signal_t="void";;
9577 *) signal_t="int";;
9578 esac
9579 $rm -f $$.tmp
9580
9581 : check for ability to cast large floats to 32-bit ints.
9582 echo " "
9583 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
9584 if $test "$intsize" -ge 4; then
9585         xxx=int
9586 else
9587         xxx=long
9588 fi
9589 $cat >try.c <<EOCP
9590 #include <stdio.h>
9591 #include <sys/types.h>
9592 #include <signal.h>
9593 $signal_t blech(s) int s; { exit(3); }
9594 int main()
9595 {
9596         $xxx i32;
9597         double f, g;
9598         int result = 0;
9599         char str[16];
9600         signal(SIGFPE, blech);
9601
9602         /* Don't let compiler optimize the test away.  Store the number 
9603            in a writable string for gcc to pass to sscanf under HP/UX.
9604         */
9605         sprintf(str, "2147483647");
9606         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
9607         g = 10 * f;
9608         i32  = ($xxx) g;
9609
9610         /* x86 processors will probably give 0x8000 0000, which is a
9611        sign change.  We don't want that.  We want to mimic SPARC
9612            behavior here, which is to preserve the sign and give
9613            back 0x7fff ffff.
9614         */
9615         if (i32 != ($xxx) f)
9616                 result |= 1;
9617         exit(result);
9618 }
9619 EOCP
9620 set try
9621 if eval $compile_ok; then
9622         $run ./try
9623         yyy=$?
9624 else
9625         echo "(I can't seem to compile the test program--assuming it can't)"
9626         yyy=1
9627 fi
9628 case "$yyy" in
9629 0)      val="$define"
9630         echo "Yup, it can."
9631         ;;
9632 *)      val="$undef"
9633         echo "Nope, it can't."
9634         ;;
9635 esac
9636 set d_casti32
9637 eval $setvar
9638 $rm -f try try.*
9639
9640 : check for ability to cast negative floats to unsigned
9641 echo " "
9642 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
9643 $cat >try.c <<EOCP
9644 #include <stdio.h>
9645 #include <sys/types.h>
9646 #include <signal.h>
9647 $signal_t blech(s) int s; { exit(7); }
9648 $signal_t blech_in_list(s) int s; { exit(4); }
9649 unsigned long dummy_long(p) unsigned long p; { return p; }
9650 unsigned int dummy_int(p) unsigned int p; { return p; }
9651 unsigned short dummy_short(p) unsigned short p; { return p; }
9652 int main()
9653 {
9654         double f;
9655         unsigned long along;
9656         unsigned int aint;
9657         unsigned short ashort;
9658         int result = 0;
9659         char str[16];
9660         
9661         /* Frustrate gcc-2.7.2's optimizer which failed this test with
9662            a direct f = -123. assignment.  gcc-2.8.0 reportedly
9663            optimized the whole file away
9664         */
9665         /* Store the number in a writable string for gcc to pass to 
9666            sscanf under HP/UX.
9667         */
9668         sprintf(str, "-123");
9669         sscanf(str, "%lf", &f);  /* f = -123.; */
9670
9671         signal(SIGFPE, blech);
9672         along = (unsigned long)f;
9673         aint = (unsigned int)f;
9674         ashort = (unsigned short)f;
9675         if (along != (unsigned long)-123)
9676                 result |= 1;
9677         if (aint != (unsigned int)-123)
9678                 result |= 1;
9679         if (ashort != (unsigned short)-123)
9680                 result |= 1;
9681         sprintf(str, "1073741824.");
9682         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
9683         f = f + f;
9684         along = 0;
9685         along = (unsigned long)f;
9686         if (along != 0x80000000)
9687                 result |= 2;
9688         f -= 1.;
9689         along = 0;
9690         along = (unsigned long)f;
9691         if (along != 0x7fffffff)
9692                 result |= 1;
9693         f += 2.;
9694         along = 0;
9695         along = (unsigned long)f;
9696         if (along != 0x80000001)
9697                 result |= 2;
9698         if (result)
9699                 exit(result);
9700         signal(SIGFPE, blech_in_list);
9701         sprintf(str, "123.");
9702         sscanf(str, "%lf", &f);  /* f = 123.; */
9703         along = dummy_long((unsigned long)f);
9704         aint = dummy_int((unsigned int)f);
9705         ashort = dummy_short((unsigned short)f);
9706         if (along != (unsigned long)123)
9707                 result |= 4;
9708         if (aint != (unsigned int)123)
9709                 result |= 4;
9710         if (ashort != (unsigned short)123)
9711                 result |= 4;
9712         exit(result);
9713
9714 }
9715 EOCP
9716 set try
9717 if eval $compile_ok; then
9718         $run ./try
9719         castflags=$?
9720 else
9721         echo "(I can't seem to compile the test program--assuming it can't)"
9722         castflags=7
9723 fi
9724 case "$castflags" in
9725 0)      val="$define"
9726         echo "Yup, it can."
9727         ;;
9728 *)      val="$undef"
9729         echo "Nope, it can't."
9730         ;;
9731 esac
9732 set d_castneg
9733 eval $setvar
9734 $rm -f try.*
9735
9736 : see if vprintf exists
9737 echo " "
9738 if set vprintf val -f d_vprintf; eval $csym; $val; then
9739         echo 'vprintf() found.' >&4
9740         val="$define"
9741         $cat >try.c <<'EOF'
9742 #include <varargs.h>
9743
9744 int main() { xxx("foo"); }
9745
9746 xxx(va_alist)
9747 va_dcl
9748 {
9749         va_list args;
9750         char buf[10];
9751
9752         va_start(args);
9753         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
9754 }
9755 EOF
9756         set try
9757         if eval $compile && $run ./try; then
9758                 echo "Your vsprintf() returns (int)." >&4
9759                 val2="$undef"
9760         else
9761                 echo "Your vsprintf() returns (char*)." >&4
9762                 val2="$define"
9763         fi
9764 else
9765         echo 'vprintf() NOT found.' >&4
9766                 val="$undef"
9767                 val2="$undef"
9768 fi
9769 $rm -f try try.*
9770 set d_vprintf
9771 eval $setvar
9772 val=$val2
9773 set d_charvspr
9774 eval $setvar
9775
9776 : see if chown exists
9777 set chown d_chown
9778 eval $inlibc
9779
9780 : see if chroot exists
9781 set chroot d_chroot
9782 eval $inlibc
9783
9784 : see if chsize exists
9785 set chsize d_chsize
9786 eval $inlibc
9787
9788 : see if class exists
9789 set class d_class
9790 eval $inlibc
9791
9792 hasstruct='varname=$1; struct=$2; shift; shift;
9793 while $test $# -ge 2; do
9794         case "$1" in
9795         $define) echo "#include <$2>";;
9796         esac ;
9797     shift 2;
9798 done > try.c;
9799 echo "int main () { struct $struct foo; }" >> try.c;
9800 set try;
9801 if eval $compile; then
9802         val="$define";
9803 else
9804         val="$undef";
9805 fi;
9806 set $varname;
9807 eval $setvar;
9808 $rm -f try.c try.o'
9809
9810 socketlib=''
9811 sockethdr=''
9812 : see whether socket exists
9813 echo " "
9814 $echo $n "Hmm... $c" >&4
9815 if set socket val -f d_socket; eval $csym; $val; then
9816         echo "Looks like you have Berkeley networking support." >&4
9817         d_socket="$define"
9818         if set setsockopt val -f; eval $csym; $val; then
9819                 d_oldsock="$undef"
9820         else
9821                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
9822                 d_oldsock="$define"
9823         fi
9824 else
9825         if $contains socklib libc.list >/dev/null 2>&1; then
9826                 echo "Looks like you have Berkeley networking support." >&4
9827                 d_socket="$define"
9828                 : we will have to assume that it supports the 4.2 BSD interface
9829                 d_oldsock="$undef"
9830         else
9831                 echo "You don't have Berkeley networking in libc$_a..." >&4
9832                 if test "X$d_socket" = "X$define"; then
9833                    echo "...but you seem to believe that you have sockets." >&4
9834                 else
9835                         for net in net socket
9836                         do
9837                                 if test -f /usr/lib/lib$net$_a; then
9838                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
9839                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
9840                                         if $contains socket libc.list >/dev/null 2>&1; then
9841                                                 d_socket="$define"
9842                                                 socketlib="-l$net"
9843                                                 case "$net" in
9844                                                 net)
9845                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
9846                                                         sockethdr="-I/usr/netinclude"
9847                                                         ;;
9848                                                 esac
9849                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
9850                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
9851                                                         d_oldsock="$undef"
9852                                                 else
9853                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
9854                                                         d_oldsock="$define"
9855                                                 fi
9856                                                 break
9857                                         fi
9858                                 fi
9859                         done
9860                         if test "X$d_socket" != "X$define"; then
9861                            echo "or anywhere else I see." >&4
9862                            d_socket="$undef"
9863                            d_oldsock="$undef"
9864                         fi
9865                 fi
9866         fi
9867 fi
9868
9869 : see if socketpair exists
9870 set socketpair d_sockpair
9871 eval $inlibc
9872
9873
9874 echo " "
9875 echo "Checking the availability of certain socket constants..." >&4
9876 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
9877         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
9878         $cat >try.c <<EOF
9879 #include <sys/types.h>
9880 #include <sys/socket.h>
9881 int main() {
9882     int i = $ENUM;
9883 }
9884 EOF
9885         val="$undef"
9886         set try; if eval $compile; then
9887                 val="$define"
9888         fi
9889         set d_${enum}; eval $setvar
9890         $rm -f try.c try
9891 done
9892
9893 : see if this is a sys/uio.h system
9894 set sys/uio.h i_sysuio
9895 eval $inhdr
9896
9897
9898 echo " "
9899 echo "Checking to see if your system supports struct cmsghdr..." >&4
9900 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
9901 eval $hasstruct
9902 case "$d_cmsghdr_s" in
9903 "$define")      echo "Yes, it does."   ;;
9904 *)              echo "No, it doesn't." ;;
9905 esac
9906
9907
9908 : check for const keyword
9909 echo " "
9910 echo 'Checking to see if your C compiler knows about "const"...' >&4
9911 $cat >const.c <<'EOCP'
9912 typedef struct spug { int drokk; } spug;
9913 int main()
9914 {
9915         const char *foo;
9916         const spug y;
9917 }
9918 EOCP
9919 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
9920         val="$define"
9921         echo "Yup, it does."
9922 else
9923         val="$undef"
9924         echo "Nope, it doesn't."
9925 fi
9926 set d_const
9927 eval $setvar
9928
9929 : see if crypt exists
9930 echo " "
9931 set crypt d_crypt
9932 eval $inlibc
9933 case "$d_crypt" in
9934 $define) cryptlib='' ;;
9935 *)      if set crypt val -f d_crypt; eval $csym; $val; then
9936                 echo 'crypt() found.' >&4
9937                 val="$define"
9938                 cryptlib=''
9939         else
9940                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
9941                 if $test -z "$cryptlib"; then
9942                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
9943                 else
9944                         cryptlib=-lcrypt
9945                 fi
9946                 if $test -z "$cryptlib"; then
9947                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
9948                 else
9949                         cryptlib=-lcrypt
9950                 fi
9951                 if $test -z "$cryptlib"; then
9952                         cryptlib=`./loc libcrypt$_a "" $libpth`
9953                 else
9954                         cryptlib=-lcrypt
9955                 fi
9956                 if $test -z "$cryptlib"; then
9957                         echo 'crypt() NOT found.' >&4
9958                         val="$undef"
9959                 else
9960                         val="$define"
9961                 fi
9962         fi
9963         set d_crypt
9964         eval $setvar
9965         ;;
9966 esac
9967
9968 : see if this is a crypt.h system
9969 set crypt.h i_crypt
9970 eval $inhdr
9971
9972 : see if crypt_r exists
9973 set crypt_r d_crypt_r
9974 eval $inlibc
9975 case "$d_crypt_r" in
9976 "$define")
9977         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
9978         case "crypt" in
9979         time)
9980                 hdrs="$hdrs $i_systime sys/time.h"
9981                 ;;
9982         esac
9983         case "$d_crypt_r_proto:$usethreads" in
9984         ":define")      d_crypt_r_proto=define
9985                 set d_crypt_r_proto crypt_r $hdrs
9986                 eval $hasproto ;;
9987         *)      ;;
9988         esac
9989         case "$d_crypt_r_proto" in
9990         define)
9991         case "$crypt_r_proto" in
9992         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
9993         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
9994         esac
9995         case "$crypt_r_proto" in
9996         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
9997         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
9998         esac
9999         case "$crypt_r_proto" in
10000         ''|0)   d_crypt_r=undef
10001                 crypt_r_proto=0
10002                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
10003         * )     case "$crypt_r_proto" in
10004                 REENTRANT_PROTO*) ;;
10005                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
10006                 esac
10007                 echo "Prototype: $try" ;;
10008         esac
10009         ;;
10010         *)      case "$usethreads" in
10011                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10012                 esac
10013                 d_crypt_r=undef
10014                 crypt_r_proto=0
10015                 ;;
10016         esac
10017         ;;
10018 *)      crypt_r_proto=0
10019         ;;
10020 esac
10021
10022 : get csh whereabouts
10023 case "$csh" in
10024 'csh') val="$undef" ;;
10025 *) val="$define" ;;
10026 esac
10027 set d_csh
10028 eval $setvar
10029 : Respect a hint or command line value for full_csh.
10030 case "$full_csh" in
10031 '') full_csh=$csh ;;
10032 esac
10033
10034 : see if ctermid_r exists
10035 set ctermid_r d_ctermid_r
10036 eval $inlibc
10037 case "$d_ctermid_r" in
10038 "$define")
10039         hdrs="$i_systypes sys/types.h define stdio.h "
10040         case "stdio" in
10041         time)
10042                 hdrs="$hdrs $i_systime sys/time.h"
10043                 ;;
10044         esac
10045         case "$d_ctermid_r_proto:$usethreads" in
10046         ":define")      d_ctermid_r_proto=define
10047                 set d_ctermid_r_proto ctermid_r $hdrs
10048                 eval $hasproto ;;
10049         *)      ;;
10050         esac
10051         case "$d_ctermid_r_proto" in
10052         define)
10053         case "$ctermid_r_proto" in
10054         ''|0) try='char* ctermid_r(char*);'
10055         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10056         esac
10057         case "$ctermid_r_proto" in
10058         ''|0)   d_ctermid_r=undef
10059                 ctermid_r_proto=0
10060                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10061         * )     case "$ctermid_r_proto" in
10062                 REENTRANT_PROTO*) ;;
10063                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10064                 esac
10065                 echo "Prototype: $try" ;;
10066         esac
10067         ;;
10068         *)      case "$usethreads" in
10069                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10070                 esac
10071                 d_ctermid_r=undef
10072                 ctermid_r_proto=0
10073                 ;;
10074         esac
10075         ;;
10076 *)      ctermid_r_proto=0
10077         ;;
10078 esac
10079
10080 : see if ctime_r exists
10081 set ctime_r d_ctime_r
10082 eval $inlibc
10083 case "$d_ctime_r" in
10084 "$define")
10085         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
10086         case "time" in
10087         time)
10088                 hdrs="$hdrs $i_systime sys/time.h"
10089                 ;;
10090         esac
10091         case "$d_ctime_r_proto:$usethreads" in
10092         ":define")      d_ctime_r_proto=define
10093                 set d_ctime_r_proto ctime_r $hdrs
10094                 eval $hasproto ;;
10095         *)      ;;
10096         esac
10097         case "$d_ctime_r_proto" in
10098         define)
10099         case "$ctime_r_proto" in
10100         ''|0) try='char* ctime_r(const time_t*, char*);'
10101         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10102         esac
10103         case "$ctime_r_proto" in
10104         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10105         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10106         esac
10107         case "$ctime_r_proto" in
10108         ''|0) try='int ctime_r(const time_t*, char*);'
10109         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10110         esac
10111         case "$ctime_r_proto" in
10112         ''|0) try='int ctime_r(const time_t*, char*, int);'
10113         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10114         esac
10115         case "$ctime_r_proto" in
10116         ''|0)   d_ctime_r=undef
10117                 ctime_r_proto=0
10118                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10119         * )     case "$ctime_r_proto" in
10120                 REENTRANT_PROTO*) ;;
10121                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10122                 esac
10123                 echo "Prototype: $try" ;;
10124         esac
10125         ;;
10126         *)      case "$usethreads" in
10127                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10128                 esac
10129                 d_ctime_r=undef
10130                 ctime_r_proto=0
10131                 ;;
10132         esac
10133         ;;
10134 *)      ctime_r_proto=0
10135         ;;
10136 esac
10137
10138 : see if cuserid exists
10139 set cuserid d_cuserid
10140 eval $inlibc
10141
10142 : see if this is a limits.h system
10143 set limits.h i_limits
10144 eval $inhdr
10145
10146 : see if this is a float.h system
10147 set float.h i_float
10148 eval $inhdr
10149
10150 : See if number of significant digits in a double precision number is known
10151 echo " "
10152 $cat >dbl_dig.c <<EOM
10153 #$i_limits I_LIMITS
10154 #$i_float I_FLOAT
10155 #ifdef I_LIMITS
10156 #include <limits.h>
10157 #endif
10158 #ifdef I_FLOAT
10159 #include <float.h>
10160 #endif
10161 #ifdef DBL_DIG
10162 printf("Contains DBL_DIG");
10163 #endif
10164 EOM
10165 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10166 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10167         echo "DBL_DIG found." >&4
10168         val="$define"
10169 else
10170         echo "DBL_DIG NOT found." >&4
10171         val="$undef"
10172 fi
10173 $rm -f dbl_dig.?
10174 set d_dbl_dig
10175 eval $setvar
10176
10177 : see if dbm.h is available
10178 : see if dbmclose exists
10179 set dbmclose d_dbmclose
10180 eval $inlibc
10181
10182 case "$d_dbmclose" in
10183 $define)
10184         set dbm.h i_dbm
10185         eval $inhdr
10186         case "$i_dbm" in
10187         $define)
10188                 val="$undef"
10189                 set i_rpcsvcdbm
10190                 eval $setvar
10191                 ;;
10192         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10193                 eval $inhdr
10194                 ;;
10195         esac
10196         ;;
10197 *)      echo "We won't be including <dbm.h>"
10198         val="$undef"
10199         set i_dbm
10200         eval $setvar
10201         val="$undef"
10202         set i_rpcsvcdbm
10203         eval $setvar
10204         ;;
10205 esac
10206
10207 : see if prototype for dbminit is available
10208 echo " "
10209 set d_dbminitproto dbminit $i_dbm dbm.h
10210 eval $hasproto
10211
10212 : see if difftime exists
10213 set difftime d_difftime
10214 eval $inlibc
10215
10216 : see if this is a dirent system
10217 echo " "
10218 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10219         val="$define"
10220         echo "<dirent.h> found." >&4
10221 else
10222         val="$undef"
10223         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10224                 echo "<sys/dir.h> found." >&4
10225                 echo " "
10226         else
10227                 xinc=`./findhdr sys/ndir.h`
10228         fi
10229         echo "<dirent.h> NOT found." >&4
10230 fi
10231 set i_dirent
10232 eval $setvar
10233
10234 : Look for type of directory structure.
10235 echo " "
10236 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10237
10238 case "$direntrytype" in
10239 ''|' ')
10240         case "$i_dirent" in
10241         $define) guess1='struct dirent' ;;
10242         *) guess1='struct direct'  ;;
10243         esac
10244         ;;
10245 *)      guess1="$direntrytype"
10246         ;;
10247 esac
10248
10249 case "$guess1" in
10250 'struct dirent') guess2='struct direct' ;;
10251 *) guess2='struct dirent' ;;
10252 esac
10253                 
10254 if $contains "$guess1" try.c >/dev/null 2>&1; then
10255         direntrytype="$guess1"
10256         echo "Your directory entries are $direntrytype." >&4
10257 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10258         direntrytype="$guess2"
10259         echo "Your directory entries seem to be $direntrytype." >&4
10260 else
10261         echo "I don't recognize your system's directory entries." >&4
10262         rp="What type is used for directory entries on this system?"
10263         dflt="$guess1"
10264         . ./myread
10265         direntrytype="$ans"
10266 fi
10267 $rm -f try.c
10268
10269
10270 : see if the directory entry stores field length
10271 echo " "
10272 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10273 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10274         echo "Good, your directory entry keeps length information in d_namlen." >&4
10275         val="$define"
10276 else
10277         echo "Your directory entry does not know about the d_namlen field." >&4
10278         val="$undef"
10279 fi
10280 set d_dirnamlen
10281 eval $setvar
10282 $rm -f try.c
10283
10284 : see if this is an sysdir system
10285 set sys/dir.h i_sysdir
10286 eval $inhdr
10287
10288 : see if this is an sysndir system
10289 set sys/ndir.h i_sysndir
10290 eval $inhdr
10291
10292 : Look for dirfd
10293 echo " "
10294 $cat >dirfd.c <<EOM
10295 #include <stdio.h>
10296 #$i_dirent I_DIRENT             /**/
10297 #$i_sysdir I_SYS_DIR            /**/
10298 #$i_sysndir I_SYS_NDIR          /**/
10299 #$i_systypes I_SYS_TYPES        /**/
10300 #if defined(I_SYS_TYPES)
10301 #include <sys/types.h>
10302 #endif
10303 #if defined(I_DIRENT)
10304 #include <dirent.h>
10305 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10306 #include <sys/dir.h>
10307 #endif
10308 #else
10309 #ifdef I_SYS_NDIR
10310 #include <sys/ndir.h>
10311 #else
10312 #ifdef I_SYS_DIR
10313 #ifdef hp9000s500
10314 #include <ndir.h>       /* may be wrong in the future */
10315 #else
10316 #include <sys/dir.h>
10317 #endif
10318 #endif
10319 #endif
10320 #endif 
10321 int main() {
10322         DIR *dirp = opendir(".");
10323         if (dirfd(dirp) >= 0)
10324                 exit(0);
10325         else
10326                 exit(1);
10327 }
10328 EOM
10329 set dirfd
10330 if eval $compile; then
10331         val="$define"
10332 fi
10333 case "$val" in
10334 $define)        echo "dirfd() found." >&4       ;;
10335 *)              echo "dirfd() NOT found." >&4   ;;
10336 esac
10337 set d_dirfd
10338 eval $setvar
10339 $rm -f dirfd*
10340
10341 : see if dlerror exists
10342 xxx_runnm="$runnm"
10343 runnm=false
10344 set dlerror d_dlerror
10345 eval $inlibc
10346 runnm="$xxx_runnm"
10347
10348 : see if dlfcn is available
10349 set dlfcn.h i_dlfcn
10350 eval $inhdr
10351
10352 case "$usedl" in
10353 $define|y|true)
10354         $cat << EOM
10355
10356 On a few systems, the dynamically loaded modules that perl generates and uses
10357 will need a different extension than shared libs. The default will probably
10358 be appropriate.
10359
10360 EOM
10361         case "$dlext" in
10362         '')     dflt="$so" ;;
10363         *)      dflt="$dlext" ;;
10364         esac
10365         rp='What is the extension of dynamically loaded modules'
10366         . ./myread
10367         dlext="$ans"
10368         ;;
10369 *)
10370         dlext="none"
10371         ;;
10372 esac
10373
10374 : Check if dlsym need a leading underscore
10375 echo " "
10376 val="$undef"
10377
10378 case "$dlsrc" in
10379 dl_dlopen.xs)
10380         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10381         $cat >dyna.c <<'EOM'
10382 fred () { }
10383 EOM
10384
10385 $cat >fred.c<<EOM
10386
10387 #include <stdio.h>
10388 #$i_dlfcn I_DLFCN
10389 #ifdef I_DLFCN
10390 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10391 #else
10392 #include <sys/types.h>
10393 #include <nlist.h>
10394 #include <link.h>
10395 #endif
10396
10397 extern int fred() ;
10398
10399 int main()
10400 {
10401     void * handle ;
10402     void * symbol ;
10403 #ifndef RTLD_LAZY
10404     int mode = 1 ;
10405 #else
10406     int mode = RTLD_LAZY ;
10407 #endif
10408     handle = dlopen("./dyna.$dlext", mode) ;
10409     if (handle == NULL) {
10410         printf ("1\n") ;
10411         fflush (stdout) ;
10412         exit(0);
10413     }
10414     symbol = dlsym(handle, "fred") ;
10415     if (symbol == NULL) {
10416         /* try putting a leading underscore */
10417         symbol = dlsym(handle, "_fred") ;
10418         if (symbol == NULL) {
10419             printf ("2\n") ;
10420             fflush (stdout) ;
10421             exit(0);
10422         }
10423         printf ("3\n") ;
10424     }
10425     else
10426         printf ("4\n") ;
10427     fflush (stdout) ;
10428     exit(0);
10429 }
10430 EOM
10431         : Call the object file tmp-dyna.o in case dlext=o.
10432         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10433                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10434                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10435                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10436                 xxx=`$run ./fred`
10437                 case $xxx in
10438                 1)      echo "Test program failed using dlopen." >&4
10439                         echo "Perhaps you should not use dynamic loading." >&4;;
10440                 2)      echo "Test program failed using dlsym." >&4
10441                         echo "Perhaps you should not use dynamic loading." >&4;;
10442                 3)      echo "dlsym needs a leading underscore" >&4
10443                         val="$define" ;;
10444                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10445                 esac
10446         else
10447                 echo "I can't compile and run the test program." >&4
10448                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10449         fi
10450         ;;
10451 esac
10452                 
10453 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10454
10455 set d_dlsymun
10456 eval $setvar
10457
10458 : see if drand48_r exists
10459 set drand48_r d_drand48_r
10460 eval $inlibc
10461 case "$d_drand48_r" in
10462 "$define")
10463         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10464         case "stdlib" in
10465         time)
10466                 hdrs="$hdrs $i_systime sys/time.h"
10467                 ;;
10468         esac
10469         case "$d_drand48_r_proto:$usethreads" in
10470         ":define")      d_drand48_r_proto=define
10471                 set d_drand48_r_proto drand48_r $hdrs
10472                 eval $hasproto ;;
10473         *)      ;;
10474         esac
10475         case "$d_drand48_r_proto" in
10476         define)
10477         case "$drand48_r_proto" in
10478         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10479         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10480         esac
10481         case "$drand48_r_proto" in
10482         ''|0)   d_drand48_r=undef
10483                 drand48_r_proto=0
10484                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10485         * )     case "$drand48_r_proto" in
10486                 REENTRANT_PROTO*) ;;
10487                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10488                 esac
10489                 echo "Prototype: $try" ;;
10490         esac
10491         ;;
10492         *)      case "$usethreads" in
10493                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10494                 esac
10495                 d_drand48_r=undef
10496                 drand48_r_proto=0
10497                 ;;
10498         esac
10499         ;;
10500 *)      drand48_r_proto=0
10501         ;;
10502 esac
10503
10504 : see if prototype for drand48 is available
10505 echo " "
10506 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
10507 eval $hasproto
10508
10509 : see if dup2 exists
10510 set dup2 d_dup2
10511 eval $inlibc
10512
10513 : see if eaccess exists
10514 set eaccess d_eaccess
10515 eval $inlibc
10516
10517 : see if endgrent exists
10518 set endgrent d_endgrent
10519 eval $inlibc
10520
10521 : see if this is an grp system
10522 set grp.h i_grp
10523 eval $inhdr
10524
10525 case "$i_grp" in
10526 $define)
10527         xxx=`./findhdr grp.h`
10528         $cppstdin $cppflags $cppminus < $xxx >$$.h
10529
10530         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
10531                 val="$define"
10532         else
10533                 val="$undef"
10534         fi
10535         set d_grpasswd
10536         eval $setvar
10537
10538         $rm -f $$.h
10539         ;;
10540 *)
10541         val="$undef";
10542         set d_grpasswd; eval $setvar
10543         ;;
10544 esac
10545
10546 : see if endgrent_r exists
10547 set endgrent_r d_endgrent_r
10548 eval $inlibc
10549 case "$d_endgrent_r" in
10550 "$define")
10551         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
10552         case "grp" in
10553         time)
10554                 hdrs="$hdrs $i_systime sys/time.h"
10555                 ;;
10556         esac
10557         case "$d_endgrent_r_proto:$usethreads" in
10558         ":define")      d_endgrent_r_proto=define
10559                 set d_endgrent_r_proto endgrent_r $hdrs
10560                 eval $hasproto ;;
10561         *)      ;;
10562         esac
10563         case "$d_endgrent_r_proto" in
10564         define)
10565         case "$endgrent_r_proto" in
10566         ''|0) try='int endgrent_r(FILE**);'
10567         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
10568         esac
10569         case "$endgrent_r_proto" in
10570         ''|0) try='void endgrent_r(FILE**);'
10571         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
10572         esac
10573         case "$endgrent_r_proto" in
10574         ''|0)   d_endgrent_r=undef
10575                 endgrent_r_proto=0
10576                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
10577         * )     case "$endgrent_r_proto" in
10578                 REENTRANT_PROTO*) ;;
10579                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
10580                 esac
10581                 echo "Prototype: $try" ;;
10582         esac
10583         ;;
10584         *)      case "$usethreads" in
10585                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
10586                 esac
10587                 d_endgrent_r=undef
10588                 endgrent_r_proto=0
10589                 ;;
10590         esac
10591         ;;
10592 *)      endgrent_r_proto=0
10593         ;;
10594 esac
10595
10596 : see if endhostent exists
10597 set endhostent d_endhent
10598 eval $inlibc
10599
10600 : see if this is a netdb.h system
10601 set netdb.h i_netdb
10602 eval $inhdr
10603
10604 : see if endhostent_r exists
10605 set endhostent_r d_endhostent_r
10606 eval $inlibc
10607 case "$d_endhostent_r" in
10608 "$define")
10609         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10610         case "netdb" in
10611         time)
10612                 hdrs="$hdrs $i_systime sys/time.h"
10613                 ;;
10614         esac
10615         case "$d_endhostent_r_proto:$usethreads" in
10616         ":define")      d_endhostent_r_proto=define
10617                 set d_endhostent_r_proto endhostent_r $hdrs
10618                 eval $hasproto ;;
10619         *)      ;;
10620         esac
10621         case "$d_endhostent_r_proto" in
10622         define)
10623         case "$endhostent_r_proto" in
10624         ''|0) try='int endhostent_r(struct hostent_data*);'
10625         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
10626         esac
10627         case "$endhostent_r_proto" in
10628         ''|0) try='void endhostent_r(struct hostent_data*);'
10629         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
10630         esac
10631         case "$endhostent_r_proto" in
10632         ''|0)   d_endhostent_r=undef
10633                 endhostent_r_proto=0
10634                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
10635         * )     case "$endhostent_r_proto" in
10636                 REENTRANT_PROTO*) ;;
10637                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
10638                 esac
10639                 echo "Prototype: $try" ;;
10640         esac
10641         ;;
10642         *)      case "$usethreads" in
10643                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
10644                 esac
10645                 d_endhostent_r=undef
10646                 endhostent_r_proto=0
10647                 ;;
10648         esac
10649         ;;
10650 *)      endhostent_r_proto=0
10651         ;;
10652 esac
10653
10654 : see if endnetent exists
10655 set endnetent d_endnent
10656 eval $inlibc
10657
10658 : see if endnetent_r exists
10659 set endnetent_r d_endnetent_r
10660 eval $inlibc
10661 case "$d_endnetent_r" in
10662 "$define")
10663         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10664         case "netdb" in
10665         time)
10666                 hdrs="$hdrs $i_systime sys/time.h"
10667                 ;;
10668         esac
10669         case "$d_endnetent_r_proto:$usethreads" in
10670         ":define")      d_endnetent_r_proto=define
10671                 set d_endnetent_r_proto endnetent_r $hdrs
10672                 eval $hasproto ;;
10673         *)      ;;
10674         esac
10675         case "$d_endnetent_r_proto" in
10676         define)
10677         case "$endnetent_r_proto" in
10678         ''|0) try='int endnetent_r(struct netent_data*);'
10679         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
10680         esac
10681         case "$endnetent_r_proto" in
10682         ''|0) try='void endnetent_r(struct netent_data*);'
10683         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
10684         esac
10685         case "$endnetent_r_proto" in
10686         ''|0)   d_endnetent_r=undef
10687                 endnetent_r_proto=0
10688                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
10689         * )     case "$endnetent_r_proto" in
10690                 REENTRANT_PROTO*) ;;
10691                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
10692                 esac
10693                 echo "Prototype: $try" ;;
10694         esac
10695         ;;
10696         *)      case "$usethreads" in
10697                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
10698                 esac
10699                 d_endnetent_r=undef
10700                 endnetent_r_proto=0
10701                 ;;
10702         esac
10703         ;;
10704 *)      endnetent_r_proto=0
10705         ;;
10706 esac
10707
10708 : see if endprotoent exists
10709 set endprotoent d_endpent
10710 eval $inlibc
10711
10712 : see if endprotoent_r exists
10713 set endprotoent_r d_endprotoent_r
10714 eval $inlibc
10715 case "$d_endprotoent_r" in
10716 "$define")
10717         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10718         case "netdb" in
10719         time)
10720                 hdrs="$hdrs $i_systime sys/time.h"
10721                 ;;
10722         esac
10723         case "$d_endprotoent_r_proto:$usethreads" in
10724         ":define")      d_endprotoent_r_proto=define
10725                 set d_endprotoent_r_proto endprotoent_r $hdrs
10726                 eval $hasproto ;;
10727         *)      ;;
10728         esac
10729         case "$d_endprotoent_r_proto" in
10730         define)
10731         case "$endprotoent_r_proto" in
10732         ''|0) try='int endprotoent_r(struct protoent_data*);'
10733         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
10734         esac
10735         case "$endprotoent_r_proto" in
10736         ''|0) try='void endprotoent_r(struct protoent_data*);'
10737         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
10738         esac
10739         case "$endprotoent_r_proto" in
10740         ''|0)   d_endprotoent_r=undef
10741                 endprotoent_r_proto=0
10742                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
10743         * )     case "$endprotoent_r_proto" in
10744                 REENTRANT_PROTO*) ;;
10745                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
10746                 esac
10747                 echo "Prototype: $try" ;;
10748         esac
10749         ;;
10750         *)      case "$usethreads" in
10751                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
10752                 esac
10753                 d_endprotoent_r=undef
10754                 endprotoent_r_proto=0
10755                 ;;
10756         esac
10757         ;;
10758 *)      endprotoent_r_proto=0
10759         ;;
10760 esac
10761
10762 : see if endpwent exists
10763 set endpwent d_endpwent
10764 eval $inlibc
10765
10766 : see if this is a pwd.h system
10767 set pwd.h i_pwd
10768 eval $inhdr
10769
10770 case "$i_pwd" in
10771 $define)
10772         xxx=`./findhdr pwd.h`
10773         $cppstdin $cppflags $cppminus < $xxx >$$.h
10774
10775         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
10776                 val="$define"
10777         else
10778                 val="$undef"
10779         fi
10780         set d_pwquota
10781         eval $setvar
10782
10783         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
10784                 val="$define"
10785         else
10786                 val="$undef"
10787         fi
10788         set d_pwage
10789         eval $setvar
10790
10791         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
10792                 val="$define"
10793         else
10794                 val="$undef"
10795         fi
10796         set d_pwchange
10797         eval $setvar
10798
10799         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
10800                 val="$define"
10801         else
10802                 val="$undef"
10803         fi
10804         set d_pwclass
10805         eval $setvar
10806
10807         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
10808                 val="$define"
10809         else
10810                 val="$undef"
10811         fi
10812         set d_pwexpire
10813         eval $setvar
10814
10815         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
10816                 val="$define"
10817         else
10818                 val="$undef"
10819         fi
10820         set d_pwcomment
10821         eval $setvar
10822
10823         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
10824                 val="$define"
10825         else
10826                 val="$undef"
10827         fi
10828         set d_pwgecos
10829         eval $setvar
10830
10831         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
10832                 val="$define"
10833         else
10834                 val="$undef"
10835         fi
10836         set d_pwpasswd
10837         eval $setvar
10838
10839         $rm -f $$.h
10840         ;;
10841 *)
10842         val="$undef"; 
10843         set d_pwquota; eval $setvar
10844         set d_pwage; eval $setvar
10845         set d_pwchange; eval $setvar
10846         set d_pwclass; eval $setvar
10847         set d_pwexpire; eval $setvar
10848         set d_pwcomment; eval $setvar
10849         set d_pwgecos; eval $setvar
10850         set d_pwpasswd; eval $setvar
10851         ;;
10852 esac
10853
10854 : see if endpwent_r exists
10855 set endpwent_r d_endpwent_r
10856 eval $inlibc
10857 case "$d_endpwent_r" in
10858 "$define")
10859         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
10860         case "pwd" in
10861         time)
10862                 hdrs="$hdrs $i_systime sys/time.h"
10863                 ;;
10864         esac
10865         case "$d_endpwent_r_proto:$usethreads" in
10866         ":define")      d_endpwent_r_proto=define
10867                 set d_endpwent_r_proto endpwent_r $hdrs
10868                 eval $hasproto ;;
10869         *)      ;;
10870         esac
10871         case "$d_endpwent_r_proto" in
10872         define)
10873         case "$endpwent_r_proto" in
10874         ''|0) try='int endpwent_r(FILE**);'
10875         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
10876         esac
10877         case "$endpwent_r_proto" in
10878         ''|0) try='void endpwent_r(FILE**);'
10879         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
10880         esac
10881         case "$endpwent_r_proto" in
10882         ''|0)   d_endpwent_r=undef
10883                 endpwent_r_proto=0
10884                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
10885         * )     case "$endpwent_r_proto" in
10886                 REENTRANT_PROTO*) ;;
10887                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
10888                 esac
10889                 echo "Prototype: $try" ;;
10890         esac
10891         ;;
10892         *)      case "$usethreads" in
10893                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
10894                 esac
10895                 d_endpwent_r=undef
10896                 endpwent_r_proto=0
10897                 ;;
10898         esac
10899         ;;
10900 *)      endpwent_r_proto=0
10901         ;;
10902 esac
10903
10904 : see if endservent exists
10905 set endservent d_endsent
10906 eval $inlibc
10907
10908 : see if endservent_r exists
10909 set endservent_r d_endservent_r
10910 eval $inlibc
10911 case "$d_endservent_r" in
10912 "$define")
10913         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10914         case "netdb" in
10915         time)
10916                 hdrs="$hdrs $i_systime sys/time.h"
10917                 ;;
10918         esac
10919         case "$d_endservent_r_proto:$usethreads" in
10920         ":define")      d_endservent_r_proto=define
10921                 set d_endservent_r_proto endservent_r $hdrs
10922                 eval $hasproto ;;
10923         *)      ;;
10924         esac
10925         case "$d_endservent_r_proto" in
10926         define)
10927         case "$endservent_r_proto" in
10928         ''|0) try='int endservent_r(struct servent_data*);'
10929         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
10930         esac
10931         case "$endservent_r_proto" in
10932         ''|0) try='void endservent_r(struct servent_data*);'
10933         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
10934         esac
10935         case "$endservent_r_proto" in
10936         ''|0)   d_endservent_r=undef
10937                 endservent_r_proto=0
10938                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
10939         * )     case "$endservent_r_proto" in
10940                 REENTRANT_PROTO*) ;;
10941                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
10942                 esac
10943                 echo "Prototype: $try" ;;
10944         esac
10945         ;;
10946         *)      case "$usethreads" in
10947                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
10948                 esac
10949                 d_endservent_r=undef
10950                 endservent_r_proto=0
10951                 ;;
10952         esac
10953         ;;
10954 *)      endservent_r_proto=0
10955         ;;
10956 esac
10957
10958 : Locate the flags for 'open()'
10959 echo " "
10960 $cat >try.c <<'EOCP'
10961 #include <sys/types.h>
10962 #ifdef I_FCNTL
10963 #include <fcntl.h>
10964 #endif
10965 #ifdef I_SYS_FILE
10966 #include <sys/file.h>
10967 #endif
10968 int main() {
10969         if(O_RDONLY);
10970 #ifdef O_TRUNC
10971         exit(0);
10972 #else
10973         exit(1);
10974 #endif
10975 }
10976 EOCP
10977 : check sys/file.h first to get FREAD on Sun
10978 if $test `./findhdr sys/file.h` && \
10979                 set try -DI_SYS_FILE && eval $compile; then
10980         h_sysfile=true;
10981         echo "<sys/file.h> defines the O_* constants..." >&4
10982         if $run ./try; then
10983                 echo "and you have the 3 argument form of open()." >&4
10984                 val="$define"
10985         else
10986                 echo "but not the 3 argument form of open().  Oh, well." >&4
10987                 val="$undef"
10988         fi
10989 elif $test `./findhdr fcntl.h` && \
10990                 set try -DI_FCNTL && eval $compile; then
10991         h_fcntl=true;
10992         echo "<fcntl.h> defines the O_* constants..." >&4
10993         if $run ./try; then
10994                 echo "and you have the 3 argument form of open()." >&4
10995                 val="$define"
10996         else
10997                 echo "but not the 3 argument form of open().  Oh, well." >&4
10998                 val="$undef"
10999         fi
11000 else
11001         val="$undef"
11002         echo "I can't find the O_* constant definitions!  You got problems." >&4
11003 fi
11004 set d_open3
11005 eval $setvar
11006 $rm -f try try.*
11007
11008 : see which of string.h or strings.h is needed
11009 echo " "
11010 strings=`./findhdr string.h`
11011 if $test "$strings" && $test -r "$strings"; then
11012         echo "Using <string.h> instead of <strings.h>." >&4
11013         val="$define"
11014 else
11015         val="$undef"
11016         strings=`./findhdr strings.h`
11017         if $test "$strings" && $test -r "$strings"; then
11018                 echo "Using <strings.h> instead of <string.h>." >&4
11019         else
11020                 echo "No string header found -- You'll surely have problems." >&4
11021         fi
11022 fi
11023 set i_string
11024 eval $setvar
11025 case "$i_string" in
11026 "$undef") strings=`./findhdr strings.h`;;
11027 *)        strings=`./findhdr string.h`;;
11028 esac
11029
11030 : see if this is a sys/file.h system
11031 val=''
11032 set sys/file.h val
11033 eval $inhdr
11034
11035 : do we need to include sys/file.h ?
11036 case "$val" in
11037 "$define")
11038         echo " "
11039         if $h_sysfile; then
11040                 val="$define"
11041                 echo "We'll be including <sys/file.h>." >&4
11042         else
11043                 val="$undef"
11044                 echo "We won't be including <sys/file.h>." >&4
11045         fi
11046         ;;
11047 *)
11048         h_sysfile=false
11049         ;;
11050 esac
11051 set i_sysfile
11052 eval $setvar
11053
11054 : see if fcntl.h is there
11055 val=''
11056 set fcntl.h val
11057 eval $inhdr
11058
11059 : see if we can include fcntl.h
11060 case "$val" in
11061 "$define")
11062         echo " "
11063         if $h_fcntl; then
11064                 val="$define"
11065                 echo "We'll be including <fcntl.h>." >&4
11066         else
11067                 val="$undef"
11068                 if $h_sysfile; then
11069         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11070                 else
11071                         echo "We won't be including <fcntl.h>." >&4
11072                 fi
11073         fi
11074         ;;
11075 *)
11076         h_fcntl=false
11077         val="$undef"
11078         ;;
11079 esac
11080 set i_fcntl
11081 eval $setvar
11082
11083 : check for non-blocking I/O stuff
11084 case "$h_sysfile" in
11085 true) echo "#include <sys/file.h>" > head.c;;
11086 *)
11087        case "$h_fcntl" in
11088        true) echo "#include <fcntl.h>" > head.c;;
11089        *) echo "#include <sys/fcntl.h>" > head.c;;
11090        esac
11091        ;;
11092 esac
11093 echo " "
11094 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11095 case "$o_nonblock" in
11096 '')
11097         $cat head.c > try.c
11098         $cat >>try.c <<EOCP
11099 #include <stdio.h>
11100 #include <stdlib.h>
11101 #$i_fcntl I_FCNTL
11102 #ifdef I_FCNTL
11103 #include <fcntl.h>
11104 #endif
11105 int main() {
11106 #ifdef O_NONBLOCK
11107         printf("O_NONBLOCK\n");
11108         exit(0);
11109 #endif
11110 #ifdef O_NDELAY
11111         printf("O_NDELAY\n");
11112         exit(0);
11113 #endif
11114 #ifdef FNDELAY
11115         printf("FNDELAY\n");
11116         exit(0);
11117 #endif
11118         exit(0);
11119 }
11120 EOCP
11121         set try
11122         if eval $compile_ok; then
11123                 o_nonblock=`$run ./try`
11124                 case "$o_nonblock" in
11125                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11126                 *) echo "Seems like we can use $o_nonblock.";;
11127                 esac
11128         else
11129                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11130         fi
11131         ;;
11132 *) echo "Using $hint value $o_nonblock.";;
11133 esac
11134 $rm -f try try.* .out core
11135
11136 echo " "
11137 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11138 case "$eagain" in
11139 '')
11140         $cat head.c > try.c
11141         $cat >>try.c <<EOCP
11142 #include <errno.h>
11143 #include <sys/types.h>
11144 #include <signal.h>
11145 #include <stdio.h> 
11146 #include <stdlib.h> 
11147 #$i_fcntl I_FCNTL
11148 #ifdef I_FCNTL
11149 #include <fcntl.h>
11150 #endif
11151 #define MY_O_NONBLOCK $o_nonblock
11152 #ifndef errno  /* XXX need better Configure test */
11153 extern int errno;
11154 #endif
11155 #$i_unistd I_UNISTD
11156 #ifdef I_UNISTD
11157 #include <unistd.h>
11158 #endif
11159 #$i_string I_STRING
11160 #ifdef I_STRING
11161 #include <string.h>
11162 #else
11163 #include <strings.h>
11164 #endif
11165 $signal_t blech(x) int x; { exit(3); }
11166 EOCP
11167         $cat >> try.c <<'EOCP'
11168 int main()
11169 {
11170         int pd[2];
11171         int pu[2];
11172         char buf[1];
11173         char string[100];
11174
11175         pipe(pd);       /* Down: child -> parent */
11176         pipe(pu);       /* Up: parent -> child */
11177         if (0 != fork()) {
11178                 int ret;
11179                 close(pd[1]);   /* Parent reads from pd[0] */
11180                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11181 #ifdef F_SETFL
11182                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11183                         exit(1);
11184 #else
11185                 exit(4);
11186 #endif
11187                 signal(SIGALRM, blech);
11188                 alarm(5);
11189                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11190                         exit(2);
11191                 sprintf(string, "%d\n", ret);
11192                 write(2, string, strlen(string));
11193                 alarm(0);
11194 #ifdef EAGAIN
11195                 if (errno == EAGAIN) {
11196                         printf("EAGAIN\n");
11197                         goto ok;
11198                 }
11199 #endif
11200 #ifdef EWOULDBLOCK
11201                 if (errno == EWOULDBLOCK)
11202                         printf("EWOULDBLOCK\n");
11203 #endif
11204         ok:
11205                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11206                 sleep(2);                               /* Give it time to close our pipe */
11207                 alarm(5);
11208                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11209                 alarm(0);
11210                 sprintf(string, "%d\n", ret);
11211                 write(4, string, strlen(string));
11212                 exit(0);
11213         }
11214
11215         close(pd[0]);                   /* We write to pd[1] */
11216         close(pu[1]);                   /* We read from pu[0] */
11217         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11218         close(pd[1]);                   /* Pipe pd is now fully closed! */
11219         exit(0);                                /* Bye bye, thank you for playing! */
11220 }
11221 EOCP
11222         set try
11223         if eval $compile_ok; then
11224                 echo "$startsh" >mtry
11225                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11226                 chmod +x mtry
11227                 ./mtry >/dev/null 2>&1
11228                 case $? in
11229                 0) eagain=`$cat try.out`;;
11230                 1) echo "Could not perform non-blocking setting!";;
11231                 2) echo "I did a successful read() for something that was not there!";;
11232                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11233                 4) echo "Could not find F_SETFL!";;
11234                 *) echo "Something terribly wrong happened during testing.";;
11235                 esac
11236                 rd_nodata=`$cat try.ret`
11237                 echo "A read() system call with no data present returns $rd_nodata."
11238                 case "$rd_nodata" in
11239                 0|-1) ;;
11240                 *)
11241                         echo "(That's peculiar, fixing that to be -1.)"
11242                         rd_nodata=-1
11243                         ;;
11244                 esac
11245                 case "$eagain" in
11246                 '')
11247                         echo "Forcing errno EAGAIN on read() with no data available."
11248                         eagain=EAGAIN
11249                         ;;
11250                 *)
11251                         echo "Your read() sets errno to $eagain when no data is available."
11252                         ;;
11253                 esac
11254                 status=`$cat try.err`
11255                 case "$status" in
11256                 0) echo "And it correctly returns 0 to signal EOF.";;
11257                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11258                 *) echo "However, your read() returns '$status' on EOF??";;
11259                 esac
11260                 val="$define"
11261                 if test "$status" = "$rd_nodata"; then
11262                         echo "WARNING: you can't distinguish between EOF and no data!"
11263                         val="$undef"
11264                 fi
11265         else
11266                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11267                 eagain=EAGAIN
11268         fi
11269         set d_eofnblk
11270         eval $setvar
11271         ;;
11272 *)
11273         echo "Using $hint value $eagain."
11274         echo "Your read() returns $rd_nodata when no data is present."
11275         case "$d_eofnblk" in
11276         "$define") echo "And you can see EOF because read() returns 0.";;
11277         "$undef") echo "But you can't see EOF status from read() returned value.";;
11278         *)
11279                 echo "(Assuming you can't see EOF status from read anyway.)"
11280                 d_eofnblk=$undef
11281                 ;;
11282         esac
11283         ;;
11284 esac
11285 $rm -f try try.* .out core head.c mtry
11286
11287 : see if fchdir exists
11288 set fchdir d_fchdir
11289 eval $inlibc
11290
11291 : see if fchmod exists
11292 set fchmod d_fchmod
11293 eval $inlibc
11294
11295 : see if fchown exists
11296 set fchown d_fchown
11297 eval $inlibc
11298
11299 : see if this is an fcntl system
11300 set fcntl d_fcntl
11301 eval $inlibc
11302
11303 echo " "
11304 : See if fcntl-based locking works.
11305 $cat >try.c <<EOCP
11306 #include <stdlib.h>
11307 #include <unistd.h>
11308 #include <fcntl.h>
11309 #include <signal.h>
11310 $signal_t blech(x) int x; { exit(3); }
11311 int main() {
11312 #if defined(F_SETLK) && defined(F_SETLKW)
11313      struct flock flock;
11314      int retval, fd;
11315      fd = open("try.c", O_RDONLY);
11316      flock.l_type = F_RDLCK;
11317      flock.l_whence = SEEK_SET;
11318      flock.l_start = flock.l_len = 0;
11319      signal(SIGALRM, blech);
11320      alarm(10);
11321      retval = fcntl(fd, F_SETLK, &flock);
11322      close(fd);
11323      (retval < 0 ? exit(2) : exit(0));
11324 #else
11325      exit(2);
11326 #endif
11327 }
11328 EOCP
11329 echo "Checking if fcntl-based file locking works... "
11330 case "$d_fcntl" in
11331 "$define")
11332         set try
11333         if eval $compile_ok; then
11334                 if $run ./try; then
11335                         echo "Yes, it seems to work."
11336                         val="$define"
11337                 else
11338                         echo "Nope, it didn't work."
11339                         val="$undef"
11340                         case "$?" in
11341                         3) $cat >&4 <<EOM
11342 ***
11343 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
11344 *** This is (almost) impossible.
11345 *** If your NFS lock daemons are not feeling well, something like
11346 *** this may happen, please investigate.  Cannot continue, aborting.
11347 ***
11348 EOM
11349                                 exit 1
11350                                 ;;
11351                         esac
11352                 fi
11353         else
11354                 echo "I'm unable to compile the test program, so I'll assume not."
11355                 val="$undef"
11356         fi
11357         ;;
11358 *) val="$undef";
11359         echo "Nope, since you don't even have fcntl()."
11360         ;;
11361 esac
11362 set d_fcntl_can_lock
11363 eval $setvar
11364 $rm -f try*
11365
11366
11367 : check for fd_set items
11368 $cat <<EOM
11369
11370 Checking to see how well your C compiler handles fd_set and friends ...
11371 EOM
11372 $cat >try.c <<EOCP
11373 #$i_systime I_SYS_TIME
11374 #$i_sysselct I_SYS_SELECT
11375 #$d_socket HAS_SOCKET
11376 #include <sys/types.h>
11377 #ifdef HAS_SOCKET
11378 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
11379 #endif
11380 #ifdef I_SYS_TIME
11381 #include <sys/time.h>
11382 #endif
11383 #ifdef I_SYS_SELECT
11384 #include <sys/select.h>
11385 #endif
11386 int main() {
11387         fd_set fds;
11388
11389 #ifdef TRYBITS
11390         if(fds.fds_bits);
11391 #endif
11392
11393 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
11394         exit(0);
11395 #else
11396         exit(1);
11397 #endif
11398 }
11399 EOCP
11400 set try -DTRYBITS
11401 if eval $compile; then
11402         d_fds_bits="$define"
11403         d_fd_set="$define"
11404         echo "Well, your system knows about the normal fd_set typedef..." >&4
11405         if $run ./try; then
11406                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
11407                 d_fd_macros="$define"
11408         else
11409                 $cat >&4 <<'EOM'
11410 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
11411 EOM
11412                 d_fd_macros="$undef"
11413         fi
11414 else
11415         $cat <<'EOM'
11416 Hmm, your compiler has some difficulty with fd_set.  Checking further...
11417 EOM
11418         set try
11419         if eval $compile; then
11420                 d_fds_bits="$undef"
11421                 d_fd_set="$define"
11422                 echo "Well, your system has some sort of fd_set available..." >&4
11423                 if $run ./try; then
11424                         echo "and you have the normal fd_set macros." >&4
11425                         d_fd_macros="$define"
11426                 else
11427                         $cat <<'EOM'
11428 but not the normal fd_set macros!  Gross!  More work for me...
11429 EOM
11430                         d_fd_macros="$undef"
11431                 fi
11432         else
11433         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
11434                 d_fd_set="$undef"
11435                 d_fds_bits="$undef"
11436                 d_fd_macros="$undef"
11437         fi
11438 fi
11439 $rm -f try try.*
11440
11441 : see if fgetpos exists
11442 set fgetpos d_fgetpos
11443 eval $inlibc
11444
11445 : see if finite exists
11446 set finite d_finite
11447 eval $inlibc
11448
11449 : see if finitel exists
11450 set finitel d_finitel
11451 eval $inlibc
11452
11453 : see if flock exists
11454 set flock d_flock
11455 eval $inlibc
11456
11457 : see if prototype for flock is available
11458 echo " "
11459 set d_flockproto flock $i_sysfile sys/file.h
11460 eval $hasproto
11461
11462 : see if fork exists
11463 set fork d_fork
11464 eval $inlibc
11465
11466 : see if fp_class exists
11467 set fp_class d_fp_class
11468 eval $inlibc
11469
11470 : see if pathconf exists
11471 set pathconf d_pathconf
11472 eval $inlibc
11473
11474 : see if fpathconf exists
11475 set fpathconf d_fpathconf
11476 eval $inlibc
11477
11478 : see if fpclass exists
11479 set fpclass d_fpclass
11480 eval $inlibc
11481
11482 : see if fpclassify exists
11483 set fpclassify d_fpclassify
11484 eval $inlibc
11485
11486 : see if fpclassl exists
11487 set fpclassl d_fpclassl
11488 eval $inlibc
11489
11490
11491 : check for fpos64_t
11492 echo " "
11493 echo "Checking to see if you have fpos64_t..." >&4
11494 $cat >try.c <<EOCP
11495 #include <stdio.h>
11496 int main() { fpos64_t x = 7; }
11497 EOCP
11498 set try
11499 if eval $compile; then
11500         val="$define"
11501         echo "You have fpos64_t."
11502 else
11503         val="$undef"
11504         echo "You do not have fpos64_t."
11505         case "$fpossize" in
11506         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
11507         esac
11508 fi
11509 $rm -f try.* try
11510 set d_fpos64_t
11511 eval $setvar
11512
11513 : see if frexpl exists
11514 set frexpl d_frexpl
11515 eval $inlibc
11516
11517 : see if this is a sys/param system
11518 set sys/param.h i_sysparam
11519 eval $inhdr
11520
11521 : see if this is a sys/mount.h system
11522 set sys/mount.h i_sysmount
11523 eval $inhdr
11524
11525
11526 echo " "
11527 echo "Checking to see if your system supports struct fs_data..." >&4
11528 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
11529 eval $hasstruct
11530 case "$d_fs_data_s" in
11531 "$define")      echo "Yes, it does."   ;;
11532 *)              echo "No, it doesn't." ;;
11533 esac
11534
11535 : see if fseeko exists
11536 set fseeko d_fseeko
11537 eval $inlibc
11538 case "$longsize" in
11539 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
11540 esac
11541
11542 : see if fsetpos exists
11543 set fsetpos d_fsetpos
11544 eval $inlibc
11545
11546
11547 : see if fstatfs exists
11548 set fstatfs d_fstatfs
11549 eval $inlibc
11550
11551
11552 : see if statvfs exists
11553 set statvfs d_statvfs
11554 eval $inlibc
11555
11556 : see if fstatvfs exists
11557 set fstatvfs d_fstatvfs
11558 eval $inlibc
11559
11560
11561 : see if fsync exists
11562 set fsync d_fsync
11563 eval $inlibc
11564
11565 : see if ftello exists
11566 set ftello d_ftello
11567 eval $inlibc
11568 case "$longsize" in
11569 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
11570 esac
11571
11572 : see if getcwd exists
11573 set getcwd d_getcwd
11574 eval $inlibc
11575
11576 : see if getespwnam exists
11577 set getespwnam d_getespwnam
11578 eval $inlibc
11579
11580
11581 : see if getfsstat exists
11582 set getfsstat d_getfsstat
11583 eval $inlibc
11584
11585 : see if getgrent exists
11586 set getgrent d_getgrent
11587 eval $inlibc
11588
11589 : see if getgrent_r exists
11590 set getgrent_r d_getgrent_r
11591 eval $inlibc
11592 case "$d_getgrent_r" in
11593 "$define")
11594         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11595         case "grp" in
11596         time)
11597                 hdrs="$hdrs $i_systime sys/time.h"
11598                 ;;
11599         esac
11600         case "$d_getgrent_r_proto:$usethreads" in
11601         ":define")      d_getgrent_r_proto=define
11602                 set d_getgrent_r_proto getgrent_r $hdrs
11603                 eval $hasproto ;;
11604         *)      ;;
11605         esac
11606         case "$d_getgrent_r_proto" in
11607         define)
11608         case "$getgrent_r_proto" in
11609         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
11610         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
11611         esac
11612         case "$getgrent_r_proto" in
11613         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
11614         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
11615         esac
11616         case "$getgrent_r_proto" in
11617         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
11618         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
11619         esac
11620         case "$getgrent_r_proto" in
11621         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
11622         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
11623         esac
11624         case "$getgrent_r_proto" in
11625         ''|0) try='int getgrent_r(struct group*, char*, int);'
11626         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
11627         esac
11628         case "$getgrent_r_proto" in
11629         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
11630         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
11631         esac
11632         case "$getgrent_r_proto" in
11633         ''|0)   d_getgrent_r=undef
11634                 getgrent_r_proto=0
11635                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
11636         * )     case "$getgrent_r_proto" in
11637                 REENTRANT_PROTO*) ;;
11638                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
11639                 esac
11640                 echo "Prototype: $try" ;;
11641         esac
11642         ;;
11643         *)      case "$usethreads" in
11644                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
11645                 esac
11646                 d_getgrent_r=undef
11647                 getgrent_r_proto=0
11648                 ;;
11649         esac
11650         ;;
11651 *)      getgrent_r_proto=0
11652         ;;
11653 esac
11654
11655 : see if getgrgid_r exists
11656 set getgrgid_r d_getgrgid_r
11657 eval $inlibc
11658 case "$d_getgrgid_r" in
11659 "$define")
11660         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11661         case "grp" in
11662         time)
11663                 hdrs="$hdrs $i_systime sys/time.h"
11664                 ;;
11665         esac
11666         case "$d_getgrgid_r_proto:$usethreads" in
11667         ":define")      d_getgrgid_r_proto=define
11668                 set d_getgrgid_r_proto getgrgid_r $hdrs
11669                 eval $hasproto ;;
11670         *)      ;;
11671         esac
11672         case "$d_getgrgid_r_proto" in
11673         define)
11674         case "$getgrgid_r_proto" in
11675         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
11676         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
11677         esac
11678         case "$getgrgid_r_proto" in
11679         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
11680         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
11681         esac
11682         case "$getgrgid_r_proto" in
11683         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
11684         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
11685         esac
11686         case "$getgrgid_r_proto" in
11687         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
11688         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
11689         esac
11690         case "$getgrgid_r_proto" in
11691         ''|0)   d_getgrgid_r=undef
11692                 getgrgid_r_proto=0
11693                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
11694         * )     case "$getgrgid_r_proto" in
11695                 REENTRANT_PROTO*) ;;
11696                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
11697                 esac
11698                 echo "Prototype: $try" ;;
11699         esac
11700         ;;
11701         *)      case "$usethreads" in
11702                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
11703                 esac
11704                 d_getgrgid_r=undef
11705                 getgrgid_r_proto=0
11706                 ;;
11707         esac
11708         ;;
11709 *)      getgrgid_r_proto=0
11710         ;;
11711 esac
11712
11713 : see if getgrnam_r exists
11714 set getgrnam_r d_getgrnam_r
11715 eval $inlibc
11716 case "$d_getgrnam_r" in
11717 "$define")
11718         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11719         case "grp" in
11720         time)
11721                 hdrs="$hdrs $i_systime sys/time.h"
11722                 ;;
11723         esac
11724         case "$d_getgrnam_r_proto:$usethreads" in
11725         ":define")      d_getgrnam_r_proto=define
11726                 set d_getgrnam_r_proto getgrnam_r $hdrs
11727                 eval $hasproto ;;
11728         *)      ;;
11729         esac
11730         case "$d_getgrnam_r_proto" in
11731         define)
11732         case "$getgrnam_r_proto" in
11733         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
11734         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
11735         esac
11736         case "$getgrnam_r_proto" in
11737         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
11738         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
11739         esac
11740         case "$getgrnam_r_proto" in
11741         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
11742         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
11743         esac
11744         case "$getgrnam_r_proto" in
11745         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
11746         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
11747         esac
11748         case "$getgrnam_r_proto" in
11749         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
11750         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
11751         esac
11752         case "$getgrnam_r_proto" in
11753         ''|0)   d_getgrnam_r=undef
11754                 getgrnam_r_proto=0
11755                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
11756         * )     case "$getgrnam_r_proto" in
11757                 REENTRANT_PROTO*) ;;
11758                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
11759                 esac
11760                 echo "Prototype: $try" ;;
11761         esac
11762         ;;
11763         *)      case "$usethreads" in
11764                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
11765                 esac
11766                 d_getgrnam_r=undef
11767                 getgrnam_r_proto=0
11768                 ;;
11769         esac
11770         ;;
11771 *)      getgrnam_r_proto=0
11772         ;;
11773 esac
11774
11775 : see if gethostbyaddr exists
11776 set gethostbyaddr d_gethbyaddr
11777 eval $inlibc
11778
11779 : see if gethostbyname exists
11780 set gethostbyname d_gethbyname
11781 eval $inlibc
11782
11783 : see if gethostent exists
11784 set gethostent d_gethent
11785 eval $inlibc
11786
11787 : see how we will look up host name
11788 echo " "
11789 call=''
11790 if set gethostname val -f d_gethname; eval $csym; $val; then
11791         echo 'gethostname() found.' >&4
11792         d_gethname="$define"
11793         call=gethostname
11794 fi
11795 if set uname val -f d_uname; eval $csym; $val; then
11796         if ./xenix; then
11797                 $cat <<'EOM'
11798 uname() was found, but you're running xenix, and older versions of xenix
11799 have a broken uname(). If you don't really know whether your xenix is old
11800 enough to have a broken system call, use the default answer.
11801
11802 EOM
11803                 dflt=y
11804                 case "$d_uname" in
11805                 "$define") dflt=n;;
11806                 esac
11807                 rp='Is your uname() broken?'
11808                 . ./myread
11809                 case "$ans" in
11810                 n*) d_uname="$define"; call=uname;;
11811                 esac
11812         else
11813                 echo 'uname() found.' >&4
11814                 d_uname="$define"
11815                 case "$call" in
11816                 '') call=uname ;;
11817                 esac
11818         fi
11819 fi
11820 case "$d_gethname" in
11821 '') d_gethname="$undef";;
11822 esac
11823 case "$d_uname" in
11824 '') d_uname="$undef";;
11825 esac
11826 case "$d_uname$d_gethname" in
11827 *define*)
11828         dflt=n
11829         cat <<EOM
11830  
11831 Every now and then someone has a $call() that lies about the hostname
11832 but can't be fixed for political or economic reasons.  If you wish, I can
11833 pretend $call() isn't there and maybe compute hostname at run-time
11834 thanks to the '$phostname' command.
11835
11836 EOM
11837         rp="Shall I ignore $call() from now on?"
11838         . ./myread
11839         case "$ans" in
11840         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
11841         esac;;
11842 esac
11843 case "$phostname" in
11844 '') aphostname='';;
11845 *) case "$aphostname" in
11846         /*) ;;
11847         *) set X $phostname
11848                 shift
11849                 file=$1
11850                 shift
11851                 file=`./loc $file $file $pth`
11852                 aphostname=`echo $file $*`
11853                 ;;
11854         esac
11855         ;;
11856 esac
11857 case "$d_uname$d_gethname" in
11858 *define*) ;;
11859 *)
11860         case "$phostname" in
11861         '')
11862                 echo "There will be no way for $package to get your hostname." >&4;;
11863         *)
11864         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
11865                 ;;
11866         esac;;
11867 esac
11868 case "$d_phostname" in
11869 '') d_phostname="$undef";;
11870 esac
11871
11872 : see if gethostbyaddr_r exists
11873 set gethostbyaddr_r d_gethostbyaddr_r
11874 eval $inlibc
11875 case "$d_gethostbyaddr_r" in
11876 "$define")
11877         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11878         case "netdb" in
11879         time)
11880                 hdrs="$hdrs $i_systime sys/time.h"
11881                 ;;
11882         esac
11883         case "$d_gethostbyaddr_r_proto:$usethreads" in
11884         ":define")      d_gethostbyaddr_r_proto=define
11885                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
11886                 eval $hasproto ;;
11887         *)      ;;
11888         esac
11889         case "$d_gethostbyaddr_r_proto" in
11890         define)
11891         case "$gethostbyaddr_r_proto" in
11892         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
11893         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
11894         esac
11895         case "$gethostbyaddr_r_proto" in
11896         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
11897         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
11898         esac
11899         case "$gethostbyaddr_r_proto" in
11900         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
11901         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
11902         esac
11903         case "$gethostbyaddr_r_proto" in
11904         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
11905         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
11906         esac
11907         case "$gethostbyaddr_r_proto" in
11908         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
11909         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
11910         esac
11911         case "$gethostbyaddr_r_proto" in
11912         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
11913         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
11914         esac
11915         case "$gethostbyaddr_r_proto" in
11916         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
11917         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
11918         esac
11919         case "$gethostbyaddr_r_proto" in
11920         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
11921         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
11922         esac
11923         case "$gethostbyaddr_r_proto" in
11924         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
11925         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
11926         esac
11927         case "$gethostbyaddr_r_proto" in
11928         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
11929         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
11930         esac
11931         case "$gethostbyaddr_r_proto" in
11932         ''|0)   d_gethostbyaddr_r=undef
11933                 gethostbyaddr_r_proto=0
11934                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
11935         * )     case "$gethostbyaddr_r_proto" in
11936                 REENTRANT_PROTO*) ;;
11937                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
11938                 esac
11939                 echo "Prototype: $try" ;;
11940         esac
11941         ;;
11942         *)      case "$usethreads" in
11943                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
11944                 esac
11945                 d_gethostbyaddr_r=undef
11946                 gethostbyaddr_r_proto=0
11947                 ;;
11948         esac
11949         ;;
11950 *)      gethostbyaddr_r_proto=0
11951         ;;
11952 esac
11953
11954 : see if gethostbyname_r exists
11955 set gethostbyname_r d_gethostbyname_r
11956 eval $inlibc
11957 case "$d_gethostbyname_r" in
11958 "$define")
11959         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11960         case "netdb" in
11961         time)
11962                 hdrs="$hdrs $i_systime sys/time.h"
11963                 ;;
11964         esac
11965         case "$d_gethostbyname_r_proto:$usethreads" in
11966         ":define")      d_gethostbyname_r_proto=define
11967                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
11968                 eval $hasproto ;;
11969         *)      ;;
11970         esac
11971         case "$d_gethostbyname_r_proto" in
11972         define)
11973         case "$gethostbyname_r_proto" in
11974         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
11975         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
11976         esac
11977         case "$gethostbyname_r_proto" in
11978         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
11979         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
11980         esac
11981         case "$gethostbyname_r_proto" in
11982         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
11983         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
11984         esac
11985         case "$gethostbyname_r_proto" in
11986         ''|0)   d_gethostbyname_r=undef
11987                 gethostbyname_r_proto=0
11988                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
11989         * )     case "$gethostbyname_r_proto" in
11990                 REENTRANT_PROTO*) ;;
11991                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
11992                 esac
11993                 echo "Prototype: $try" ;;
11994         esac
11995         ;;
11996         *)      case "$usethreads" in
11997                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
11998                 esac
11999                 d_gethostbyname_r=undef
12000                 gethostbyname_r_proto=0
12001                 ;;
12002         esac
12003         ;;
12004 *)      gethostbyname_r_proto=0
12005         ;;
12006 esac
12007
12008 : see if gethostent_r exists
12009 set gethostent_r d_gethostent_r
12010 eval $inlibc
12011 case "$d_gethostent_r" in
12012 "$define")
12013         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12014         case "netdb" in
12015         time)
12016                 hdrs="$hdrs $i_systime sys/time.h"
12017                 ;;
12018         esac
12019         case "$d_gethostent_r_proto:$usethreads" in
12020         ":define")      d_gethostent_r_proto=define
12021                 set d_gethostent_r_proto gethostent_r $hdrs
12022                 eval $hasproto ;;
12023         *)      ;;
12024         esac
12025         case "$d_gethostent_r_proto" in
12026         define)
12027         case "$gethostent_r_proto" in
12028         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
12029         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
12030         esac
12031         case "$gethostent_r_proto" in
12032         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
12033         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
12034         esac
12035         case "$gethostent_r_proto" in
12036         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
12037         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
12038         esac
12039         case "$gethostent_r_proto" in
12040         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
12041         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
12042         esac
12043         case "$gethostent_r_proto" in
12044         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
12045         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
12046         esac
12047         case "$gethostent_r_proto" in
12048         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
12049         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
12050         esac
12051         case "$gethostent_r_proto" in
12052         ''|0)   d_gethostent_r=undef
12053                 gethostent_r_proto=0
12054                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
12055         * )     case "$gethostent_r_proto" in
12056                 REENTRANT_PROTO*) ;;
12057                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12058                 esac
12059                 echo "Prototype: $try" ;;
12060         esac
12061         ;;
12062         *)      case "$usethreads" in
12063                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12064                 esac
12065                 d_gethostent_r=undef
12066                 gethostent_r_proto=0
12067                 ;;
12068         esac
12069         ;;
12070 *)      gethostent_r_proto=0
12071         ;;
12072 esac
12073
12074 : see if prototypes for various gethostxxx netdb.h functions are available
12075 echo " "
12076 set d_gethostprotos gethostent $i_netdb netdb.h
12077 eval $hasproto
12078
12079 : see if getitimer exists
12080 set getitimer d_getitimer
12081 eval $inlibc
12082
12083 : see if getlogin exists
12084 set getlogin d_getlogin
12085 eval $inlibc
12086
12087 : see if getlogin_r exists
12088 set getlogin_r d_getlogin_r
12089 eval $inlibc
12090 case "$d_getlogin_r" in
12091 "$define")
12092         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12093         case "unistd" in
12094         time)
12095                 hdrs="$hdrs $i_systime sys/time.h"
12096                 ;;
12097         esac
12098         case "$d_getlogin_r_proto:$usethreads" in
12099         ":define")      d_getlogin_r_proto=define
12100                 set d_getlogin_r_proto getlogin_r $hdrs
12101                 eval $hasproto ;;
12102         *)      ;;
12103         esac
12104         case "$d_getlogin_r_proto" in
12105         define)
12106         case "$getlogin_r_proto" in
12107         ''|0) try='int getlogin_r(char*, size_t);'
12108         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12109         esac
12110         case "$getlogin_r_proto" in
12111         ''|0) try='int getlogin_r(char*, int);'
12112         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12113         esac
12114         case "$getlogin_r_proto" in
12115         ''|0) try='char* getlogin_r(char*, size_t);'
12116         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12117         esac
12118         case "$getlogin_r_proto" in
12119         ''|0) try='char* getlogin_r(char*, int);'
12120         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12121         esac
12122         case "$getlogin_r_proto" in
12123         ''|0)   d_getlogin_r=undef
12124                 getlogin_r_proto=0
12125                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12126         * )     case "$getlogin_r_proto" in
12127                 REENTRANT_PROTO*) ;;
12128                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12129                 esac
12130                 echo "Prototype: $try" ;;
12131         esac
12132         ;;
12133         *)      case "$usethreads" in
12134                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12135                 esac
12136                 d_getlogin_r=undef
12137                 getlogin_r_proto=0
12138                 ;;
12139         esac
12140         ;;
12141 *)      getlogin_r_proto=0
12142         ;;
12143 esac
12144
12145 : see if getmnt exists
12146 set getmnt d_getmnt
12147 eval $inlibc
12148
12149 : see if getmntent exists
12150 set getmntent d_getmntent
12151 eval $inlibc
12152
12153 : see if getnetbyaddr exists
12154 set getnetbyaddr d_getnbyaddr
12155 eval $inlibc
12156
12157 : see if getnetbyname exists
12158 set getnetbyname d_getnbyname
12159 eval $inlibc
12160
12161 : see if getnetent exists
12162 set getnetent d_getnent
12163 eval $inlibc
12164
12165 : see if getnetbyaddr_r exists
12166 set getnetbyaddr_r d_getnetbyaddr_r
12167 eval $inlibc
12168 case "$d_getnetbyaddr_r" in
12169 "$define")
12170         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12171         case "netdb" in
12172         time)
12173                 hdrs="$hdrs $i_systime sys/time.h"
12174                 ;;
12175         esac
12176         case "$d_getnetbyaddr_r_proto:$usethreads" in
12177         ":define")      d_getnetbyaddr_r_proto=define
12178                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12179                 eval $hasproto ;;
12180         *)      ;;
12181         esac
12182         case "$d_getnetbyaddr_r_proto" in
12183         define)
12184         case "$getnetbyaddr_r_proto" in
12185         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12186         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12187         esac
12188         case "$getnetbyaddr_r_proto" in
12189         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12190         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12191         esac
12192         case "$getnetbyaddr_r_proto" in
12193         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12194         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12195         esac
12196         case "$getnetbyaddr_r_proto" in
12197         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12198         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12199         esac
12200         case "$getnetbyaddr_r_proto" in
12201         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12202         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12203         esac
12204         case "$getnetbyaddr_r_proto" in
12205         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12206         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12207         esac
12208         case "$getnetbyaddr_r_proto" in
12209         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12210         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12211         esac
12212         case "$getnetbyaddr_r_proto" in
12213         ''|0)   d_getnetbyaddr_r=undef
12214                 getnetbyaddr_r_proto=0
12215                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12216         * )     case "$getnetbyaddr_r_proto" in
12217                 REENTRANT_PROTO*) ;;
12218                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12219                 esac
12220                 echo "Prototype: $try" ;;
12221         esac
12222         ;;
12223         *)      case "$usethreads" in
12224                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12225                 esac
12226                 d_getnetbyaddr_r=undef
12227                 getnetbyaddr_r_proto=0
12228                 ;;
12229         esac
12230         ;;
12231 *)      getnetbyaddr_r_proto=0
12232         ;;
12233 esac
12234
12235 : see if getnetbyname_r exists
12236 set getnetbyname_r d_getnetbyname_r
12237 eval $inlibc
12238 case "$d_getnetbyname_r" in
12239 "$define")
12240         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12241         case "netdb" in
12242         time)
12243                 hdrs="$hdrs $i_systime sys/time.h"
12244                 ;;
12245         esac
12246         case "$d_getnetbyname_r_proto:$usethreads" in
12247         ":define")      d_getnetbyname_r_proto=define
12248                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12249                 eval $hasproto ;;
12250         *)      ;;
12251         esac
12252         case "$d_getnetbyname_r_proto" in
12253         define)
12254         case "$getnetbyname_r_proto" in
12255         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12256         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12257         esac
12258         case "$getnetbyname_r_proto" in
12259         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12260         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12261         esac
12262         case "$getnetbyname_r_proto" in
12263         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
12264         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
12265         esac
12266         case "$getnetbyname_r_proto" in
12267         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
12268         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
12269         esac
12270         case "$getnetbyname_r_proto" in
12271         ''|0)   d_getnetbyname_r=undef
12272                 getnetbyname_r_proto=0
12273                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
12274         * )     case "$getnetbyname_r_proto" in
12275                 REENTRANT_PROTO*) ;;
12276                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
12277                 esac
12278                 echo "Prototype: $try" ;;
12279         esac
12280         ;;
12281         *)      case "$usethreads" in
12282                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
12283                 esac
12284                 d_getnetbyname_r=undef
12285                 getnetbyname_r_proto=0
12286                 ;;
12287         esac
12288         ;;
12289 *)      getnetbyname_r_proto=0
12290         ;;
12291 esac
12292
12293 : see if getnetent_r exists
12294 set getnetent_r d_getnetent_r
12295 eval $inlibc
12296 case "$d_getnetent_r" in
12297 "$define")
12298         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12299         case "netdb" in
12300         time)
12301                 hdrs="$hdrs $i_systime sys/time.h"
12302                 ;;
12303         esac
12304         case "$d_getnetent_r_proto:$usethreads" in
12305         ":define")      d_getnetent_r_proto=define
12306                 set d_getnetent_r_proto getnetent_r $hdrs
12307                 eval $hasproto ;;
12308         *)      ;;
12309         esac
12310         case "$d_getnetent_r_proto" in
12311         define)
12312         case "$getnetent_r_proto" in
12313         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
12314         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
12315         esac
12316         case "$getnetent_r_proto" in
12317         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
12318         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
12319         esac
12320         case "$getnetent_r_proto" in
12321         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
12322         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
12323         esac
12324         case "$getnetent_r_proto" in
12325         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
12326         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
12327         esac
12328         case "$getnetent_r_proto" in
12329         ''|0) try='int getnetent_r(struct netent*, char*, int);'
12330         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
12331         esac
12332         case "$getnetent_r_proto" in
12333         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
12334         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
12335         esac
12336         case "$getnetent_r_proto" in
12337         ''|0)   d_getnetent_r=undef
12338                 getnetent_r_proto=0
12339                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
12340         * )     case "$getnetent_r_proto" in
12341                 REENTRANT_PROTO*) ;;
12342                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
12343                 esac
12344                 echo "Prototype: $try" ;;
12345         esac
12346         ;;
12347         *)      case "$usethreads" in
12348                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
12349                 esac
12350                 d_getnetent_r=undef
12351                 getnetent_r_proto=0
12352                 ;;
12353         esac
12354         ;;
12355 *)      getnetent_r_proto=0
12356         ;;
12357 esac
12358
12359 : see if prototypes for various getnetxxx netdb.h functions are available
12360 echo " "
12361 set d_getnetprotos getnetent $i_netdb netdb.h
12362 eval $hasproto
12363
12364 : see if getpagesize exists
12365 set getpagesize d_getpagsz
12366 eval $inlibc
12367
12368
12369 : see if getprotobyname exists
12370 set getprotobyname d_getpbyname
12371 eval $inlibc
12372
12373 : see if getprotobynumber exists
12374 set getprotobynumber d_getpbynumber
12375 eval $inlibc
12376
12377 : see if getprotoent exists
12378 set getprotoent d_getpent
12379 eval $inlibc
12380
12381 : see if getpgid exists
12382 set getpgid d_getpgid
12383 eval $inlibc
12384
12385 : see if getpgrp2 exists
12386 set getpgrp2 d_getpgrp2
12387 eval $inlibc
12388
12389 : see if getppid exists
12390 set getppid d_getppid
12391 eval $inlibc
12392
12393 : see if getpriority exists
12394 set getpriority d_getprior
12395 eval $inlibc
12396
12397 : see if getprotobyname_r exists
12398 set getprotobyname_r d_getprotobyname_r
12399 eval $inlibc
12400 case "$d_getprotobyname_r" in
12401 "$define")
12402         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12403         case "netdb" in
12404         time)
12405                 hdrs="$hdrs $i_systime sys/time.h"
12406                 ;;
12407         esac
12408         case "$d_getprotobyname_r_proto:$usethreads" in
12409         ":define")      d_getprotobyname_r_proto=define
12410                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
12411                 eval $hasproto ;;
12412         *)      ;;
12413         esac
12414         case "$d_getprotobyname_r_proto" in
12415         define)
12416         case "$getprotobyname_r_proto" in
12417         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
12418         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
12419         esac
12420         case "$getprotobyname_r_proto" in
12421         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
12422         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
12423         esac
12424         case "$getprotobyname_r_proto" in
12425         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
12426         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
12427         esac
12428         case "$getprotobyname_r_proto" in
12429         ''|0)   d_getprotobyname_r=undef
12430                 getprotobyname_r_proto=0
12431                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
12432         * )     case "$getprotobyname_r_proto" in
12433                 REENTRANT_PROTO*) ;;
12434                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
12435                 esac
12436                 echo "Prototype: $try" ;;
12437         esac
12438         ;;
12439         *)      case "$usethreads" in
12440                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
12441                 esac
12442                 d_getprotobyname_r=undef
12443                 getprotobyname_r_proto=0
12444                 ;;
12445         esac
12446         ;;
12447 *)      getprotobyname_r_proto=0
12448         ;;
12449 esac
12450
12451 : see if getprotobynumber_r exists
12452 set getprotobynumber_r d_getprotobynumber_r
12453 eval $inlibc
12454 case "$d_getprotobynumber_r" in
12455 "$define")
12456         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12457         case "netdb" in
12458         time)
12459                 hdrs="$hdrs $i_systime sys/time.h"
12460                 ;;
12461         esac
12462         case "$d_getprotobynumber_r_proto:$usethreads" in
12463         ":define")      d_getprotobynumber_r_proto=define
12464                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
12465                 eval $hasproto ;;
12466         *)      ;;
12467         esac
12468         case "$d_getprotobynumber_r_proto" in
12469         define)
12470         case "$getprotobynumber_r_proto" in
12471         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
12472         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
12473         esac
12474         case "$getprotobynumber_r_proto" in
12475         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
12476         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
12477         esac
12478         case "$getprotobynumber_r_proto" in
12479         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
12480         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
12481         esac
12482         case "$getprotobynumber_r_proto" in
12483         ''|0)   d_getprotobynumber_r=undef
12484                 getprotobynumber_r_proto=0
12485                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
12486         * )     case "$getprotobynumber_r_proto" in
12487                 REENTRANT_PROTO*) ;;
12488                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
12489                 esac
12490                 echo "Prototype: $try" ;;
12491         esac
12492         ;;
12493         *)      case "$usethreads" in
12494                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
12495                 esac
12496                 d_getprotobynumber_r=undef
12497                 getprotobynumber_r_proto=0
12498                 ;;
12499         esac
12500         ;;
12501 *)      getprotobynumber_r_proto=0
12502         ;;
12503 esac
12504
12505 : see if getprotoent_r exists
12506 set getprotoent_r d_getprotoent_r
12507 eval $inlibc
12508 case "$d_getprotoent_r" in
12509 "$define")
12510         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12511         case "netdb" in
12512         time)
12513                 hdrs="$hdrs $i_systime sys/time.h"
12514                 ;;
12515         esac
12516         case "$d_getprotoent_r_proto:$usethreads" in
12517         ":define")      d_getprotoent_r_proto=define
12518                 set d_getprotoent_r_proto getprotoent_r $hdrs
12519                 eval $hasproto ;;
12520         *)      ;;
12521         esac
12522         case "$d_getprotoent_r_proto" in
12523         define)
12524         case "$getprotoent_r_proto" in
12525         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
12526         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
12527         esac
12528         case "$getprotoent_r_proto" in
12529         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
12530         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
12531         esac
12532         case "$getprotoent_r_proto" in
12533         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
12534         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
12535         esac
12536         case "$getprotoent_r_proto" in
12537         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
12538         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
12539         esac
12540         case "$getprotoent_r_proto" in
12541         ''|0)   d_getprotoent_r=undef
12542                 getprotoent_r_proto=0
12543                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
12544         * )     case "$getprotoent_r_proto" in
12545                 REENTRANT_PROTO*) ;;
12546                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
12547                 esac
12548                 echo "Prototype: $try" ;;
12549         esac
12550         ;;
12551         *)      case "$usethreads" in
12552                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
12553                 esac
12554                 d_getprotoent_r=undef
12555                 getprotoent_r_proto=0
12556                 ;;
12557         esac
12558         ;;
12559 *)      getprotoent_r_proto=0
12560         ;;
12561 esac
12562
12563 : see if prototypes for various getprotoxxx netdb.h functions are available
12564 echo " "
12565 set d_getprotoprotos getprotoent $i_netdb netdb.h
12566 eval $hasproto
12567
12568 : see if getprpwnam exists
12569 set getprpwnam d_getprpwnam
12570 eval $inlibc
12571
12572 : see if getpwent exists
12573 set getpwent d_getpwent
12574 eval $inlibc
12575
12576 : see if getpwent_r exists
12577 set getpwent_r d_getpwent_r
12578 eval $inlibc
12579 case "$d_getpwent_r" in
12580 "$define")
12581         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12582         case "pwd" in
12583         time)
12584                 hdrs="$hdrs $i_systime sys/time.h"
12585                 ;;
12586         esac
12587         case "$d_getpwent_r_proto:$usethreads" in
12588         ":define")      d_getpwent_r_proto=define
12589                 set d_getpwent_r_proto getpwent_r $hdrs
12590                 eval $hasproto ;;
12591         *)      ;;
12592         esac
12593         case "$d_getpwent_r_proto" in
12594         define)
12595         case "$getpwent_r_proto" in
12596         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
12597         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
12598         esac
12599         case "$getpwent_r_proto" in
12600         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
12601         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
12602         esac
12603         case "$getpwent_r_proto" in
12604         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
12605         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
12606         esac
12607         case "$getpwent_r_proto" in
12608         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
12609         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
12610         esac
12611         case "$getpwent_r_proto" in
12612         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
12613         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
12614         esac
12615         case "$getpwent_r_proto" in
12616         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
12617         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
12618         esac
12619         case "$getpwent_r_proto" in
12620         ''|0)   d_getpwent_r=undef
12621                 getpwent_r_proto=0
12622                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
12623         * )     case "$getpwent_r_proto" in
12624                 REENTRANT_PROTO*) ;;
12625                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
12626                 esac
12627                 echo "Prototype: $try" ;;
12628         esac
12629         ;;
12630         *)      case "$usethreads" in
12631                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
12632                 esac
12633                 d_getpwent_r=undef
12634                 getpwent_r_proto=0
12635                 ;;
12636         esac
12637         ;;
12638 *)      getpwent_r_proto=0
12639         ;;
12640 esac
12641
12642 : see if getpwnam_r exists
12643 set getpwnam_r d_getpwnam_r
12644 eval $inlibc
12645 case "$d_getpwnam_r" in
12646 "$define")
12647         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12648         case "pwd" in
12649         time)
12650                 hdrs="$hdrs $i_systime sys/time.h"
12651                 ;;
12652         esac
12653         case "$d_getpwnam_r_proto:$usethreads" in
12654         ":define")      d_getpwnam_r_proto=define
12655                 set d_getpwnam_r_proto getpwnam_r $hdrs
12656                 eval $hasproto ;;
12657         *)      ;;
12658         esac
12659         case "$d_getpwnam_r_proto" in
12660         define)
12661         case "$getpwnam_r_proto" in
12662         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
12663         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
12664         esac
12665         case "$getpwnam_r_proto" in
12666         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
12667         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
12668         esac
12669         case "$getpwnam_r_proto" in
12670         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
12671         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
12672         esac
12673         case "$getpwnam_r_proto" in
12674         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
12675         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
12676         esac
12677         case "$getpwnam_r_proto" in
12678         ''|0)   d_getpwnam_r=undef
12679                 getpwnam_r_proto=0
12680                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
12681         * )     case "$getpwnam_r_proto" in
12682                 REENTRANT_PROTO*) ;;
12683                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
12684                 esac
12685                 echo "Prototype: $try" ;;
12686         esac
12687         ;;
12688         *)      case "$usethreads" in
12689                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
12690                 esac
12691                 d_getpwnam_r=undef
12692                 getpwnam_r_proto=0
12693                 ;;
12694         esac
12695         ;;
12696 *)      getpwnam_r_proto=0
12697         ;;
12698 esac
12699
12700 : see if getpwuid_r exists
12701 set getpwuid_r d_getpwuid_r
12702 eval $inlibc
12703 case "$d_getpwuid_r" in
12704 "$define")
12705         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12706         case "pwd" in
12707         time)
12708                 hdrs="$hdrs $i_systime sys/time.h"
12709                 ;;
12710         esac
12711         case "$d_getpwuid_r_proto:$usethreads" in
12712         ":define")      d_getpwuid_r_proto=define
12713                 set d_getpwuid_r_proto getpwuid_r $hdrs
12714                 eval $hasproto ;;
12715         *)      ;;
12716         esac
12717         case "$d_getpwuid_r_proto" in
12718         define)
12719         case "$getpwuid_r_proto" in
12720         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
12721         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
12722         esac
12723         case "$getpwuid_r_proto" in
12724         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
12725         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
12726         esac
12727         case "$getpwuid_r_proto" in
12728         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
12729         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
12730         esac
12731         case "$getpwuid_r_proto" in
12732         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
12733         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
12734         esac
12735         case "$getpwuid_r_proto" in
12736         ''|0)   d_getpwuid_r=undef
12737                 getpwuid_r_proto=0
12738                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
12739         * )     case "$getpwuid_r_proto" in
12740                 REENTRANT_PROTO*) ;;
12741                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
12742                 esac
12743                 echo "Prototype: $try" ;;
12744         esac
12745         ;;
12746         *)      case "$usethreads" in
12747                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
12748                 esac
12749                 d_getpwuid_r=undef
12750                 getpwuid_r_proto=0
12751                 ;;
12752         esac
12753         ;;
12754 *)      getpwuid_r_proto=0
12755         ;;
12756 esac
12757
12758
12759 : see if getservbyname exists
12760 set getservbyname d_getsbyname
12761 eval $inlibc
12762
12763 : see if getservbyport exists
12764 set getservbyport d_getsbyport
12765 eval $inlibc
12766
12767 : see if getservent exists
12768 set getservent d_getsent
12769 eval $inlibc
12770
12771 : see if getservbyname_r exists
12772 set getservbyname_r d_getservbyname_r
12773 eval $inlibc
12774 case "$d_getservbyname_r" in
12775 "$define")
12776         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12777         case "netdb" in
12778         time)
12779                 hdrs="$hdrs $i_systime sys/time.h"
12780                 ;;
12781         esac
12782         case "$d_getservbyname_r_proto:$usethreads" in
12783         ":define")      d_getservbyname_r_proto=define
12784                 set d_getservbyname_r_proto getservbyname_r $hdrs
12785                 eval $hasproto ;;
12786         *)      ;;
12787         esac
12788         case "$d_getservbyname_r_proto" in
12789         define)
12790         case "$getservbyname_r_proto" in
12791         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
12792         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
12793         esac
12794         case "$getservbyname_r_proto" in
12795         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
12796         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
12797         esac
12798         case "$getservbyname_r_proto" in
12799         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
12800         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
12801         esac
12802         case "$getservbyname_r_proto" in
12803         ''|0)   d_getservbyname_r=undef
12804                 getservbyname_r_proto=0
12805                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
12806         * )     case "$getservbyname_r_proto" in
12807                 REENTRANT_PROTO*) ;;
12808                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
12809                 esac
12810                 echo "Prototype: $try" ;;
12811         esac
12812         ;;
12813         *)      case "$usethreads" in
12814                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
12815                 esac
12816                 d_getservbyname_r=undef
12817                 getservbyname_r_proto=0
12818                 ;;
12819         esac
12820         ;;
12821 *)      getservbyname_r_proto=0
12822         ;;
12823 esac
12824
12825 : see if getservbyport_r exists
12826 set getservbyport_r d_getservbyport_r
12827 eval $inlibc
12828 case "$d_getservbyport_r" in
12829 "$define")
12830         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12831         case "netdb" in
12832         time)
12833                 hdrs="$hdrs $i_systime sys/time.h"
12834                 ;;
12835         esac
12836         case "$d_getservbyport_r_proto:$usethreads" in
12837         ":define")      d_getservbyport_r_proto=define
12838                 set d_getservbyport_r_proto getservbyport_r $hdrs
12839                 eval $hasproto ;;
12840         *)      ;;
12841         esac
12842         case "$d_getservbyport_r_proto" in
12843         define)
12844         case "$getservbyport_r_proto" in
12845         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
12846         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
12847         esac
12848         case "$getservbyport_r_proto" in
12849         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
12850         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
12851         esac
12852         case "$getservbyport_r_proto" in
12853         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
12854         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
12855         esac
12856         case "$getservbyport_r_proto" in
12857         ''|0)   d_getservbyport_r=undef
12858                 getservbyport_r_proto=0
12859                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
12860         * )     case "$getservbyport_r_proto" in
12861                 REENTRANT_PROTO*) ;;
12862                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
12863                 esac
12864                 echo "Prototype: $try" ;;
12865         esac
12866         ;;
12867         *)      case "$usethreads" in
12868                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
12869                 esac
12870                 d_getservbyport_r=undef
12871                 getservbyport_r_proto=0
12872                 ;;
12873         esac
12874         ;;
12875 *)      getservbyport_r_proto=0
12876         ;;
12877 esac
12878
12879 : see if getservent_r exists
12880 set getservent_r d_getservent_r
12881 eval $inlibc
12882 case "$d_getservent_r" in
12883 "$define")
12884         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12885         case "netdb" in
12886         time)
12887                 hdrs="$hdrs $i_systime sys/time.h"
12888                 ;;
12889         esac
12890         case "$d_getservent_r_proto:$usethreads" in
12891         ":define")      d_getservent_r_proto=define
12892                 set d_getservent_r_proto getservent_r $hdrs
12893                 eval $hasproto ;;
12894         *)      ;;
12895         esac
12896         case "$d_getservent_r_proto" in
12897         define)
12898         case "$getservent_r_proto" in
12899         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
12900         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
12901         esac
12902         case "$getservent_r_proto" in
12903         ''|0) try='int getservent_r(struct servent*, char*, int);'
12904         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
12905         esac
12906         case "$getservent_r_proto" in
12907         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
12908         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
12909         esac
12910         case "$getservent_r_proto" in
12911         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
12912         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
12913         esac
12914         case "$getservent_r_proto" in
12915         ''|0)   d_getservent_r=undef
12916                 getservent_r_proto=0
12917                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
12918         * )     case "$getservent_r_proto" in
12919                 REENTRANT_PROTO*) ;;
12920                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
12921                 esac
12922                 echo "Prototype: $try" ;;
12923         esac
12924         ;;
12925         *)      case "$usethreads" in
12926                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
12927                 esac
12928                 d_getservent_r=undef
12929                 getservent_r_proto=0
12930                 ;;
12931         esac
12932         ;;
12933 *)      getservent_r_proto=0
12934         ;;
12935 esac
12936
12937 : see if prototypes for various getservxxx netdb.h functions are available
12938 echo " "
12939 set d_getservprotos getservent $i_netdb netdb.h
12940 eval $hasproto
12941
12942 : see if getspnam exists
12943 set getspnam d_getspnam
12944 eval $inlibc
12945
12946 : see if this is a shadow.h system
12947 set shadow.h i_shadow
12948 eval $inhdr
12949
12950 : see if getspnam_r exists
12951 set getspnam_r d_getspnam_r
12952 eval $inlibc
12953 case "$d_getspnam_r" in
12954 "$define")
12955         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
12956         case "shadow" in
12957         time)
12958                 hdrs="$hdrs $i_systime sys/time.h"
12959                 ;;
12960         esac
12961         case "$d_getspnam_r_proto:$usethreads" in
12962         ":define")      d_getspnam_r_proto=define
12963                 set d_getspnam_r_proto getspnam_r $hdrs
12964                 eval $hasproto ;;
12965         *)      ;;
12966         esac
12967         case "$d_getspnam_r_proto" in
12968         define)
12969         case "$getspnam_r_proto" in
12970         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
12971         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
12972         esac
12973         case "$getspnam_r_proto" in
12974         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
12975         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
12976         esac
12977         case "$getspnam_r_proto" in
12978         ''|0)   d_getspnam_r=undef
12979                 getspnam_r_proto=0
12980                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
12981         * )     case "$getspnam_r_proto" in
12982                 REENTRANT_PROTO*) ;;
12983                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
12984                 esac
12985                 echo "Prototype: $try" ;;
12986         esac
12987         ;;
12988         *)      case "$usethreads" in
12989                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
12990                 esac
12991                 d_getspnam_r=undef
12992                 getspnam_r_proto=0
12993                 ;;
12994         esac
12995         ;;
12996 *)      getspnam_r_proto=0
12997         ;;
12998 esac
12999
13000 : see if gettimeofday or ftime exists
13001 set gettimeofday d_gettimeod
13002 eval $inlibc
13003 case "$d_gettimeod" in
13004 "$undef")
13005         set ftime d_ftime 
13006         eval $inlibc
13007         ;;
13008 *)
13009         val="$undef"; set d_ftime; eval $setvar
13010         ;;
13011 esac
13012 case "$d_gettimeod$d_ftime" in
13013 "$undef$undef")
13014         echo " "
13015         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
13016         ;;
13017 esac
13018
13019 : see if gmtime_r exists
13020 set gmtime_r d_gmtime_r
13021 eval $inlibc
13022 case "$d_gmtime_r" in
13023 "$define")
13024         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
13025         case "time" in
13026         time)
13027                 hdrs="$hdrs $i_systime sys/time.h"
13028                 ;;
13029         esac
13030         case "$d_gmtime_r_proto:$usethreads" in
13031         ":define")      d_gmtime_r_proto=define
13032                 set d_gmtime_r_proto gmtime_r $hdrs
13033                 eval $hasproto ;;
13034         *)      ;;
13035         esac
13036         case "$d_gmtime_r_proto" in
13037         define)
13038         case "$gmtime_r_proto" in
13039         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13040         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13041         esac
13042         case "$gmtime_r_proto" in
13043         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13044         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13045         esac
13046         case "$gmtime_r_proto" in
13047         ''|0)   d_gmtime_r=undef
13048                 gmtime_r_proto=0
13049                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13050         * )     case "$gmtime_r_proto" in
13051                 REENTRANT_PROTO*) ;;
13052                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13053                 esac
13054                 echo "Prototype: $try" ;;
13055         esac
13056         ;;
13057         *)      case "$usethreads" in
13058                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13059                 esac
13060                 d_gmtime_r=undef
13061                 gmtime_r_proto=0
13062                 ;;
13063         esac
13064         ;;
13065 *)      gmtime_r_proto=0
13066         ;;
13067 esac
13068
13069 : see if hasmntopt exists
13070 set hasmntopt d_hasmntopt
13071 eval $inlibc
13072
13073 : see if this is a netinet/in.h or sys/in.h system
13074 set netinet/in.h i_niin sys/in.h i_sysin
13075 eval $inhdr
13076
13077 : see if arpa/inet.h has to be included
13078 set arpa/inet.h i_arpainet
13079 eval $inhdr
13080
13081 : see if htonl --and friends-- exists
13082 val=''
13083 set htonl val
13084 eval $inlibc
13085
13086 : Maybe they are macros.
13087 case "$val" in
13088 $undef)
13089         $cat >htonl.c <<EOM
13090 #include <stdio.h>
13091 #include <sys/types.h>
13092 #$i_niin I_NETINET_IN
13093 #$i_sysin I_SYS_IN
13094 #$i_arpainet I_ARPA_INET
13095 #ifdef I_NETINET_IN
13096 #include <netinet/in.h>
13097 #endif
13098 #ifdef I_SYS_IN
13099 #include <sys/in.h>
13100 #endif
13101 #ifdef I_ARPA_INET
13102 #include <arpa/inet.h>
13103 #endif
13104 #ifdef htonl
13105 printf("Defined as a macro.");
13106 #endif
13107 EOM
13108         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
13109         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
13110                 val="$define"
13111                 echo "But it seems to be defined as a macro." >&4
13112         fi
13113         $rm -f htonl.?
13114         ;;
13115 esac
13116 set d_htonl
13117 eval $setvar
13118
13119 : index or strchr
13120 echo " "
13121 if set index val -f; eval $csym; $val; then
13122         if set strchr val -f d_strchr; eval $csym; $val; then
13123                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
13124                         val="$define"
13125                         vali="$undef"
13126                         echo "strchr() found." >&4
13127                 else
13128                         val="$undef"
13129                         vali="$define"
13130                         echo "index() found." >&4
13131                 fi
13132         else
13133                 val="$undef"
13134                 vali="$define"
13135                 echo "index() found." >&4
13136         fi
13137 else
13138         if set strchr val -f d_strchr; eval $csym; $val; then
13139                 val="$define"
13140                 vali="$undef"
13141                 echo "strchr() found." >&4
13142         else
13143                 echo "No index() or strchr() found!" >&4
13144                 val="$undef"
13145                 vali="$undef"
13146         fi
13147 fi
13148 set d_strchr; eval $setvar
13149 val="$vali"
13150 set d_index; eval $setvar
13151
13152 : check whether inet_aton exists
13153 set inet_aton d_inetaton
13154 eval $inlibc
13155
13156 : Look for isascii
13157 echo " "
13158 $cat >isascii.c <<'EOCP'
13159 #include <stdio.h>
13160 #include <ctype.h>
13161 int main() {
13162         int c = 'A';
13163         if (isascii(c))
13164                 exit(0);
13165         else
13166                 exit(1);
13167 }
13168 EOCP
13169 set isascii
13170 if eval $compile; then
13171         echo "isascii() found." >&4
13172         val="$define"
13173 else
13174         echo "isascii() NOT found." >&4
13175         val="$undef"
13176 fi
13177 set d_isascii
13178 eval $setvar
13179 $rm -f isascii*
13180
13181 : see if isfinite exists
13182 set isfinite d_isfinite
13183 eval $inlibc
13184
13185 : see if isinf exists
13186 set isinf d_isinf
13187 eval $inlibc
13188
13189 : see if isnan exists
13190 set isnan d_isnan
13191 eval $inlibc
13192
13193 : see if isnanl exists
13194 set isnanl d_isnanl
13195 eval $inlibc
13196
13197 : see if killpg exists
13198 set killpg d_killpg
13199 eval $inlibc
13200
13201 : see if lchown exists
13202 echo " "
13203 $cat > try.c <<'EOCP'
13204 /* System header to define __stub macros and hopefully few prototypes,
13205     which can conflict with char lchown(); below.  */
13206 #include <assert.h>
13207 /* Override any gcc2 internal prototype to avoid an error.  */
13208 /* We use char because int might match the return type of a gcc2
13209    builtin and then its argument prototype would still apply.  */
13210 char lchown();
13211 int main() {
13212     /*  The GNU C library defines this for functions which it implements
13213         to always fail with ENOSYS.  Some functions are actually named
13214         something starting with __ and the normal name is an alias.  */
13215 #if defined (__stub_lchown) || defined (__stub___lchown)
13216 choke me
13217 #else
13218 lchown();
13219 #endif
13220 ; return 0; }
13221 EOCP
13222 set try
13223 if eval $compile; then
13224     $echo "lchown() found." >&4
13225     val="$define"
13226 else
13227     $echo "lchown() NOT found." >&4
13228     val="$undef"
13229 fi
13230 set d_lchown
13231 eval $setvar
13232
13233 : See if number of significant digits in a double precision number is known
13234 echo " "
13235 $cat >ldbl_dig.c <<EOM
13236 #$i_limits I_LIMITS
13237 #$i_float I_FLOAT
13238 #ifdef I_LIMITS
13239 #include <limits.h>
13240 #endif
13241 #ifdef I_FLOAT
13242 #include <float.h>
13243 #endif
13244 #ifdef LDBL_DIG
13245 printf("Contains LDBL_DIG");
13246 #endif
13247 EOM
13248 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13249 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13250         echo "LDBL_DIG found." >&4
13251         val="$define"
13252 else
13253         echo "LDBL_DIG NOT found." >&4
13254         val="$undef"
13255 fi
13256 $rm -f ldbl_dig.?
13257 set d_ldbl_dig
13258 eval $setvar
13259
13260 : see if link exists
13261 set link d_link
13262 eval $inlibc
13263
13264 : see if localtime_r exists
13265 set localtime_r d_localtime_r
13266 eval $inlibc
13267 case "$d_localtime_r" in
13268 "$define")
13269         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
13270         case "time" in
13271         time)
13272                 hdrs="$hdrs $i_systime sys/time.h"
13273                 ;;
13274         esac
13275         case "$d_localtime_r_proto:$usethreads" in
13276         ":define")      d_localtime_r_proto=define
13277                 set d_localtime_r_proto localtime_r $hdrs
13278                 eval $hasproto ;;
13279         *)      ;;
13280         esac
13281         case "$d_localtime_r_proto" in
13282         define)
13283         case "$localtime_r_proto" in
13284         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13285         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13286         esac
13287         case "$localtime_r_proto" in
13288         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13289         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13290         esac
13291         case "$localtime_r_proto" in
13292         ''|0)   d_localtime_r=undef
13293                 localtime_r_proto=0
13294                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13295         * )     case "$localtime_r_proto" in
13296                 REENTRANT_PROTO*) ;;
13297                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13298                 esac
13299                 echo "Prototype: $try" ;;
13300         esac
13301         ;;
13302         *)      case "$usethreads" in
13303                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13304                 esac
13305                 d_localtime_r=undef
13306                 localtime_r_proto=0
13307                 ;;
13308         esac
13309         ;;
13310 *)      localtime_r_proto=0
13311         ;;
13312 esac
13313
13314 : see if localeconv exists
13315 set localeconv d_locconv
13316 eval $inlibc
13317
13318 : see if lockf exists
13319 set lockf d_lockf
13320 eval $inlibc
13321
13322 : see if prototype for lseek is available
13323 echo " "
13324 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
13325 eval $hasproto
13326
13327 : see if lstat exists
13328 set lstat d_lstat
13329 eval $inlibc
13330
13331 : see if madvise exists
13332 set madvise d_madvise
13333 eval $inlibc
13334
13335 : see if mblen exists
13336 set mblen d_mblen
13337 eval $inlibc
13338
13339 : see if mbstowcs exists
13340 set mbstowcs d_mbstowcs
13341 eval $inlibc
13342
13343 : see if mbtowc exists
13344 set mbtowc d_mbtowc
13345 eval $inlibc
13346
13347 : see if memchr exists
13348 set memchr d_memchr
13349 eval $inlibc
13350
13351 : see if memcmp exists
13352 set memcmp d_memcmp
13353 eval $inlibc
13354
13355 : see if memcpy exists
13356 set memcpy d_memcpy
13357 eval $inlibc
13358
13359 : see if memmove exists
13360 set memmove d_memmove
13361 eval $inlibc
13362
13363 : see if memset exists
13364 set memset d_memset
13365 eval $inlibc
13366
13367 : see if mkdir exists
13368 set mkdir d_mkdir
13369 eval $inlibc
13370
13371 : see if mkdtemp exists
13372 set mkdtemp d_mkdtemp
13373 eval $inlibc
13374
13375 : see if mkfifo exists
13376 set mkfifo d_mkfifo
13377 eval $inlibc
13378
13379 : see if mkstemp exists
13380 set mkstemp d_mkstemp
13381 eval $inlibc
13382
13383 : see if mkstemps exists
13384 set mkstemps d_mkstemps
13385 eval $inlibc
13386
13387 : see if mktime exists
13388 set mktime d_mktime
13389 eval $inlibc
13390
13391 : see if this is a sys/mman.h system
13392 set sys/mman.h i_sysmman
13393 eval $inhdr
13394
13395 : see if mmap exists
13396 set mmap d_mmap
13397 eval $inlibc
13398 : see what shmat returns
13399 : default to something harmless
13400 mmaptype='void *'
13401 case "$i_sysmman$d_mmap" in
13402 "$define$define")
13403         $cat >mmap.c <<'END'
13404 #include <sys/mman.h>
13405 void *mmap();
13406 END
13407         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
13408                 mmaptype='void *'
13409         else
13410                 mmaptype='caddr_t'
13411         fi
13412         echo "and it returns ($mmaptype)." >&4
13413         ;;
13414 esac
13415
13416
13417
13418 : see if mprotect exists
13419 set mprotect d_mprotect
13420 eval $inlibc
13421
13422 : see if msgctl exists
13423 set msgctl d_msgctl
13424 eval $inlibc
13425
13426 : see if msgget exists
13427 set msgget d_msgget
13428 eval $inlibc
13429
13430 : see if msgsnd exists
13431 set msgsnd d_msgsnd
13432 eval $inlibc
13433
13434 : see if msgrcv exists
13435 set msgrcv d_msgrcv
13436 eval $inlibc
13437
13438 : see how much of the 'msg*(2)' library is present.
13439 h_msg=true
13440 echo " "
13441 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
13442 *"$undef"*) h_msg=false;;
13443 esac
13444 case "$osname" in
13445 freebsd)
13446     case "`ipcs 2>&1`" in
13447     "SVID messages"*"not configured"*)
13448         echo "Your $osname does not have the msg*(2) configured." >&4
13449         h_msg=false
13450         val="$undef"
13451         set msgctl d_msgctl
13452         eval $setvar
13453         set msgget d_msgget
13454         eval $setvar
13455         set msgsnd d_msgsnd
13456         eval $setvar
13457         set msgrcv d_msgrcv
13458         eval $setvar
13459         ;;
13460     esac
13461     ;;
13462 esac
13463 : we could also check for sys/ipc.h ...
13464 if $h_msg && $test `./findhdr sys/msg.h`; then
13465         echo "You have the full msg*(2) library." >&4
13466         val="$define"
13467 else
13468         echo "You don't have the full msg*(2) library." >&4
13469         val="$undef"
13470 fi
13471 set d_msg
13472 eval $setvar
13473
13474
13475 echo " "
13476 echo "Checking to see if your system supports struct msghdr..." >&4
13477 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
13478 eval $hasstruct
13479 case "$d_msghdr_s" in
13480 "$define")      echo "Yes, it does."   ;;
13481 *)              echo "No, it doesn't." ;;
13482 esac
13483
13484
13485 : see if msync exists
13486 set msync d_msync
13487 eval $inlibc
13488
13489 : see if munmap exists
13490 set munmap d_munmap
13491 eval $inlibc
13492
13493 : see if nice exists
13494 set nice d_nice
13495 eval $inlibc
13496
13497 : see if this is a langinfo.h system
13498 set langinfo.h i_langinfo
13499 eval $inhdr
13500
13501 : see if nl_langinfo exists
13502 set nl_langinfo d_nl_langinfo
13503 eval $inlibc
13504
13505 : check for length of character
13506 echo " "
13507 case "$charsize" in
13508 '')
13509         echo "Checking to see how big your characters are (hey, you never know)..." >&4
13510         $cat >try.c <<'EOCP'
13511 #include <stdio.h>
13512 int main()
13513 {
13514     printf("%d\n", (int)sizeof(char));
13515     exit(0);
13516 }
13517 EOCP
13518         set try
13519         if eval $compile_ok; then
13520                 dflt=`$run ./try`
13521         else
13522                 dflt='1'
13523                 echo "(I can't seem to compile the test program.  Guessing...)"
13524         fi
13525         ;;
13526 *)
13527         dflt="$charsize"
13528         ;;
13529 esac
13530 rp="What is the size of a character (in bytes)?"
13531 . ./myread
13532 charsize="$ans"
13533 $rm -f try.c try
13534
13535 : check for volatile keyword
13536 echo " "
13537 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
13538 $cat >try.c <<'EOCP'
13539 int main()
13540 {
13541         typedef struct _goo_struct goo_struct;
13542         goo_struct * volatile goo = ((goo_struct *)0);
13543         struct _goo_struct {
13544                 long long_int;
13545                 int reg_int;
13546                 char char_var;
13547         };
13548         typedef unsigned short foo_t;
13549         char *volatile foo;
13550         volatile int bar;
13551         volatile foo_t blech;
13552         foo = foo;
13553 }
13554 EOCP
13555 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
13556         val="$define"
13557         echo "Yup, it does."
13558 else
13559         val="$undef"
13560         echo "Nope, it doesn't."
13561 fi
13562 set d_volatile
13563 eval $setvar
13564 $rm -f try.*
13565
13566
13567 echo " "
13568 $echo "Choosing the C types to be used for Perl's internal types..." >&4
13569
13570 case "$use64bitint:$d_quad:$quadtype" in
13571 define:define:?*)
13572         ivtype="$quadtype"
13573         uvtype="$uquadtype"
13574         ivsize=8
13575         uvsize=8
13576         ;;
13577 *)      ivtype="long"
13578         uvtype="unsigned long"
13579         ivsize=$longsize
13580         uvsize=$longsize
13581         ;;
13582 esac
13583
13584 case "$uselongdouble:$d_longdbl" in
13585 define:define)
13586         nvtype="long double"
13587         nvsize=$longdblsize
13588         ;;
13589 *)      nvtype=double
13590         nvsize=$doublesize
13591         ;;
13592 esac
13593
13594 $echo "(IV will be "$ivtype", $ivsize bytes)"
13595 $echo "(UV will be "$uvtype", $uvsize bytes)"
13596 $echo "(NV will be "$nvtype", $nvsize bytes)"
13597
13598 $cat >try.c <<EOCP
13599 #$i_inttypes I_INTTYPES
13600 #ifdef I_INTTYPES
13601 #include <inttypes.h>
13602 #endif
13603 #include <stdio.h>
13604 int main() {
13605 #ifdef INT8
13606    int8_t i =  INT8_MAX;
13607   uint8_t u = UINT8_MAX;
13608   printf("int8_t\n");
13609 #endif
13610 #ifdef INT16
13611    int16_t i =  INT16_MAX;
13612   uint16_t i = UINT16_MAX;
13613   printf("int16_t\n");
13614 #endif
13615 #ifdef INT32
13616    int32_t i =  INT32_MAX;
13617   uint32_t u = UINT32_MAX;
13618   printf("int32_t\n");
13619 #endif
13620 }
13621 EOCP
13622
13623 case "$i8type" in
13624 '')     case "$charsize" in
13625         1)      i8type=char
13626                 u8type="unsigned char"
13627                 i8size=$charsize
13628                 u8size=$charsize
13629                 ;;
13630         esac
13631         ;;
13632 esac
13633 case "$i8type" in
13634 '')     set try -DINT8
13635         if eval $compile; then
13636                 case "`$run ./try`" in
13637                 int8_t) i8type=int8_t
13638                         u8type=uint8_t
13639                         i8size=1
13640                         u8size=1
13641                         ;;
13642                 esac
13643         fi
13644         ;;
13645 esac
13646 case "$i8type" in
13647 '')     if $test $charsize -ge 1; then
13648                 i8type=char
13649                 u8type="unsigned char"
13650                 i8size=$charsize
13651                 u8size=$charsize
13652         fi
13653         ;;
13654 esac
13655
13656 case "$i16type" in
13657 '')     case "$shortsize" in
13658         2)      i16type=short
13659                 u16type="unsigned short"
13660                 i16size=$shortsize
13661                 u16size=$shortsize
13662                 ;;
13663         esac
13664         ;;
13665 esac
13666 case "$i16type" in
13667 '')     set try -DINT16
13668         if eval $compile; then
13669                 case "`$run ./try`" in
13670                 int16_t)
13671                         i16type=int16_t
13672                         u16type=uint16_t
13673                         i16size=2
13674                         u16size=2
13675                         ;;
13676                 esac
13677         fi
13678         ;;
13679 esac
13680 case "$i16type" in
13681 '')     if $test $shortsize -ge 2; then
13682                 i16type=short
13683                 u16type="unsigned short"
13684                 i16size=$shortsize
13685                 u16size=$shortsize
13686         fi
13687         ;;
13688 esac
13689
13690 case "$i32type" in
13691 '')     case "$longsize" in
13692         4)      i32type=long
13693                 u32type="unsigned long"
13694                 i32size=$longsize
13695                 u32size=$longsize
13696                 ;;
13697         *)      case "$intsize" in
13698                 4)      i32type=int
13699                         u32type="unsigned int"
13700                         i32size=$intsize
13701                         u32size=$intsize
13702                         ;;
13703                 esac
13704                 ;;
13705         esac
13706         ;;
13707 esac
13708 case "$i32type" in
13709 '')     set try -DINT32
13710         if eval $compile; then
13711                 case "`$run ./try`" in
13712                 int32_t)
13713                         i32type=int32_t
13714                         u32type=uint32_t
13715                         i32size=4
13716                         u32size=4
13717                         ;;
13718                 esac
13719         fi
13720         ;;
13721 esac
13722 case "$i32type" in
13723 '')     if $test $intsize -ge 4; then
13724                 i32type=int
13725                 u32type="unsigned int"
13726                 i32size=$intsize
13727                 u32size=$intsize
13728         fi
13729         ;;
13730 esac
13731
13732 case "$i64type" in
13733 '')     case "$d_quad:$quadtype" in
13734         define:?*)
13735                 i64type="$quadtype"
13736                 u64type="$uquadtype"
13737                 i64size=8
13738                 u64size=8
13739                 ;;
13740         esac
13741         ;;
13742 esac
13743
13744 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
13745 : volatile so that the compiler has to store it out to memory.
13746 if test X"$d_volatile" = X"$define"; then
13747         volatile=volatile
13748 fi
13749 $cat <<EOP >try.c
13750 #include <stdio.h>
13751 #include <sys/types.h>
13752 #include <signal.h>
13753 #ifdef SIGFPE
13754 $volatile int bletched = 0;
13755 $signal_t blech(s) int s; { bletched = 1; }
13756 #endif
13757 int main() {
13758     $uvtype u = 0;
13759     $nvtype d;
13760     int     n = 8 * $uvsize;
13761     int     i;
13762 #ifdef SIGFPE
13763     signal(SIGFPE, blech);
13764 #endif
13765
13766     for (i = 0; i < n; i++) {
13767       u = u << 1 | ($uvtype)1;
13768       d = ($nvtype)u;
13769       if (($uvtype)d != u)
13770         break;
13771       if (d <= 0)
13772         break;
13773       d = ($nvtype)(u - 1);
13774       if (($uvtype)d != (u - 1))
13775         break;
13776 #ifdef SIGFPE
13777       if (bletched) {
13778         break;
13779 #endif
13780       } 
13781     }
13782     printf("%d\n", ((i == n) ? -n : i));
13783     exit(0);
13784 }
13785 EOP
13786 set try
13787
13788 d_nv_preserves_uv="$undef"
13789 if eval $compile; then
13790         nv_preserves_uv_bits="`$run ./try`"
13791 fi
13792 case "$nv_preserves_uv_bits" in
13793 \-[1-9]*)       
13794         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
13795         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
13796         d_nv_preserves_uv="$define"
13797         ;;
13798 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
13799         d_nv_preserves_uv="$undef" ;;
13800 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
13801         nv_preserves_uv_bits="$undef" ;;
13802 esac
13803
13804 $rm -f try.* try
13805
13806
13807 : check for off64_t
13808 echo " "
13809 echo "Checking to see if you have off64_t..." >&4
13810 $cat >try.c <<EOCP
13811 #include <sys/types.h>
13812 #include <unistd.h>
13813 int main() { off64_t x = 7; }
13814 EOCP
13815 set try
13816 if eval $compile; then
13817         val="$define"
13818         echo "You have off64_t."
13819 else
13820         val="$undef"
13821         echo "You do not have off64_t."
13822         case "$lseeksize" in
13823         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
13824         esac
13825 fi
13826 $rm -f try.* try
13827 set d_off64_t
13828 eval $setvar
13829
13830 : how to create joinable pthreads
13831 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
13832         echo " "
13833         echo "Checking what constant to use for creating joinable pthreads..." >&4 
13834         $cat >try.c <<'EOCP'
13835 #include <pthread.h>
13836 int main() {
13837     int detachstate = JOINABLE;
13838 }
13839 EOCP
13840         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
13841         if eval $compile; then
13842                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
13843                 val="$undef" # Yes, undef.
13844                 set d_old_pthread_create_joinable
13845                 eval $setvar
13846                 val=""
13847                 set old_pthread_create_joinable
13848                 eval $setvar
13849         else
13850                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
13851                 if eval $compile; then
13852                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
13853                         val="$define"
13854                         set d_old_pthread_create_joinable
13855                         eval $setvar
13856                         val=PTHREAD_CREATE_UNDETACHED
13857                         set old_pthread_create_joinable
13858                         eval $setvar
13859                 else            
13860                         set try -DJOINABLE=__UNDETACHED
13861                         if eval $compile; then
13862                                 echo "You seem to use __UNDETACHED." >&4
13863                                 val="$define"
13864                                 set d_old_pthread_create_joinable
13865                                 eval $setvar
13866                                 val=__UNDETACHED
13867                                 set old_pthread_create_joinable
13868                                 eval $setvar
13869                         else
13870                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
13871                                 val="$define"
13872                                 set d_old_pthread_create_joinable
13873                                 eval $setvar
13874                                 val=0
13875                                 set old_pthread_create_joinable
13876                                 eval $setvar
13877                         fi
13878                 fi
13879         fi
13880         $rm -f try try.*
13881 else
13882     d_old_pthread_create_joinable="$undef"
13883     old_pthread_create_joinable=""
13884 fi
13885
13886 : see if pause exists
13887 set pause d_pause
13888 eval $inlibc
13889
13890 : see if pipe exists
13891 set pipe d_pipe
13892 eval $inlibc
13893
13894 : see if poll exists
13895 set poll d_poll
13896 eval $inlibc
13897
13898 : see if readlink exists
13899 set readlink d_readlink
13900 eval $inlibc
13901
13902 echo " "
13903 procselfexe=''
13904 val="$undef"
13905 case "$d_readlink" in
13906 "$define")
13907         if $issymlink /proc/self/exe ; then
13908                 $ls -l /proc/self/exe > reflect
13909                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
13910                         echo "You have Linux-like /proc/self/exe."
13911                         procselfexe='"/proc/self/exe"'
13912                         val="$define"
13913                 fi
13914         fi
13915         if $issymlink /proc/curproc/file ; then
13916                 $ls -l /proc/curproc/file > reflect
13917                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
13918                         echo "You have BSD-like /proc/curproc/file."
13919                         procselfexe='"/proc/curproc/file"'
13920                         val="$define"
13921                 fi
13922         fi
13923         ;;
13924 esac
13925 $rm -f reflect
13926 set d_procselfexe
13927 eval $setvar
13928
13929 : see whether the pthread_atfork exists
13930 $cat >try.c <<EOP
13931 #include <pthread.h>
13932 #include <stdio.h>
13933 int main() {
13934 #ifdef  PTHREAD_ATFORK
13935         pthread_atfork(NULL,NULL,NULL);
13936 #endif
13937 }
13938 EOP
13939
13940 : see if pthread_atfork exists
13941 set try -DPTHREAD_ATFORK
13942 if eval $compile; then
13943     val="$define"
13944 else
13945     val="$undef"
13946 fi
13947 case "$usethreads" in
13948 $define)
13949         case "$val" in
13950         $define) echo 'pthread_atfork found.' >&4        ;;
13951         *)       echo 'pthread_atfork NOT found.' >&4    ;;
13952         esac
13953 esac
13954 set d_pthread_atfork
13955 eval $setvar
13956
13957
13958 : see whether the various POSIXish _yields exist
13959 $cat >try.c <<EOP
13960 #include <pthread.h>
13961 #include <stdio.h>
13962 int main() {
13963 #ifdef SCHED_YIELD
13964         sched_yield();
13965 #else
13966 #ifdef PTHREAD_YIELD
13967         pthread_yield();
13968 #else
13969 #ifdef PTHREAD_YIELD_NULL
13970         pthread_yield(NULL);
13971 #endif
13972 #endif
13973 #endif
13974 }
13975 EOP
13976 : see if sched_yield exists
13977 set try -DSCHED_YIELD
13978 if eval $compile; then
13979     val="$define"
13980     sched_yield='sched_yield()'
13981 else
13982     val="$undef"
13983 fi
13984 case "$usethreads" in
13985 $define)
13986         case "$val" in
13987         $define) echo 'sched_yield() found.' >&4        ;;
13988         *)       echo 'sched_yield() NOT found.' >&4    ;;
13989         esac
13990 esac
13991 set d_sched_yield
13992 eval $setvar
13993
13994 : see if pthread_yield exists
13995 set try -DPTHREAD_YIELD
13996 if eval $compile; then
13997     val="$define"
13998     case "$sched_yield" in
13999     '') sched_yield='pthread_yield()' ;;
14000     esac
14001 else
14002     set try -DPTHREAD_YIELD_NULL
14003     if eval $compile; then
14004         val="$define"
14005         case "$sched_yield" in
14006         '') sched_yield='pthread_yield(NULL)' ;;
14007         esac
14008     else
14009         val="$undef"
14010     fi
14011 fi
14012 case "$usethreads" in
14013 $define)
14014         case "$val" in
14015         $define) echo 'pthread_yield() found.' >&4      ;;
14016         *)       echo 'pthread_yield() NOT found.' >&4  ;;
14017         esac
14018         ;;
14019 esac
14020 set d_pthread_yield
14021 eval $setvar
14022
14023 case "$sched_yield" in
14024 '') sched_yield=undef ;;
14025 esac
14026
14027 $rm -f try try.*
14028
14029 : see if random_r exists
14030 set random_r d_random_r
14031 eval $inlibc
14032 case "$d_random_r" in
14033 "$define")
14034         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
14035         case "stdlib" in
14036         time)
14037                 hdrs="$hdrs $i_systime sys/time.h"
14038                 ;;
14039         esac
14040         case "$d_random_r_proto:$usethreads" in
14041         ":define")      d_random_r_proto=define
14042                 set d_random_r_proto random_r $hdrs
14043                 eval $hasproto ;;
14044         *)      ;;
14045         esac
14046         case "$d_random_r_proto" in
14047         define)
14048         case "$random_r_proto" in
14049         ''|0) try='int random_r(int*, struct random_data*);'
14050         ./protochk "extern $try" $hdrs && random_r_proto=I_TS ;;
14051         esac
14052         case "$random_r_proto" in
14053         ''|0)   d_random_r=undef
14054                 random_r_proto=0
14055                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
14056         * )     case "$random_r_proto" in
14057                 REENTRANT_PROTO*) ;;
14058                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
14059                 esac
14060                 echo "Prototype: $try" ;;
14061         esac
14062         ;;
14063         *)      case "$usethreads" in
14064                 define) echo "random_r has no prototype, not using it." >&4 ;;
14065                 esac
14066                 d_random_r=undef
14067                 random_r_proto=0
14068                 ;;
14069         esac
14070         ;;
14071 *)      random_r_proto=0
14072         ;;
14073 esac
14074
14075 : see if readdir and friends exist
14076 set readdir d_readdir
14077 eval $inlibc
14078 set seekdir d_seekdir
14079 eval $inlibc
14080 set telldir d_telldir
14081 eval $inlibc
14082 set rewinddir d_rewinddir
14083 eval $inlibc
14084
14085 : see if readdir64_r exists
14086 set readdir64_r d_readdir64_r
14087 eval $inlibc
14088 case "$d_readdir64_r" in
14089 "$define")
14090         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14091         case "dirent" in
14092         time)
14093                 hdrs="$hdrs $i_systime sys/time.h"
14094                 ;;
14095         esac
14096         case "$d_readdir64_r_proto:$usethreads" in
14097         ":define")      d_readdir64_r_proto=define
14098                 set d_readdir64_r_proto readdir64_r $hdrs
14099                 eval $hasproto ;;
14100         *)      ;;
14101         esac
14102         case "$d_readdir64_r_proto" in
14103         define)
14104         case "$readdir64_r_proto" in
14105         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
14106         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
14107         esac
14108         case "$readdir64_r_proto" in
14109         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
14110         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
14111         esac
14112         case "$readdir64_r_proto" in
14113         ''|0)   d_readdir64_r=undef
14114                 readdir64_r_proto=0
14115                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
14116         * )     case "$readdir64_r_proto" in
14117                 REENTRANT_PROTO*) ;;
14118                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
14119                 esac
14120                 echo "Prototype: $try" ;;
14121         esac
14122         ;;
14123         *)      case "$usethreads" in
14124                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
14125                 esac
14126                 d_readdir64_r=undef
14127                 readdir64_r_proto=0
14128                 ;;
14129         esac
14130         ;;
14131 *)      readdir64_r_proto=0
14132         ;;
14133 esac
14134
14135 : see if readdir_r exists
14136 set readdir_r d_readdir_r
14137 eval $inlibc
14138 case "$d_readdir_r" in
14139 "$define")
14140         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14141         case "dirent" in
14142         time)
14143                 hdrs="$hdrs $i_systime sys/time.h"
14144                 ;;
14145         esac
14146         case "$d_readdir_r_proto:$usethreads" in
14147         ":define")      d_readdir_r_proto=define
14148                 set d_readdir_r_proto readdir_r $hdrs
14149                 eval $hasproto ;;
14150         *)      ;;
14151         esac
14152         case "$d_readdir_r_proto" in
14153         define)
14154         case "$readdir_r_proto" in
14155         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14156         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14157         esac
14158         case "$readdir_r_proto" in
14159         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14160         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14161         esac
14162         case "$readdir_r_proto" in
14163         ''|0)   d_readdir_r=undef
14164                 readdir_r_proto=0
14165                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14166         * )     case "$readdir_r_proto" in
14167                 REENTRANT_PROTO*) ;;
14168                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14169                 esac
14170                 echo "Prototype: $try" ;;
14171         esac
14172         ;;
14173         *)      case "$usethreads" in
14174                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14175                 esac
14176                 d_readdir_r=undef
14177                 readdir_r_proto=0
14178                 ;;
14179         esac
14180         ;;
14181 *)      readdir_r_proto=0
14182         ;;
14183 esac
14184
14185 : see if readv exists
14186 set readv d_readv
14187 eval $inlibc
14188
14189 : see if recvmsg exists
14190 set recvmsg d_recvmsg
14191 eval $inlibc
14192
14193 : see if rename exists
14194 set rename d_rename
14195 eval $inlibc
14196
14197 : see if rmdir exists
14198 set rmdir d_rmdir
14199 eval $inlibc
14200
14201 : see if memory.h is available.
14202 val=''
14203 set memory.h val
14204 eval $inhdr
14205
14206 : See if it conflicts with string.h
14207 case "$val" in
14208 $define)
14209         case "$strings" in
14210         '') ;;
14211         *)
14212                 $cppstdin $cppflags $cppminus < $strings > mem.h
14213                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
14214                         echo " "
14215                         echo "We won't be including <memory.h>."
14216                         val="$undef"
14217                 fi
14218                 $rm -f mem.h
14219                 ;;
14220         esac
14221 esac
14222 set i_memory
14223 eval $setvar
14224
14225 : can bcopy handle overlapping blocks?
14226 echo " "
14227 val="$undef"
14228 case "$d_memmove" in
14229 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
14230 *)      case "$d_bcopy" in
14231         "$define")
14232                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
14233                 $cat >try.c <<EOCP
14234 #$i_memory I_MEMORY
14235 #$i_stdlib I_STDLIB
14236 #$i_string I_STRING
14237 #$i_unistd I_UNISTD
14238 EOCP
14239         $cat >>try.c <<'EOCP'
14240 #include <stdio.h>
14241 #ifdef I_MEMORY
14242 #  include <memory.h>
14243 #endif
14244 #ifdef I_STDLIB
14245 #  include <stdlib.h>
14246 #endif
14247 #ifdef I_STRING
14248 #  include <string.h>
14249 #else
14250 #  include <strings.h>
14251 #endif
14252 #ifdef I_UNISTD
14253 #  include <unistd.h>  /* Needed for NetBSD */
14254 #endif
14255 int main()
14256 {
14257 char buf[128], abc[128];
14258 char *b;
14259 int len;
14260 int off;
14261 int align;
14262
14263 /* Copy "abcde..." string to char abc[] so that gcc doesn't
14264    try to store the string in read-only memory. */
14265 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
14266
14267 for (align = 7; align >= 0; align--) {
14268         for (len = 36; len; len--) {
14269                 b = buf+align;
14270                 bcopy(abc, b, len);
14271                 for (off = 1; off <= len; off++) {
14272                         bcopy(b, b+off, len);
14273                         bcopy(b+off, b, len);
14274                         if (bcmp(b, abc, len))
14275                                 exit(1);
14276                 }
14277         }
14278 }
14279 exit(0);
14280 }
14281 EOCP
14282                 set try
14283                 if eval $compile_ok; then
14284                         if ./try 2>/dev/null; then
14285                                 echo "Yes, it can."
14286                                 val="$define"
14287                         else
14288                                 echo "It can't, sorry."
14289                         fi
14290                 else
14291                         echo "(I can't compile the test program, so we'll assume not...)"
14292                 fi
14293                 ;;
14294         esac
14295         $rm -f try.* try core
14296         ;;
14297 esac
14298 set d_safebcpy
14299 eval $setvar
14300
14301 : can memcpy handle overlapping blocks?
14302 echo " "
14303 val="$undef"
14304 case "$d_memmove" in
14305 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
14306 *)      case "$d_memcpy" in
14307         "$define")
14308                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
14309                 $cat >try.c <<EOCP
14310 #$i_memory I_MEMORY
14311 #$i_stdlib I_STDLIB
14312 #$i_string I_STRING
14313 #$i_unistd I_UNISTD
14314 EOCP
14315         $cat >>try.c <<'EOCP'
14316 #include <stdio.h>
14317 #ifdef I_MEMORY
14318 #  include <memory.h>
14319 #endif
14320 #ifdef I_STDLIB
14321 #  include <stdlib.h>
14322 #endif
14323 #ifdef I_STRING
14324 #  include <string.h>
14325 #else
14326 #  include <strings.h>
14327 #endif
14328 #ifdef I_UNISTD
14329 #  include <unistd.h>  /* Needed for NetBSD */
14330 #endif
14331 int main()
14332 {
14333 char buf[128], abc[128];
14334 char *b;
14335 int len;
14336 int off;
14337 int align;
14338
14339 /* Copy "abcde..." string to char abc[] so that gcc doesn't
14340    try to store the string in read-only memory. */
14341 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
14342
14343 for (align = 7; align >= 0; align--) {
14344         for (len = 36; len; len--) {
14345                 b = buf+align;
14346                 memcpy(b, abc, len);
14347                 for (off = 1; off <= len; off++) {
14348                         memcpy(b+off, b, len);
14349                         memcpy(b, b+off, len);
14350                         if (memcmp(b, abc, len))
14351                                 exit(1);
14352                 }
14353         }
14354 }
14355 exit(0);
14356 }
14357 EOCP
14358                 set try
14359                 if eval $compile_ok; then
14360                         if ./try 2>/dev/null; then
14361                                 echo "Yes, it can."
14362                                 val="$define"
14363                         else
14364                                 echo "It can't, sorry."
14365                         fi
14366                 else
14367                         echo "(I can't compile the test program, so we'll assume not...)"
14368                 fi
14369                 ;;
14370         esac
14371         $rm -f try.* try core
14372         ;;
14373 esac
14374 set d_safemcpy
14375 eval $setvar
14376
14377 : can memcmp be trusted to compare relative magnitude?
14378 val="$undef"
14379 case "$d_memcmp" in
14380 "$define")
14381         echo " "
14382         echo "Checking if your memcmp() can compare relative magnitude..." >&4
14383         $cat >try.c <<EOCP
14384 #$i_memory I_MEMORY
14385 #$i_stdlib I_STDLIB
14386 #$i_string I_STRING
14387 #$i_unistd I_UNISTD
14388 EOCP
14389         $cat >>try.c <<'EOCP'
14390 #include <stdio.h>
14391 #ifdef I_MEMORY
14392 #  include <memory.h>
14393 #endif
14394 #ifdef I_STDLIB
14395 #  include <stdlib.h>
14396 #endif
14397 #ifdef I_STRING
14398 #  include <string.h>
14399 #else
14400 #  include <strings.h>
14401 #endif
14402 #ifdef I_UNISTD
14403 #  include <unistd.h>  /* Needed for NetBSD */
14404 #endif
14405 int main()
14406 {
14407 char a = -1;
14408 char b = 0;
14409 if ((a < b) && memcmp(&a, &b, 1) < 0)
14410         exit(1);
14411 exit(0);
14412 }
14413 EOCP
14414         set try
14415         if eval $compile_ok; then
14416                 if $run ./try 2>/dev/null; then
14417                         echo "Yes, it can."
14418                         val="$define"
14419                 else
14420                         echo "No, it can't (it uses signed chars)."
14421                 fi
14422         else
14423                 echo "(I can't compile the test program, so we'll assume not...)"
14424         fi
14425         ;;
14426 esac
14427 $rm -f try.* try core
14428 set d_sanemcmp
14429 eval $setvar
14430
14431 : see if prototype for sbrk is available
14432 echo " "
14433 set d_sbrkproto sbrk $i_unistd unistd.h
14434 eval $hasproto
14435
14436 : see if select exists
14437 set select d_select
14438 eval $inlibc
14439
14440 : see if semctl exists
14441 set semctl d_semctl
14442 eval $inlibc
14443
14444 : see if semget exists
14445 set semget d_semget
14446 eval $inlibc
14447
14448 : see if semop exists
14449 set semop d_semop
14450 eval $inlibc
14451
14452 : see how much of the 'sem*(2)' library is present.
14453 h_sem=true
14454 echo " "
14455 case "$d_semctl$d_semget$d_semop" in
14456 *"$undef"*) h_sem=false;;
14457 esac
14458 case "$osname" in
14459 freebsd)
14460     case "`ipcs 2>&1`" in
14461     "SVID messages"*"not configured"*)
14462         echo "Your $osname does not have the sem*(2) configured." >&4
14463         h_sem=false
14464         val="$undef"
14465         set semctl d_semctl
14466         eval $setvar
14467         set semget d_semget
14468         eval $setvar
14469         set semop d_semop
14470         eval $setvar
14471         ;;
14472     esac
14473     ;;
14474 esac
14475 : we could also check for sys/ipc.h ...
14476 if $h_sem && $test `./findhdr sys/sem.h`; then
14477         echo "You have the full sem*(2) library." >&4
14478         val="$define"
14479 else
14480         echo "You don't have the full sem*(2) library." >&4
14481         val="$undef"
14482 fi
14483 set d_sem
14484 eval $setvar
14485
14486 : see whether sys/sem.h defines union semun
14487 echo " "
14488 $cat > try.c <<'END'
14489 #include <sys/types.h>
14490 #include <sys/ipc.h>
14491 #include <sys/sem.h>
14492 int main () { union semun semun; semun.buf = 0; }
14493 END
14494 set try
14495 if eval $compile; then
14496     echo "You have union semun in <sys/sem.h>." >&4
14497     val="$define"
14498 else
14499     echo "You do not have union semun in <sys/sem.h>." >&4
14500     val="$undef"
14501 fi
14502 $rm -f try try.c try.h
14503 set d_union_semun
14504 eval $setvar
14505
14506 : see how to do semctl IPC_STAT
14507 case "$d_sem" in
14508 $define)
14509     : see whether semctl IPC_STAT can use union semun
14510     echo " "
14511     $cat > try.h <<END
14512 #ifndef S_IRUSR
14513 #   ifdef S_IREAD
14514 #       define S_IRUSR S_IREAD
14515 #       define S_IWUSR S_IWRITE
14516 #       define S_IXUSR S_IEXEC
14517 #   else
14518 #       define S_IRUSR 0400
14519 #       define S_IWUSR 0200
14520 #       define S_IXUSR 0100
14521 #   endif
14522 #   define S_IRGRP (S_IRUSR>>3)
14523 #   define S_IWGRP (S_IWUSR>>3)
14524 #   define S_IXGRP (S_IXUSR>>3)
14525 #   define S_IROTH (S_IRUSR>>6)
14526 #   define S_IWOTH (S_IWUSR>>6)
14527 #   define S_IXOTH (S_IXUSR>>6)
14528 #endif
14529 #ifndef S_IRWXU
14530 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
14531 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
14532 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
14533 #endif
14534 END
14535
14536     $cat > try.c <<END
14537 #include <sys/types.h>
14538 #include <sys/ipc.h>
14539 #include <sys/sem.h>
14540 #include <sys/stat.h>
14541 #include <stdio.h>
14542 #include <errno.h>
14543 #include "try.h"
14544 #ifndef errno
14545 extern int errno;
14546 #endif
14547 #$d_union_semun HAS_UNION_SEMUN
14548 int main() {
14549     union semun
14550 #ifndef HAS_UNION_SEMUN
14551     {
14552         int val;
14553         struct semid_ds *buf;
14554         unsigned short *array;
14555     }
14556 #endif
14557     arg;
14558     int sem, st;
14559
14560 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
14561     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
14562     if (sem > -1) {
14563         struct semid_ds argbuf;
14564         arg.buf = &argbuf;
14565 #       ifdef IPC_STAT
14566         st = semctl(sem, 0, IPC_STAT, arg);
14567         if (st == 0)
14568             printf("semun\n");
14569         else
14570 #       endif /* IPC_STAT */
14571             printf("semctl IPC_STAT failed: errno = %d\n", errno);
14572 #       ifdef IPC_RMID
14573         if (semctl(sem, 0, IPC_RMID, arg) != 0)
14574 #       endif /* IPC_RMID */
14575             printf("semctl IPC_RMID failed: errno = %d\n", errno);
14576     } else
14577 #endif /* IPC_PRIVATE && ... */
14578         printf("semget failed: errno = %d\n", errno);
14579   return 0;
14580 }
14581 END
14582     val="$undef"
14583     set try
14584     if eval $compile; then
14585         xxx=`$run ./try`
14586         case "$xxx" in
14587         semun) val="$define" ;;
14588         esac
14589     fi
14590     $rm -f try try.c
14591     set d_semctl_semun
14592     eval $setvar
14593     case "$d_semctl_semun" in
14594     $define)
14595         echo "You can use union semun for semctl IPC_STAT." >&4
14596         also='also'
14597         ;;
14598     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
14599         also=''
14600         ;;
14601     esac
14602
14603     : see whether semctl IPC_STAT can use struct semid_ds pointer
14604     $cat > try.c <<'END'
14605 #include <sys/types.h>
14606 #include <sys/ipc.h>
14607 #include <sys/sem.h>
14608 #include <sys/stat.h>
14609 #include "try.h"
14610 #include <stdio.h>
14611 #include <errno.h>
14612 #ifndef errno
14613 extern int errno;
14614 #endif
14615 int main() {
14616     struct semid_ds arg;
14617     int sem, st;
14618
14619 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
14620     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
14621     if (sem > -1) {
14622 #       ifdef IPC_STAT
14623         st = semctl(sem, 0, IPC_STAT, &arg);
14624         if (st == 0)
14625             printf("semid_ds\n");
14626         else
14627 #       endif /* IPC_STAT */
14628             printf("semctl IPC_STAT failed: errno = %d\n", errno);
14629 #       ifdef IPC_RMID
14630         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
14631 #       endif /* IPC_RMID */
14632             printf("semctl IPC_RMID failed: errno = %d\n", errno);
14633     } else
14634 #endif /* IPC_PRIVATE && ... */
14635         printf("semget failed: errno = %d\n", errno);
14636
14637     return 0;
14638 }
14639 END
14640     val="$undef"
14641     set try
14642     if eval $compile; then
14643         xxx=`$run ./try`
14644         case "$xxx" in
14645         semid_ds) val="$define" ;;
14646         esac
14647     fi
14648     $rm -f try try.c
14649     set d_semctl_semid_ds
14650     eval $setvar
14651     case "$d_semctl_semid_ds" in
14652     $define)
14653         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
14654         ;;
14655     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
14656         ;;
14657     esac
14658     $rm -f try.h
14659     ;;
14660 *)  val="$undef"
14661
14662     # We do not have the full sem*(2) library, so assume we can not
14663     # use either.
14664
14665     set d_semctl_semun
14666     eval $setvar
14667
14668     set d_semctl_semid_ds
14669     eval $setvar
14670     ;;
14671 esac
14672
14673 : see if sendmsg exists
14674 set sendmsg d_sendmsg
14675 eval $inlibc
14676
14677 : see if setegid exists
14678 set setegid d_setegid
14679 eval $inlibc
14680
14681 : see if seteuid exists
14682 set seteuid d_seteuid
14683 eval $inlibc
14684
14685 : see if setgrent exists
14686 set setgrent d_setgrent
14687 eval $inlibc
14688
14689 : see if setgrent_r exists
14690 set setgrent_r d_setgrent_r
14691 eval $inlibc
14692 case "$d_setgrent_r" in
14693 "$define")
14694         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
14695         case "grp" in
14696         time)
14697                 hdrs="$hdrs $i_systime sys/time.h"
14698                 ;;
14699         esac
14700         case "$d_setgrent_r_proto:$usethreads" in
14701         ":define")      d_setgrent_r_proto=define
14702                 set d_setgrent_r_proto setgrent_r $hdrs
14703                 eval $hasproto ;;
14704         *)      ;;
14705         esac
14706         case "$d_setgrent_r_proto" in
14707         define)
14708         case "$setgrent_r_proto" in
14709         ''|0) try='int setgrent_r(FILE**);'
14710         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
14711         esac
14712         case "$setgrent_r_proto" in
14713         ''|0) try='void setgrent_r(FILE**);'
14714         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
14715         esac
14716         case "$setgrent_r_proto" in
14717         ''|0)   d_setgrent_r=undef
14718                 setgrent_r_proto=0
14719                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
14720         * )     case "$setgrent_r_proto" in
14721                 REENTRANT_PROTO*) ;;
14722                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
14723                 esac
14724                 echo "Prototype: $try" ;;
14725         esac
14726         ;;
14727         *)      case "$usethreads" in
14728                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
14729                 esac
14730                 d_setgrent_r=undef
14731                 setgrent_r_proto=0
14732                 ;;
14733         esac
14734         ;;
14735 *)      setgrent_r_proto=0
14736         ;;
14737 esac
14738
14739 : see if sethostent exists
14740 set sethostent d_sethent
14741 eval $inlibc
14742
14743 : see if sethostent_r exists
14744 set sethostent_r d_sethostent_r
14745 eval $inlibc
14746 case "$d_sethostent_r" in
14747 "$define")
14748         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14749         case "netdb" in
14750         time)
14751                 hdrs="$hdrs $i_systime sys/time.h"
14752                 ;;
14753         esac
14754         case "$d_sethostent_r_proto:$usethreads" in
14755         ":define")      d_sethostent_r_proto=define
14756                 set d_sethostent_r_proto sethostent_r $hdrs
14757                 eval $hasproto ;;
14758         *)      ;;
14759         esac
14760         case "$d_sethostent_r_proto" in
14761         define)
14762         case "$sethostent_r_proto" in
14763         ''|0) try='int sethostent_r(int, struct hostent_data*);'
14764         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
14765         esac
14766         case "$sethostent_r_proto" in
14767         ''|0) try='void sethostent_r(int, struct hostent_data*);'
14768         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
14769         esac
14770         case "$sethostent_r_proto" in
14771         ''|0)   d_sethostent_r=undef
14772                 sethostent_r_proto=0
14773                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
14774         * )     case "$sethostent_r_proto" in
14775                 REENTRANT_PROTO*) ;;
14776                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
14777                 esac
14778                 echo "Prototype: $try" ;;
14779         esac
14780         ;;
14781         *)      case "$usethreads" in
14782                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
14783                 esac
14784                 d_sethostent_r=undef
14785                 sethostent_r_proto=0
14786                 ;;
14787         esac
14788         ;;
14789 *)      sethostent_r_proto=0
14790         ;;
14791 esac
14792
14793 : see if setitimer exists
14794 set setitimer d_setitimer
14795 eval $inlibc
14796
14797 : see if setlinebuf exists
14798 set setlinebuf d_setlinebuf
14799 eval $inlibc
14800
14801 : see if setlocale exists
14802 set setlocale d_setlocale
14803 eval $inlibc
14804
14805 : see if locale.h is available
14806 set locale.h i_locale
14807 eval $inhdr
14808
14809 : see if setlocale_r exists
14810 set setlocale_r d_setlocale_r
14811 eval $inlibc
14812 case "$d_setlocale_r" in
14813 "$define")
14814         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
14815         case "locale" in
14816         time)
14817                 hdrs="$hdrs $i_systime sys/time.h"
14818                 ;;
14819         esac
14820         case "$d_setlocale_r_proto:$usethreads" in
14821         ":define")      d_setlocale_r_proto=define
14822                 set d_setlocale_r_proto setlocale_r $hdrs
14823                 eval $hasproto ;;
14824         *)      ;;
14825         esac
14826         case "$d_setlocale_r_proto" in
14827         define)
14828         case "$setlocale_r_proto" in
14829         ''|0) try='int setlocale_r(int, const char*, char*, int);'
14830         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
14831         esac
14832         case "$setlocale_r_proto" in
14833         ''|0)   d_setlocale_r=undef
14834                 setlocale_r_proto=0
14835                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
14836         * )     case "$setlocale_r_proto" in
14837                 REENTRANT_PROTO*) ;;
14838                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
14839                 esac
14840                 echo "Prototype: $try" ;;
14841         esac
14842         ;;
14843         *)      case "$usethreads" in
14844                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
14845                 esac
14846                 d_setlocale_r=undef
14847                 setlocale_r_proto=0
14848                 ;;
14849         esac
14850         ;;
14851 *)      setlocale_r_proto=0
14852         ;;
14853 esac
14854
14855 : see if setnetent exists
14856 set setnetent d_setnent
14857 eval $inlibc
14858
14859 : see if setnetent_r exists
14860 set setnetent_r d_setnetent_r
14861 eval $inlibc
14862 case "$d_setnetent_r" in
14863 "$define")
14864         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14865         case "netdb" in
14866         time)
14867                 hdrs="$hdrs $i_systime sys/time.h"
14868                 ;;
14869         esac
14870         case "$d_setnetent_r_proto:$usethreads" in
14871         ":define")      d_setnetent_r_proto=define
14872                 set d_setnetent_r_proto setnetent_r $hdrs
14873                 eval $hasproto ;;
14874         *)      ;;
14875         esac
14876         case "$d_setnetent_r_proto" in
14877         define)
14878         case "$setnetent_r_proto" in
14879         ''|0) try='int setnetent_r(int, struct netent_data*);'
14880         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
14881         esac
14882         case "$setnetent_r_proto" in
14883         ''|0) try='void setnetent_r(int, struct netent_data*);'
14884         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
14885         esac
14886         case "$setnetent_r_proto" in
14887         ''|0)   d_setnetent_r=undef
14888                 setnetent_r_proto=0
14889                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
14890         * )     case "$setnetent_r_proto" in
14891                 REENTRANT_PROTO*) ;;
14892                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
14893                 esac
14894                 echo "Prototype: $try" ;;
14895         esac
14896         ;;
14897         *)      case "$usethreads" in
14898                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
14899                 esac
14900                 d_setnetent_r=undef
14901                 setnetent_r_proto=0
14902                 ;;
14903         esac
14904         ;;
14905 *)      setnetent_r_proto=0
14906         ;;
14907 esac
14908
14909 : see if setprotoent exists
14910 set setprotoent d_setpent
14911 eval $inlibc
14912
14913 : see if setpgid exists
14914 set setpgid d_setpgid
14915 eval $inlibc
14916
14917 : see if setpgrp2 exists
14918 set setpgrp2 d_setpgrp2
14919 eval $inlibc
14920
14921 : see if setpriority exists
14922 set setpriority d_setprior
14923 eval $inlibc
14924
14925 : see if setproctitle exists
14926 set setproctitle d_setproctitle
14927 eval $inlibc
14928
14929 : see if setprotoent_r exists
14930 set setprotoent_r d_setprotoent_r
14931 eval $inlibc
14932 case "$d_setprotoent_r" in
14933 "$define")
14934         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14935         case "netdb" in
14936         time)
14937                 hdrs="$hdrs $i_systime sys/time.h"
14938                 ;;
14939         esac
14940         case "$d_setprotoent_r_proto:$usethreads" in
14941         ":define")      d_setprotoent_r_proto=define
14942                 set d_setprotoent_r_proto setprotoent_r $hdrs
14943                 eval $hasproto ;;
14944         *)      ;;
14945         esac
14946         case "$d_setprotoent_r_proto" in
14947         define)
14948         case "$setprotoent_r_proto" in
14949         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
14950         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
14951         esac
14952         case "$setprotoent_r_proto" in
14953         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
14954         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
14955         esac
14956         case "$setprotoent_r_proto" in
14957         ''|0)   d_setprotoent_r=undef
14958                 setprotoent_r_proto=0
14959                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
14960         * )     case "$setprotoent_r_proto" in
14961                 REENTRANT_PROTO*) ;;
14962                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
14963                 esac
14964                 echo "Prototype: $try" ;;
14965         esac
14966         ;;
14967         *)      case "$usethreads" in
14968                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
14969                 esac
14970                 d_setprotoent_r=undef
14971                 setprotoent_r_proto=0
14972                 ;;
14973         esac
14974         ;;
14975 *)      setprotoent_r_proto=0
14976         ;;
14977 esac
14978
14979 : see if setpwent exists
14980 set setpwent d_setpwent
14981 eval $inlibc
14982
14983 : see if setpwent_r exists
14984 set setpwent_r d_setpwent_r
14985 eval $inlibc
14986 case "$d_setpwent_r" in
14987 "$define")
14988         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
14989         case "pwd" in
14990         time)
14991                 hdrs="$hdrs $i_systime sys/time.h"
14992                 ;;
14993         esac
14994         case "$d_setpwent_r_proto:$usethreads" in
14995         ":define")      d_setpwent_r_proto=define
14996                 set d_setpwent_r_proto setpwent_r $hdrs
14997                 eval $hasproto ;;
14998         *)      ;;
14999         esac
15000         case "$d_setpwent_r_proto" in
15001         define)
15002         case "$setpwent_r_proto" in
15003         ''|0) try='int setpwent_r(FILE**);'
15004         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
15005         esac
15006         case "$setpwent_r_proto" in
15007         ''|0) try='void setpwent_r(FILE**);'
15008         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
15009         esac
15010         case "$setpwent_r_proto" in
15011         ''|0)   d_setpwent_r=undef
15012                 setpwent_r_proto=0
15013                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
15014         * )     case "$setpwent_r_proto" in
15015                 REENTRANT_PROTO*) ;;
15016                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
15017                 esac
15018                 echo "Prototype: $try" ;;
15019         esac
15020         ;;
15021         *)      case "$usethreads" in
15022                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
15023                 esac
15024                 d_setpwent_r=undef
15025                 setpwent_r_proto=0
15026                 ;;
15027         esac
15028         ;;
15029 *)      setpwent_r_proto=0
15030         ;;
15031 esac
15032
15033 : see if setregid exists
15034 set setregid d_setregid
15035 eval $inlibc
15036 set setresgid d_setresgid
15037 eval $inlibc
15038
15039 : see if setreuid exists
15040 set setreuid d_setreuid
15041 eval $inlibc
15042 set setresuid d_setresuid
15043 eval $inlibc
15044
15045 : see if setrgid exists
15046 set setrgid d_setrgid
15047 eval $inlibc
15048
15049 : see if setruid exists
15050 set setruid d_setruid
15051 eval $inlibc
15052
15053 : see if setservent exists
15054 set setservent d_setsent
15055 eval $inlibc
15056
15057 : see if setservent_r exists
15058 set setservent_r d_setservent_r
15059 eval $inlibc
15060 case "$d_setservent_r" in
15061 "$define")
15062         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15063         case "netdb" in
15064         time)
15065                 hdrs="$hdrs $i_systime sys/time.h"
15066                 ;;
15067         esac
15068         case "$d_setservent_r_proto:$usethreads" in
15069         ":define")      d_setservent_r_proto=define
15070                 set d_setservent_r_proto setservent_r $hdrs
15071                 eval $hasproto ;;
15072         *)      ;;
15073         esac
15074         case "$d_setservent_r_proto" in
15075         define)
15076         case "$setservent_r_proto" in
15077         ''|0) try='int setservent_r(int, struct servent_data*);'
15078         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
15079         esac
15080         case "$setservent_r_proto" in
15081         ''|0) try='void setservent_r(int, struct servent_data*);'
15082         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
15083         esac
15084         case "$setservent_r_proto" in
15085         ''|0)   d_setservent_r=undef
15086                 setservent_r_proto=0
15087                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
15088         * )     case "$setservent_r_proto" in
15089                 REENTRANT_PROTO*) ;;
15090                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
15091                 esac
15092                 echo "Prototype: $try" ;;
15093         esac
15094         ;;
15095         *)      case "$usethreads" in
15096                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
15097                 esac
15098                 d_setservent_r=undef
15099                 setservent_r_proto=0
15100                 ;;
15101         esac
15102         ;;
15103 *)      setservent_r_proto=0
15104         ;;
15105 esac
15106
15107 : see if setsid exists
15108 set setsid d_setsid
15109 eval $inlibc
15110
15111 : see if setvbuf exists
15112 set setvbuf d_setvbuf
15113 eval $inlibc
15114
15115 : see if sfio.h is available
15116 set sfio.h i_sfio
15117 eval $inhdr
15118
15119
15120 : see if sfio library is available
15121 case "$i_sfio" in
15122 $define)
15123         val=''
15124         set sfreserve val
15125         eval $inlibc
15126         ;;
15127 *)
15128         val="$undef"
15129         ;;
15130 esac
15131 : Ok, but do we want to use it.
15132 case "$val" in
15133 $define)
15134         case "$usesfio" in
15135         true|$define|[yY]*) dflt='y';;
15136         *) dflt='n';;
15137         esac
15138         echo "$package can use the sfio library, but it is experimental."
15139         case "$useperlio" in
15140         "$undef")
15141             echo "For sfio also the PerlIO abstraction layer is needed."
15142             echo "Earlier you said you wouldn't want that."
15143             ;;
15144         esac
15145         rp="You seem to have sfio available, do you want to try using it?"
15146         . ./myread
15147         case "$ans" in
15148         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
15149                 useperlio="$define"
15150                 val="$define"
15151                 ;;
15152         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
15153                 val="$undef"
15154                 ;;
15155         esac
15156         ;;
15157 *)      case "$usesfio" in
15158         true|$define|[yY]*)
15159                 echo "Sorry, cannot find sfio on this machine." >&4
15160                 echo "Ignoring your setting of usesfio=$usesfio." >&4
15161                 val="$undef"
15162                 ;;
15163         esac
15164         ;;
15165 esac
15166 set d_sfio
15167 eval $setvar
15168 case "$d_sfio" in
15169 $define) usesfio='true';;
15170 *) usesfio='false';;
15171 esac
15172 case "$d_sfio" in
15173 $define) ;;
15174 *)      : Remove sfio from list of libraries to use
15175         case "$libs" in
15176         *-lsfio*)
15177                 echo "Removing unneeded -lsfio from library list" >&4
15178                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
15179                 shift
15180                 libs="$*"
15181                 echo "libs = $libs" >&4
15182                 ;;
15183         esac
15184 ;;
15185 esac
15186
15187
15188 : see if shmctl exists
15189 set shmctl d_shmctl
15190 eval $inlibc
15191
15192 : see if shmget exists
15193 set shmget d_shmget
15194 eval $inlibc
15195
15196 : see if shmat exists
15197 set shmat d_shmat
15198 eval $inlibc
15199 : see what shmat returns
15200 case "$d_shmat" in
15201 "$define")
15202         $cat >shmat.c <<'END'
15203 #include <sys/shm.h>
15204 void *shmat();
15205 END
15206         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15207                 shmattype='void *'
15208         else
15209                 shmattype='char *'
15210         fi
15211         echo "and it returns ($shmattype)." >&4
15212         : see if a prototype for shmat is available
15213         xxx=`./findhdr sys/shm.h`
15214         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15215         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15216                 val="$define"
15217         else
15218                 val="$undef"
15219         fi
15220         $rm -f shmat.[co]
15221         ;;
15222 *)
15223         val="$undef"
15224         ;;
15225 esac
15226 set d_shmatprototype
15227 eval $setvar
15228
15229 : see if shmdt exists
15230 set shmdt d_shmdt
15231 eval $inlibc
15232
15233 : see how much of the 'shm*(2)' library is present.
15234 h_shm=true
15235 echo " "
15236 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
15237 *"$undef"*) h_shm=false;;
15238 esac
15239 case "$osname" in
15240 freebsd)
15241     case "`ipcs 2>&1`" in
15242     "SVID shared memory"*"not configured"*)
15243         echo "Your $osname does not have the shm*(2) configured." >&4
15244         h_shm=false
15245         val="$undef"
15246         set shmctl d_shmctl
15247         evat $setvar
15248         set shmget d_shmget
15249         evat $setvar
15250         set shmat d_shmat
15251         evat $setvar
15252         set shmdt d_shmdt
15253         evat $setvar
15254         ;;
15255     esac
15256     ;;
15257 esac
15258 : we could also check for sys/ipc.h ...
15259 if $h_shm && $test `./findhdr sys/shm.h`; then
15260         echo "You have the full shm*(2) library." >&4
15261         val="$define"
15262 else
15263         echo "You don't have the full shm*(2) library." >&4
15264         val="$undef"
15265 fi
15266 set d_shm
15267 eval $setvar
15268
15269 echo " "
15270 : see if we have sigaction
15271 if set sigaction val -f d_sigaction; eval $csym; $val; then
15272         echo 'sigaction() found.' >&4
15273         $cat > try.c <<'EOP'
15274 #include <stdio.h>
15275 #include <sys/types.h>
15276 #include <signal.h>
15277 int main()
15278 {
15279     struct sigaction act, oact;
15280     act.sa_flags = 0;
15281     oact.sa_handler = 0;
15282     /* so that act and oact are used */
15283     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
15284 }
15285 EOP
15286         set try
15287         if eval $compile_ok; then
15288                 val="$define"
15289         else
15290                 echo "But you don't seem to have a useable struct sigaction." >&4
15291                 val="$undef"
15292         fi
15293 else
15294         echo 'sigaction NOT found.' >&4
15295         val="$undef"
15296 fi
15297 set d_sigaction; eval $setvar
15298 $rm -f try try$_o try.c
15299
15300 : see if sigprocmask exists
15301 set sigprocmask d_sigprocmask
15302 eval $inlibc
15303
15304 : see if sigsetjmp exists
15305 echo " "
15306 case "$d_sigsetjmp" in
15307 '')
15308         $cat >try.c <<'EOP'
15309 #include <setjmp.h>
15310 sigjmp_buf env;
15311 int set = 1;
15312 int main()
15313 {
15314         if (sigsetjmp(env,1))
15315                 exit(set);
15316         set = 0;
15317         siglongjmp(env, 1);
15318         exit(1);
15319 }
15320 EOP
15321         set try
15322         if eval $compile; then
15323                 if $run ./try >/dev/null 2>&1; then
15324                         echo "POSIX sigsetjmp found." >&4
15325                         val="$define"
15326                 else
15327                         $cat >&4 <<EOM
15328 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
15329 I'll ignore them.
15330 EOM
15331                         val="$undef"
15332                 fi
15333         else
15334                 echo "sigsetjmp not found." >&4
15335                 val="$undef"
15336         fi
15337         ;;
15338 *) val="$d_sigsetjmp"
15339         case "$d_sigsetjmp" in
15340         $define) echo "POSIX sigsetjmp found." >&4;;
15341         $undef) echo "sigsetjmp not found." >&4;;
15342         esac
15343         ;;
15344 esac
15345 set d_sigsetjmp
15346 eval $setvar
15347 $rm -f try.c try
15348
15349 : see if sockatmark exists
15350 set sockatmark d_sockatmark
15351 eval $inlibc
15352
15353 : see if prototype for sockatmark is available
15354 echo " "
15355 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
15356 eval $hasproto
15357
15358 : see if socks5_init exists
15359 set socks5_init d_socks5_init
15360 eval $inlibc
15361
15362 : see if srand48_r exists
15363 set srand48_r d_srand48_r
15364 eval $inlibc
15365 case "$d_srand48_r" in
15366 "$define")
15367         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
15368         case "stdlib" in
15369         time)
15370                 hdrs="$hdrs $i_systime sys/time.h"
15371                 ;;
15372         esac
15373         case "$d_srand48_r_proto:$usethreads" in
15374         ":define")      d_srand48_r_proto=define
15375                 set d_srand48_r_proto srand48_r $hdrs
15376                 eval $hasproto ;;
15377         *)      ;;
15378         esac
15379         case "$d_srand48_r_proto" in
15380         define)
15381         case "$srand48_r_proto" in
15382         ''|0) try='int srand48_r(long, struct drand48_data*);'
15383         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
15384         esac
15385         case "$srand48_r_proto" in
15386         ''|0)   d_srand48_r=undef
15387                 srand48_r_proto=0
15388                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
15389         * )     case "$srand48_r_proto" in
15390                 REENTRANT_PROTO*) ;;
15391                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
15392                 esac
15393                 echo "Prototype: $try" ;;
15394         esac
15395         ;;
15396         *)      case "$usethreads" in
15397                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
15398                 esac
15399                 d_srand48_r=undef
15400                 srand48_r_proto=0
15401                 ;;
15402         esac
15403         ;;
15404 *)      srand48_r_proto=0
15405         ;;
15406 esac
15407
15408 : see if srandom_r exists
15409 set srandom_r d_srandom_r
15410 eval $inlibc
15411 case "$d_srandom_r" in
15412 "$define")
15413         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
15414         case "stdlib" in
15415         time)
15416                 hdrs="$hdrs $i_systime sys/time.h"
15417                 ;;
15418         esac
15419         case "$d_srandom_r_proto:$usethreads" in
15420         ":define")      d_srandom_r_proto=define
15421                 set d_srandom_r_proto srandom_r $hdrs
15422                 eval $hasproto ;;
15423         *)      ;;
15424         esac
15425         case "$d_srandom_r_proto" in
15426         define)
15427         case "$srandom_r_proto" in
15428         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
15429         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
15430         esac
15431         case "$srandom_r_proto" in
15432         ''|0)   d_srandom_r=undef
15433                 srandom_r_proto=0
15434                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
15435         * )     case "$srandom_r_proto" in
15436                 REENTRANT_PROTO*) ;;
15437                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
15438                 esac
15439                 echo "Prototype: $try" ;;
15440         esac
15441         ;;
15442         *)      case "$usethreads" in
15443                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
15444                 esac
15445                 d_srandom_r=undef
15446                 srandom_r_proto=0
15447                 ;;
15448         esac
15449         ;;
15450 *)      srandom_r_proto=0
15451         ;;
15452 esac
15453
15454 : see if prototype for setresgid is available
15455 echo " "
15456 set d_sresgproto setresgid $i_unistd unistd.h
15457 eval $hasproto
15458
15459 : see if prototype for setresuid is available
15460 echo " "
15461 set d_sresuproto setresuid $i_unistd unistd.h
15462 eval $hasproto
15463
15464 : see if sys/stat.h is available
15465 set sys/stat.h i_sysstat
15466 eval $inhdr
15467
15468
15469 : see if stat knows about block sizes
15470 echo " "
15471 echo "Checking to see if your struct stat has st_blocks field..." >&4
15472 set d_statblks stat st_blocks $i_sysstat sys/stat.h
15473 eval $hasfield
15474
15475
15476 : see if this is a sys/vfs.h system
15477 set sys/vfs.h i_sysvfs
15478 eval $inhdr
15479
15480
15481 : see if this is a sys/statfs.h system
15482 set sys/statfs.h i_sysstatfs
15483 eval $inhdr
15484
15485
15486 echo " "
15487 echo "Checking to see if your system supports struct statfs..." >&4
15488 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
15489 eval $hasstruct
15490 case "$d_statfs_s" in
15491 "$define")      echo "Yes, it does."   ;;
15492 *)              echo "No, it doesn't." ;;
15493 esac
15494
15495
15496
15497 : see if struct statfs knows about f_flags
15498 case "$d_statfs_s" in
15499 define) 
15500         echo " "
15501         echo "Checking to see if your struct statfs has f_flags field..." >&4
15502         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
15503         eval $hasfield
15504         ;;
15505 *)      val="$undef"
15506         set d_statfs_f_flags
15507         eval $setvar
15508         ;;
15509 esac
15510 case "$d_statfs_f_flags" in
15511 "$define")      echo "Yes, it does."   ;;
15512 *)              echo "No, it doesn't." ;;
15513 esac
15514
15515 : see if _ptr and _cnt from stdio act std
15516 echo " "
15517
15518 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
15519         echo "(Looks like you have stdio.h from BSD.)"
15520         case "$stdio_ptr" in
15521         '') stdio_ptr='((fp)->_p)'
15522                 ptr_lval=$define
15523                 ;;
15524         *)      ptr_lval=$d_stdio_ptr_lval;;
15525         esac
15526         case "$stdio_cnt" in
15527         '') stdio_cnt='((fp)->_r)'
15528                 cnt_lval=$define
15529                 ;;
15530         *)      cnt_lval=$d_stdio_cnt_lval;;
15531         esac
15532         case "$stdio_base" in
15533         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
15534         esac
15535         case "$stdio_bufsiz" in
15536         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
15537         esac
15538 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
15539         echo "(Looks like you have stdio.h from Linux.)"
15540         case "$stdio_ptr" in
15541         '') stdio_ptr='((fp)->_IO_read_ptr)'
15542                 ptr_lval=$define
15543                 ;;
15544         *)      ptr_lval=$d_stdio_ptr_lval;;
15545         esac
15546         case "$stdio_cnt" in
15547         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
15548                 cnt_lval=$undef
15549                 ;;
15550         *)      cnt_lval=$d_stdio_cnt_lval;;
15551         esac
15552         case "$stdio_base" in
15553         '') stdio_base='((fp)->_IO_read_base)';;
15554         esac
15555         case "$stdio_bufsiz" in
15556         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
15557         esac
15558 else
15559         case "$stdio_ptr" in
15560         '') stdio_ptr='((fp)->_ptr)'
15561                 ptr_lval=$define
15562                 ;;
15563         *)      ptr_lval=$d_stdio_ptr_lval;;
15564         esac
15565         case "$stdio_cnt" in
15566         '') stdio_cnt='((fp)->_cnt)'
15567                 cnt_lval=$define
15568                 ;;
15569         *)      cnt_lval=$d_stdio_cnt_lval;;
15570         esac
15571         case "$stdio_base" in
15572         '') stdio_base='((fp)->_base)';;
15573         esac
15574         case "$stdio_bufsiz" in
15575         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
15576         esac
15577 fi
15578
15579 : test whether _ptr and _cnt really work
15580 echo "Checking how std your stdio is..." >&4
15581 $cat >try.c <<EOP
15582 #include <stdio.h>
15583 #define FILE_ptr(fp)    $stdio_ptr
15584 #define FILE_cnt(fp)    $stdio_cnt
15585 int main() {
15586         FILE *fp = fopen("try.c", "r");
15587         char c = getc(fp);
15588         if (
15589                 18 <= FILE_cnt(fp) &&
15590                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
15591         )
15592                 exit(0);
15593         exit(1);
15594 }
15595 EOP
15596 val="$undef"
15597 set try
15598 if eval $compile && $to try.c; then
15599         if $run ./try; then
15600                 echo "Your stdio acts pretty std."
15601                 val="$define"
15602         else
15603                 echo "Your stdio isn't very std."
15604         fi
15605 else
15606         echo "Your stdio doesn't appear very std."
15607 fi
15608 $rm -f try.c try
15609 set d_stdstdio
15610 eval $setvar
15611
15612 : Can _ptr be used as an lvalue?
15613 case "$d_stdstdio$ptr_lval" in
15614 $define$define) val=$define ;;
15615 *) val=$undef ;;
15616 esac
15617 set d_stdio_ptr_lval
15618 eval $setvar
15619
15620 : Can _cnt be used as an lvalue?
15621 case "$d_stdstdio$cnt_lval" in
15622 $define$define) val=$define ;;
15623 *) val=$undef ;;
15624 esac
15625 set d_stdio_cnt_lval
15626 eval $setvar
15627
15628
15629 : test whether setting _ptr sets _cnt as a side effect
15630 d_stdio_ptr_lval_sets_cnt="$undef"
15631 d_stdio_ptr_lval_nochange_cnt="$undef"
15632 case "$d_stdio_ptr_lval$d_stdstdio" in
15633 $define$define)
15634         echo "Checking to see what happens if we set the stdio ptr..." >&4
15635 $cat >try.c <<EOP
15636 #include <stdio.h>
15637 /* Can we scream? */
15638 /* Eat dust sed :-) */
15639 /* In the buffer space, no one can hear you scream. */
15640 #define FILE_ptr(fp)    $stdio_ptr
15641 #define FILE_cnt(fp)    $stdio_cnt
15642 #include <sys/types.h>
15643 int main() {
15644         FILE *fp = fopen("try.c", "r");
15645         int c;
15646         char *ptr;
15647         size_t cnt;
15648         if (!fp) {
15649             puts("Fail even to read");
15650             exit(1);
15651         }
15652         c = getc(fp); /* Read away the first # */
15653         if (c == EOF) {
15654             puts("Fail even to read");
15655             exit(1);
15656         }
15657         if (!(
15658                 18 <= FILE_cnt(fp) &&
15659                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
15660         )) {
15661                 puts("Fail even to read");
15662                 exit (1);
15663         }
15664         ptr = (char*) FILE_ptr(fp);
15665         cnt = (size_t)FILE_cnt(fp);
15666
15667         FILE_ptr(fp) += 42;
15668
15669         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
15670                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
15671                 exit (1);
15672         }
15673         if (FILE_cnt(fp) <= 20) {
15674                 printf ("Fail (<20 chars to test)");
15675                 exit (1);
15676         }
15677         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
15678                 puts("Fail compare");
15679                 exit (1);
15680         }
15681         if (cnt == FILE_cnt(fp)) {
15682                 puts("Pass_unchanged");
15683                 exit (0);
15684         }       
15685         if (FILE_cnt(fp) == (cnt - 42)) {
15686                 puts("Pass_changed");
15687                 exit (0);
15688         }
15689         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
15690         return 1;
15691
15692 }
15693 EOP
15694         set try
15695         if eval $compile && $to try.c; then
15696                 case `$run ./try` in
15697                 Pass_changed)
15698                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
15699                         d_stdio_ptr_lval_sets_cnt="$define" ;;
15700                 Pass_unchanged)
15701                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
15702                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
15703                 Fail*)
15704                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
15705                 *)
15706                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
15707         esac
15708         else
15709                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
15710         fi
15711         $rm -f try.c try
15712         ;;
15713 esac
15714
15715 : see if _base is also standard
15716 val="$undef"
15717 case "$d_stdstdio" in
15718 $define)
15719         $cat >try.c <<EOP
15720 #include <stdio.h>
15721 #define FILE_base(fp)   $stdio_base
15722 #define FILE_bufsiz(fp) $stdio_bufsiz
15723 int main() {
15724         FILE *fp = fopen("try.c", "r");
15725         char c = getc(fp);
15726         if (
15727                 19 <= FILE_bufsiz(fp) &&
15728                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
15729         )
15730                 exit(0);
15731         exit(1);
15732 }
15733 EOP
15734         set try
15735         if eval $compile && $to try.c; then
15736                 if $run ./try; then
15737                         echo "And its _base field acts std."
15738                         val="$define"
15739                 else
15740                         echo "But its _base field isn't std."
15741                 fi
15742         else
15743                 echo "However, it seems to be lacking the _base field."
15744         fi
15745         $rm -f try.c try
15746         ;;
15747 esac
15748 set d_stdiobase
15749 eval $setvar
15750
15751 $cat >&4 <<EOM
15752 Checking how to access stdio streams by file descriptor number...
15753 EOM
15754 case "$stdio_stream_array" in
15755 '')     $cat >try.c <<EOCP
15756 #include <stdio.h>
15757 int main() {
15758   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
15759     printf("yes\n");
15760 }
15761 EOCP
15762         for s in _iob __iob __sF
15763         do
15764                 set try -DSTDIO_STREAM_ARRAY=$s
15765                 if eval $compile; then
15766                         case "`$run ./try`" in
15767                         yes)    stdio_stream_array=$s; break ;;
15768                         esac
15769                 fi
15770         done
15771         $rm -f try.* try$exe_ext
15772 esac
15773 case "$stdio_stream_array" in
15774 '')     $cat >&4 <<EOM
15775 I can't figure out how to access stdio streams by file descriptor number.
15776 EOM
15777         d_stdio_stream_array="$undef"
15778         ;;
15779 *)      $cat >&4 <<EOM
15780 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
15781 EOM
15782         d_stdio_stream_array="$define"
15783         ;;
15784 esac
15785
15786 : see if strcoll exists
15787 set strcoll d_strcoll
15788 eval $inlibc
15789
15790 : check for structure copying
15791 echo " "
15792 echo "Checking to see if your C compiler can copy structs..." >&4
15793 $cat >try.c <<'EOCP'
15794 int main()
15795 {
15796         struct blurfl {
15797                 int dyick;
15798         } foo, bar;
15799
15800         foo = bar;
15801 }
15802 EOCP
15803 if $cc -c try.c >/dev/null 2>&1 ; then
15804         val="$define"
15805         echo "Yup, it can."
15806 else
15807         val="$undef"
15808         echo "Nope, it can't."
15809 fi
15810 set d_strctcpy
15811 eval $setvar
15812 $rm -f try.*
15813
15814 : see if strerror and/or sys_errlist[] exist
15815 echo " "
15816 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
15817     if set strerror val -f d_strerror; eval $csym; $val; then
15818                 echo 'strerror() found.' >&4
15819                 d_strerror="$define"
15820                 d_strerrm='strerror(e)'
15821                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
15822                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
15823                         d_syserrlst="$define"
15824                 else
15825                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
15826                         d_syserrlst="$undef"
15827                 fi
15828     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
15829                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
15830                 echo 'strerror() found in string header.' >&4
15831                 d_strerror="$define"
15832                 d_strerrm='strerror(e)'
15833                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
15834                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
15835                                 d_syserrlst="$define"
15836                 else
15837                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
15838                         d_syserrlst="$undef"
15839                 fi
15840     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
15841                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
15842                 d_strerror="$undef"
15843                 d_syserrlst="$define"
15844                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
15845     else
15846                 echo 'strerror() and sys_errlist[] NOT found.' >&4
15847                 d_strerror="$undef"
15848                 d_syserrlst="$undef"
15849                 d_strerrm='"unknown"'
15850     fi
15851 fi
15852
15853 : see if strerror_r exists
15854 set strerror_r d_strerror_r
15855 eval $inlibc
15856 case "$d_strerror_r" in
15857 "$define")
15858         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
15859         case "string" in
15860         time)
15861                 hdrs="$hdrs $i_systime sys/time.h"
15862                 ;;
15863         esac
15864         case "$d_strerror_r_proto:$usethreads" in
15865         ":define")      d_strerror_r_proto=define
15866                 set d_strerror_r_proto strerror_r $hdrs
15867                 eval $hasproto ;;
15868         *)      ;;
15869         esac
15870         case "$d_strerror_r_proto" in
15871         define)
15872         case "$strerror_r_proto" in
15873         ''|0) try='int strerror_r(int, char*, size_t);'
15874         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
15875         esac
15876         case "$strerror_r_proto" in
15877         ''|0) try='int strerror_r(int, char*, int);'
15878         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
15879         esac
15880         case "$strerror_r_proto" in
15881         ''|0) try='char* strerror_r(int, char*, size_t);'
15882         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
15883         esac
15884         case "$strerror_r_proto" in
15885         ''|0)   d_strerror_r=undef
15886                 strerror_r_proto=0
15887                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
15888         * )     case "$strerror_r_proto" in
15889                 REENTRANT_PROTO*) ;;
15890                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
15891                 esac
15892                 echo "Prototype: $try" ;;
15893         esac
15894         ;;
15895         *)      case "$usethreads" in
15896                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
15897                 esac
15898                 d_strerror_r=undef
15899                 strerror_r_proto=0
15900                 ;;
15901         esac
15902         ;;
15903 *)      strerror_r_proto=0
15904         ;;
15905 esac
15906
15907 : see if strftime exists
15908 set strftime d_strftime
15909 eval $inlibc
15910
15911 : see if strtod exists
15912 set strtod d_strtod
15913 eval $inlibc
15914
15915 : see if strtol exists
15916 set strtol d_strtol
15917 eval $inlibc
15918
15919 : see if strtold exists
15920 set strtold d_strtold
15921 eval $inlibc
15922
15923 : see if strtoll exists
15924 set strtoll d_strtoll
15925 eval $inlibc
15926
15927 case "$d_longlong-$d_strtoll" in
15928 "$define-$define")
15929         $cat <<EOM
15930 Checking whether your strtoll() works okay...
15931 EOM
15932         $cat >try.c <<'EOCP'
15933 #include <errno.h>
15934 #ifdef __hpux
15935 #define strtoll __strtoll
15936 #endif
15937 #ifdef __EMX__
15938 #define strtoll _strtoll
15939 #endif
15940 #include <stdio.h>
15941 extern long long int strtoll(char *s, char **, int); 
15942 static int bad = 0;
15943 int check(char *s, long long ell, int een) {
15944         long long gll;
15945         errno = 0;
15946         gll = strtoll(s, 0, 10);
15947         if (!((gll == ell) && (errno == een)))
15948                 bad++;
15949 }
15950 int main() {
15951         check(" 1",                                      1LL, 0);
15952         check(" 0",                                      0LL, 0);
15953         check("-1",                                     -1LL, 0);
15954         check("-9223372036854775808", -9223372036854775808LL, 0);
15955         check("-9223372036854775808", -9223372036854775808LL, 0);
15956         check(" 9223372036854775807",  9223372036854775807LL, 0);
15957         check("-9223372036854775808", -9223372036854775808LL, 0);
15958         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
15959         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
15960         if (!bad)
15961                 printf("ok\n");
15962 }
15963 EOCP
15964         set try
15965         if eval $compile; then
15966                 yyy=`$run ./try`
15967                 case "$yyy" in
15968                 ok) echo "Your strtoll() seems to be working okay." ;;
15969                 *) cat <<EOM >&4
15970 Your strtoll() doesn't seem to be working okay.
15971 EOM
15972                    d_strtoll="$undef"
15973                    ;;
15974                 esac
15975         else
15976                 echo "(I can't seem to compile the test program--assuming it doesn't)"
15977                 d_strtoll="$undef"
15978         fi
15979         ;;
15980 esac
15981
15982 : see if strtoq exists
15983 set strtoq d_strtoq
15984 eval $inlibc
15985
15986 : see if strtoul exists
15987 set strtoul d_strtoul
15988 eval $inlibc
15989
15990 case "$d_strtoul" in
15991 "$define")
15992         $cat <<EOM
15993 Checking whether your strtoul() works okay...
15994 EOM
15995         $cat >try.c <<'EOCP'
15996 #include <errno.h>
15997 #include <stdio.h>
15998 extern unsigned long int strtoul(char *s, char **, int); 
15999 static int bad = 0;
16000 void check(char *s, unsigned long eul, int een) {
16001         unsigned long gul;
16002         errno = 0;
16003         gul = strtoul(s, 0, 10);
16004         if (!((gul == eul) && (errno == een)))
16005                 bad++;
16006 }
16007 int main() {
16008         check(" 1", 1L, 0);
16009         check(" 0", 0L, 0);
16010 EOCP
16011         case "$longsize" in
16012         8)
16013             $cat >>try.c <<'EOCP'
16014         check("18446744073709551615", 18446744073709551615UL, 0);
16015         check("18446744073709551616", 18446744073709551615UL, ERANGE);
16016 #if 0 /* strtoul() for /^-/ strings is undefined. */
16017         check("-1", 18446744073709551615UL, 0);
16018         check("-18446744073709551614", 2, 0);
16019         check("-18446744073709551615", 1, 0);
16020         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
16021         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
16022 #endif
16023 EOCP
16024                 ;;
16025         4)
16026                     $cat >>try.c <<'EOCP'
16027         check("4294967295", 4294967295UL, 0);
16028         check("4294967296", 4294967295UL, ERANGE);
16029 #if 0 /* strtoul() for /^-/ strings is undefined. */
16030         check("-1", 4294967295UL, 0);
16031         check("-4294967294", 2, 0);
16032         check("-4294967295", 1, 0);
16033         check("-4294967296", 4294967295UL, ERANGE);
16034         check("-4294967297", 4294967295UL, ERANGE);
16035 #endif
16036 EOCP
16037                 ;;
16038         *)
16039 : Should we write these tests to be more portable by sprintf-ing
16040 : ~0 and then manipulating that char string as input for strtol?
16041                 ;;
16042         esac
16043         $cat >>try.c <<'EOCP'
16044         if (!bad)
16045                 printf("ok\n");
16046         return 0;
16047 }
16048 EOCP
16049         set try
16050         if eval $compile; then
16051                 case "`$run ./try`" in
16052                 ok) echo "Your strtoul() seems to be working okay." ;;
16053                 *) cat <<EOM >&4
16054 Your strtoul() doesn't seem to be working okay.
16055 EOM
16056                    d_strtoul="$undef"
16057                    ;;
16058                 esac
16059         fi
16060         ;;
16061 esac
16062
16063 : see if strtoull exists
16064 set strtoull d_strtoull
16065 eval $inlibc
16066
16067 case "$d_longlong-$d_strtoull" in
16068 "$define-$define")
16069         $cat <<EOM
16070 Checking whether your strtoull() works okay...
16071 EOM
16072         $cat >try.c <<'EOCP'
16073 #include <errno.h>
16074 #ifdef __hpux
16075 #define strtoull __strtoull
16076 #endif
16077 #include <stdio.h>
16078 extern unsigned long long int strtoull(char *s, char **, int); 
16079 static int bad = 0;
16080 int check(char *s, long long eull, int een) {
16081         long long gull;
16082         errno = 0;
16083         gull = strtoull(s, 0, 10);
16084         if (!((gull == eull) && (errno == een)))
16085                 bad++;
16086 }
16087 int main() {
16088         check(" 1",                                        1LL, 0);
16089         check(" 0",                                        0LL, 0);
16090         check("18446744073709551615",  18446744073709551615ULL, 0);
16091         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16092 #if 0 /* strtoull() for /^-/ strings is undefined. */
16093         check("-1",                    18446744073709551615ULL, 0);
16094         check("-18446744073709551614",                     2LL, 0);
16095         check("-18446744073709551615",                     1LL, 0);
16096         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16097         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16098 #endif
16099         if (!bad)
16100                 printf("ok\n");
16101 }
16102 EOCP
16103         set try
16104         if eval $compile; then
16105                 case "`$run ./try`" in
16106                 ok) echo "Your strtoull() seems to be working okay." ;;
16107                 *) cat <<EOM >&4
16108 Your strtoull() doesn't seem to be working okay.
16109 EOM
16110                    d_strtoull="$undef"
16111                    ;;
16112                 esac
16113         fi
16114         ;;
16115 esac
16116
16117 : see if strtouq exists
16118 set strtouq d_strtouq
16119 eval $inlibc
16120
16121 case "$d_strtouq" in
16122 "$define")
16123         $cat <<EOM
16124 Checking whether your strtouq() works okay...
16125 EOM
16126         $cat >try.c <<'EOCP'
16127 #include <errno.h>
16128 #include <stdio.h>
16129 extern unsigned long long int strtouq(char *s, char **, int); 
16130 static int bad = 0;
16131 void check(char *s, unsigned long long eull, int een) {
16132         unsigned long long gull;
16133         errno = 0;
16134         gull = strtouq(s, 0, 10);
16135         if (!((gull == eull) && (errno == een)))
16136                 bad++;
16137 }
16138 int main() {
16139         check(" 1",                                        1LL, 0);
16140         check(" 0",                                        0LL, 0);
16141         check("18446744073709551615",  18446744073709551615ULL, 0);
16142         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16143 #if 0 /* strtouq() for /^-/ strings is undefined. */
16144         check("-1",                    18446744073709551615ULL, 0);
16145         check("-18446744073709551614",                     2LL, 0);
16146         check("-18446744073709551615",                     1LL, 0);
16147         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16148         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16149 #endif
16150         if (!bad)
16151                 printf("ok\n");
16152         return 0;
16153 }
16154 EOCP
16155         set try
16156         if eval $compile; then
16157                 case "`$run ./try`" in
16158                 ok) echo "Your strtouq() seems to be working okay." ;;
16159                 *) cat <<EOM >&4
16160 Your strtouq() doesn't seem to be working okay.
16161 EOM
16162                    d_strtouq="$undef"
16163                    ;;
16164                 esac
16165         fi
16166         ;;
16167 esac
16168
16169 : see if strxfrm exists
16170 set strxfrm d_strxfrm
16171 eval $inlibc
16172
16173 : see if symlink exists
16174 set symlink d_symlink
16175 eval $inlibc
16176
16177 : see if syscall exists
16178 set syscall d_syscall
16179 eval $inlibc
16180
16181 : see if prototype for syscall is available
16182 echo " "
16183 set d_syscallproto syscall $i_unistd unistd.h
16184 eval $hasproto
16185
16186 : see if sysconf exists
16187 set sysconf d_sysconf
16188 eval $inlibc
16189
16190 : see if system exists
16191 set system d_system
16192 eval $inlibc
16193
16194 : see if tcgetpgrp exists
16195 set tcgetpgrp d_tcgetpgrp
16196 eval $inlibc
16197
16198 : see if tcsetpgrp exists
16199 set tcsetpgrp d_tcsetpgrp
16200 eval $inlibc
16201
16202 : see if prototype for telldir is available
16203 echo " "
16204 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16205 eval $hasproto
16206
16207 : see if time exists
16208 echo " "
16209 if test "X$d_time" = X -o X"$timetype" = X; then
16210     if set time val -f d_time; eval $csym; $val; then
16211                 echo 'time() found.' >&4
16212                 val="$define"
16213                 rp="What is the type returned by time() on this system?"
16214                 set time_t timetype long stdio.h sys/types.h
16215                 eval $typedef_ask
16216     else
16217                 echo 'time() not found, hope that will do.' >&4
16218                 val="$undef"
16219                 timetype='int';
16220     fi
16221     set d_time
16222     eval $setvar
16223 fi
16224
16225 : see if this is a sys/times.h system
16226 set sys/times.h i_systimes
16227 eval $inhdr
16228
16229 : see if times exists
16230 echo " "
16231 if set times val -f d_times; eval $csym; $val; then
16232         echo 'times() found.' >&4
16233         d_times="$define"
16234         inc=''
16235         case "$i_systimes" in
16236         "$define") inc='sys/times.h';;
16237         esac
16238         rp="What is the type returned by times() on this system?"
16239         set clock_t clocktype long stdio.h sys/types.h $inc
16240         eval $typedef_ask
16241 else
16242         echo 'times() NOT found, hope that will do.' >&4
16243         d_times="$undef"
16244         clocktype='int'
16245 fi
16246
16247 : see if tmpnam_r exists
16248 set tmpnam_r d_tmpnam_r
16249 eval $inlibc
16250 case "$d_tmpnam_r" in
16251 "$define")
16252         hdrs="$i_systypes sys/types.h define stdio.h "
16253         case "stdio" in
16254         time)
16255                 hdrs="$hdrs $i_systime sys/time.h"
16256                 ;;
16257         esac
16258         case "$d_tmpnam_r_proto:$usethreads" in
16259         ":define")      d_tmpnam_r_proto=define
16260                 set d_tmpnam_r_proto tmpnam_r $hdrs
16261                 eval $hasproto ;;
16262         *)      ;;
16263         esac
16264         case "$d_tmpnam_r_proto" in
16265         define)
16266         case "$tmpnam_r_proto" in
16267         ''|0) try='char* tmpnam_r(char*);'
16268         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16269         esac
16270         case "$tmpnam_r_proto" in
16271         ''|0)   d_tmpnam_r=undef
16272                 tmpnam_r_proto=0
16273                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16274         * )     case "$tmpnam_r_proto" in
16275                 REENTRANT_PROTO*) ;;
16276                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16277                 esac
16278                 echo "Prototype: $try" ;;
16279         esac
16280         ;;
16281         *)      case "$usethreads" in
16282                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16283                 esac
16284                 d_tmpnam_r=undef
16285                 tmpnam_r_proto=0
16286                 ;;
16287         esac
16288         ;;
16289 *)      tmpnam_r_proto=0
16290         ;;
16291 esac
16292
16293 : see if truncate exists
16294 set truncate d_truncate
16295 eval $inlibc
16296
16297 : see if ttyname_r exists
16298 set ttyname_r d_ttyname_r
16299 eval $inlibc
16300 case "$d_ttyname_r" in
16301 "$define")
16302         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16303         case "unistd" in
16304         time)
16305                 hdrs="$hdrs $i_systime sys/time.h"
16306                 ;;
16307         esac
16308         case "$d_ttyname_r_proto:$usethreads" in
16309         ":define")      d_ttyname_r_proto=define
16310                 set d_ttyname_r_proto ttyname_r $hdrs
16311                 eval $hasproto ;;
16312         *)      ;;
16313         esac
16314         case "$d_ttyname_r_proto" in
16315         define)
16316         case "$ttyname_r_proto" in
16317         ''|0) try='int ttyname_r(int, char*, size_t);'
16318         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16319         esac
16320         case "$ttyname_r_proto" in
16321         ''|0) try='int ttyname_r(int, char*, int);'
16322         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16323         esac
16324         case "$ttyname_r_proto" in
16325         ''|0) try='char* ttyname_r(int, char*, int);'
16326         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16327         esac
16328         case "$ttyname_r_proto" in
16329         ''|0)   d_ttyname_r=undef
16330                 ttyname_r_proto=0
16331                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16332         * )     case "$ttyname_r_proto" in
16333                 REENTRANT_PROTO*) ;;
16334                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16335                 esac
16336                 echo "Prototype: $try" ;;
16337         esac
16338         ;;
16339         *)      case "$usethreads" in
16340                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16341                 esac
16342                 d_ttyname_r=undef
16343                 ttyname_r_proto=0
16344                 ;;
16345         esac
16346         ;;
16347 *)      ttyname_r_proto=0
16348         ;;
16349 esac
16350
16351 : see if tzname[] exists
16352 echo " "
16353 if set tzname val -a d_tzname; eval $csym; $val; then
16354         val="$define"
16355         echo 'tzname[] found.' >&4
16356 else
16357         val="$undef"
16358         echo 'tzname[] NOT found.' >&4
16359 fi
16360 set d_tzname
16361 eval $setvar
16362
16363 case "$osname" in
16364 next|rhapsody|darwin) multiarch="$define" ;;
16365 esac
16366 case "$multiarch" in
16367 ''|[nN]*) multiarch="$undef" ;;
16368 esac
16369
16370 : check for ordering of bytes in a long
16371 echo " "
16372 case "$usecrosscompile$multiarch" in
16373 *$define*)
16374         $cat <<EOM
16375 You seem to be either cross-compiling or doing a multiarchitecture build,
16376 skipping the byteorder check.
16377
16378 EOM
16379         byteorder='ffff'
16380         ;;
16381 *)
16382         case "$byteorder" in
16383         '')
16384                 $cat <<'EOM'
16385 In the following, larger digits indicate more significance.  A big-endian
16386 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16387 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16388 machines may have weird orders like 3412.  A Cray will report 87654321,
16389 an Alpha will report 12345678. If the test program works the default is
16390 probably right.
16391 I'm now running the test program...
16392 EOM
16393                 $cat >try.c <<'EOCP'
16394 #include <stdio.h>
16395 int main()
16396 {
16397         int i;
16398         union {
16399                 unsigned long l;
16400                 char c[sizeof(long)];
16401         } u;
16402
16403         if (sizeof(long) > 4)
16404                 u.l = (0x08070605L << 32) | 0x04030201L;
16405         else
16406                 u.l = 0x04030201L;
16407         for (i = 0; i < sizeof(long); i++)
16408                 printf("%c", u.c[i]+'0');
16409         printf("\n");
16410         exit(0);
16411 }
16412 EOCP
16413                 xxx_prompt=y
16414                 set try
16415                 if eval $compile && ./try > /dev/null; then
16416                         dflt=`$run ./try`
16417                         case "$dflt" in
16418                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16419                                 echo "(The test program ran ok.)"
16420                                 echo "byteorder=$dflt"
16421                                 xxx_prompt=n
16422                         ;;
16423                         ????|????????) echo "(The test program ran ok.)" ;;
16424                         *) echo "(The test program didn't run right for some reason.)" ;;
16425                         esac
16426                 else
16427                         dflt='4321'
16428                         cat <<'EOM'
16429 (I can't seem to compile the test program.  Guessing big-endian...)
16430 EOM
16431                 fi
16432                 case "$xxx_prompt" in
16433                 y)
16434                         rp="What is the order of bytes in a long?"
16435                         . ./myread
16436                         byteorder="$ans"
16437                         ;;
16438                 *)      byteorder=$dflt
16439                         ;;
16440                 esac
16441                 ;;
16442         esac
16443         $rm -f try.c try
16444         ;;
16445 esac
16446
16447
16448 $cat <<EOM
16449
16450 Checking to see whether you can access character data unalignedly...
16451 EOM
16452 case "$d_u32align" in
16453 '')   $cat >try.c <<EOCP
16454 #include <stdio.h>
16455 #define U32 $u32type
16456 #define BYTEORDER 0x$byteorder
16457 #define U8 $u8type
16458 #include <signal.h>
16459 #ifdef SIGBUS
16460 $signal_t bletch(s) int s; { exit(4); }
16461 #endif
16462 int main() {
16463 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
16464     U8 buf[8];
16465     U32 *up;
16466     int i;
16467
16468     if (sizeof(U32) != 4) {
16469         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
16470         exit(1);
16471     }
16472
16473     fflush(stdout);
16474
16475 #ifdef SIGBUS
16476     signal(SIGBUS, bletch);
16477 #endif
16478
16479     buf[0] = 0;
16480     buf[1] = 0;
16481     buf[2] = 0;
16482     buf[3] = 1;
16483     buf[5] = 0;
16484     buf[6] = 0;
16485     buf[7] = 0;
16486     buf[8] = 1;
16487
16488     for (i = 0; i < 4; i++) {
16489         up = (U32*)(buf + i);
16490         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
16491                (*up == 1 << (8*(3-i)))  /* little-endian */
16492               )
16493            )
16494         {
16495             printf("read failed (%x)\n", *up);
16496             exit(2);
16497         }
16498     }
16499
16500     /* write test */
16501     for (i = 0; i < 4; i++) {
16502         up = (U32*)(buf + i);
16503         *up = 0xBeef;
16504         if (*up != 0xBeef) {
16505             printf("write failed (%x)\n", *up);
16506             exit(3);
16507         }
16508     }
16509
16510     exit(0);
16511 #else
16512     printf("1\n");
16513     exit(1);
16514 #endif
16515     return 0;
16516 }
16517 EOCP
16518 set try
16519 if eval $compile_ok; then
16520         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
16521         $run ./try 2>&1 >/dev/null
16522         case "$?" in
16523         0)      cat >&4 <<EOM
16524 You can access character data pretty unalignedly.
16525 EOM
16526                 d_u32align="$undef"
16527                 ;;
16528         *)      cat >&4 <<EOM
16529 It seems that you must access character data in an aligned manner.
16530 EOM
16531                 d_u32align="$define"
16532                 ;;
16533         esac
16534 else
16535         rp='Can you access character data at unaligned addresses?'
16536         dflt='n'
16537         . ./myread
16538         case "$ans" in
16539         [yY]*)  d_u32align="$undef"  ;;
16540         *)      d_u32align="$define" ;;
16541         esac
16542 fi
16543 $rm -f core core.try.* try.core
16544 ;;
16545 esac
16546
16547 : see if ualarm exists
16548 set ualarm d_ualarm
16549 eval $inlibc
16550
16551 : see if umask exists
16552 set umask d_umask
16553 eval $inlibc
16554
16555 : see if unordered exists
16556 set unordered d_unordered
16557 eval $inlibc
16558
16559 : see if usleep exists
16560 set usleep d_usleep
16561 eval $inlibc
16562
16563 : see if prototype for usleep is available
16564 echo " "
16565 set d_usleepproto usleep $i_unistd unistd.h
16566 eval $hasproto
16567
16568 : see if ustat exists
16569 set ustat d_ustat
16570 eval $inlibc
16571
16572 : backward compatibility for d_hvfork
16573 if test X$d_hvfork != X; then
16574         d_vfork="$d_hvfork"
16575         d_hvfork=''
16576 fi
16577 : see if there is a vfork
16578 val=''
16579 set vfork val
16580 eval $inlibc
16581
16582 : Ok, but do we want to use it. vfork is reportedly unreliable in 
16583 : perl on Solaris 2.x, and probably elsewhere.
16584 case "$val" in
16585 $define)
16586         echo " "
16587         case "$usevfork" in
16588         false) dflt='n';;
16589         *) dflt='y';;
16590         esac
16591         cat <<'EOM'
16592  
16593 Perl can only use a vfork() that doesn't suffer from strict
16594 restrictions on calling functions or modifying global data in
16595 the child.  For example, glibc-2.1 contains such a vfork()
16596 that is unsuitable.  If your system provides a proper fork()
16597 call, chances are that you do NOT want perl to use vfork().
16598
16599 EOM
16600         rp="Do you still want to use vfork()?"
16601         . ./myread
16602         case "$ans" in
16603         y|Y) ;;
16604         *)
16605                 echo "Ok, we won't use vfork()."
16606                 val="$undef"
16607                 ;;
16608         esac
16609         ;;
16610 esac
16611 set d_vfork
16612 eval $setvar
16613 case "$d_vfork" in
16614 $define) usevfork='true';;
16615 *) usevfork='false';;
16616 esac
16617
16618 : see if closedir exists
16619 set closedir d_closedir
16620 eval $inlibc
16621
16622 case "$d_closedir" in
16623 "$define")
16624         echo " "
16625         echo "Checking whether closedir() returns a status..." >&4
16626         cat > try.c <<EOM
16627 #$i_dirent I_DIRENT             /**/
16628 #$i_sysdir I_SYS_DIR            /**/
16629 #$i_sysndir I_SYS_NDIR          /**/
16630 #$i_systypes I_SYS_TYPES        /**/
16631
16632 #if defined(I_SYS_TYPES)
16633 #include <sys/types.h>
16634 #endif
16635 #if defined(I_DIRENT)
16636 #include <dirent.h>
16637 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
16638 #include <sys/dir.h>
16639 #endif
16640 #else
16641 #ifdef I_SYS_NDIR
16642 #include <sys/ndir.h>
16643 #else
16644 #ifdef I_SYS_DIR
16645 #ifdef hp9000s500
16646 #include <ndir.h>       /* may be wrong in the future */
16647 #else
16648 #include <sys/dir.h>
16649 #endif
16650 #endif
16651 #endif
16652 #endif 
16653 int main() { return closedir(opendir(".")); }
16654 EOM
16655         set try
16656         if eval $compile_ok; then
16657                 if $run ./try > /dev/null 2>&1 ; then
16658                         echo "Yes, it does."
16659                         val="$undef"
16660                 else
16661                         echo "No, it doesn't."
16662                         val="$define"
16663                 fi
16664         else
16665                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16666                 val="$define"
16667         fi
16668         ;;
16669 *)
16670         val="$undef";
16671         ;;
16672 esac
16673 set d_void_closedir
16674 eval $setvar
16675 $rm -f try try.*
16676 : see if there is a wait4
16677 set wait4 d_wait4
16678 eval $inlibc
16679
16680 : see if waitpid exists
16681 set waitpid d_waitpid
16682 eval $inlibc
16683
16684 : see if wcstombs exists
16685 set wcstombs d_wcstombs
16686 eval $inlibc
16687
16688 : see if wctomb exists
16689 set wctomb d_wctomb
16690 eval $inlibc
16691
16692 : see if writev exists
16693 set writev d_writev
16694 eval $inlibc
16695
16696 : preserve RCS keywords in files with variable substitution, grrr
16697 Date='$Date'
16698 Id='$Id'
16699 Log='$Log'
16700 RCSfile='$RCSfile'
16701 Revision='$Revision'
16702
16703 : check for alignment requirements
16704 echo " "
16705 case "$usecrosscompile$multiarch" in
16706 *$define*)
16707         $cat <<EOM
16708 You seem to be either cross-compiling or doing a multiarchitecture build,
16709 skipping the memory alignment check.
16710
16711 EOM
16712         case "$alignbytes" in
16713         '') alignbytes=8 ;;
16714         esac
16715         ;;
16716 *)
16717         case "$alignbytes" in
16718         '') echo "Checking alignment constraints..." >&4
16719                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
16720                         $cat >try.c <<'EOCP'
16721 typedef long double NV;
16722 EOCP
16723                 else
16724                         $cat >try.c <<'EOCP'
16725 typedef double NV;
16726 EOCP
16727                 fi
16728                 $cat >>try.c <<'EOCP'
16729 #include <stdio.h>
16730 struct foobar {
16731         char foo;
16732         NV bar;
16733 } try_algn;
16734 int main()
16735 {
16736     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
16737     return(0);
16738 }
16739 EOCP
16740                 set try
16741                 if eval $compile_ok; then
16742                         dflt=`$run ./try`
16743                 else
16744                         dflt='8'
16745                         echo "(I can't seem to compile the test program...)"
16746                 fi
16747                 ;;
16748         *) dflt="$alignbytes"
16749                 ;;
16750         esac
16751         rp="Doubles must be aligned on a how-many-byte boundary?"
16752         . ./myread
16753         alignbytes="$ans"
16754         $rm -f try.c try
16755         ;;
16756 esac
16757
16758
16759 : set the base revision
16760 baserev=5.0
16761
16762 : how do we catenate cpp tokens here?
16763 echo " "
16764 echo "Checking to see how your cpp does stuff like catenate tokens..." >&4
16765 $cat >cpp_stuff.c <<'EOCP'
16766 #define RCAT(a,b)a/**/b
16767 #define ACAT(a,b)a ## b
16768 RCAT(Rei,ser)
16769 ACAT(Cir,cus)
16770 EOCP
16771 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
16772 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
16773         echo "Oh!  Smells like ANSI's been here." >&4
16774         echo "We can catify or stringify, separately or together!"
16775         cpp_stuff=42
16776 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
16777         echo "Ah, yes!  The good old days!" >&4
16778         echo "However, in the good old days we don't know how to stringify and"
16779         echo "catify at the same time."
16780         cpp_stuff=1
16781 else
16782         $cat >&4 <<EOM
16783 Hmm, I don't seem to be able to catenate tokens with your cpp.  You're going
16784 to have to edit the values of CAT[2-5] in config.h...
16785 EOM
16786         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
16787 fi
16788 $rm -f cpp_stuff.*
16789
16790 : see if this is a db.h system
16791 set db.h i_db
16792 eval $inhdr
16793
16794 case "$i_db" in
16795 $define)
16796         : Check db version.
16797         echo " "
16798         echo "Checking Berkeley DB version ..." >&4
16799         $cat >try.c <<EOCP
16800 #$d_const HASCONST
16801 #ifndef HASCONST
16802 #define const
16803 #endif
16804 #include <sys/types.h>
16805 #include <stdio.h>
16806 #include <db.h>
16807 int main(int argc, char *argv[])
16808 {
16809 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
16810     int Major, Minor, Patch ;
16811     unsigned long Version ;
16812     (void)db_version(&Major, &Minor, &Patch) ;
16813     if (argc == 2) {
16814         printf("%d %d %d %d %d %d\n",
16815                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
16816                Major, Minor, Patch);
16817         exit(0);
16818     }
16819     printf("You have Berkeley DB Version 2 or greater.\n");
16820
16821     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
16822                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
16823     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
16824                 Major, Minor, Patch) ;
16825
16826     /* check that db.h & libdb are compatible */
16827     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
16828         printf("db.h and libdb are incompatible.\n") ;
16829         exit(3);        
16830     }
16831
16832     printf("db.h and libdb are compatible.\n") ;
16833
16834     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
16835                 + DB_VERSION_PATCH ;
16836
16837     /* needs to be >= 2.3.4 */
16838     if (Version < 2003004) {
16839     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
16840         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
16841         exit(2);        
16842     }
16843
16844     exit(0);
16845 #else
16846 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
16847     if (argc == 2) {
16848         printf("1 0 0\n");
16849         exit(0);
16850     }
16851     printf("You have Berkeley DB Version 1.\n");
16852     exit(0);    /* DB version < 2: the coast is clear. */
16853 #else
16854     exit(1);    /* <db.h> not Berkeley DB? */
16855 #endif
16856 #endif
16857 }
16858 EOCP
16859         set try
16860         if eval $compile_ok && $run ./try; then
16861                 echo 'Looks OK.' >&4
16862                 set `$run ./try 1`
16863                 db_version_major=$1
16864                 db_version_minor=$2
16865                 db_version_patch=$3
16866         else
16867                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
16868                 i_db=$undef
16869                 case " $libs " in
16870                 *"-ldb "*)
16871                         : Remove db from list of libraries to use
16872                         echo "Removing unusable -ldb from library list" >&4
16873                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
16874                         shift
16875                         libs="$*"
16876                         echo "libs = $libs" >&4
16877                         ;;
16878                 esac
16879         fi
16880         $rm -f try.*
16881         ;;
16882 esac
16883
16884 case "$i_db" in
16885 define)
16886         : Check the return type needed for hash 
16887         echo " "
16888         echo "Checking return type needed for hash for Berkeley DB ..." >&4
16889         $cat >try.c <<EOCP
16890 #$d_const HASCONST
16891 #ifndef HASCONST
16892 #define const
16893 #endif
16894 #include <sys/types.h>
16895 #include <db.h>
16896
16897 #ifndef DB_VERSION_MAJOR
16898 u_int32_t hash_cb (ptr, size)
16899 const void *ptr;
16900 size_t size;
16901 {
16902 }
16903 HASHINFO info;
16904 int main()
16905 {
16906         info.hash = hash_cb;
16907 }
16908 #endif
16909 EOCP
16910         if $cc $ccflags -c try.c >try.out 2>&1 ; then
16911                 if $contains warning try.out >>/dev/null 2>&1 ; then
16912                         db_hashtype='int'
16913                 else
16914                         db_hashtype='u_int32_t'
16915                 fi
16916         else
16917                 : XXX Maybe we should just give up here.
16918                 db_hashtype=u_int32_t
16919                 $cat try.out >&4
16920                 echo "Help:  I can't seem to compile the db test program." >&4
16921                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
16922         fi
16923         $rm -f try.*
16924         echo "Your version of Berkeley DB uses $db_hashtype for hash."
16925         ;;
16926 *)      db_hashtype=u_int32_t
16927         ;;
16928 esac
16929 case "$i_db" in
16930 define)
16931         : Check the return type needed for prefix 
16932         echo " "
16933         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
16934         cat >try.c <<EOCP
16935 #$d_const HASCONST
16936 #ifndef HASCONST
16937 #define const
16938 #endif
16939 #include <sys/types.h>
16940 #include <db.h>
16941
16942 #ifndef DB_VERSION_MAJOR
16943 size_t prefix_cb (key1, key2)
16944 const DBT *key1;
16945 const DBT *key2;
16946 {
16947 }
16948 BTREEINFO info;
16949 int main()
16950 {
16951         info.prefix = prefix_cb;
16952 }
16953 #endif
16954 EOCP
16955         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
16956                 if $contains warning try.out >>/dev/null 2>&1 ; then
16957                         db_prefixtype='int'
16958                 else
16959                         db_prefixtype='size_t'
16960                 fi
16961         else
16962                 db_prefixtype='size_t'
16963                 : XXX Maybe we should just give up here.
16964                 $cat try.out >&4
16965                 echo "Help:  I can't seem to compile the db test program." >&4
16966                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
16967         fi
16968         $rm -f try.*
16969         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
16970         ;;
16971 *)      db_prefixtype='size_t'
16972         ;;
16973 esac
16974
16975
16976 : How can we generate normalized random numbers ?
16977 echo " "
16978 echo "Looking for a random number function..." >&4
16979 case "$randfunc" in
16980 '')
16981         if set drand48 val -f; eval $csym; $val; then
16982                 dflt="drand48"
16983                 echo "Good, found drand48()." >&4
16984         elif set random val -f; eval $csym; $val; then
16985                 dflt="random"
16986                 echo "OK, found random()." >&4
16987         else
16988                 dflt="rand"
16989                 echo "Yick, looks like I have to use rand()." >&4
16990         fi
16991         echo " "
16992         ;;
16993 *)
16994         dflt="$randfunc"
16995         ;;
16996 esac
16997 cont=true
16998
16999 case "$ccflags" in
17000 *-Dmy_rand=*|*-Dmy_srand=*)
17001         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
17002         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
17003         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
17004         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
17005         ;;
17006 esac
17007
17008 while $test "$cont"; do
17009         rp="Use which function to generate random numbers?"
17010         . ./myread
17011         if $test "$ans" = "$dflt"; then
17012                 : null
17013         else
17014                 randbits=''
17015         fi
17016         randfunc="$ans"
17017         if set $ans val -f; eval $csym; $val; then
17018                 cont=''
17019         else
17020                 dflt=y
17021                 rp="I cannot find function $ans. Use that name anyway?"
17022                 . ./myread
17023                 dflt=rand
17024                 case "$ans" in
17025                         [yY]*) cont='';;
17026                 esac
17027         fi
17028         case "$cont" in
17029         '')
17030                 case "$randfunc" in
17031                 drand48)
17032                         drand01="drand48()"
17033                         seedfunc="srand48"
17034                         randbits=48
17035                         randseedtype=long
17036                         ;;
17037                 rand|random)
17038                         case "$randbits" in
17039                         '')
17040 echo "Checking to see how many bits your $randfunc() function produces..." >&4
17041                                 $cat >try.c <<EOCP
17042 #$i_unistd I_UNISTD
17043 #$i_stdlib I_STDLIB
17044 #include <stdio.h>
17045 #ifdef I_UNISTD
17046 #  include <unistd.h>
17047 #endif
17048 #ifdef I_STDLIB
17049 #  include <stdlib.h>
17050 #endif
17051 int main()
17052 {
17053         register int i;
17054         register unsigned long tmp;
17055         register unsigned long max = 0L;
17056
17057         for (i = 1000; i; i--) {
17058                 tmp = (unsigned long) $randfunc();
17059                 if (tmp > max) max = tmp;
17060         }
17061         for (i = 0; max; i++)
17062                 max /= 2;
17063         printf("%d\n",i);
17064 }
17065 EOCP
17066                                 set try
17067                                 if eval $compile_ok; then
17068                                         dflt=`try`
17069                                 else
17070                                         dflt='?'
17071                                         echo "(I can't seem to compile the test program...)"
17072                                 fi
17073                                 ;;
17074                         *)
17075                                 dflt="$randbits"
17076                                 ;;
17077                         esac
17078                         rp="How many bits does your $randfunc() function produce?"
17079                         . ./myread
17080                         randbits="$ans"
17081                         $rm -f try.c try
17082                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17083                         seedfunc="s$randfunc"
17084                         randseedtype=unsigned
17085                         ;;
17086                 *)
17087                         dflt="31"
17088                         rp="How many bits does your $randfunc() function produce?"
17089                         . ./myread
17090                         randbits="$ans"
17091                         seedfunc="s$randfunc"
17092                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17093                         if set $seedfunc val -f; eval $csym; $val; then
17094                                 echo "(Using $seedfunc() to seed random generator)"
17095                         else
17096                                 echo "(Warning: no $seedfunc() to seed random generator)"
17097                                 seedfunc=rand
17098                         fi
17099                         randseedtype=unsigned
17100                         ;;
17101                 esac
17102                 ;;
17103         esac
17104 done
17105
17106 echo " "
17107 echo "Determining whether or not we are on an EBCDIC system..." >&4
17108 $cat >try.c <<'EOM'
17109 int main()
17110 {
17111   if ('M'==0xd4) return 0;
17112   return 1;
17113 }
17114 EOM
17115
17116 val=$undef
17117 set try
17118 if eval $compile_ok; then
17119         if $run ./try; then
17120                 echo "You seem to speak EBCDIC." >&4
17121                 val="$define"
17122         else
17123                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
17124         fi
17125 else
17126         echo "I'm unable to compile the test program." >&4
17127         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
17128 fi
17129 $rm -f try try.*
17130 set ebcdic
17131 eval $setvar
17132
17133 echo " "
17134 $cat >&4 <<EOM
17135 Checking how to flush all pending stdio output...
17136 EOM
17137 # I only know how to find the first 32 possibly open files on SunOS.
17138 # See also hints/sunos_4_1.sh and util.c  --AD
17139 case "$osname" in
17140 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
17141 esac
17142 $cat >>try.c <<EOCP
17143 #include <stdio.h>
17144 #$i_unistd I_UNISTD
17145 #ifdef I_UNISTD
17146 # include <unistd.h>
17147 #endif
17148 #$d_sysconf HAS_SYSCONF
17149 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
17150 #ifdef HAS_STDIO_STREAM_ARRAY
17151 # define STDIO_STREAM_ARRAY $stdio_stream_array
17152 #endif
17153 int main() {
17154   FILE* p;
17155   unlink("try.out");
17156   p = fopen("try.out", "w");
17157 #ifdef TRY_FPUTC
17158   fputc('x', p);
17159 #else
17160 # ifdef TRY_FPRINTF
17161   fprintf(p, "x");
17162 # endif
17163 #endif
17164 #ifdef TRY_FFLUSH_NULL
17165   fflush(NULL);
17166 #endif
17167 #ifdef TRY_FFLUSH_ALL
17168   {
17169     long open_max = -1;
17170 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
17171     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
17172 # else
17173 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
17174     open_max = sysconf(_SC_OPEN_MAX);
17175 #  else
17176 #   ifdef FOPEN_MAX
17177     open_max = FOPEN_MAX;
17178 #   else
17179 #    ifdef OPEN_MAX
17180     open_max = OPEN_MAX;
17181 #    else
17182 #     ifdef _NFILE
17183     open_max = _NFILE;
17184 #     endif
17185 #    endif
17186 #   endif
17187 #  endif
17188 # endif 
17189 # ifdef HAS_STDIO_STREAM_ARRAY
17190     if (open_max > 0) {
17191       long i;
17192       for (i = 0; i < open_max; i++)
17193             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17194                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17195                 STDIO_STREAM_ARRAY[i]._flag)
17196                 fflush(&STDIO_STREAM_ARRAY[i]);
17197     }   
17198   }
17199 # endif
17200 #endif
17201   _exit(42);
17202 }
17203 EOCP
17204 : first we have to find out how _not_ to flush
17205 $to try.c
17206 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17207     output=''
17208     set try -DTRY_FPUTC
17209     if eval $compile; then
17210             $run ./try 2>/dev/null
17211             code="$?"
17212             $from try.out
17213             if $test ! -s try.out -a "X$code" = X42; then
17214                 output=-DTRY_FPUTC
17215             fi
17216     fi
17217     case "$output" in
17218     '')
17219             set try -DTRY_FPRINTF
17220             if eval $compile; then
17221                     $run ./try 2>/dev/null
17222                     code="$?"
17223                     $from try.out
17224                     if $test ! -s try.out -a "X$code" = X42; then
17225                         output=-DTRY_FPRINTF
17226                     fi
17227             fi
17228         ;;
17229     esac
17230 fi
17231 : check for fflush NULL behaviour
17232 case "$fflushNULL" in
17233 '')     set try -DTRY_FFLUSH_NULL $output
17234         if eval $compile; then
17235                 $run ./try 2>/dev/null
17236                 code="$?"
17237                 $from try.out
17238                 if $test -s try.out -a "X$code" = X42; then
17239                         fflushNULL="`$cat try.out`"
17240                 else
17241                         if $test "X$code" != X42; then
17242                                 $cat >&4 <<EOM
17243 (If this test failed, don't worry, we'll try another method shortly.)
17244 EOM
17245                         fi
17246                 fi
17247         fi
17248         $rm -f core try.core core.try.*
17249         case "$fflushNULL" in
17250         x)      $cat >&4 <<EOM
17251 Your fflush(NULL) works okay for output streams.
17252 Let's see if it clobbers input pipes...
17253 EOM
17254 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17255 # bug that improperly flushes the input end of pipes.  So we avoid the
17256 # autoflush on fork/system/exec support for now. :-(
17257 $cat >tryp.c <<EOCP
17258 #include <stdio.h>
17259 int
17260 main(int argc, char **argv)
17261 {
17262     char buf[1024];
17263     int i;
17264     char *bp = buf;
17265     while (1) {
17266         while ((i = getc(stdin)) != -1
17267                && (*bp++ = i) != '\n'
17268                && bp < &buf[1024])
17269         /* DO NOTHING */ ;
17270         *bp = '\0';
17271         fprintf(stdout, "%s", buf);
17272         fflush(NULL);
17273         if (i == -1)
17274             return 0;
17275         bp = buf;
17276     }
17277 }
17278 EOCP
17279                 fflushNULL="$define"
17280                 set tryp
17281                 if eval $compile; then
17282                     $rm -f tryp.out
17283                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17284                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17285                        $cat >&4 <<EOM
17286 fflush(NULL) seems to behave okay with input streams.
17287 EOM
17288                         fflushNULL="$define"
17289                     else
17290                         $cat >&4 <<EOM
17291 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17292 EOM
17293                         fflushNULL="$undef"
17294                     fi
17295                 fi
17296                 $rm -f core tryp.c tryp.core core.tryp.*
17297                 ;;
17298         '')     $cat >&4 <<EOM
17299 Your fflush(NULL) isn't working (contrary to ANSI C).
17300 EOM
17301                 fflushNULL="$undef"
17302                 ;;
17303         *)      $cat >&4 <<EOM
17304 Cannot figure out whether your fflush(NULL) works or not.
17305 I'm assuming it doesn't (contrary to ANSI C).
17306 EOM
17307                 fflushNULL="$undef"
17308                 ;;
17309         esac
17310         ;;
17311 $define|true|[yY]*)
17312         fflushNULL="$define"
17313         ;;
17314 *)
17315         fflushNULL="$undef"
17316         ;;
17317 esac
17318 : check explicit looping only if NULL did not work, and if the pipe
17319 : bug does not show up on an explicit flush too
17320 case "$fflushNULL" in
17321 "$undef")
17322         $cat >tryp.c <<EOCP
17323 #include <stdio.h>
17324 int
17325 main(int argc, char **argv)
17326 {
17327     char buf[1024];
17328     int i;
17329     char *bp = buf;
17330     while (1) {
17331         while ((i = getc(stdin)) != -1
17332                && (*bp++ = i) != '\n'
17333                && bp < &buf[1024])
17334         /* DO NOTHING */ ;
17335         *bp = '\0';
17336         fprintf(stdout, "%s", buf);
17337         fflush(stdin);
17338         if (i == -1)
17339             return 0;
17340         bp = buf;
17341     }
17342 }
17343 EOCP
17344         set tryp
17345         if eval $compile; then
17346             $rm -f tryp.out
17347             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17348             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17349                $cat >&4 <<EOM
17350 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17351 EOM
17352                 : now check for fflushall behaviour
17353                 case "$fflushall" in
17354                 '')     set try -DTRY_FFLUSH_ALL $output
17355                         if eval $compile; then
17356                                 $cat >&4 <<EOM
17357 (Now testing the other method--but note that this also may fail.)
17358 EOM
17359                                 $run ./try 2>/dev/null
17360                                 code=$?
17361                                 $from try.out
17362                                 if $test -s try.out -a "X$code" = X42; then
17363                                         fflushall="`$cat try.out`"
17364                                 fi
17365                         fi
17366                         $rm -f core try.core core.try.*
17367                         case "$fflushall" in
17368                         x)      $cat >&4 <<EOM
17369 Whew. Flushing explicitly all the stdio streams works.
17370 EOM
17371                                 fflushall="$define"
17372                                 ;;
17373                         '')     $cat >&4 <<EOM
17374 Sigh. Flushing explicitly all the stdio streams doesn't work.
17375 EOM
17376                                 fflushall="$undef"
17377                                 ;;
17378                         *)      $cat >&4 <<EOM
17379 Cannot figure out whether flushing stdio streams explicitly works or not.
17380 I'm assuming it doesn't.
17381 EOM
17382                                 fflushall="$undef"
17383                                 ;;
17384                         esac
17385                         ;;
17386                 "$define"|true|[yY]*)
17387                         fflushall="$define"
17388                         ;;
17389                 *)
17390                         fflushall="$undef"
17391                         ;;
17392                 esac
17393             else
17394                 $cat >&4 <<EOM
17395 All is futile.  Even fflush(stdin) clobbers input pipes!
17396 EOM
17397                 fflushall="$undef"
17398             fi
17399         else
17400             fflushall="$undef"
17401         fi
17402         $rm -f core tryp.c tryp.core core.tryp.*
17403         ;;
17404 *)      fflushall="$undef"
17405         ;;
17406 esac
17407
17408 case "$fflushNULL$fflushall" in
17409 undefundef)
17410         $cat <<EOM
17411 OK, I give up.  I cannot figure out how to flush pending stdio output.
17412 We won't be flushing handles at all before fork/exec/popen.
17413 EOM
17414         ;;
17415 esac
17416 $rm -f try.* try$exe_ext
17417
17418 : Store the full pathname to the ar program for use in the C program
17419 : Respect a hint or command line value for full_ar.
17420 case "$full_ar" in
17421 '') full_ar=$ar ;;
17422 esac
17423
17424 : Store the full pathname to the sed program for use in the C program
17425 full_sed=$sed
17426
17427 : see what type gids are declared as in the kernel
17428 echo " "
17429 echo "Looking for the type for group ids returned by getgid()."
17430 set gid_t gidtype xxx stdio.h sys/types.h
17431 eval $typedef
17432 case "$gidtype" in
17433 xxx)
17434         xxx=`./findhdr sys/user.h`
17435         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17436         case $1 in
17437         unsigned) dflt="$1 $2" ;;
17438         *) dflt="$1" ;;
17439         esac
17440         ;;
17441 *) dflt="$gidtype";;
17442 esac
17443 case "$gidtype" in
17444 gid_t) echo "gid_t found." ;;
17445 *)      rp="What is the type for group ids returned by getgid()?"
17446         . ./myread
17447         gidtype="$ans"
17448         ;;
17449 esac
17450
17451 echo " "
17452 case "$gidtype" in
17453 *_t) zzz="$gidtype"     ;;
17454 *)   zzz="gid"          ;;
17455 esac
17456 echo "Checking the size of $zzz..." >&4 
17457 cat > try.c <<EOCP
17458 #include <sys/types.h>
17459 #include <stdio.h>
17460 int main() {
17461     printf("%d\n", (int)sizeof($gidtype));
17462     exit(0);
17463 }
17464 EOCP
17465 set try
17466 if eval $compile_ok; then
17467         yyy=`$run ./try`
17468         case "$yyy" in
17469         '')     gidsize=4
17470                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
17471                 ;;
17472         *)      gidsize=$yyy
17473                 echo "Your $zzz is $gidsize bytes long."
17474                 ;;
17475         esac
17476 else
17477         gidsize=4
17478         echo "(I can't compile the test program--guessing $gidsize.)" >&4
17479 fi
17480
17481
17482 echo " "
17483 case "$gidtype" in
17484 *_t) zzz="$gidtype"     ;;
17485 *)   zzz="gid"          ;;
17486 esac
17487 echo "Checking the sign of $zzz..." >&4 
17488 cat > try.c <<EOCP
17489 #include <sys/types.h>
17490 #include <stdio.h>
17491 int main() {
17492         $gidtype foo = -1;
17493         if (foo < 0)
17494                 printf("-1\n");
17495         else
17496                 printf("1\n");
17497 }
17498 EOCP
17499 set try
17500 if eval $compile; then
17501         yyy=`$run ./try`
17502         case "$yyy" in
17503         '')     gidsign=1
17504                 echo "(I can't execute the test program--guessing unsigned.)" >&4
17505                 ;;
17506         *)      gidsign=$yyy
17507                 case "$gidsign" in
17508                  1) echo "Your $zzz is unsigned." ;;
17509                 -1) echo "Your $zzz is signed."   ;;
17510                 esac
17511                 ;;
17512         esac
17513 else
17514         gidsign=1
17515         echo "(I can't compile the test program--guessing unsigned.)" >&4
17516 fi
17517
17518
17519 echo " "
17520
17521 if $test X"$quadtype" != X; then
17522
17523 echo "Checking how to print 64-bit integers..." >&4
17524
17525 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
17526         $cat >try.c <<'EOCP'
17527 #include <sys/types.h>
17528 #include <stdio.h>
17529 int main() {
17530   int q = 12345678901;
17531   printf("%ld\n", q);
17532 }
17533 EOCP
17534         set try
17535         if eval $compile; then
17536                 yyy=`$run ./try`
17537                 case "$yyy" in
17538                 12345678901)
17539                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
17540                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
17541                         echo "We will use %d."
17542                         ;;
17543                 esac
17544         fi
17545 fi
17546
17547 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
17548         $cat >try.c <<'EOCP'
17549 #include <sys/types.h>
17550 #include <stdio.h>
17551 int main() {
17552   long q = 12345678901;
17553   printf("%ld\n", q);
17554 }
17555 EOCP
17556         set try
17557         if eval $compile; then
17558                 yyy=`$run ./try`
17559                 case "$yyy" in
17560                 12345678901)
17561                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
17562                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
17563                         echo "We will use %ld."
17564                         ;;
17565                 esac
17566         fi
17567 fi
17568
17569 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
17570         $cat >try.c <<'EOCP'
17571 #include <sys/types.h>
17572 #include <inttypes.h>
17573 #include <stdio.h>
17574 int main() {
17575   int64_t q = 12345678901;
17576   printf("%" PRId64 "\n", q);
17577 }
17578 EOCP
17579         set try
17580         if eval $compile; then
17581                 yyy=`$run ./try`
17582                 case "$yyy" in
17583                 12345678901)
17584                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
17585                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
17586                         echo "We will use the C9X style."
17587                         ;;
17588                 esac
17589         fi
17590 fi
17591
17592 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
17593         $cat >try.c <<EOCP
17594 #include <sys/types.h>
17595 #include <stdio.h>
17596 int main() {
17597   $quadtype q = 12345678901;
17598   printf("%Ld\n", q);
17599 }
17600 EOCP
17601         set try
17602         if eval $compile; then
17603                 yyy=`$run ./try`
17604                 case "$yyy" in
17605                 12345678901)
17606                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
17607                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
17608                         echo "We will use %Ld."
17609                         ;;
17610                 esac
17611         fi
17612 fi
17613
17614 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
17615         $cat >try.c <<'EOCP'
17616 #include <sys/types.h>
17617 #include <stdio.h>
17618 int main() {
17619   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
17620   printf("%lld\n", q);
17621 }
17622 EOCP
17623         set try
17624         if eval $compile; then
17625                 yyy=`$run ./try`
17626                 case "$yyy" in
17627                 12345678901)
17628                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
17629                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
17630                         echo "We will use the %lld style."
17631                         ;;
17632                 esac
17633         fi
17634 fi
17635
17636 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
17637         $cat >try.c <<EOCP
17638 #include <sys/types.h>
17639 #include <stdio.h>
17640 int main() {
17641   $quadtype q = 12345678901;
17642   printf("%qd\n", q);
17643 }
17644 EOCP
17645         set try
17646         if eval $compile; then
17647                 yyy=`$run ./try`
17648                 case "$yyy" in
17649                 12345678901)
17650                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
17651                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
17652                         echo "We will use %qd."
17653                         ;;
17654                 esac
17655         fi
17656 fi
17657
17658 if $test X"$sPRId64" = X; then
17659         echo "Cannot figure out how to print 64-bit integers." >&4
17660 fi
17661
17662 $rm -f try try.*
17663
17664 fi
17665
17666 case "$sPRId64" in
17667 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
17668         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
17669         ;;
17670 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
17671         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
17672         ;;
17673 esac
17674
17675
17676 echo " "
17677 $echo "Checking the format strings to be used for Perl's internal types..." >&4
17678
17679 if $test X"$ivsize" = X8; then
17680         ivdformat="$sPRId64"
17681         uvuformat="$sPRIu64"
17682         uvoformat="$sPRIo64"
17683         uvxformat="$sPRIx64"
17684         uvXUformat="$sPRIXU64"
17685 else
17686         if $test X"$ivsize" = X"$longsize"; then
17687                 ivdformat='"ld"'
17688                 uvuformat='"lu"'
17689                 uvoformat='"lo"'
17690                 uvxformat='"lx"'
17691                 uvXUformat='"lX"'
17692         else
17693                 if $test X"$ivsize" = X"$intsize"; then
17694                         ivdformat='"d"'
17695                         uvuformat='"u"'
17696                         uvoformat='"o"'
17697                         uvxformat='"x"'
17698                         uvXUformat='"X"'
17699                 else
17700                         : far out
17701                         if $test X"$ivsize" = X"$shortsize"; then
17702                                 ivdformat='"hd"'
17703                                 uvuformat='"hu"'
17704                                 uvoformat='"ho"'
17705                                 uvxformat='"hx"'
17706                                 uvXUformat='"hX"'
17707                         fi
17708                 fi
17709         fi
17710 fi
17711
17712 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
17713         nveformat="$sPRIeldbl"
17714         nvfformat="$sPRIfldbl"
17715         nvgformat="$sPRIgldbl"
17716         nvEUformat="$sPRIEUldbl"
17717         nvFUformat="$sPRIFUldbl"
17718         nvGUformat="$sPRIGUldbl"
17719 else
17720         nveformat='"e"'
17721         nvfformat='"f"'
17722         nvgformat='"g"'
17723         nvEUformat='"E"'
17724         nvFUformat='"F"'
17725         nvGUformat='"G"'
17726 fi
17727
17728 case "$ivdformat" in
17729 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
17730     exit 1
17731     ;;
17732 esac
17733
17734
17735 echo " "
17736 $echo "Checking the format string to be used for gids..." >&4
17737
17738 case "$gidsign" in
17739 -1)     if $test X"$gidsize" = X"$ivsize"; then
17740                 gidformat="$ivdformat"
17741         else
17742                 if $test X"$gidsize" = X"$longsize"; then
17743                         gidformat='"ld"'
17744                 else
17745                         if $test X"$gidsize" = X"$intsize"; then
17746                                 gidformat='"d"'
17747                         else
17748                                 if $test X"$gidsize" = X"$shortsize"; then
17749                                         gidformat='"hd"'
17750                                 fi
17751                         fi
17752                 fi
17753         fi
17754         ;;
17755 *)      if $test X"$gidsize" = X"$uvsize"; then
17756                 gidformat="$uvuformat"
17757         else
17758                 if $test X"$gidsize" = X"$longsize"; then
17759                         gidformat='"lu"'
17760                 else
17761                         if $test X"$gidsize" = X"$intsize"; then
17762                                 gidformat='"u"'
17763                         else
17764                                 if $test X"$gidsize" = X"$shortsize"; then
17765                                         gidformat='"hu"'
17766                                 fi
17767                         fi
17768                 fi
17769         fi
17770         ;;
17771 esac
17772
17773 : see if getgroups exists
17774 set getgroups d_getgrps
17775 eval $inlibc
17776
17777 : see if setgroups exists
17778 set setgroups d_setgrps
17779 eval $inlibc
17780
17781
17782 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
17783 echo " "
17784 case "$d_getgrps$d_setgrps" in
17785 *define*)
17786         case "$groupstype" in
17787         '') dflt="$gidtype" ;;
17788         *)  dflt="$groupstype" ;;
17789         esac
17790         $cat <<EOM
17791 What type of pointer is the second argument to getgroups() and setgroups()?
17792 Usually this is the same as group ids, $gidtype, but not always.
17793
17794 EOM
17795         rp='What type pointer is the second argument to getgroups() and setgroups()?'
17796         . ./myread
17797         groupstype="$ans"
17798         ;;
17799 *)  groupstype="$gidtype";;
17800 esac
17801
17802 echo " "
17803 echo "Checking if your $make program sets \$(MAKE)..." >&4
17804 case "$make_set_make" in
17805 '')
17806         $sed 's/^X //' > testmake.mak << 'EOF'
17807 Xall:
17808 X       @echo 'maketemp="$(MAKE)"'
17809 EOF
17810         case "`$make -f testmake.mak 2>/dev/null`" in
17811         *maketemp=*) make_set_make='#' ;;
17812         *)      make_set_make="MAKE=$make" ;;
17813         esac
17814         $rm -f testmake.mak
17815         ;;
17816 esac
17817 case "$make_set_make" in
17818 '#') echo "Yup, it does.";;
17819 *) echo "Nope, it doesn't.";;
17820 esac
17821
17822 : see what type is used for mode_t
17823 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
17824 set mode_t modetype int stdio.h sys/types.h
17825 eval $typedef_ask
17826
17827 : see if stdarg is available
17828 echo " "
17829 if $test `./findhdr stdarg.h`; then
17830         echo "<stdarg.h> found." >&4
17831         valstd="$define"
17832 else
17833         echo "<stdarg.h> NOT found." >&4
17834         valstd="$undef"
17835 fi
17836
17837 : see if varags is available
17838 echo " "
17839 if $test `./findhdr varargs.h`; then
17840         echo "<varargs.h> found." >&4
17841 else
17842         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
17843 fi
17844
17845 : set up the varargs testing programs
17846 $cat > varargs.c <<EOP
17847 #ifdef I_STDARG
17848 #include <stdarg.h>
17849 #endif
17850 #ifdef I_VARARGS
17851 #include <varargs.h>
17852 #endif
17853
17854 #ifdef I_STDARG
17855 int f(char *p, ...)
17856 #else
17857 int f(va_alist)
17858 va_dcl
17859 #endif
17860 {
17861         va_list ap;
17862 #ifndef I_STDARG
17863         char *p;
17864 #endif
17865 #ifdef I_STDARG
17866         va_start(ap,p);
17867 #else
17868         va_start(ap);
17869         p = va_arg(ap, char *);
17870 #endif
17871         va_end(ap);
17872 }
17873 EOP
17874 $cat > varargs <<EOP
17875 $startsh
17876 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
17877         echo "true"
17878 else
17879         echo "false"
17880 fi
17881 $rm -f varargs$_o
17882 EOP
17883 chmod +x varargs
17884
17885 : now check which varargs header should be included
17886 echo " "
17887 i_varhdr=''
17888 case "$valstd" in
17889 "$define")
17890         if `./varargs I_STDARG`; then
17891                 val='stdarg.h'
17892         elif `./varargs I_VARARGS`; then
17893                 val='varargs.h'
17894         fi
17895         ;;
17896 *)
17897         if `./varargs I_VARARGS`; then
17898                 val='varargs.h'
17899         fi
17900         ;;
17901 esac
17902 case "$val" in
17903 '')
17904 echo "I could not find the definition for va_dcl... You have problems..." >&4
17905         val="$undef"; set i_stdarg; eval $setvar
17906         val="$undef"; set i_varargs; eval $setvar
17907         ;;
17908 *) 
17909         set i_varhdr
17910         eval $setvar
17911         case "$i_varhdr" in
17912         stdarg.h)
17913                 val="$define"; set i_stdarg; eval $setvar
17914                 val="$undef"; set i_varargs; eval $setvar
17915                 ;;
17916         varargs.h)
17917                 val="$undef"; set i_stdarg; eval $setvar
17918                 val="$define"; set i_varargs; eval $setvar
17919                 ;;
17920         esac
17921         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
17922 esac
17923 $rm -f varargs*
17924
17925 : see if we need va_copy
17926 echo " "
17927 case "$i_stdarg" in
17928 "$define")
17929         $cat >try.c <<EOCP
17930 #include <stdarg.h>
17931 #include <stdio.h>
17932 #$i_stdlib I_STDLIB
17933 #ifdef I_STDLIB
17934 #include <stdlib.h>
17935 #endif
17936 #include <signal.h>
17937
17938 int
17939 ivfprintf(FILE *f, const char *fmt, va_list *valp)
17940 {
17941   return vfprintf(f, fmt, *valp);
17942 }
17943  
17944 int    
17945 myvfprintf(FILE *f, const  char *fmt, va_list val)
17946 {
17947   return ivfprintf(f, fmt, &val);
17948 }
17949       
17950 int
17951 myprintf(char *fmt, ...) 
17952 {
17953   va_list val;
17954   va_start(val, fmt);
17955   return myvfprintf(stdout, fmt, val); 
17956 }         
17957
17958 int
17959 main(int ac, char **av)
17960 {
17961   signal(SIGSEGV, exit);
17962
17963   myprintf("%s%cs all right, then\n", "that", '\'');                            
17964   exit(0);      
17965 }
17966 EOCP
17967         set try
17968         if eval $compile && $run ./try 2>&1 >/dev/null; then
17969                 case "`$run ./try`" in
17970                 "that's all right, then")
17971                         okay=yes
17972                         ;;
17973                 esac
17974         fi
17975         case "$okay" in
17976         yes)    echo "It seems that you don't need va_copy()." >&4
17977                 need_va_copy="$undef"
17978                 ;;
17979         *)      echo "It seems that va_copy() or similar will be needed." >&4
17980                 need_va_copy="$define"
17981                 ;;
17982         esac
17983         $rm -f try.* core core.* *.core *.core.*
17984         ;;
17985 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
17986         ;;
17987 esac
17988
17989 : see what type is used for size_t
17990 rp="What is the type used for the length parameter for string functions?"
17991 set size_t sizetype 'unsigned int' stdio.h sys/types.h
17992 eval $typedef_ask
17993
17994 : check for type of arguments to gethostbyaddr. 
17995 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
17996         case "$d_gethbyaddr" in
17997         $define)
17998                 $cat <<EOM
17999
18000 Checking to see what type of arguments are accepted by gethostbyaddr().
18001 EOM
18002                 hdrs="$define sys/types.h
18003                         $d_socket sys/socket.h 
18004                         $i_niin netinet/in.h 
18005                         $i_netdb netdb.h
18006                         $i_unistd unistd.h"
18007                 : The first arg can 'char *' or 'void *'
18008                 : The second arg is some of integral type
18009                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
18010                         for yyy in size_t long int; do
18011                                 case "$netdb_host_type" in
18012                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
18013                                         if ./protochk "$try" $hdrs; then
18014                                                 echo "Your system accepts $xxx for the first arg."
18015                                                 echo "...and $yyy for the second arg."
18016                                                 netdb_host_type="$xxx"
18017                                                 netdb_hlen_type="$yyy"
18018                                         fi
18019                                         ;;
18020                                 esac
18021                         done
18022                 done
18023                 : In case none of those worked, prompt the user.
18024                 case "$netdb_host_type" in
18025                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
18026                         dflt='char *'
18027                         . ./myread
18028                         netdb_host_type=$ans
18029                         rp='What is the type for the 2nd argument to gethostbyaddr?'
18030                         dflt="$sizetype"
18031                         . ./myread
18032                         netdb_hlen_type=$ans
18033                         ;;
18034                 esac
18035                 ;;
18036         *)      : no gethostbyaddr, so pick harmless defaults
18037                 netdb_host_type='char *'
18038                 netdb_hlen_type="$sizetype"
18039                 ;;
18040         esac
18041         # Remove the "const" if needed. -- but then we'll have a 
18042         # prototype clash!
18043         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
18044 fi
18045
18046 : check for type of argument to gethostbyname. 
18047 if test "X$netdb_name_type" = X ; then
18048         case "$d_gethbyname" in
18049         $define)
18050                 $cat <<EOM
18051
18052 Checking to see what type of argument is accepted by gethostbyname().
18053 EOM
18054                 hdrs="$define sys/types.h
18055                         $d_socket sys/socket.h 
18056                         $i_niin netinet/in.h 
18057                         $i_netdb netdb.h
18058                         $i_unistd unistd.h"
18059                 for xxx in "const char *" "char *"; do
18060                         case "$netdb_name_type" in
18061                         '')     try="extern struct hostent *gethostbyname($xxx);"
18062                                 if ./protochk "$try" $hdrs; then
18063                                         echo "Your system accepts $xxx."
18064                                         netdb_name_type="$xxx"
18065                                 fi
18066                                 ;;
18067                         esac
18068                 done
18069                 : In case none of those worked, prompt the user.
18070                 case "$netdb_name_type" in
18071                 '')     rp='What is the type for the 1st argument to gethostbyname?'
18072                         dflt='char *'
18073                         . ./myread
18074                         netdb_name_type=$ans
18075                         ;;
18076                 esac
18077                 ;;
18078         *)      : no gethostbyname, so pick harmless default
18079                 netdb_name_type='char *'
18080                 ;;
18081         esac
18082 fi
18083
18084 : check for type of 1st argument to getnetbyaddr. 
18085 if test "X$netdb_net_type" = X ; then
18086         case "$d_getnbyaddr" in
18087         $define)
18088                 $cat <<EOM
18089
18090 Checking to see what type of 1st argument is accepted by getnetbyaddr().
18091 EOM
18092                 hdrs="$define sys/types.h
18093                         $d_socket sys/socket.h 
18094                         $i_niin netinet/in.h 
18095                         $i_netdb netdb.h
18096                         $i_unistd unistd.h"
18097                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
18098                         case "$netdb_net_type" in
18099                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
18100                                 if ./protochk "$try" $hdrs; then
18101                                         echo "Your system accepts $xxx."
18102                                         netdb_net_type="$xxx"
18103                                 fi
18104                                 ;;
18105                         esac
18106                 done
18107                 : In case none of those worked, prompt the user.
18108                 case "$netdb_net_type" in
18109                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
18110                         dflt='long'
18111                         . ./myread
18112                         netdb_net_type=$ans
18113                         ;;
18114                 esac
18115                 ;;
18116         *)      : no getnetbyaddr, so pick harmless default
18117                 netdb_net_type='long'
18118                 ;;
18119         esac
18120 fi
18121 : locate the preferred pager for this system
18122 case "$pager" in
18123 '')
18124         dflt=''
18125         case "$pg" in
18126         /*) dflt=$pg;;
18127         [a-zA-Z]:/*) dflt=$pg;;
18128         esac
18129         case "$more" in
18130         /*) dflt=$more;;
18131         [a-zA-Z]:/*) dflt=$more;;
18132         esac
18133         case "$less" in
18134         /*) dflt=$less;;
18135         [a-zA-Z]:/*) dflt=$less;;
18136         esac
18137         case "$dflt" in
18138         '') dflt=/usr/ucb/more;;
18139         esac
18140         ;;
18141 *) dflt="$pager";;
18142 esac
18143 echo " "
18144 fn=f/
18145 rp='What pager is used on your system?'
18146 . ./getfile
18147 pager="$ans"
18148
18149 : see what type pids are declared as in the kernel
18150 rp="What is the type of process ids on this system?"
18151 set pid_t pidtype int stdio.h sys/types.h
18152 eval $typedef_ask
18153
18154 : Find earliest binary compatible site_perl subdirectory perl can use.
18155 case "$bincompat5005" in
18156 "$define") xs_apiversion='5.005' ;;
18157 *) xs_apiversion=$version ;;   # The current site_perl version.
18158 esac
18159 : Find earliest pure perl site_perl subdirectory perl can use.
18160 : The versioned directories started at 5.005.
18161 pm_apiversion='5.005'
18162
18163 : see if ar generates random libraries by itself
18164 echo " "
18165 echo "Checking how to generate random libraries on your machine..." >&4
18166 echo 'int bar1() { return bar2(); }' > bar1.c
18167 echo 'int bar2() { return 2; }' > bar2.c
18168 $cat > foo.c <<'EOP'
18169 int main() { printf("%d\n", bar1()); exit(0); }
18170 EOP
18171 $cc $ccflags -c bar1.c >/dev/null 2>&1
18172 $cc $ccflags -c bar2.c >/dev/null 2>&1
18173 $cc $ccflags -c foo.c >/dev/null 2>&1
18174 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
18175 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18176         $run ./foobar >/dev/null 2>&1; then
18177         echo "$ar appears to generate random libraries itself."
18178         orderlib=false
18179         ranlib=":"
18180 elif $ar ts bar$_a >/dev/null 2>&1 &&
18181         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18182         $run ./foobar >/dev/null 2>&1; then
18183                 echo "a table of contents needs to be added with '$ar ts'."
18184                 orderlib=false
18185                 ranlib="$ar ts"
18186 else
18187         case "$ranlib" in
18188         :) ranlib='';;
18189         '')
18190                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18191                 $test -f $ranlib || ranlib=''
18192                 ;;
18193         esac
18194         if $test -n "$ranlib"; then
18195                 echo "your system has '$ranlib'; we'll use that."
18196                 orderlib=false
18197         else
18198                 echo "your system doesn't seem to support random libraries"
18199                 echo "so we'll use lorder and tsort to order the libraries."
18200                 orderlib=true
18201                 ranlib=":"
18202         fi
18203 fi
18204 $rm -f foo* bar* 
18205
18206 : check for type of arguments to select. 
18207 case "$selecttype" in
18208 '') case "$d_select" in
18209         $define)
18210                 echo " "
18211                 $cat <<EOM
18212 Checking to see what type of arguments are accepted by select().
18213 EOM
18214                 hdrs="$define sys/types.h
18215                         $i_systime sys/time.h 
18216                         $i_sysselct sys/select.h
18217                         $d_socket sys/socket.h"
18218                 : The first arg can be int, unsigned, or size_t
18219                 : The last arg may or may not be 'const'
18220                 val=''
18221                 : void pointer has been seen but using that
18222                 : breaks the selectminbits test
18223                 for xxx in 'fd_set *' 'int *'; do
18224                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18225                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18226                                         case "$val" in
18227                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18228                                                 if ./protochk "$try" $hdrs; then
18229                                                         echo "Your system accepts $xxx."
18230                                                         val="$xxx"
18231                                                 fi
18232                                                 ;;
18233                                         esac
18234                                 done
18235                         done
18236                 done
18237                 case "$val" in
18238                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18239                         case "$d_fd_set" in
18240                                 $define) dflt="fd_set *" ;;
18241                                 *)              dflt="int *" ;;
18242                         esac
18243                         . ./myread
18244                         val=$ans
18245                         ;;
18246                 esac
18247                 selecttype="$val"
18248                 ;;
18249         *)      : no select, so pick a harmless default
18250                 selecttype='int *'
18251                 ;;
18252         esac
18253         ;;
18254 esac
18255
18256 : check for the select 'width'
18257 case "$selectminbits" in
18258 '') case "$d_select" in
18259         $define)
18260                 $cat <<EOM
18261
18262 Checking to see on how many bits at a time your select() operates...
18263 EOM
18264                 $cat >try.c <<EOCP
18265 #include <sys/types.h>
18266 #$i_time I_TIME
18267 #$i_systime I_SYS_TIME
18268 #$i_systimek I_SYS_TIME_KERNEL
18269 #ifdef I_TIME
18270 #   include <time.h>
18271 #endif
18272 #ifdef I_SYS_TIME
18273 #   ifdef I_SYS_TIME_KERNEL
18274 #       define KERNEL
18275 #   endif
18276 #   include <sys/time.h>
18277 #   ifdef I_SYS_TIME_KERNEL
18278 #       undef KERNEL
18279 #   endif
18280 #endif
18281 #$i_sysselct I_SYS_SELECT
18282 #ifdef I_SYS_SELECT
18283 #include <sys/select.h>
18284 #endif
18285 #$d_socket HAS_SOCKET
18286 #ifdef HAS_SOCKET
18287 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18288 #endif
18289 #include <stdio.h>
18290 $selecttype b;
18291 #define S sizeof(*(b))
18292 #define MINBITS 64
18293 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18294 #define NBITS  (NBYTES * 8)
18295 int main() {
18296     char s[NBYTES];
18297     struct timeval t;
18298     int i;
18299     FILE* fp;
18300     int fd;
18301
18302     fclose(stdin);
18303     fp = fopen("try.c", "r");
18304     if (fp == 0)
18305       exit(1);
18306     fd = fileno(fp);
18307     if (fd < 0)
18308       exit(2);
18309     b = ($selecttype)s;
18310     for (i = 0; i < NBITS; i++)
18311         FD_SET(i, b);
18312     t.tv_sec  = 0;
18313     t.tv_usec = 0;
18314     select(fd + 1, b, 0, 0, &t);
18315     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18316     printf("%d\n", i + 1);
18317     return 0;
18318 }
18319 EOCP
18320                 set try
18321                 if eval $compile_ok; then
18322                         selectminbits=`$run ./try`
18323                         case "$selectminbits" in
18324                         '')     cat >&4 <<EOM
18325 Cannot figure out on how many bits at a time your select() operates.
18326 I'll play safe and guess it is 32 bits.
18327 EOM
18328                                 selectminbits=32
18329                                 bits="32 bits"
18330                                 ;;
18331                         1)      bits="1 bit" ;;
18332                         *)      bits="$selectminbits bits" ;;
18333                         esac
18334                         echo "Your select() operates on $bits at a time." >&4
18335                 else
18336                         rp='What is the minimum number of bits your select() operates on?'
18337                         case "$byteorder" in
18338                         1234|12345678)  dflt=32 ;;
18339                         *)              dflt=1  ;;
18340                         esac
18341                         . ./myread
18342                         val=$ans
18343                         selectminbits="$val"
18344                 fi
18345                 $rm -f try.* try
18346                 ;;
18347         *)      : no select, so pick a harmless default
18348                 selectminbits='32'
18349                 ;;
18350         esac
18351         ;;
18352 esac
18353
18354 : Trace out the files included by signal.h, then look for SIGxxx names.
18355 : Remove SIGARRAYSIZE used by HPUX.
18356 : Remove SIGSTKSIZE used by Linux.
18357 : Remove SIGSTKSZ used by Posix.
18358 : Remove SIGTYP void lines used by OS2.
18359 : Some cpps, like os390, dont give the file name anywhere
18360 if [ "X$fieldn" = X ]; then
18361         : Just make some guesses.  We check them later.
18362         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18363 else
18364         xxx=`echo '#include <signal.h>' |
18365         $cppstdin $cppminus $cppflags 2>/dev/null |
18366         $grep '^[       ]*#.*include' | 
18367         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18368 fi
18369 : Check this list of files to be sure we have parsed the cpp output ok.
18370 : This will also avoid potentially non-existent files, such 
18371 : as ../foo/bar.h
18372 xxxfiles=''
18373 for xx in $xxx /dev/null ; do
18374         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18375 done
18376 : If we have found no files, at least try signal.h
18377 case "$xxxfiles" in
18378 '')     xxxfiles=`./findhdr signal.h` ;;
18379 esac
18380 xxx=`awk '
18381 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18382         print substr($2, 4, 20)
18383 }
18384 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18385         print substr($3, 4, 20)
18386 }' $xxxfiles`
18387 : Append some common names just in case the awk scan failed.
18388 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18389 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18390 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18391 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18392 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18393
18394 : generate a few handy files for later
18395 $cat > signal.c <<'EOCP'
18396 #include <sys/types.h>
18397 #include <signal.h>
18398 #include <stdio.h>
18399 int main() {
18400
18401 /* Strange style to avoid deeply-nested #if/#else/#endif */
18402 #ifndef NSIG
18403 #  ifdef _NSIG
18404 #    define NSIG (_NSIG)
18405 #  endif
18406 #endif
18407
18408 #ifndef NSIG
18409 #  ifdef SIGMAX
18410 #    define NSIG (SIGMAX+1)
18411 #  endif
18412 #endif
18413
18414 #ifndef NSIG
18415 #  ifdef SIG_MAX
18416 #    define NSIG (SIG_MAX+1)
18417 #  endif
18418 #endif
18419
18420 #ifndef NSIG
18421 #  ifdef MAXSIG
18422 #    define NSIG (MAXSIG+1)
18423 #  endif
18424 #endif
18425
18426 #ifndef NSIG
18427 #  ifdef MAX_SIG
18428 #    define NSIG (MAX_SIG+1)
18429 #  endif
18430 #endif
18431
18432 #ifndef NSIG
18433 #  ifdef SIGARRAYSIZE
18434 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18435 #  endif
18436 #endif
18437
18438 #ifndef NSIG
18439 #  ifdef _sys_nsig
18440 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
18441 #  endif
18442 #endif
18443
18444 /* Default to some arbitrary number that's big enough to get most
18445    of the common signals.
18446 */
18447 #ifndef NSIG
18448 #    define NSIG 50
18449 #endif
18450
18451 printf("NSIG %d\n", NSIG);
18452
18453 #ifndef JUST_NSIG
18454
18455 EOCP
18456
18457 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
18458 {
18459         printf "#ifdef SIG"; printf $1; printf "\n"
18460         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
18461         printf $1; printf ");\n"
18462         printf "#endif\n"
18463 }
18464 END {
18465         printf "#endif /* JUST_NSIG */\n";
18466         printf "exit(0);\n}\n";
18467 }
18468 ' >>signal.c
18469 $cat >signal.awk <<'EOP'
18470 BEGIN { ndups = 0 }
18471 $1 ~ /^NSIG$/ { nsig = $2 }
18472 ($1 !~ /^NSIG$/) && (NF == 2) {
18473     if ($2 > maxsig) { maxsig = $2 }
18474     if (sig_name[$2]) {
18475         dup_name[ndups] = $1
18476         dup_num[ndups] = $2
18477         ndups++ 
18478     }
18479     else {
18480         sig_name[$2] = $1
18481         sig_num[$2] = $2
18482     }
18483 }
18484 END { 
18485     if (nsig == 0) {
18486         nsig = maxsig + 1
18487     }
18488     printf("NSIG %d\n", nsig);
18489     for (n = 1; n < nsig; n++) {
18490         if (sig_name[n]) {
18491             printf("%s %d\n", sig_name[n], sig_num[n])
18492         }
18493         else {
18494             printf("NUM%d %d\n", n, n) 
18495         }
18496     }
18497     for (n = 0; n < ndups; n++) {
18498         printf("%s %d\n", dup_name[n], dup_num[n])
18499     }
18500 }
18501 EOP
18502 $cat >signal_cmd <<EOS
18503 $startsh
18504 if $test -s signal.lst; then
18505     echo "Using your existing signal.lst file"
18506         exit 0
18507 fi
18508 xxx="$xxx"
18509 EOS
18510 $cat >>signal_cmd <<'EOS'
18511
18512 set signal
18513 if eval $compile_ok; then
18514         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
18515 else
18516         echo "(I can't seem be able to compile the whole test program)" >&4
18517         echo "(I'll try it in little pieces.)" >&4
18518         set signal -DJUST_NSIG
18519         if eval $compile_ok; then
18520                 $run ./signal$_exe > signal.nsg
18521                 $cat signal.nsg
18522         else
18523                 echo "I can't seem to figure out how many signals you have." >&4
18524                 echo "Guessing 50." >&4
18525                 echo 'NSIG 50' > signal.nsg
18526         fi
18527         : Now look at all the signal names, one at a time.
18528         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
18529                 $cat > signal.c <<EOCP
18530 #include <sys/types.h>
18531 #include <signal.h>
18532 #include <stdio.h>
18533 int main() {
18534 printf("$xx %d\n", SIG${xx});
18535 return 0;
18536 }
18537 EOCP
18538                 set signal
18539                 if eval $compile; then
18540                         echo "SIG${xx} found."
18541                         $run ./signal$_exe  >> signal.ls1
18542                 else
18543                         echo "SIG${xx} NOT found."
18544                 fi
18545         done
18546         if $test -s signal.ls1; then
18547                 $cat signal.nsg signal.ls1 |
18548                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
18549         fi
18550
18551 fi
18552 if $test -s signal.lst; then
18553         :
18554 else
18555         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
18556         echo 'kill -l' >signal
18557         set X `csh -f <signal`
18558         $rm -f signal
18559         shift
18560         case $# in
18561         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
18562         esac
18563         echo $@ | $tr ' ' $trnl | \
18564             $awk '{ printf "%s %d\n", $1, ++s; }
18565                   END { printf "NSIG %d\n", ++s }' >signal.lst
18566 fi
18567 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
18568 EOS
18569 chmod a+x signal_cmd
18570 $eunicefix signal_cmd
18571
18572 : generate list of signal names
18573 echo " "
18574 case "$sig_name_init" in
18575 '') doinit=yes ;;
18576 *)  case "$sig_num_init" in
18577     ''|*,*) doinit=yes ;;
18578     esac ;;
18579 esac
18580 case "$doinit" in
18581 yes)
18582         echo "Generating a list of signal names and numbers..." >&4
18583         . ./signal_cmd
18584         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
18585         sig_name=`$awk 'BEGIN { printf "ZERO " }
18586                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
18587         sig_num=`$awk  'BEGIN { printf "0 " }
18588                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
18589         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
18590                              !/^NSIG/   { printf "\"%s\", ", $1 }
18591                              END        { printf "0\n" }' signal.lst`
18592         sig_num_init=`$awk  'BEGIN      { printf "0, " }
18593                              !/^NSIG/   { printf "%d, ", $2}
18594                              END        { printf "0\n"}' signal.lst`
18595         ;;
18596 esac
18597 echo "The following $sig_count signals are available:"
18598 echo " "
18599 echo $sig_name | $awk \
18600 'BEGIN { linelen = 0 }
18601 {
18602         for (i = 1; i <= NF; i++) {
18603                 name = "SIG" $i " "
18604                 linelen = linelen + length(name)
18605                 if (linelen > 70) {
18606                         printf "\n"
18607                         linelen = length(name)
18608                 }
18609                 printf "%s", name
18610         }
18611         printf "\n"
18612 }'
18613 sig_size=`echo $sig_name | awk '{print NF}'`
18614 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
18615
18616 echo " "
18617 case "$sizetype" in
18618 *_t) zzz="$sizetype"    ;;
18619 *)   zzz="filesize"     ;;
18620 esac
18621 echo "Checking the size of $zzz..." >&4 
18622 cat > try.c <<EOCP
18623 #include <sys/types.h>
18624 #include <stdio.h>
18625 int main() {
18626     printf("%d\n", (int)sizeof($sizetype));
18627     exit(0);
18628 }
18629 EOCP
18630 set try
18631 if eval $compile_ok; then
18632         yyy=`$run ./try`
18633         case "$yyy" in
18634         '')     sizesize=4
18635                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
18636                 ;;
18637         *)      sizesize=$yyy
18638                 echo "Your $zzz size is $sizesize bytes."
18639                 ;;
18640         esac
18641 else
18642         sizesize=4
18643         echo "(I can't compile the test program--guessing $sizesize.)" >&4
18644 fi
18645
18646
18647 : check for socklen_t
18648 echo " "
18649 echo "Checking to see if you have socklen_t..." >&4
18650 $cat >try.c <<EOCP
18651 #include <sys/types.h>
18652 #$d_socket HAS_SOCKET
18653 #ifdef HAS_SOCKET
18654 #include <sys/socket.h>
18655 #endif
18656 int main() { socklen_t x = 16; }
18657 EOCP
18658 set try
18659 if eval $compile; then
18660         val="$define"
18661         echo "You have socklen_t."
18662 else
18663         val="$undef"
18664         echo "You do not have socklen_t."
18665         case "$sizetype" in
18666         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
18667         esac
18668 fi
18669 $rm -f try try.*
18670 set d_socklen_t
18671 eval $setvar
18672
18673 : see if this is a socks.h system
18674 set socks.h i_socks
18675 eval $inhdr
18676
18677 : check for type of the size argument to socket calls
18678 case "$d_socket" in
18679 "$define")
18680         $cat <<EOM
18681
18682 Checking to see what type is the last argument of accept().
18683 EOM
18684         yyy=''
18685         case "$d_socklen_t" in
18686         "$define") yyy="$yyy socklen_t"
18687         esac
18688         yyy="$yyy $sizetype int long unsigned"
18689         for xxx in $yyy; do
18690                 case "$socksizetype" in
18691                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
18692                         case "$usesocks" in
18693                         "$define")
18694                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
18695                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
18696                                         socksizetype="$xxx"
18697                                 fi
18698                                 ;;
18699                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
18700                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
18701                                         socksizetype="$xxx"
18702                                 fi
18703                                 ;;
18704                         esac
18705                         ;;
18706                 esac
18707         done
18708 : In case none of those worked, prompt the user.
18709         case "$socksizetype" in
18710         '')     rp='What is the type for socket address structure sizes?'
18711                 dflt='int'
18712                 . ./myread
18713                 socksizetype=$ans
18714                 ;;
18715         esac
18716         ;;
18717 *)      : no sockets, so pick relatively harmless default
18718         socksizetype='int'
18719         ;;
18720 esac
18721
18722 : see what type is used for signed size_t
18723 set ssize_t ssizetype int stdio.h sys/types.h
18724 eval $typedef
18725 dflt="$ssizetype"
18726 $cat > try.c <<EOM
18727 #include <stdio.h>
18728 #include <sys/types.h>
18729 #define Size_t $sizetype
18730 #define SSize_t $dflt
18731 int main()
18732 {
18733         if (sizeof(Size_t) == sizeof(SSize_t))
18734                 printf("$dflt\n");
18735         else if (sizeof(Size_t) == sizeof(int))
18736                 printf("int\n");
18737         else 
18738                 printf("long\n");
18739         exit(0);
18740 }
18741 EOM
18742 echo " "
18743 set try
18744 if eval $compile_ok && $run ./try > /dev/null; then
18745         ssizetype=`$run ./try`
18746         echo "I'll be using $ssizetype for functions returning a byte count." >&4
18747 else
18748         $cat >&4 <<EOM
18749 Help! I can't compile and run the ssize_t test program: please enlighten me!
18750 (This is probably a misconfiguration in your system or libraries, and
18751 you really ought to fix it.  Still, I'll try anyway.)
18752
18753 I need a type that is the same size as $sizetype, but is guaranteed to
18754 be signed.  Common values are ssize_t, int and long.
18755
18756 EOM
18757         rp="What signed type is the same size as $sizetype?"
18758         . ./myread
18759         ssizetype="$ans"
18760 fi
18761 $rm -f try try.*
18762
18763 : see what type of char stdio uses.
18764 echo " "
18765 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
18766 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
18767         echo "Your stdio uses unsigned chars." >&4
18768         stdchar="unsigned char"
18769 else
18770         echo "Your stdio uses signed chars." >&4
18771         stdchar="char"
18772 fi
18773 $rm -f stdioh
18774
18775
18776
18777 : see what type uids are declared as in the kernel
18778 echo " "
18779 echo "Looking for the type for user ids returned by getuid()."
18780 set uid_t uidtype xxx stdio.h sys/types.h
18781 eval $typedef
18782 case "$uidtype" in
18783 xxx)
18784         xxx=`./findhdr sys/user.h`
18785         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
18786         case $1 in
18787         unsigned) dflt="$1 $2" ;;
18788         *) dflt="$1" ;;
18789         esac
18790         ;;
18791 *) dflt="$uidtype";;
18792 esac
18793 case "$uidtype" in
18794 uid_t)  echo "uid_t found." ;;
18795 *)      rp="What is the type for user ids returned by getuid()?"
18796         . ./myread
18797         uidtype="$ans"
18798         ;;
18799 esac
18800
18801 echo " "
18802 case "$uidtype" in
18803 *_t) zzz="$uidtype"     ;;
18804 *)   zzz="uid"          ;;
18805 esac
18806 echo "Checking the size of $zzz..." >&4 
18807 cat > try.c <<EOCP
18808 #include <sys/types.h>
18809 #include <stdio.h>
18810 int main() {
18811     printf("%d\n", (int)sizeof($uidtype));
18812     exit(0);
18813 }
18814 EOCP
18815 set try
18816 if eval $compile_ok; then
18817         yyy=`$run ./try`
18818         case "$yyy" in
18819         '')     uidsize=4
18820                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
18821                 ;;
18822         *)      uidsize=$yyy
18823                 echo "Your $zzz is $uidsize bytes long."
18824                 ;;
18825         esac
18826 else
18827         uidsize=4
18828         echo "(I can't compile the test program--guessing $uidsize.)" >&4
18829 fi
18830
18831 echo " "
18832 case "$uidtype" in
18833 *_t) zzz="$uidtype"     ;;
18834 *)   zzz="uid"          ;;
18835 esac
18836 echo "Checking the sign of $zzz..." >&4
18837 cat > try.c <<EOCP
18838 #include <sys/types.h>
18839 #include <stdio.h>
18840 int main() {
18841         $uidtype foo = -1;
18842         if (foo < 0)
18843                 printf("-1\n");
18844         else
18845                 printf("1\n");
18846 }
18847 EOCP
18848 set try
18849 if eval $compile; then
18850         yyy=`$run ./try`
18851         case "$yyy" in
18852         '')     uidsign=1
18853                 echo "(I can't execute the test program--guessing unsigned.)" >&4
18854                 ;;
18855         *)      uidsign=$yyy
18856                 case "$uidsign" in
18857                  1) echo "Your $zzz is unsigned." ;;
18858                 -1) echo "Your $zzz is signed."   ;;
18859                 esac
18860                 ;;
18861         esac
18862 else
18863         uidsign=1
18864         echo "(I can't compile the test program--guessing unsigned.)" >&4
18865 fi
18866
18867
18868
18869 echo " "
18870 $echo "Checking the format string to be used for uids..." >&4
18871
18872 case "$uidsign" in
18873 -1)     if $test X"$uidsize" = X"$ivsize"; then
18874                 uidformat="$ivdformat"
18875         else
18876                 if $test X"$uidsize" = X"$longsize"; then
18877                         uidformat='"ld"'
18878                 else
18879                         if $test X"$uidsize" = X"$intsize"; then
18880                                 uidformat='"d"'
18881                         else
18882                                 if $test X"$uidsize" = X"$shortsize"; then
18883                                         uidformat='"hd"'
18884                                 fi
18885                         fi
18886                 fi
18887         fi
18888         ;;
18889 *)      if $test X"$uidsize" = X"$uvsize"; then
18890                 uidformat="$uvuformat"
18891         else
18892                 if $test X"$uidsize" = X"$longsize"; then
18893                         uidformat='"lu"'
18894                 else
18895                         if $test X"$uidsize" = X"$intsize"; then
18896                                 uidformat='"u"'
18897                         else
18898                                 if $test X"$uidsize" = X"$shortsize"; then
18899                                         uidformat='"hu"'
18900                                 fi
18901                         fi
18902                 fi
18903         fi
18904         ;;
18905 esac
18906
18907 : determine compiler compiler
18908 case "$yacc" in
18909 '')
18910         dflt=yacc;;
18911 *)
18912         dflt="$yacc";;
18913 esac
18914 echo " "
18915 comp='yacc'
18916 if $test -f "$byacc$_exe"; then
18917         dflt="$byacc"
18918         comp="byacc or $comp"
18919 fi
18920 if $test -f "$bison$_exe"; then
18921         comp="$comp or bison -y"
18922 fi
18923 rp="Which compiler compiler ($comp) shall I use?"
18924 . ./myread
18925 yacc="$ans"
18926 case "$yacc" in
18927 *bis*)
18928         case "$yacc" in
18929         *-y*) ;;
18930         *)
18931                 yacc="$yacc -y"
18932                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
18933                 ;;
18934         esac
18935         ;;
18936 esac
18937
18938 : see if this is a fp.h system
18939 set fp.h i_fp
18940 eval $inhdr
18941
18942 : see if this is a fp_class.h system
18943 set fp_class.h i_fp_class
18944 eval $inhdr
18945
18946 : see if this is a ieeefp.h system
18947 case "$i_ieeefp" in
18948 '' ) set ieeefp.h i_ieeefp
18949      eval $inhdr
18950      ;;
18951 esac
18952
18953 : see if this is a libutil.h system
18954 set libutil.h i_libutil
18955 eval $inhdr
18956
18957 : see if mach cthreads are available
18958 if test "X$usethreads" = "X$define"; then
18959         set mach/cthreads.h i_machcthr
18960         eval $inhdr
18961 else
18962         i_machcthr="$undef"
18963 fi
18964
18965
18966
18967 : see if this is a math.h system
18968 set math.h i_math
18969 eval $inhdr
18970
18971 : see if this is a mntent.h system
18972 set mntent.h i_mntent
18973 eval $inhdr
18974
18975 : see if ndbm.h is available
18976 set ndbm.h t_ndbm
18977 eval $inhdr
18978
18979 case "$t_ndbm" in
18980 $undef)
18981     # Some Linux distributions such as RedHat 7.1 put the
18982     # ndbm.h header in /usr/include/gdbm/ndbm.h.
18983     if $test -f /usr/include/gdbm/ndbm.h; then
18984         echo '<gdbm/ndbm.h> found.'
18985         ccflags="$ccflags -I/usr/include/gdbm"
18986         cppflags="$cppflags -I/usr/include/gdbm"
18987         t_ndbm=$define
18988     fi
18989     ;;
18990 esac
18991
18992 case "$t_ndbm" in
18993 $define)
18994         : see if dbm_open exists
18995         set dbm_open d_dbm_open
18996         eval $inlibc
18997         case "$d_dbm_open" in
18998         $undef)
18999                 t_ndbm="$undef"
19000                 echo "We won't be including <ndbm.h>"
19001                 ;;
19002         esac
19003         ;;
19004 esac
19005 val="$t_ndbm"
19006 set i_ndbm
19007 eval $setvar
19008
19009 : see if net/errno.h is available
19010 val=''
19011 set net/errno.h val
19012 eval $inhdr
19013
19014 : Unfortunately, it causes problems on some systems.  Arrgh.
19015 case "$val" in
19016 $define)
19017         cat > try.c <<'EOM'
19018 #include <stdio.h>
19019 #include <errno.h>
19020 #include <net/errno.h>
19021 int func()
19022 {
19023         return ENOTSOCK;
19024 }
19025 EOM
19026         if $cc $ccflags -c try.c >/dev/null 2>&1; then
19027                 echo "We'll be including <net/errno.h>." >&4
19028         else
19029                 echo "We won't be including <net/errno.h>." >&4
19030                 val="$undef"
19031         fi
19032         $rm -f try.* try
19033         ;;
19034 esac
19035 set i_neterrno
19036 eval $setvar
19037
19038 : see if netinet/tcp.h is available
19039 set netinet/tcp.h i_netinettcp
19040 eval $inhdr
19041
19042 : see if this is a poll.h system
19043 set poll.h i_poll
19044 eval $inhdr
19045
19046 : see if this is a prot.h system
19047 set prot.h i_prot
19048 eval $inhdr
19049
19050 echo " "
19051 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
19052 $cat <<'EOSH' > Cppsym.know
19053 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
19054 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
19055 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
19056 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
19057 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
19058 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
19059 bull c cadmus clipper CMU COFF COMPILER_VERSION
19060 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
19061 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
19062 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
19063 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
19064 GLIBC GLIBC_MINOR
19065 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
19066 H3050R H3050RX hbullx20 hcx host_mips
19067 hp200 hp300 hp700 HP700 hp800 hp9000
19068 hp9000s200 hp9000s300 hp9000s400 hp9000s500
19069 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
19070 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
19071 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
19072 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
19073 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
19074 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
19075 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
19076 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
19077 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
19078 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
19079 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
19080 MATH_HAS_NO_SIDE_EFFECTS
19081 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
19082 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
19083 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
19084 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
19085 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
19086 NetBSD news1500 news1700 news1800 news1900 news3700
19087 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
19088 ns32016 ns32332 ns32k nsc32000
19089 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
19090 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
19091 pc532 pdp11 PGC PIC plexus PORTAR posix
19092 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
19093 POSIX_C_SOURCE POSIX_SOURCE POWER
19094 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
19095 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
19096 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
19097 sony sony_news sonyrisc sparc sparclite spectrum
19098 stardent stdc STDC_EXT stratos sun sun3 sun386
19099 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
19100 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
19101 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
19102 sysV68 sysV88 Tek4132 Tek4300 titan
19103 TM3200 TM5400 TM5600
19104 tower tower32 tower32_200 tower32_600 tower32_700
19105 tower32_800 tower32_850 tss
19106 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
19107 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
19108 unix UNIX95 UNIX99 unixpc unos
19109 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
19110 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
19111 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
19112 USGr4 USGr4_2
19113 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
19114 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
19115 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
19116 z8000
19117 EOSH
19118 # Maybe put other stuff here too.
19119 cat <<EOSH >>Cppsym.know
19120 $osname
19121 EOSH
19122 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
19123 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
19124 $cat Cppsym.know > Cppsym.c
19125 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
19126 $rm -f Cppsym.a Cppsym.b Cppsym.c
19127 cat <<EOSH > Cppsym
19128 $startsh
19129 if $test \$# -gt 0; then
19130     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
19131     if $test -s Cppsym.got; then
19132         $rm -f Cppsym.got
19133         exit 0
19134     fi
19135     $rm -f Cppsym.got
19136     exit 1
19137 else
19138     $tr " " "$trnl" | ./Cppsym.try
19139     exit 0
19140 fi
19141 EOSH
19142 chmod +x Cppsym
19143 $eunicefix Cppsym
19144 cat <<EOSH > Cppsym.try
19145 $startsh
19146 cat <<'EOCP' > try.c
19147 #include <stdio.h>
19148 int main() {
19149 EOCP
19150 $awk \\
19151 EOSH
19152 cat <<'EOSH' >> Cppsym.try
19153 'length($1) > 0 {
19154     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
19155     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
19156     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
19157     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
19158 }'       >> try.c
19159 echo 'return 0;}' >> try.c
19160 EOSH
19161 cat <<EOSH >> Cppsym.try
19162 ccflags="$ccflags"
19163 case "$osname-$gccversion" in
19164 irix-) ccflags="\$ccflags -woff 1178" ;;
19165 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
19166 esac
19167 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
19168 EOSH
19169 chmod +x Cppsym.try
19170 $eunicefix Cppsym.try
19171 ./Cppsym < Cppsym.know > Cppsym.true
19172 : now check the C compiler for additional symbols
19173 postprocess_cc_v=''
19174 case "$osname" in
19175 aix) postprocess_cc_v="|$tr , ' '" ;;
19176 esac
19177 $cat >ccsym <<EOS
19178 $startsh
19179 $cat >tmp.c <<EOF
19180 extern int foo;
19181 EOF
19182 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
19183 do
19184         case "\$i" in
19185         -D*) echo "\$i" | $sed 's/^-D//';;
19186         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
19187         esac
19188 done
19189 $rm -f try.c
19190 EOS
19191 postprocess_cc_v=''
19192 chmod +x ccsym
19193 $eunicefix ccsym
19194 ./ccsym > ccsym1.raw
19195 if $test -s ccsym1.raw; then
19196        $sort ccsym1.raw | $uniq >ccsym.raw
19197 else
19198        mv ccsym1.raw ccsym.raw
19199 fi
19200
19201 $awk '/\=/ { print $0; next }
19202         { print $0"=1" }' ccsym.raw >ccsym.list
19203 $awk '/\=/ { print $0; next }
19204         { print $0"=1" }' Cppsym.true >ccsym.true
19205 $comm -13 ccsym.true ccsym.list >ccsym.own
19206 $comm -12 ccsym.true ccsym.list >ccsym.com
19207 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19208 also=''
19209 if $test -z ccsym.raw; then
19210         echo "Your C compiler doesn't seem to define any symbols!" >&4
19211         echo " "
19212         echo "However, your C preprocessor defines the following symbols:"
19213         $cat Cppsym.true
19214         ccsymbols=''
19215         cppsymbols=`$cat Cppsym.true`
19216         cppsymbols=`echo $cppsymbols`
19217         cppccsymbols="$cppsymbols"
19218 else
19219         if $test -s ccsym.com; then
19220                 echo "Your C compiler and pre-processor define these symbols:"
19221                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19222                 also='also '
19223                 symbols='ones'
19224                 cppccsymbols=`$cat ccsym.com`
19225                 cppccsymbols=`echo $cppccsymbols`
19226                 $test "$silent" || sleep 1
19227         fi
19228         if $test -s ccsym.cpp; then
19229                 $test "$also" && echo " "
19230                 echo "Your C pre-processor ${also}defines the following symbols:"
19231                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19232                 also='further '
19233                 cppsymbols=`$cat ccsym.cpp`
19234                 cppsymbols=`echo $cppsymbols`
19235                 $test "$silent" || sleep 1
19236         fi
19237         if $test -s ccsym.own; then
19238                 $test "$also" && echo " "
19239                 echo "Your C compiler ${also}defines the following cpp symbols:"
19240                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19241                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19242                 ccsymbols=`$cat ccsym.own`
19243                 ccsymbols=`echo $ccsymbols`
19244                 $test "$silent" || sleep 1
19245         fi
19246 fi
19247
19248 : see if this is a termio system
19249 val="$undef"
19250 val2="$undef"
19251 val3="$undef"
19252 if $test `./findhdr termios.h`; then
19253         set tcsetattr i_termios
19254         eval $inlibc
19255         val3="$i_termios"
19256 fi
19257 echo " "
19258 case "$val3" in
19259 "$define") echo "You have POSIX termios.h... good!" >&4;;
19260 *) if ./Cppsym pyr; then
19261                 case "`/bin/universe`" in
19262                 ucb) if $test `./findhdr sgtty.h`; then
19263                                 val2="$define"
19264                                 echo "<sgtty.h> found." >&4
19265                         else
19266                                 echo "System is pyramid with BSD universe."
19267                                 echo "<sgtty.h> not found--you could have problems." >&4
19268                         fi;;
19269                 *) if $test `./findhdr termio.h`; then
19270                                 val="$define"
19271                                 echo "<termio.h> found." >&4
19272                         else
19273                                 echo "System is pyramid with USG universe."
19274                                 echo "<termio.h> not found--you could have problems." >&4
19275                         fi;;
19276                 esac
19277         elif ./usg; then
19278                 if $test `./findhdr termio.h`; then
19279                         echo "<termio.h> found." >&4
19280                         val="$define"
19281                 elif $test `./findhdr sgtty.h`; then
19282                         echo "<sgtty.h> found." >&4
19283                         val2="$define"
19284                 else
19285 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19286                 fi
19287         else
19288                 if $test `./findhdr sgtty.h`; then
19289                         echo "<sgtty.h> found." >&4
19290                         val2="$define"
19291                 elif $test `./findhdr termio.h`; then
19292                         echo "<termio.h> found." >&4
19293                         val="$define"
19294                 else
19295 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19296                 fi
19297         fi;;
19298 esac
19299 set i_termio; eval $setvar
19300 val=$val2; set i_sgtty; eval $setvar
19301 val=$val3; set i_termios; eval $setvar
19302
19303 : see if stddef is available
19304 set stddef.h i_stddef
19305 eval $inhdr
19306
19307 : see if this is a sunmath.h system
19308 set sunmath.h i_sunmath
19309 eval $inhdr
19310
19311 : see if sys/access.h is available
19312 set sys/access.h i_sysaccess
19313 eval $inhdr
19314
19315 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19316 set sys/filio.h i_sysfilio
19317 eval $inhdr
19318 echo " "
19319 if $test `./findhdr sys/ioctl.h`; then
19320         val="$define"
19321         echo '<sys/ioctl.h> found.' >&4
19322 else
19323         val="$undef"
19324         if $test $i_sysfilio = "$define"; then
19325             echo '<sys/ioctl.h> NOT found.' >&4
19326         else
19327                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19328                 $test $i_termio = "$define" && xxx="termio.h"
19329                 $test $i_termios = "$define" && xxx="termios.h"
19330 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19331         fi
19332 fi
19333 set i_sysioctl
19334 eval $setvar
19335
19336 : see if socket ioctl defs are in sys/sockio.h
19337 echo " "
19338 xxx=`./findhdr sys/sockio.h`
19339 if $test "$xxx"; then
19340         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19341                 val="$define"
19342                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19343         else
19344                 val="$undef"
19345                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19346         fi
19347 else
19348         val="$undef"
19349         $cat <<EOM
19350 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19351 EOM
19352 fi
19353 set i_syssockio
19354 eval $setvar
19355
19356
19357 : see if this is a syslog.h system
19358 set syslog.h i_syslog
19359 eval $inhdr
19360
19361
19362 : see if this is a sys/mode.h system
19363 set sys/mode.h i_sysmode
19364 eval $inhdr
19365
19366 : see if sys/resource.h has to be included
19367 set sys/resource.h i_sysresrc
19368 eval $inhdr
19369
19370 : see if sys/security.h is available
19371 set sys/security.h i_syssecrt
19372 eval $inhdr
19373
19374 : see if this is a sys/statvfs.h system
19375 set sys/statvfs.h i_sysstatvfs
19376 eval $inhdr
19377
19378 : see if this is a sys/un.h system
19379 set sys/un.h i_sysun
19380 eval $inhdr
19381
19382
19383 : see if this is a sys/utsname.h system
19384 set sys/utsname.h i_sysutsname
19385 eval $inhdr
19386
19387 : see if this is a syswait system
19388 set sys/wait.h i_syswait
19389 eval $inhdr
19390
19391 : see if this is a ustat.h system
19392 set ustat.h i_ustat
19393 eval $inhdr
19394
19395 : see if this is an utime system
19396 set utime.h i_utime
19397 eval $inhdr
19398
19399 : see if this is a values.h system
19400 set values.h i_values
19401 eval $inhdr
19402
19403 : see if this is a vfork system
19404 case "$d_vfork" in
19405 "$define")
19406         set vfork.h i_vfork
19407         eval $inhdr
19408         ;;
19409 *)
19410         i_vfork="$undef"
19411         ;;
19412 esac
19413
19414 : see if gdbm.h is available
19415 set gdbm.h t_gdbm
19416 eval $inhdr
19417 case "$t_gdbm" in
19418 $define)
19419         : see if gdbm_open exists
19420         set gdbm_open d_gdbm_open
19421         eval $inlibc
19422         case "$d_gdbm_open" in
19423         $undef)
19424                 t_gdbm="$undef"
19425                 echo "We won't be including <gdbm.h>"
19426                 ;;
19427         esac
19428         ;;
19429 esac
19430 val="$t_gdbm"
19431 set i_gdbm
19432 eval $setvar
19433
19434 echo " "
19435 echo "Looking for extensions..." >&4
19436 : If we are using the old config.sh, known_extensions may contain
19437 : old or inaccurate or duplicate values.
19438 known_extensions=''
19439 nonxs_extensions=''
19440 : We do not use find because it might not be available.
19441 : We do not just use MANIFEST because the user may have dropped
19442 : some additional extensions into the source tree and expect them
19443 : to be built.
19444
19445 : Function to recursively find available extensions, ignoring DynaLoader
19446 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
19447 find_extensions='
19448     for xxx in *; do
19449        case "$xxx" in
19450            DynaLoader|dynaload) ;;
19451            *)
19452            if $test -f $xxx/$xxx.xs; then
19453                known_extensions="$known_extensions $1$xxx";
19454            elif $test -f $xxx/Makefile.PL; then
19455                nonxs_extensions="$nonxs_extensions $1$xxx";
19456            else
19457                if $test -d $xxx -a $# -lt 10; then
19458                    set $1$xxx/ $*;
19459                    cd "$xxx";
19460                    eval $find_extensions;
19461                    cd ..;
19462                    shift;
19463                fi;
19464            fi
19465            ;;
19466        esac;
19467     done'
19468 tdir=`pwd`
19469 cd "$rsrc/ext"
19470 set X
19471 shift
19472 eval $find_extensions
19473 # Special case:  Add in threads/shared since it is not picked up by the
19474 # recursive find above (and adding in general recursive finding breaks
19475 # SDBM_File/sdbm).  A.D.  10/25/2001.
19476 known_extensions="$known_extensions threads/shared"
19477 set X $nonxs_extensions
19478 shift
19479 nonxs_extensions="$*"
19480 set X $known_extensions
19481 shift
19482 known_extensions="$*"
19483 cd "$tdir"
19484
19485 : Now see which are supported on this system.
19486 avail_ext=''
19487 for xxx in $known_extensions ; do
19488         case "$xxx" in
19489         DB_File|db_file)
19490                 case "$i_db" in
19491                 $define) avail_ext="$avail_ext $xxx" ;;
19492                 esac
19493                 ;;
19494         GDBM_File|gdbm_fil)
19495                 case "$i_gdbm" in 
19496                 $define) avail_ext="$avail_ext $xxx" ;;
19497                 esac
19498                 ;;
19499         I18N/Langinfo|i18n_lan)
19500                 case "$i_langinfo$d_nl_langinfo" in 
19501                 $define$define) avail_ext="$avail_ext $xxx" ;;
19502                 esac
19503                 ;;
19504         NDBM_File|ndbm_fil)
19505                 case "$i_ndbm" in
19506                 $define)
19507                     case "$osname-$use64bitint" in
19508                     cygwin-*|hpux-define)
19509                         case "$libs" in
19510                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
19511                         esac
19512                         ;;
19513                     *) avail_ext="$avail_ext $xxx" ;;
19514                     esac
19515                     ;;
19516                 esac
19517                 ;;
19518         ODBM_File|odbm_fil) 
19519                 case "${i_dbm}${i_rpcsvcdbm}" in
19520                 *"${define}"*)
19521                     case "$osname-$use64bitint" in
19522                     cygwin-*|hpux-define)
19523                         case "$libs" in
19524                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
19525                         esac
19526                         ;;
19527                     *) avail_ext="$avail_ext $xxx" ;;
19528                     esac
19529                     ;;
19530                 esac
19531                 ;;
19532         POSIX|posix)
19533                 case "$useposix" in
19534                 true|define|y) avail_ext="$avail_ext $xxx" ;;
19535                 esac
19536                 ;;
19537         Opcode|opcode)
19538                 case "$useopcode" in
19539                 true|define|y) avail_ext="$avail_ext $xxx" ;;
19540                 esac
19541                 ;;
19542         Socket|socket)
19543                 case "$d_socket" in 
19544                 true|$define|y)
19545                     case "$osname" in
19546                     beos) ;; # not unless BONE
19547                     *) avail_ext="$avail_ext $xxx" ;;
19548                     esac
19549                     ;;
19550                 esac
19551                 ;;
19552         Sys/Syslog|sys/syslog)
19553                 : XXX syslog requires socket
19554                 case "$d_socket" in 
19555                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
19556                 esac
19557                 ;;
19558         Thread|thread)
19559                 case "$usethreads" in
19560                 true|$define|y)
19561                         case "$useithreads" in
19562                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
19563                         esac
19564                 esac
19565                 ;;
19566         threads|threads/shared)
19567                 case "$usethreads" in
19568                 true|$define|y)
19569                         case "$useithreads" in
19570                         $define|true|[yY]*) avail_ext="$avail_ext $xxx" ;;
19571                         esac
19572                 esac
19573                 ;;
19574         IPC/SysV|ipc/sysv)
19575                 : XXX Do we need a useipcsysv variable here
19576                 case "${d_msg}${d_sem}${d_shm}" in 
19577                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
19578                 esac
19579                 ;;
19580         *)      avail_ext="$avail_ext $xxx"
19581                 ;;
19582         esac
19583 done
19584
19585 set X $avail_ext
19586 shift
19587 avail_ext="$*"
19588
19589 : Now see which nonxs extensions are supported on this system.
19590 : For now assume all are.
19591 nonxs_ext=''
19592 for xxx in $nonxs_extensions ; do
19593         case "$xxx" in
19594         *)      nonxs_ext="$nonxs_ext $xxx"
19595                 ;;
19596         esac
19597 done
19598
19599 set X $nonxs_ext
19600 shift
19601 nonxs_ext="$*"
19602
19603 case $usedl in
19604 $define)
19605         $cat <<EOM
19606 A number of extensions are supplied with $package.  You may choose to
19607 compile these extensions for dynamic loading (the default), compile
19608 them into the $package executable (static loading), or not include
19609 them at all.  Answer "none" to include no extensions.
19610 Note that DynaLoader is always built and need not be mentioned here.
19611
19612 EOM
19613         case "$dynamic_ext" in
19614         '') dflt="$avail_ext" ;;
19615         *)      dflt="$dynamic_ext"
19616                 # Perhaps we are reusing an old out-of-date config.sh.
19617                 case "$hint" in
19618                 previous)
19619                         if test X"$dynamic_ext" != X"$avail_ext"; then
19620                                 $cat <<EOM
19621 NOTICE:  Your previous config.sh list may be incorrect. 
19622 The extensions now available to you are 
19623         ${avail_ext}
19624 but the default list from your previous config.sh is
19625         ${dynamic_ext} 
19626
19627 EOM
19628                         fi
19629                         ;;
19630                 esac
19631                 ;;
19632         esac
19633         case "$dflt" in
19634         '')     dflt=none;;
19635         esac
19636         rp="What extensions do you wish to load dynamically?"
19637         . ./myread
19638         case "$ans" in
19639         none) dynamic_ext=' ' ;;
19640         *) dynamic_ext="$ans" ;;
19641         esac
19642
19643         case "$static_ext" in
19644         '')
19645                 : Exclude those already listed in dynamic linking
19646                 dflt=''
19647                 for xxx in $avail_ext; do
19648                         case " $dynamic_ext " in
19649                         *" $xxx "*) ;;
19650                         *) dflt="$dflt $xxx" ;;
19651                         esac
19652                 done
19653                 set X $dflt
19654                 shift
19655                 dflt="$*"
19656                 ;;
19657         *)  dflt="$static_ext" 
19658                 ;;
19659         esac
19660
19661         case "$dflt" in
19662         '')     dflt=none;;
19663         esac
19664         rp="What extensions do you wish to load statically?"
19665         . ./myread
19666         case "$ans" in
19667         none) static_ext=' ' ;;
19668         *) static_ext="$ans" ;;
19669         esac
19670         ;;
19671 *)
19672         $cat <<EOM
19673 A number of extensions are supplied with $package.  Answer "none" 
19674 to include no extensions. 
19675 Note that DynaLoader is always built and need not be mentioned here.
19676
19677 EOM
19678         case "$static_ext" in
19679         '') dflt="$avail_ext" ;;
19680         *)      dflt="$static_ext"
19681                 # Perhaps we are reusing an old out-of-date config.sh.
19682                 case "$hint" in
19683                 previous)
19684                         if test X"$static_ext" != X"$avail_ext"; then
19685                                 $cat <<EOM
19686 NOTICE:  Your previous config.sh list may be incorrect. 
19687 The extensions now available to you are 
19688         ${avail_ext}
19689 but the default list from your previous config.sh is
19690         ${static_ext} 
19691
19692 EOM
19693                         fi
19694                         ;;
19695                 esac
19696                 ;;
19697         esac
19698         : Exclude those that are not xs extensions
19699         case "$dflt" in
19700         '')     dflt=none;;
19701         *)  case " $dflt " in
19702             *" Encode "*) # Add the subextensions of Encode
19703                 cd "$rsrc/ext"
19704                 for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
19705                         dflt="$dflt Encode/$xxx"
19706                 done
19707                 cd "$tdir"
19708                 ;;
19709             esac
19710             ;;
19711         esac
19712         rp="What extensions do you wish to include?"
19713         . ./myread
19714         case "$ans" in
19715         none) static_ext=' ' ;;
19716         *) static_ext="$ans" ;;
19717         esac
19718         ;;
19719 esac
19720
19721 set X $dynamic_ext $static_ext $nonxs_ext
19722 shift
19723 extensions="$*"
19724
19725 : Remove libraries needed only for extensions
19726 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
19727 : The exception is SunOS 4.x, which needs them.
19728 case "${osname}X${osvers}" in
19729 sunos*X4*)
19730     perllibs="$libs"
19731     ;;
19732 *) case "$usedl" in
19733     $define|true|[yY]*)
19734             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
19735             shift
19736             perllibs="$*"
19737             ;;
19738     *)  perllibs="$libs"
19739             ;;
19740     esac
19741     ;;
19742 esac
19743
19744 : Remove build directory name from cppstdin so it can be used from
19745 : either the present location or the final installed location.
19746 echo " "
19747 : Get out of the UU directory to get correct path name.
19748 cd ..
19749 case "$cppstdin" in
19750 `pwd`/cppstdin)
19751         echo "Stripping down cppstdin path name"
19752         cppstdin=cppstdin
19753         ;;
19754 esac
19755 cd UU
19756
19757 : end of configuration questions
19758 echo " "
19759 echo "End of configuration questions."
19760 echo " "
19761
19762 : back to where it started
19763 if test -d ../UU; then
19764         cd ..
19765 fi
19766
19767 : configuration may be patched via a 'config.arch' file
19768 if $test -f config.arch; then
19769         echo "I see a config.arch file, loading it."
19770         . ./config.arch
19771 fi
19772
19773 : configuration may be patched via a 'config.over' file
19774 if $test -f config.over; then
19775         echo " "
19776         dflt=y
19777         rp='I see a config.over file.  Do you wish to load it?'
19778         . UU/myread
19779         case "$ans" in
19780         n*) echo "OK, I'll ignore it.";;
19781         *)      . ./config.over
19782                 echo "Configuration override changes have been loaded."
19783                 ;;
19784         esac
19785 fi
19786
19787 : in case they want portability, strip down executable paths
19788 case "$d_portable" in
19789 "$define")
19790         echo " "
19791         echo "Stripping down executable paths..." >&4
19792         for file in $loclist $trylist; do
19793                 eval temp=\$$file
19794                 eval $file=`basename $temp`
19795         done
19796         ;;
19797 esac
19798
19799 : create config.sh file
19800 echo " "
19801 echo "Creating config.sh..." >&4
19802 $spitshell <<EOT >config.sh
19803 $startsh
19804 #
19805 # This file was produced by running the Configure script. It holds all the
19806 # definitions figured out by Configure. Should you modify one of these values,
19807 # do not forget to propagate your changes by running "Configure -der". You may
19808 # instead choose to run each of the .SH files by yourself, or "Configure -S".
19809 #
19810
19811 # Package name      : $package
19812 # Source directory  : $src
19813 # Configuration time: $cf_time
19814 # Configured by     : $cf_by
19815 # Target system     : $myuname
19816
19817 Author='$Author'
19818 Date='$Date'
19819 Header='$Header'
19820 Id='$Id'
19821 Locker='$Locker'
19822 Log='$Log'
19823 Mcc='$Mcc'
19824 RCSfile='$RCSfile'
19825 Revision='$Revision'
19826 Source='$Source'
19827 State='$State'
19828 _a='$_a'
19829 _exe='$_exe'
19830 _o='$_o'
19831 afs='$afs'
19832 afsroot='$afsroot'
19833 alignbytes='$alignbytes'
19834 ansi2knr='$ansi2knr'
19835 aphostname='$aphostname'
19836 api_revision='$api_revision'
19837 api_subversion='$api_subversion'
19838 api_version='$api_version'
19839 api_versionstring='$api_versionstring'
19840 ar='$ar'
19841 archlib='$archlib'
19842 archlibexp='$archlibexp'
19843 archname64='$archname64'
19844 archname='$archname'
19845 archobjs='$archobjs'
19846 asctime_r_proto='$asctime_r_proto'
19847 awk='$awk'
19848 baserev='$baserev'
19849 bash='$bash'
19850 bin='$bin'
19851 bincompat5005='$bincompat5005'
19852 binexp='$binexp'
19853 bison='$bison'
19854 byacc='$byacc'
19855 byteorder='$byteorder'
19856 c='$c'
19857 castflags='$castflags'
19858 cat='$cat'
19859 cc='$cc'
19860 cccdlflags='$cccdlflags'
19861 ccdlflags='$ccdlflags'
19862 ccflags='$ccflags'
19863 ccflags_uselargefiles='$ccflags_uselargefiles'
19864 ccname='$ccname'
19865 ccsymbols='$ccsymbols'
19866 ccversion='$ccversion'
19867 cf_by='$cf_by'
19868 cf_email='$cf_email'
19869 cf_time='$cf_time'
19870 charsize='$charsize'
19871 chgrp='$chgrp'
19872 chmod='$chmod'
19873 chown='$chown'
19874 clocktype='$clocktype'
19875 comm='$comm'
19876 compress='$compress'
19877 contains='$contains'
19878 cp='$cp'
19879 cpio='$cpio'
19880 cpp='$cpp'
19881 cpp_stuff='$cpp_stuff'
19882 cppccsymbols='$cppccsymbols'
19883 cppflags='$cppflags'
19884 cpplast='$cpplast'
19885 cppminus='$cppminus'
19886 cpprun='$cpprun'
19887 cppstdin='$cppstdin'
19888 cppsymbols='$cppsymbols'
19889 crypt_r_proto='$crypt_r_proto'
19890 cryptlib='$cryptlib'
19891 csh='$csh'
19892 ctermid_r_proto='$ctermid_r_proto'
19893 ctime_r_proto='$ctime_r_proto'
19894 d_Gconvert='$d_Gconvert'
19895 d_PRIEUldbl='$d_PRIEUldbl'
19896 d_PRIFUldbl='$d_PRIFUldbl'
19897 d_PRIGUldbl='$d_PRIGUldbl'
19898 d_PRIXU64='$d_PRIXU64'
19899 d_PRId64='$d_PRId64'
19900 d_PRIeldbl='$d_PRIeldbl'
19901 d_PRIfldbl='$d_PRIfldbl'
19902 d_PRIgldbl='$d_PRIgldbl'
19903 d_PRIi64='$d_PRIi64'
19904 d_PRIo64='$d_PRIo64'
19905 d_PRIu64='$d_PRIu64'
19906 d_PRIx64='$d_PRIx64'
19907 d_SCNfldbl='$d_SCNfldbl'
19908 d__fwalk='$d__fwalk'
19909 d_access='$d_access'
19910 d_accessx='$d_accessx'
19911 d_alarm='$d_alarm'
19912 d_archlib='$d_archlib'
19913 d_asctime_r='$d_asctime_r'
19914 d_atolf='$d_atolf'
19915 d_atoll='$d_atoll'
19916 d_attribut='$d_attribut'
19917 d_bcmp='$d_bcmp'
19918 d_bcopy='$d_bcopy'
19919 d_bincompat5005='$d_bincompat5005'
19920 d_bsd='$d_bsd'
19921 d_bsdgetpgrp='$d_bsdgetpgrp'
19922 d_bsdsetpgrp='$d_bsdsetpgrp'
19923 d_bzero='$d_bzero'
19924 d_casti32='$d_casti32'
19925 d_castneg='$d_castneg'
19926 d_charvspr='$d_charvspr'
19927 d_chown='$d_chown'
19928 d_chroot='$d_chroot'
19929 d_chsize='$d_chsize'
19930 d_class='$d_class'
19931 d_closedir='$d_closedir'
19932 d_cmsghdr_s='$d_cmsghdr_s'
19933 d_const='$d_const'
19934 d_crypt='$d_crypt'
19935 d_crypt_r='$d_crypt_r'
19936 d_csh='$d_csh'
19937 d_ctermid_r='$d_ctermid_r'
19938 d_ctime_r='$d_ctime_r'
19939 d_cuserid='$d_cuserid'
19940 d_dbl_dig='$d_dbl_dig'
19941 d_dbminitproto='$d_dbminitproto'
19942 d_difftime='$d_difftime'
19943 d_dirfd='$d_dirfd'
19944 d_dirnamlen='$d_dirnamlen'
19945 d_dlerror='$d_dlerror'
19946 d_dlopen='$d_dlopen'
19947 d_dlsymun='$d_dlsymun'
19948 d_dosuid='$d_dosuid'
19949 d_drand48_r='$d_drand48_r'
19950 d_drand48proto='$d_drand48proto'
19951 d_dup2='$d_dup2'
19952 d_eaccess='$d_eaccess'
19953 d_endgrent='$d_endgrent'
19954 d_endgrent_r='$d_endgrent_r'
19955 d_endhent='$d_endhent'
19956 d_endhostent_r='$d_endhostent_r'
19957 d_endnent='$d_endnent'
19958 d_endnetent_r='$d_endnetent_r'
19959 d_endpent='$d_endpent'
19960 d_endprotoent_r='$d_endprotoent_r'
19961 d_endpwent='$d_endpwent'
19962 d_endpwent_r='$d_endpwent_r'
19963 d_endsent='$d_endsent'
19964 d_endservent_r='$d_endservent_r'
19965 d_eofnblk='$d_eofnblk'
19966 d_eunice='$d_eunice'
19967 d_fchdir='$d_fchdir'
19968 d_fchmod='$d_fchmod'
19969 d_fchown='$d_fchown'
19970 d_fcntl='$d_fcntl'
19971 d_fcntl_can_lock='$d_fcntl_can_lock'
19972 d_fd_macros='$d_fd_macros'
19973 d_fd_set='$d_fd_set'
19974 d_fds_bits='$d_fds_bits'
19975 d_fgetpos='$d_fgetpos'
19976 d_finite='$d_finite'
19977 d_finitel='$d_finitel'
19978 d_flexfnam='$d_flexfnam'
19979 d_flock='$d_flock'
19980 d_flockproto='$d_flockproto'
19981 d_fork='$d_fork'
19982 d_fp_class='$d_fp_class'
19983 d_fpathconf='$d_fpathconf'
19984 d_fpclass='$d_fpclass'
19985 d_fpclassify='$d_fpclassify'
19986 d_fpclassl='$d_fpclassl'
19987 d_fpos64_t='$d_fpos64_t'
19988 d_frexpl='$d_frexpl'
19989 d_fs_data_s='$d_fs_data_s'
19990 d_fseeko='$d_fseeko'
19991 d_fsetpos='$d_fsetpos'
19992 d_fstatfs='$d_fstatfs'
19993 d_fstatvfs='$d_fstatvfs'
19994 d_fsync='$d_fsync'
19995 d_ftello='$d_ftello'
19996 d_ftime='$d_ftime'
19997 d_getcwd='$d_getcwd'
19998 d_getespwnam='$d_getespwnam'
19999 d_getfsstat='$d_getfsstat'
20000 d_getgrent='$d_getgrent'
20001 d_getgrent_r='$d_getgrent_r'
20002 d_getgrgid_r='$d_getgrgid_r'
20003 d_getgrnam_r='$d_getgrnam_r'
20004 d_getgrps='$d_getgrps'
20005 d_gethbyaddr='$d_gethbyaddr'
20006 d_gethbyname='$d_gethbyname'
20007 d_gethent='$d_gethent'
20008 d_gethname='$d_gethname'
20009 d_gethostbyaddr_r='$d_gethostbyaddr_r'
20010 d_gethostbyname_r='$d_gethostbyname_r'
20011 d_gethostent_r='$d_gethostent_r'
20012 d_gethostprotos='$d_gethostprotos'
20013 d_getitimer='$d_getitimer'
20014 d_getlogin='$d_getlogin'
20015 d_getlogin_r='$d_getlogin_r'
20016 d_getmnt='$d_getmnt'
20017 d_getmntent='$d_getmntent'
20018 d_getnbyaddr='$d_getnbyaddr'
20019 d_getnbyname='$d_getnbyname'
20020 d_getnent='$d_getnent'
20021 d_getnetbyaddr_r='$d_getnetbyaddr_r'
20022 d_getnetbyname_r='$d_getnetbyname_r'
20023 d_getnetent_r='$d_getnetent_r'
20024 d_getnetprotos='$d_getnetprotos'
20025 d_getpagsz='$d_getpagsz'
20026 d_getpbyname='$d_getpbyname'
20027 d_getpbynumber='$d_getpbynumber'
20028 d_getpent='$d_getpent'
20029 d_getpgid='$d_getpgid'
20030 d_getpgrp2='$d_getpgrp2'
20031 d_getpgrp='$d_getpgrp'
20032 d_getppid='$d_getppid'
20033 d_getprior='$d_getprior'
20034 d_getprotobyname_r='$d_getprotobyname_r'
20035 d_getprotobynumber_r='$d_getprotobynumber_r'
20036 d_getprotoent_r='$d_getprotoent_r'
20037 d_getprotoprotos='$d_getprotoprotos'
20038 d_getprpwnam='$d_getprpwnam'
20039 d_getpwent='$d_getpwent'
20040 d_getpwent_r='$d_getpwent_r'
20041 d_getpwnam_r='$d_getpwnam_r'
20042 d_getpwuid_r='$d_getpwuid_r'
20043 d_getsbyname='$d_getsbyname'
20044 d_getsbyport='$d_getsbyport'
20045 d_getsent='$d_getsent'
20046 d_getservbyname_r='$d_getservbyname_r'
20047 d_getservbyport_r='$d_getservbyport_r'
20048 d_getservent_r='$d_getservent_r'
20049 d_getservprotos='$d_getservprotos'
20050 d_getspnam='$d_getspnam'
20051 d_getspnam_r='$d_getspnam_r'
20052 d_gettimeod='$d_gettimeod'
20053 d_gmtime_r='$d_gmtime_r'
20054 d_gnulibc='$d_gnulibc'
20055 d_grpasswd='$d_grpasswd'
20056 d_hasmntopt='$d_hasmntopt'
20057 d_htonl='$d_htonl'
20058 d_index='$d_index'
20059 d_inetaton='$d_inetaton'
20060 d_int64_t='$d_int64_t'
20061 d_isascii='$d_isascii'
20062 d_isfinite='$d_isfinite'
20063 d_isinf='$d_isinf'
20064 d_isnan='$d_isnan'
20065 d_isnanl='$d_isnanl'
20066 d_killpg='$d_killpg'
20067 d_lchown='$d_lchown'
20068 d_ldbl_dig='$d_ldbl_dig'
20069 d_link='$d_link'
20070 d_localtime_r='$d_localtime_r'
20071 d_locconv='$d_locconv'
20072 d_lockf='$d_lockf'
20073 d_longdbl='$d_longdbl'
20074 d_longlong='$d_longlong'
20075 d_lseekproto='$d_lseekproto'
20076 d_lstat='$d_lstat'
20077 d_madvise='$d_madvise'
20078 d_mblen='$d_mblen'
20079 d_mbstowcs='$d_mbstowcs'
20080 d_mbtowc='$d_mbtowc'
20081 d_memchr='$d_memchr'
20082 d_memcmp='$d_memcmp'
20083 d_memcpy='$d_memcpy'
20084 d_memmove='$d_memmove'
20085 d_memset='$d_memset'
20086 d_mkdir='$d_mkdir'
20087 d_mkdtemp='$d_mkdtemp'
20088 d_mkfifo='$d_mkfifo'
20089 d_mkstemp='$d_mkstemp'
20090 d_mkstemps='$d_mkstemps'
20091 d_mktime='$d_mktime'
20092 d_mmap='$d_mmap'
20093 d_modfl='$d_modfl'
20094 d_modfl_pow32_bug='$d_modfl_pow32_bug'
20095 d_mprotect='$d_mprotect'
20096 d_msg='$d_msg'
20097 d_msg_ctrunc='$d_msg_ctrunc'
20098 d_msg_dontroute='$d_msg_dontroute'
20099 d_msg_oob='$d_msg_oob'
20100 d_msg_peek='$d_msg_peek'
20101 d_msg_proxy='$d_msg_proxy'
20102 d_msgctl='$d_msgctl'
20103 d_msgget='$d_msgget'
20104 d_msghdr_s='$d_msghdr_s'
20105 d_msgrcv='$d_msgrcv'
20106 d_msgsnd='$d_msgsnd'
20107 d_msync='$d_msync'
20108 d_munmap='$d_munmap'
20109 d_mymalloc='$d_mymalloc'
20110 d_nice='$d_nice'
20111 d_nl_langinfo='$d_nl_langinfo'
20112 d_nv_preserves_uv='$d_nv_preserves_uv'
20113 d_off64_t='$d_off64_t'
20114 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
20115 d_oldpthreads='$d_oldpthreads'
20116 d_oldsock='$d_oldsock'
20117 d_open3='$d_open3'
20118 d_pathconf='$d_pathconf'
20119 d_pause='$d_pause'
20120 d_perl_otherlibdirs='$d_perl_otherlibdirs'
20121 d_phostname='$d_phostname'
20122 d_pipe='$d_pipe'
20123 d_poll='$d_poll'
20124 d_portable='$d_portable'
20125 d_procselfexe='$d_procselfexe'
20126 d_pthread_atfork='$d_pthread_atfork'
20127 d_pthread_yield='$d_pthread_yield'
20128 d_pwage='$d_pwage'
20129 d_pwchange='$d_pwchange'
20130 d_pwclass='$d_pwclass'
20131 d_pwcomment='$d_pwcomment'
20132 d_pwexpire='$d_pwexpire'
20133 d_pwgecos='$d_pwgecos'
20134 d_pwpasswd='$d_pwpasswd'
20135 d_pwquota='$d_pwquota'
20136 d_qgcvt='$d_qgcvt'
20137 d_quad='$d_quad'
20138 d_random_r='$d_random_r'
20139 d_readdir64_r='$d_readdir64_r'
20140 d_readdir='$d_readdir'
20141 d_readdir_r='$d_readdir_r'
20142 d_readlink='$d_readlink'
20143 d_readv='$d_readv'
20144 d_recvmsg='$d_recvmsg'
20145 d_rename='$d_rename'
20146 d_rewinddir='$d_rewinddir'
20147 d_rmdir='$d_rmdir'
20148 d_safebcpy='$d_safebcpy'
20149 d_safemcpy='$d_safemcpy'
20150 d_sanemcmp='$d_sanemcmp'
20151 d_sbrkproto='$d_sbrkproto'
20152 d_sched_yield='$d_sched_yield'
20153 d_scm_rights='$d_scm_rights'
20154 d_seekdir='$d_seekdir'
20155 d_select='$d_select'
20156 d_sem='$d_sem'
20157 d_semctl='$d_semctl'
20158 d_semctl_semid_ds='$d_semctl_semid_ds'
20159 d_semctl_semun='$d_semctl_semun'
20160 d_semget='$d_semget'
20161 d_semop='$d_semop'
20162 d_sendmsg='$d_sendmsg'
20163 d_setegid='$d_setegid'
20164 d_seteuid='$d_seteuid'
20165 d_setgrent='$d_setgrent'
20166 d_setgrent_r='$d_setgrent_r'
20167 d_setgrps='$d_setgrps'
20168 d_sethent='$d_sethent'
20169 d_sethostent_r='$d_sethostent_r'
20170 d_setitimer='$d_setitimer'
20171 d_setlinebuf='$d_setlinebuf'
20172 d_setlocale='$d_setlocale'
20173 d_setlocale_r='$d_setlocale_r'
20174 d_setnent='$d_setnent'
20175 d_setnetent_r='$d_setnetent_r'
20176 d_setpent='$d_setpent'
20177 d_setpgid='$d_setpgid'
20178 d_setpgrp2='$d_setpgrp2'
20179 d_setpgrp='$d_setpgrp'
20180 d_setprior='$d_setprior'
20181 d_setproctitle='$d_setproctitle'
20182 d_setprotoent_r='$d_setprotoent_r'
20183 d_setpwent='$d_setpwent'
20184 d_setpwent_r='$d_setpwent_r'
20185 d_setregid='$d_setregid'
20186 d_setresgid='$d_setresgid'
20187 d_setresuid='$d_setresuid'
20188 d_setreuid='$d_setreuid'
20189 d_setrgid='$d_setrgid'
20190 d_setruid='$d_setruid'
20191 d_setsent='$d_setsent'
20192 d_setservent_r='$d_setservent_r'
20193 d_setsid='$d_setsid'
20194 d_setvbuf='$d_setvbuf'
20195 d_sfio='$d_sfio'
20196 d_shm='$d_shm'
20197 d_shmat='$d_shmat'
20198 d_shmatprototype='$d_shmatprototype'
20199 d_shmctl='$d_shmctl'
20200 d_shmdt='$d_shmdt'
20201 d_shmget='$d_shmget'
20202 d_sigaction='$d_sigaction'
20203 d_sigprocmask='$d_sigprocmask'
20204 d_sigsetjmp='$d_sigsetjmp'
20205 d_sockatmark='$d_sockatmark'
20206 d_sockatmarkproto='$d_sockatmarkproto'
20207 d_socket='$d_socket'
20208 d_socklen_t='$d_socklen_t'
20209 d_sockpair='$d_sockpair'
20210 d_socks5_init='$d_socks5_init'
20211 d_sqrtl='$d_sqrtl'
20212 d_srand48_r='$d_srand48_r'
20213 d_srandom_r='$d_srandom_r'
20214 d_sresgproto='$d_sresgproto'
20215 d_sresuproto='$d_sresuproto'
20216 d_statblks='$d_statblks'
20217 d_statfs_f_flags='$d_statfs_f_flags'
20218 d_statfs_s='$d_statfs_s'
20219 d_statvfs='$d_statvfs'
20220 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20221 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20222 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20223 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20224 d_stdio_stream_array='$d_stdio_stream_array'
20225 d_stdiobase='$d_stdiobase'
20226 d_stdstdio='$d_stdstdio'
20227 d_strchr='$d_strchr'
20228 d_strcoll='$d_strcoll'
20229 d_strctcpy='$d_strctcpy'
20230 d_strerrm='$d_strerrm'
20231 d_strerror='$d_strerror'
20232 d_strerror_r='$d_strerror_r'
20233 d_strftime='$d_strftime'
20234 d_strtod='$d_strtod'
20235 d_strtol='$d_strtol'
20236 d_strtold='$d_strtold'
20237 d_strtoll='$d_strtoll'
20238 d_strtoq='$d_strtoq'
20239 d_strtoul='$d_strtoul'
20240 d_strtoull='$d_strtoull'
20241 d_strtouq='$d_strtouq'
20242 d_strxfrm='$d_strxfrm'
20243 d_suidsafe='$d_suidsafe'
20244 d_symlink='$d_symlink'
20245 d_syscall='$d_syscall'
20246 d_syscallproto='$d_syscallproto'
20247 d_sysconf='$d_sysconf'
20248 d_sysernlst='$d_sysernlst'
20249 d_syserrlst='$d_syserrlst'
20250 d_system='$d_system'
20251 d_tcgetpgrp='$d_tcgetpgrp'
20252 d_tcsetpgrp='$d_tcsetpgrp'
20253 d_telldir='$d_telldir'
20254 d_telldirproto='$d_telldirproto'
20255 d_time='$d_time'
20256 d_times='$d_times'
20257 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20258 d_tm_tm_zone='$d_tm_tm_zone'
20259 d_tmpnam_r='$d_tmpnam_r'
20260 d_truncate='$d_truncate'
20261 d_ttyname_r='$d_ttyname_r'
20262 d_tzname='$d_tzname'
20263 d_u32align='$d_u32align'
20264 d_ualarm='$d_ualarm'
20265 d_umask='$d_umask'
20266 d_uname='$d_uname'
20267 d_union_semun='$d_union_semun'
20268 d_unordered='$d_unordered'
20269 d_usleep='$d_usleep'
20270 d_usleepproto='$d_usleepproto'
20271 d_ustat='$d_ustat'
20272 d_vendorarch='$d_vendorarch'
20273 d_vendorbin='$d_vendorbin'
20274 d_vendorlib='$d_vendorlib'
20275 d_vfork='$d_vfork'
20276 d_void_closedir='$d_void_closedir'
20277 d_voidsig='$d_voidsig'
20278 d_voidtty='$d_voidtty'
20279 d_volatile='$d_volatile'
20280 d_vprintf='$d_vprintf'
20281 d_wait4='$d_wait4'
20282 d_waitpid='$d_waitpid'
20283 d_wcstombs='$d_wcstombs'
20284 d_wctomb='$d_wctomb'
20285 d_writev='$d_writev'
20286 d_xenix='$d_xenix'
20287 date='$date'
20288 db_hashtype='$db_hashtype'
20289 db_prefixtype='$db_prefixtype'
20290 db_version_major='$db_version_major'
20291 db_version_minor='$db_version_minor'
20292 db_version_patch='$db_version_patch'
20293 defvoidused='$defvoidused'
20294 direntrytype='$direntrytype'
20295 dlext='$dlext'
20296 dlsrc='$dlsrc'
20297 doublesize='$doublesize'
20298 drand01='$drand01'
20299 drand48_r_proto='$drand48_r_proto'
20300 dynamic_ext='$dynamic_ext'
20301 eagain='$eagain'
20302 ebcdic='$ebcdic'
20303 echo='$echo'
20304 egrep='$egrep'
20305 emacs='$emacs'
20306 endgrent_r_proto='$endgrent_r_proto'
20307 endhostent_r_proto='$endhostent_r_proto'
20308 endnetent_r_proto='$endnetent_r_proto'
20309 endprotoent_r_proto='$endprotoent_r_proto'
20310 endpwent_r_proto='$endpwent_r_proto'
20311 endservent_r_proto='$endservent_r_proto'
20312 eunicefix='$eunicefix'
20313 exe_ext='$exe_ext'
20314 expr='$expr'
20315 extensions='$extensions'
20316 extras='$extras'
20317 fflushNULL='$fflushNULL'
20318 fflushall='$fflushall'
20319 find='$find'
20320 firstmakefile='$firstmakefile'
20321 flex='$flex'
20322 fpossize='$fpossize'
20323 fpostype='$fpostype'
20324 freetype='$freetype'
20325 from='$from'
20326 full_ar='$full_ar'
20327 full_csh='$full_csh'
20328 full_sed='$full_sed'
20329 gccosandvers='$gccosandvers'
20330 gccversion='$gccversion'
20331 getgrent_r_proto='$getgrent_r_proto'
20332 getgrgid_r_proto='$getgrgid_r_proto'
20333 getgrnam_r_proto='$getgrnam_r_proto'
20334 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
20335 gethostbyname_r_proto='$gethostbyname_r_proto'
20336 gethostent_r_proto='$gethostent_r_proto'
20337 getlogin_r_proto='$getlogin_r_proto'
20338 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
20339 getnetbyname_r_proto='$getnetbyname_r_proto'
20340 getnetent_r_proto='$getnetent_r_proto'
20341 getprotobyname_r_proto='$getprotobyname_r_proto'
20342 getprotobynumber_r_proto='$getprotobynumber_r_proto'
20343 getprotoent_r_proto='$getprotoent_r_proto'
20344 getpwent_r_proto='$getpwent_r_proto'
20345 getpwnam_r_proto='$getpwnam_r_proto'
20346 getpwuid_r_proto='$getpwuid_r_proto'
20347 getservbyname_r_proto='$getservbyname_r_proto'
20348 getservbyport_r_proto='$getservbyport_r_proto'
20349 getservent_r_proto='$getservent_r_proto'
20350 getspnam_r_proto='$getspnam_r_proto'
20351 gidformat='$gidformat'
20352 gidsign='$gidsign'
20353 gidsize='$gidsize'
20354 gidtype='$gidtype'
20355 glibpth='$glibpth'
20356 gmake='$gmake'
20357 gmtime_r_proto='$gmtime_r_proto'
20358 grep='$grep'
20359 groupcat='$groupcat'
20360 groupstype='$groupstype'
20361 gzip='$gzip'
20362 h_fcntl='$h_fcntl'
20363 h_sysfile='$h_sysfile'
20364 hint='$hint'
20365 hostcat='$hostcat'
20366 i16size='$i16size'
20367 i16type='$i16type'
20368 i32size='$i32size'
20369 i32type='$i32type'
20370 i64size='$i64size'
20371 i64type='$i64type'
20372 i8size='$i8size'
20373 i8type='$i8type'
20374 i_arpainet='$i_arpainet'
20375 i_bsdioctl='$i_bsdioctl'
20376 i_crypt='$i_crypt'
20377 i_db='$i_db'
20378 i_dbm='$i_dbm'
20379 i_dirent='$i_dirent'
20380 i_dld='$i_dld'
20381 i_dlfcn='$i_dlfcn'
20382 i_fcntl='$i_fcntl'
20383 i_float='$i_float'
20384 i_fp='$i_fp'
20385 i_fp_class='$i_fp_class'
20386 i_gdbm='$i_gdbm'
20387 i_grp='$i_grp'
20388 i_ieeefp='$i_ieeefp'
20389 i_inttypes='$i_inttypes'
20390 i_langinfo='$i_langinfo'
20391 i_libutil='$i_libutil'
20392 i_limits='$i_limits'
20393 i_locale='$i_locale'
20394 i_machcthr='$i_machcthr'
20395 i_malloc='$i_malloc'
20396 i_math='$i_math'
20397 i_memory='$i_memory'
20398 i_mntent='$i_mntent'
20399 i_ndbm='$i_ndbm'
20400 i_netdb='$i_netdb'
20401 i_neterrno='$i_neterrno'
20402 i_netinettcp='$i_netinettcp'
20403 i_niin='$i_niin'
20404 i_poll='$i_poll'
20405 i_prot='$i_prot'
20406 i_pthread='$i_pthread'
20407 i_pwd='$i_pwd'
20408 i_rpcsvcdbm='$i_rpcsvcdbm'
20409 i_sfio='$i_sfio'
20410 i_sgtty='$i_sgtty'
20411 i_shadow='$i_shadow'
20412 i_socks='$i_socks'
20413 i_stdarg='$i_stdarg'
20414 i_stddef='$i_stddef'
20415 i_stdlib='$i_stdlib'
20416 i_string='$i_string'
20417 i_sunmath='$i_sunmath'
20418 i_sysaccess='$i_sysaccess'
20419 i_sysdir='$i_sysdir'
20420 i_sysfile='$i_sysfile'
20421 i_sysfilio='$i_sysfilio'
20422 i_sysin='$i_sysin'
20423 i_sysioctl='$i_sysioctl'
20424 i_syslog='$i_syslog'
20425 i_sysmman='$i_sysmman'
20426 i_sysmode='$i_sysmode'
20427 i_sysmount='$i_sysmount'
20428 i_sysndir='$i_sysndir'
20429 i_sysparam='$i_sysparam'
20430 i_sysresrc='$i_sysresrc'
20431 i_syssecrt='$i_syssecrt'
20432 i_sysselct='$i_sysselct'
20433 i_syssockio='$i_syssockio'
20434 i_sysstat='$i_sysstat'
20435 i_sysstatfs='$i_sysstatfs'
20436 i_sysstatvfs='$i_sysstatvfs'
20437 i_systime='$i_systime'
20438 i_systimek='$i_systimek'
20439 i_systimes='$i_systimes'
20440 i_systypes='$i_systypes'
20441 i_sysuio='$i_sysuio'
20442 i_sysun='$i_sysun'
20443 i_sysutsname='$i_sysutsname'
20444 i_sysvfs='$i_sysvfs'
20445 i_syswait='$i_syswait'
20446 i_termio='$i_termio'
20447 i_termios='$i_termios'
20448 i_time='$i_time'
20449 i_unistd='$i_unistd'
20450 i_ustat='$i_ustat'
20451 i_utime='$i_utime'
20452 i_values='$i_values'
20453 i_varargs='$i_varargs'
20454 i_varhdr='$i_varhdr'
20455 i_vfork='$i_vfork'
20456 ignore_versioned_solibs='$ignore_versioned_solibs'
20457 inc_version_list='$inc_version_list'
20458 inc_version_list_init='$inc_version_list_init'
20459 incpath='$incpath'
20460 inews='$inews'
20461 installarchlib='$installarchlib'
20462 installbin='$installbin'
20463 installman1dir='$installman1dir'
20464 installman3dir='$installman3dir'
20465 installprefix='$installprefix'
20466 installprefixexp='$installprefixexp'
20467 installprivlib='$installprivlib'
20468 installscript='$installscript'
20469 installsitearch='$installsitearch'
20470 installsitebin='$installsitebin'
20471 installsitelib='$installsitelib'
20472 installstyle='$installstyle'
20473 installusrbinperl='$installusrbinperl'
20474 installvendorarch='$installvendorarch'
20475 installvendorbin='$installvendorbin'
20476 installvendorlib='$installvendorlib'
20477 intsize='$intsize'
20478 issymlink='$issymlink'
20479 ivdformat='$ivdformat'
20480 ivsize='$ivsize'
20481 ivtype='$ivtype'
20482 known_extensions='$known_extensions'
20483 ksh='$ksh'
20484 ld='$ld'
20485 lddlflags='$lddlflags'
20486 ldflags='$ldflags'
20487 ldflags_uselargefiles='$ldflags_uselargefiles'
20488 ldlibpthname='$ldlibpthname'
20489 less='$less'
20490 lib_ext='$lib_ext'
20491 libc='$libc'
20492 libperl='$libperl'
20493 libpth='$libpth'
20494 libs='$libs'
20495 libsdirs='$libsdirs'
20496 libsfiles='$libsfiles'
20497 libsfound='$libsfound'
20498 libspath='$libspath'
20499 libswanted='$libswanted'
20500 libswanted_uselargefiles='$libswanted_uselargefiles'
20501 line='$line'
20502 lint='$lint'
20503 lkflags='$lkflags'
20504 ln='$ln'
20505 lns='$lns'
20506 localtime_r_proto='$localtime_r_proto'
20507 locincpth='$locincpth'
20508 loclibpth='$loclibpth'
20509 longdblsize='$longdblsize'
20510 longlongsize='$longlongsize'
20511 longsize='$longsize'
20512 lp='$lp'
20513 lpr='$lpr'
20514 ls='$ls'
20515 lseeksize='$lseeksize'
20516 lseektype='$lseektype'
20517 mail='$mail'
20518 mailx='$mailx'
20519 make='$make'
20520 make_set_make='$make_set_make'
20521 mallocobj='$mallocobj'
20522 mallocsrc='$mallocsrc'
20523 malloctype='$malloctype'
20524 man1dir='$man1dir'
20525 man1direxp='$man1direxp'
20526 man1ext='$man1ext'
20527 man3dir='$man3dir'
20528 man3direxp='$man3direxp'
20529 man3ext='$man3ext'
20530 mips_type='$mips_type'
20531 mkdir='$mkdir'
20532 mmaptype='$mmaptype'
20533 modetype='$modetype'
20534 more='$more'
20535 multiarch='$multiarch'
20536 mv='$mv'
20537 myarchname='$myarchname'
20538 mydomain='$mydomain'
20539 myhostname='$myhostname'
20540 myuname='$myuname'
20541 n='$n'
20542 need_va_copy='$need_va_copy'
20543 netdb_hlen_type='$netdb_hlen_type'
20544 netdb_host_type='$netdb_host_type'
20545 netdb_name_type='$netdb_name_type'
20546 netdb_net_type='$netdb_net_type'
20547 nm='$nm'
20548 nm_opt='$nm_opt'
20549 nm_so_opt='$nm_so_opt'
20550 nonxs_ext='$nonxs_ext'
20551 nroff='$nroff'
20552 nvEUformat='$nvEUformat'
20553 nvFUformat='$nvFUformat'
20554 nvGUformat='$nvGUformat'
20555 nv_preserves_uv_bits='$nv_preserves_uv_bits'
20556 nveformat='$nveformat'
20557 nvfformat='$nvfformat'
20558 nvgformat='$nvgformat'
20559 nvsize='$nvsize'
20560 nvtype='$nvtype'
20561 o_nonblock='$o_nonblock'
20562 obj_ext='$obj_ext'
20563 old_pthread_create_joinable='$old_pthread_create_joinable'
20564 optimize='$optimize'
20565 orderlib='$orderlib'
20566 osname='$osname'
20567 osvers='$osvers'
20568 otherlibdirs='$otherlibdirs'
20569 package='$package'
20570 pager='$pager'
20571 passcat='$passcat'
20572 patchlevel='$patchlevel'
20573 path_sep='$path_sep'
20574 perl5='$perl5'
20575 perl='$perl'
20576 perl_patchlevel='$perl_patchlevel'
20577 perladmin='$perladmin'
20578 perllibs='$perllibs'
20579 perlpath='$perlpath'
20580 pg='$pg'
20581 phostname='$phostname'
20582 pidtype='$pidtype'
20583 plibpth='$plibpth'
20584 pm_apiversion='$pm_apiversion'
20585 pmake='$pmake'
20586 pr='$pr'
20587 prefix='$prefix'
20588 prefixexp='$prefixexp'
20589 privlib='$privlib'
20590 privlibexp='$privlibexp'
20591 procselfexe='$procselfexe'
20592 prototype='$prototype'
20593 ptrsize='$ptrsize'
20594 quadkind='$quadkind'
20595 quadtype='$quadtype'
20596 randbits='$randbits'
20597 randfunc='$randfunc'
20598 random_r_proto='$random_r_proto'
20599 randseedtype='$randseedtype'
20600 ranlib='$ranlib'
20601 rd_nodata='$rd_nodata'
20602 readdir64_r_proto='$readdir64_r_proto'
20603 readdir_r_proto='$readdir_r_proto'
20604 revision='$revision'
20605 rm='$rm'
20606 rmail='$rmail'
20607 run='$run'
20608 runnm='$runnm'
20609 sPRIEUldbl='$sPRIEUldbl'
20610 sPRIFUldbl='$sPRIFUldbl'
20611 sPRIGUldbl='$sPRIGUldbl'
20612 sPRIXU64='$sPRIXU64'
20613 sPRId64='$sPRId64'
20614 sPRIeldbl='$sPRIeldbl'
20615 sPRIfldbl='$sPRIfldbl'
20616 sPRIgldbl='$sPRIgldbl'
20617 sPRIi64='$sPRIi64'
20618 sPRIo64='$sPRIo64'
20619 sPRIu64='$sPRIu64'
20620 sPRIx64='$sPRIx64'
20621 sSCNfldbl='$sSCNfldbl'
20622 sched_yield='$sched_yield'
20623 scriptdir='$scriptdir'
20624 scriptdirexp='$scriptdirexp'
20625 sed='$sed'
20626 seedfunc='$seedfunc'
20627 selectminbits='$selectminbits'
20628 selecttype='$selecttype'
20629 sendmail='$sendmail'
20630 setgrent_r_proto='$setgrent_r_proto'
20631 sethostent_r_proto='$sethostent_r_proto'
20632 setlocale_r_proto='$setlocale_r_proto'
20633 setnetent_r_proto='$setnetent_r_proto'
20634 setprotoent_r_proto='$setprotoent_r_proto'
20635 setpwent_r_proto='$setpwent_r_proto'
20636 setservent_r_proto='$setservent_r_proto'
20637 sh='$sh'
20638 shar='$shar'
20639 sharpbang='$sharpbang'
20640 shmattype='$shmattype'
20641 shortsize='$shortsize'
20642 shrpenv='$shrpenv'
20643 shsharp='$shsharp'
20644 sig_count='$sig_count'
20645 sig_name='$sig_name'
20646 sig_name_init='$sig_name_init'
20647 sig_num='$sig_num'
20648 sig_num_init='$sig_num_init'
20649 sig_size='$sig_size'
20650 signal_t='$signal_t'
20651 sitearch='$sitearch'
20652 sitearchexp='$sitearchexp'
20653 sitebin='$sitebin'
20654 sitebinexp='$sitebinexp'
20655 sitelib='$sitelib'
20656 sitelib_stem='$sitelib_stem'
20657 sitelibexp='$sitelibexp'
20658 siteprefix='$siteprefix'
20659 siteprefixexp='$siteprefixexp'
20660 sizesize='$sizesize'
20661 sizetype='$sizetype'
20662 sleep='$sleep'
20663 smail='$smail'
20664 so='$so'
20665 sockethdr='$sockethdr'
20666 socketlib='$socketlib'
20667 socksizetype='$socksizetype'
20668 sort='$sort'
20669 spackage='$spackage'
20670 spitshell='$spitshell'
20671 srand48_r_proto='$srand48_r_proto'
20672 srandom_r_proto='$srandom_r_proto'
20673 src='$src'
20674 ssizetype='$ssizetype'
20675 startperl='$startperl'
20676 startsh='$startsh'
20677 static_ext='$static_ext'
20678 stdchar='$stdchar'
20679 stdio_base='$stdio_base'
20680 stdio_bufsiz='$stdio_bufsiz'
20681 stdio_cnt='$stdio_cnt'
20682 stdio_filbuf='$stdio_filbuf'
20683 stdio_ptr='$stdio_ptr'
20684 stdio_stream_array='$stdio_stream_array'
20685 strerror_r_proto='$strerror_r_proto'
20686 strings='$strings'
20687 submit='$submit'
20688 subversion='$subversion'
20689 sysman='$sysman'
20690 tail='$tail'
20691 tar='$tar'
20692 targetarch='$targetarch'
20693 tbl='$tbl'
20694 tee='$tee'
20695 test='$test'
20696 timeincl='$timeincl'
20697 timetype='$timetype'
20698 tmpnam_r_proto='$tmpnam_r_proto'
20699 to='$to'
20700 touch='$touch'
20701 tr='$tr'
20702 trnl='$trnl'
20703 troff='$troff'
20704 ttyname_r_proto='$ttyname_r_proto'
20705 u16size='$u16size'
20706 u16type='$u16type'
20707 u32size='$u32size'
20708 u32type='$u32type'
20709 u64size='$u64size'
20710 u64type='$u64type'
20711 u8size='$u8size'
20712 u8type='$u8type'
20713 uidformat='$uidformat'
20714 uidsign='$uidsign'
20715 uidsize='$uidsize'
20716 uidtype='$uidtype'
20717 uname='$uname'
20718 uniq='$uniq'
20719 uquadtype='$uquadtype'
20720 use5005threads='$use5005threads'
20721 use64bitall='$use64bitall'
20722 use64bitint='$use64bitint'
20723 usecrosscompile='$usecrosscompile'
20724 usedl='$usedl'
20725 useithreads='$useithreads'
20726 uselargefiles='$uselargefiles'
20727 uselongdouble='$uselongdouble'
20728 usemorebits='$usemorebits'
20729 usemultiplicity='$usemultiplicity'
20730 usemymalloc='$usemymalloc'
20731 usenm='$usenm'
20732 useopcode='$useopcode'
20733 useperlio='$useperlio'
20734 useposix='$useposix'
20735 usereentrant='$usereentrant'
20736 usesfio='$usesfio'
20737 useshrplib='$useshrplib'
20738 usesocks='$usesocks'
20739 usethreads='$usethreads'
20740 usevendorprefix='$usevendorprefix'
20741 usevfork='$usevfork'
20742 usrinc='$usrinc'
20743 uuname='$uuname'
20744 uvXUformat='$uvXUformat'
20745 uvoformat='$uvoformat'
20746 uvsize='$uvsize'
20747 uvtype='$uvtype'
20748 uvuformat='$uvuformat'
20749 uvxformat='$uvxformat'
20750 vendorarch='$vendorarch'
20751 vendorarchexp='$vendorarchexp'
20752 vendorbin='$vendorbin'
20753 vendorbinexp='$vendorbinexp'
20754 vendorlib='$vendorlib'
20755 vendorlib_stem='$vendorlib_stem'
20756 vendorlibexp='$vendorlibexp'
20757 vendorprefix='$vendorprefix'
20758 vendorprefixexp='$vendorprefixexp'
20759 version='$version'
20760 version_patchlevel_string='$version_patchlevel_string'
20761 versiononly='$versiononly'
20762 vi='$vi'
20763 voidflags='$voidflags'
20764 xlibpth='$xlibpth'
20765 xs_apiversion='$xs_apiversion'
20766 yacc='$yacc'
20767 yaccflags='$yaccflags'
20768 zcat='$zcat'
20769 zip='$zip'
20770 EOT
20771
20772 : Add in command line options if available
20773 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
20774
20775 : add special variables
20776 $test -f $src/patchlevel.h && \
20777 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
20778 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
20779 echo "PERL_CONFIG_SH=true" >>config.sh
20780
20781 : propagate old symbols
20782 if $test -f UU/config.sh; then
20783         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
20784         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
20785         $sort | $uniq -u >UU/oldsyms
20786         set X `cat UU/oldsyms`
20787         shift
20788         case $# in
20789         0) ;;
20790         *)
20791                 cat <<EOM
20792 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
20793 EOM
20794                 echo "# Variables propagated from previous config.sh file." >>config.sh
20795                 for sym in `cat UU/oldsyms`; do
20796                         echo "    Propagating $hint variable "'$'"$sym..."
20797                         eval 'tmp="$'"${sym}"'"'
20798                         echo "$tmp" | \
20799                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
20800                 done
20801                 ;;
20802         esac
20803 fi
20804
20805 : Finish up by extracting the .SH files
20806 case "$alldone" in
20807 exit)
20808         $rm -rf UU
20809         echo "Extraction done."
20810         exit 0
20811         ;;
20812 cont)
20813         ;;
20814 '')
20815         dflt=''
20816         nostick=true
20817         $cat <<EOM
20818
20819 If you'd like to make any changes to the config.sh file before I begin
20820 to configure things, do it as a shell escape now (e.g. !vi config.sh).
20821
20822 EOM
20823         rp="Press return or use a shell escape to edit config.sh:"
20824         . UU/myread
20825         nostick=''
20826         case "$ans" in
20827         '') ;;
20828         *) : in case they cannot read
20829                 sh 1>&4 -c "$ans";;
20830         esac
20831         ;;
20832 esac
20833
20834 : if this fails, just run all the .SH files by hand
20835 . ./config.sh
20836
20837 echo " "
20838 exec 1>&4
20839 pwd=`pwd`
20840 . ./UU/extract
20841 cd "$pwd"
20842
20843 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
20844         dflt=y
20845         case "$silent" in
20846         true) ;;
20847         *)
20848                 $cat <<EOM
20849
20850 Now you need to generate make dependencies by running "$make depend".
20851 You might prefer to run it in background: "$make depend > makedepend.out &"
20852 It can take a while, so you might not want to run it right now.
20853
20854 EOM
20855                 ;;
20856         esac
20857         rp="Run $make depend now?"
20858         . UU/myread
20859         case "$ans" in
20860         y*)
20861                 $make depend && echo "Now you must run '$make'."
20862                 ;;
20863         *)
20864                 echo "You must run '$make depend' then '$make'."
20865                 ;;
20866         esac
20867 elif test -f [Mm]akefile; then
20868         echo " "
20869         echo "Now you must run a $make."
20870 else
20871         echo "Configure done."
20872 fi
20873
20874 if $test -f Policy.sh; then
20875     $cat <<EOM
20876
20877 If you compile $package on a different machine or from a different object
20878 directory, copy the Policy.sh file from this object directory to the
20879 new one before you run Configure -- this will help you with most of
20880 the policy defaults.
20881
20882 EOM
20883 fi
20884 if $test -f config.msg; then
20885     echo "Hmm.  I also noted the following information while running:"
20886     echo " "
20887     $cat config.msg >&4
20888     $rm -f config.msg
20889 fi
20890 $rm -f kit*isdone ark*isdone
20891 $rm -rf UU
20892
20893 : End of Configure
20894