[ID 20020405.004] Configure doesn't always choose the openbsd hints fine on OpenBSD...
[p5sagit/p5-mst-13.2.git] / Configure
1 #! /bin/sh
2 #
3 # If these # comments don't work, trim them. Don't worry about any other
4 # shell scripts, Configure will trim # comments from them for you.
5 #
6 # (If you are trying to port this package to a machine without sh,
7 # I would suggest you have a look at the prototypical config_h.SH file
8 # and edit it to reflect your system. Some packages may include samples
9 # of config.h for certain machines, so you might look for one of those.)
10 #
11 # Yes, you may rip this off to use in other distribution packages. This
12 # script belongs to the public domain and cannot be copyrighted.
13 #
14 # (Note: this Configure script was generated automatically. Rather than
15 # working with this copy of Configure, you may wish to get metaconfig.
16 # The dist-3.0 package (which contains metaconfig) was posted in
17 # comp.sources.misc and is available on CPAN under authors/id/RAM so
18 # you may fetch it yourself from your nearest archive site.)
19 #
20
21 # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
22 #
23 # Generated on Fri Apr  5 20:56:35 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     shift 2
9115 done
9116 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9117 cat >> try.c <<'EOCP'
9118 #ifdef CAN_PROTOTYPE
9119 #define _(args) args
9120 #else
9121 #define _(args) ()
9122 #endif
9123 EOCP
9124 echo "$foo" >> try.c
9125 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9126 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9127 status=$?
9128 $rm -f try.[co]
9129 exit $status
9130 EOSH
9131 chmod +x protochk
9132 $eunicefix protochk
9133
9134 hasproto='varname=$1; func=$2; shift; shift;
9135 while $test $# -ge 2; do
9136         case "$1" in
9137         $define) echo "#include <$2>";;
9138         esac ;
9139     shift 2;
9140 done > try.c;
9141 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9142 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9143         echo "$func() prototype found.";
9144         val="$define";
9145 else
9146         echo "$func() prototype NOT found.";
9147         val="$undef";
9148 fi;
9149 set $varname;
9150 eval $setvar;
9151 $rm -f try.c tryout.c'
9152
9153 : see if sys/types.h has to be included
9154 set sys/types.h i_systypes
9155 eval $inhdr
9156
9157 : see if sys/select.h has to be included
9158 set sys/select.h i_sysselct
9159 eval $inhdr
9160
9161 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9162 while $test $# -ge 2; do
9163         case "$1" in
9164         $define) echo "#include <$2>";;
9165         esac ;
9166     shift 2;
9167 done > try.c;
9168 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9169 set try;
9170 if eval $compile; then
9171         val="$define";
9172 else
9173         val="$undef";
9174 fi;
9175 set $varname;
9176 eval $setvar;
9177 $rm -f try.c try.o'
9178
9179 : see if we should include time.h, sys/time.h, or both
9180 echo " "
9181 if test "X$timeincl" = X; then
9182         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9183         $echo $n "I'm now running the test program...$c"
9184         $cat >try.c <<'EOCP'
9185 #include <sys/types.h>
9186 #ifdef I_TIME
9187 #include <time.h>
9188 #endif
9189 #ifdef I_SYSTIME
9190 #ifdef SYSTIMEKERNEL
9191 #define KERNEL
9192 #endif
9193 #include <sys/time.h>
9194 #endif
9195 #ifdef I_SYSSELECT
9196 #include <sys/select.h>
9197 #endif
9198 int main()
9199 {
9200         struct tm foo;
9201 #ifdef S_TIMEVAL
9202         struct timeval bar;
9203 #endif
9204 #ifdef S_TIMEZONE
9205         struct timezone tzp;
9206 #endif
9207         if (foo.tm_sec == foo.tm_sec)
9208                 exit(0);
9209 #ifdef S_TIMEVAL
9210         if (bar.tv_sec == bar.tv_sec)
9211                 exit(0);
9212 #endif
9213         exit(1);
9214 }
9215 EOCP
9216         flags=''
9217         for s_timezone in '-DS_TIMEZONE' ''; do
9218         sysselect=''
9219         for s_timeval in '-DS_TIMEVAL' ''; do
9220         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9221         for i_time in '' '-DI_TIME'; do
9222         for i_systime in '-DI_SYSTIME' ''; do
9223                 case "$flags" in
9224                 '') $echo $n ".$c"
9225                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9226                         if eval $compile; then
9227                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9228                                 shift
9229                                 flags="$*"
9230                                 echo " "
9231                                 $echo $n "Succeeded with $flags$c"
9232                         fi
9233                         ;;
9234                 esac
9235         done
9236         done
9237         done
9238         done
9239         done
9240         timeincl=''
9241         echo " "
9242         case "$flags" in
9243         *SYSTIMEKERNEL*) i_systimek="$define"
9244                 timeincl=`./findhdr sys/time.h`
9245                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9246         *) i_systimek="$undef";;
9247         esac
9248         case "$flags" in
9249         *I_TIME*) i_time="$define"
9250                 timeincl=`./findhdr time.h`" $timeincl"
9251                 echo "We'll include <time.h>." >&4;;
9252         *) i_time="$undef";;
9253         esac
9254         case "$flags" in
9255         *I_SYSTIME*) i_systime="$define"
9256                 timeincl=`./findhdr sys/time.h`" $timeincl"
9257                 echo "We'll include <sys/time.h>." >&4;;
9258         *) i_systime="$undef";;
9259         esac
9260         $rm -f try.c try
9261 fi
9262 : see if struct tm knows about tm_zone
9263 case "$i_systime$i_time" in
9264 *$define*) 
9265         echo " "
9266         echo "Checking to see if your struct tm has tm_zone field..." >&4
9267         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9268         eval $hasfield
9269         ;;
9270 *)      val="$undef"
9271         set d_tm_tm_zone
9272         eval $setvar
9273         ;;
9274 esac
9275 case "$d_tm_tm_zone" in
9276 "$define")      echo "Yes, it does."   ;;
9277 *)              echo "No, it doesn't." ;;
9278 esac
9279 : see if struct tm knows about tm_gmtoff
9280 case "$i_systime$i_time" in
9281 *$define*) 
9282         echo " "
9283         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9284         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9285         eval $hasfield
9286         ;;
9287 *)      val="$undef"
9288         set d_tm_tm_gmtoff
9289         eval $setvar
9290         ;;
9291 esac
9292 case "$d_tm_tm_gmtoff" in
9293 "$define")      echo "Yes, it does."   ;;
9294 *)              echo "No, it doesn't." ;;
9295 esac
9296
9297 : see if asctime_r exists
9298 set asctime_r d_asctime_r
9299 eval $inlibc
9300 case "$d_asctime_r" in
9301 "$define")
9302         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
9303         case "time" in
9304         time)
9305                 hdrs="$hdrs $i_systime sys/time.h"
9306                 ;;
9307         esac
9308         case "$d_asctime_r_proto:$usethreads" in
9309         ":define")      d_asctime_r_proto=define
9310                 set d_asctime_r_proto asctime_r $hdrs
9311                 eval $hasproto ;;
9312         *)      ;;
9313         esac
9314         case "$d_asctime_r_proto" in
9315         define)
9316         case "$asctime_r_proto" in
9317         ''|0) try='char* asctime_r(const struct tm*, char*);'
9318         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9319         esac
9320         case "$asctime_r_proto" in
9321         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9322         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9323         esac
9324         case "$asctime_r_proto" in
9325         ''|0) try='int asctime_r(const struct tm*, char*);'
9326         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9327         esac
9328         case "$asctime_r_proto" in
9329         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9330         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9331         esac
9332         case "$asctime_r_proto" in
9333         ''|0)   d_asctime_r=undef
9334                 asctime_r_proto=0
9335                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9336         * )     case "$asctime_r_proto" in
9337                 REENTRANT_PROTO*) ;;
9338                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9339                 esac
9340                 echo "Prototype: $try" ;;
9341         esac
9342         ;;
9343         *)      case "$usethreads" in
9344                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9345                 esac
9346                 d_asctime_r=undef
9347                 asctime_r_proto=0
9348                 ;;
9349         esac
9350         ;;
9351 *)      asctime_r_proto=0
9352         ;;
9353 esac
9354
9355 : see if atolf exists
9356 set atolf d_atolf
9357 eval $inlibc
9358
9359 : see if atoll exists
9360 set atoll d_atoll
9361 eval $inlibc
9362
9363 : Look for GNU-cc style attribute checking
9364 echo " "
9365 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9366 $cat >attrib.c <<'EOCP'
9367 #include <stdio.h>
9368 void croak (char* pat,...) __attribute__((format(printf,1,2),noreturn));
9369 EOCP
9370 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9371         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9372                 echo "Your C compiler doesn't fully support __attribute__."
9373                 val="$undef"
9374         else
9375                 echo "Your C compiler supports __attribute__."
9376                 val="$define"
9377         fi
9378 else
9379         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9380         val="$undef"
9381 fi
9382 set d_attribut
9383 eval $setvar
9384 $rm -f attrib*
9385
9386 : see if bcmp exists
9387 set bcmp d_bcmp
9388 eval $inlibc
9389
9390 : see if bcopy exists
9391 set bcopy d_bcopy
9392 eval $inlibc
9393
9394 : see if this is a unistd.h system
9395 set unistd.h i_unistd
9396 eval $inhdr
9397
9398 : see if getpgrp exists
9399 set getpgrp d_getpgrp
9400 eval $inlibc
9401
9402 case "$d_getpgrp" in
9403 "$define")
9404         echo " "
9405         echo "Checking to see which flavor of getpgrp is in use..."
9406         $cat >try.c <<EOP
9407 #$i_unistd I_UNISTD
9408 #include <sys/types.h>
9409 #ifdef I_UNISTD
9410 #  include <unistd.h>
9411 #endif
9412 int main()
9413 {
9414         if (getuid() == 0) {
9415                 printf("(I see you are running Configure as super-user...)\n");
9416                 setuid(1);
9417         }
9418 #ifdef TRY_BSD_PGRP
9419         if (getpgrp(1) == 0)
9420                 exit(0);
9421 #else
9422         if (getpgrp() > 0)
9423                 exit(0);
9424 #endif
9425         exit(1);
9426 }
9427 EOP
9428         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9429                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9430                 val="$define"
9431         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9432                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9433                 val="$undef"
9434         else
9435                 echo "I can't seem to compile and run the test program."
9436                 if ./usg; then
9437                         xxx="a USG one, i.e. you use getpgrp()."
9438                 else
9439                         # SVR4 systems can appear rather BSD-ish.
9440                         case "$i_unistd" in
9441                         $undef)
9442                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9443                                 val="$define"
9444                                 ;;
9445                         $define)
9446                                 xxx="probably a USG one, i.e. you use getpgrp()."
9447                                 val="$undef"
9448                                 ;;
9449                         esac
9450                 fi
9451                 echo "Assuming your getpgrp is $xxx" >&4
9452         fi
9453         ;;
9454 *) val="$undef";;
9455 esac
9456 set d_bsdgetpgrp
9457 eval $setvar
9458 $rm -f try try.*
9459
9460 : see if setpgrp exists
9461 set setpgrp d_setpgrp
9462 eval $inlibc
9463
9464 case "$d_setpgrp" in
9465 "$define")
9466         echo " "
9467         echo "Checking to see which flavor of setpgrp is in use..."
9468         $cat >try.c <<EOP
9469 #$i_unistd I_UNISTD
9470 #include <sys/types.h>
9471 #ifdef I_UNISTD
9472 #  include <unistd.h>
9473 #endif
9474 int main()
9475 {
9476         if (getuid() == 0) {
9477                 printf("(I see you are running Configure as super-user...)\n");
9478                 setuid(1);
9479         }
9480 #ifdef TRY_BSD_PGRP
9481         if (-1 == setpgrp(1, 1))
9482                 exit(0);
9483 #else
9484         if (setpgrp() != -1)
9485                 exit(0);
9486 #endif
9487         exit(1);
9488 }
9489 EOP
9490         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9491                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
9492                 val="$define"
9493         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9494                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
9495                 val="$undef"
9496         else
9497                 echo "(I can't seem to compile and run the test program.)"
9498                 if ./usg; then
9499                         xxx="a USG one, i.e. you use setpgrp()."
9500                 else
9501                         # SVR4 systems can appear rather BSD-ish.
9502                         case "$i_unistd" in
9503                         $undef)
9504                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
9505                                 val="$define"
9506                                 ;;
9507                         $define)
9508                                 xxx="probably a USG one, i.e. you use setpgrp()."
9509                                 val="$undef"
9510                                 ;;
9511                         esac
9512                 fi
9513                 echo "Assuming your setpgrp is $xxx" >&4
9514         fi
9515         ;;
9516 *) val="$undef";;
9517 esac
9518 set d_bsdsetpgrp
9519 eval $setvar
9520 $rm -f try try.*
9521 : see if bzero exists
9522 set bzero d_bzero
9523 eval $inlibc
9524
9525 : see if signal is declared as pointer to function returning int or void
9526 echo " "
9527 xxx=`./findhdr signal.h`
9528 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
9529 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
9530         echo "You have int (*signal())() instead of void." >&4
9531         val="$undef"
9532 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
9533         echo "You have void (*signal())()." >&4
9534         val="$define"
9535 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
9536         echo "You have int (*signal())() instead of void." >&4
9537         val="$undef"
9538 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
9539         echo "You have void (*signal())()." >&4
9540         val="$define"
9541 else
9542         case "$d_voidsig" in
9543         '')
9544         echo "I can't determine whether signal handler returns void or int..." >&4
9545                 dflt=void
9546                 rp="What type does your signal handler return?"
9547                 . ./myread
9548                 case "$ans" in
9549                 v*) val="$define";;
9550                 *) val="$undef";;
9551                 esac;;
9552         "$define")
9553                 echo "As you already told me, signal handler returns void." >&4
9554                 val="$define"
9555                 ;;
9556         *)      echo "As you already told me, signal handler returns int." >&4
9557                 val="$undef"
9558                 ;;
9559         esac
9560 fi
9561 set d_voidsig
9562 eval $setvar
9563 case "$d_voidsig" in
9564 "$define") signal_t="void";;
9565 *) signal_t="int";;
9566 esac
9567 $rm -f $$.tmp
9568
9569 : check for ability to cast large floats to 32-bit ints.
9570 echo " "
9571 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
9572 if $test "$intsize" -ge 4; then
9573         xxx=int
9574 else
9575         xxx=long
9576 fi
9577 $cat >try.c <<EOCP
9578 #include <stdio.h>
9579 #include <sys/types.h>
9580 #include <signal.h>
9581 $signal_t blech(s) int s; { exit(3); }
9582 int main()
9583 {
9584         $xxx i32;
9585         double f, g;
9586         int result = 0;
9587         char str[16];
9588         signal(SIGFPE, blech);
9589
9590         /* Don't let compiler optimize the test away.  Store the number 
9591            in a writable string for gcc to pass to sscanf under HP/UX.
9592         */
9593         sprintf(str, "2147483647");
9594         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
9595         g = 10 * f;
9596         i32  = ($xxx) g;
9597
9598         /* x86 processors will probably give 0x8000 0000, which is a
9599        sign change.  We don't want that.  We want to mimic SPARC
9600            behavior here, which is to preserve the sign and give
9601            back 0x7fff ffff.
9602         */
9603         if (i32 != ($xxx) f)
9604                 result |= 1;
9605         exit(result);
9606 }
9607 EOCP
9608 set try
9609 if eval $compile_ok; then
9610         $run ./try
9611         yyy=$?
9612 else
9613         echo "(I can't seem to compile the test program--assuming it can't)"
9614         yyy=1
9615 fi
9616 case "$yyy" in
9617 0)      val="$define"
9618         echo "Yup, it can."
9619         ;;
9620 *)      val="$undef"
9621         echo "Nope, it can't."
9622         ;;
9623 esac
9624 set d_casti32
9625 eval $setvar
9626 $rm -f try try.*
9627
9628 : check for ability to cast negative floats to unsigned
9629 echo " "
9630 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
9631 $cat >try.c <<EOCP
9632 #include <stdio.h>
9633 #include <sys/types.h>
9634 #include <signal.h>
9635 $signal_t blech(s) int s; { exit(7); }
9636 $signal_t blech_in_list(s) int s; { exit(4); }
9637 unsigned long dummy_long(p) unsigned long p; { return p; }
9638 unsigned int dummy_int(p) unsigned int p; { return p; }
9639 unsigned short dummy_short(p) unsigned short p; { return p; }
9640 int main()
9641 {
9642         double f;
9643         unsigned long along;
9644         unsigned int aint;
9645         unsigned short ashort;
9646         int result = 0;
9647         char str[16];
9648         
9649         /* Frustrate gcc-2.7.2's optimizer which failed this test with
9650            a direct f = -123. assignment.  gcc-2.8.0 reportedly
9651            optimized the whole file away
9652         */
9653         /* Store the number in a writable string for gcc to pass to 
9654            sscanf under HP/UX.
9655         */
9656         sprintf(str, "-123");
9657         sscanf(str, "%lf", &f);  /* f = -123.; */
9658
9659         signal(SIGFPE, blech);
9660         along = (unsigned long)f;
9661         aint = (unsigned int)f;
9662         ashort = (unsigned short)f;
9663         if (along != (unsigned long)-123)
9664                 result |= 1;
9665         if (aint != (unsigned int)-123)
9666                 result |= 1;
9667         if (ashort != (unsigned short)-123)
9668                 result |= 1;
9669         sprintf(str, "1073741824.");
9670         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
9671         f = f + f;
9672         along = 0;
9673         along = (unsigned long)f;
9674         if (along != 0x80000000)
9675                 result |= 2;
9676         f -= 1.;
9677         along = 0;
9678         along = (unsigned long)f;
9679         if (along != 0x7fffffff)
9680                 result |= 1;
9681         f += 2.;
9682         along = 0;
9683         along = (unsigned long)f;
9684         if (along != 0x80000001)
9685                 result |= 2;
9686         if (result)
9687                 exit(result);
9688         signal(SIGFPE, blech_in_list);
9689         sprintf(str, "123.");
9690         sscanf(str, "%lf", &f);  /* f = 123.; */
9691         along = dummy_long((unsigned long)f);
9692         aint = dummy_int((unsigned int)f);
9693         ashort = dummy_short((unsigned short)f);
9694         if (along != (unsigned long)123)
9695                 result |= 4;
9696         if (aint != (unsigned int)123)
9697                 result |= 4;
9698         if (ashort != (unsigned short)123)
9699                 result |= 4;
9700         exit(result);
9701
9702 }
9703 EOCP
9704 set try
9705 if eval $compile_ok; then
9706         $run ./try
9707         castflags=$?
9708 else
9709         echo "(I can't seem to compile the test program--assuming it can't)"
9710         castflags=7
9711 fi
9712 case "$castflags" in
9713 0)      val="$define"
9714         echo "Yup, it can."
9715         ;;
9716 *)      val="$undef"
9717         echo "Nope, it can't."
9718         ;;
9719 esac
9720 set d_castneg
9721 eval $setvar
9722 $rm -f try.*
9723
9724 : see if vprintf exists
9725 echo " "
9726 if set vprintf val -f d_vprintf; eval $csym; $val; then
9727         echo 'vprintf() found.' >&4
9728         val="$define"
9729         $cat >try.c <<'EOF'
9730 #include <varargs.h>
9731
9732 int main() { xxx("foo"); }
9733
9734 xxx(va_alist)
9735 va_dcl
9736 {
9737         va_list args;
9738         char buf[10];
9739
9740         va_start(args);
9741         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
9742 }
9743 EOF
9744         set try
9745         if eval $compile && $run ./try; then
9746                 echo "Your vsprintf() returns (int)." >&4
9747                 val2="$undef"
9748         else
9749                 echo "Your vsprintf() returns (char*)." >&4
9750                 val2="$define"
9751         fi
9752 else
9753         echo 'vprintf() NOT found.' >&4
9754                 val="$undef"
9755                 val2="$undef"
9756 fi
9757 $rm -f try try.*
9758 set d_vprintf
9759 eval $setvar
9760 val=$val2
9761 set d_charvspr
9762 eval $setvar
9763
9764 : see if chown exists
9765 set chown d_chown
9766 eval $inlibc
9767
9768 : see if chroot exists
9769 set chroot d_chroot
9770 eval $inlibc
9771
9772 : see if chsize exists
9773 set chsize d_chsize
9774 eval $inlibc
9775
9776 : see if class exists
9777 set class d_class
9778 eval $inlibc
9779
9780 hasstruct='varname=$1; struct=$2; shift; shift;
9781 while $test $# -ge 2; do
9782         case "$1" in
9783         $define) echo "#include <$2>";;
9784         esac ;
9785     shift 2;
9786 done > try.c;
9787 echo "int main () { struct $struct foo; }" >> try.c;
9788 set try;
9789 if eval $compile; then
9790         val="$define";
9791 else
9792         val="$undef";
9793 fi;
9794 set $varname;
9795 eval $setvar;
9796 $rm -f try.c try.o'
9797
9798 socketlib=''
9799 sockethdr=''
9800 : see whether socket exists
9801 echo " "
9802 $echo $n "Hmm... $c" >&4
9803 if set socket val -f d_socket; eval $csym; $val; then
9804         echo "Looks like you have Berkeley networking support." >&4
9805         d_socket="$define"
9806         if set setsockopt val -f; eval $csym; $val; then
9807                 d_oldsock="$undef"
9808         else
9809                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
9810                 d_oldsock="$define"
9811         fi
9812 else
9813         if $contains socklib libc.list >/dev/null 2>&1; then
9814                 echo "Looks like you have Berkeley networking support." >&4
9815                 d_socket="$define"
9816                 : we will have to assume that it supports the 4.2 BSD interface
9817                 d_oldsock="$undef"
9818         else
9819                 echo "You don't have Berkeley networking in libc$_a..." >&4
9820                 if test "X$d_socket" = "X$define"; then
9821                    echo "...but you seem to believe that you have sockets." >&4
9822                 else
9823                         for net in net socket
9824                         do
9825                                 if test -f /usr/lib/lib$net$_a; then
9826                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
9827                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
9828                                         if $contains socket libc.list >/dev/null 2>&1; then
9829                                                 d_socket="$define"
9830                                                 socketlib="-l$net"
9831                                                 case "$net" in
9832                                                 net)
9833                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
9834                                                         sockethdr="-I/usr/netinclude"
9835                                                         ;;
9836                                                 esac
9837                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
9838                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
9839                                                         d_oldsock="$undef"
9840                                                 else
9841                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
9842                                                         d_oldsock="$define"
9843                                                 fi
9844                                                 break
9845                                         fi
9846                                 fi
9847                         done
9848                         if test "X$d_socket" != "X$define"; then
9849                            echo "or anywhere else I see." >&4
9850                            d_socket="$undef"
9851                            d_oldsock="$undef"
9852                         fi
9853                 fi
9854         fi
9855 fi
9856
9857 : see if socketpair exists
9858 set socketpair d_sockpair
9859 eval $inlibc
9860
9861
9862 echo " "
9863 echo "Checking the availability of certain socket constants..." >&4
9864 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
9865         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
9866         $cat >try.c <<EOF
9867 #include <sys/types.h>
9868 #include <sys/socket.h>
9869 int main() {
9870     int i = $ENUM;
9871 }
9872 EOF
9873         val="$undef"
9874         set try; if eval $compile; then
9875                 val="$define"
9876         fi
9877         set d_${enum}; eval $setvar
9878         $rm -f try.c try
9879 done
9880
9881 : see if this is a sys/uio.h system
9882 set sys/uio.h i_sysuio
9883 eval $inhdr
9884
9885
9886 echo " "
9887 echo "Checking to see if your system supports struct cmsghdr..." >&4
9888 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
9889 eval $hasstruct
9890 case "$d_cmsghdr_s" in
9891 "$define")      echo "Yes, it does."   ;;
9892 *)              echo "No, it doesn't." ;;
9893 esac
9894
9895
9896 : check for const keyword
9897 echo " "
9898 echo 'Checking to see if your C compiler knows about "const"...' >&4
9899 $cat >const.c <<'EOCP'
9900 typedef struct spug { int drokk; } spug;
9901 int main()
9902 {
9903         const char *foo;
9904         const spug y;
9905 }
9906 EOCP
9907 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
9908         val="$define"
9909         echo "Yup, it does."
9910 else
9911         val="$undef"
9912         echo "Nope, it doesn't."
9913 fi
9914 set d_const
9915 eval $setvar
9916
9917 : see if crypt exists
9918 echo " "
9919 set crypt d_crypt
9920 eval $inlibc
9921 case "$d_crypt" in
9922 $define) cryptlib='' ;;
9923 *)      if set crypt val -f d_crypt; eval $csym; $val; then
9924                 echo 'crypt() found.' >&4
9925                 val="$define"
9926                 cryptlib=''
9927         else
9928                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
9929                 if $test -z "$cryptlib"; then
9930                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
9931                 else
9932                         cryptlib=-lcrypt
9933                 fi
9934                 if $test -z "$cryptlib"; then
9935                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
9936                 else
9937                         cryptlib=-lcrypt
9938                 fi
9939                 if $test -z "$cryptlib"; then
9940                         cryptlib=`./loc libcrypt$_a "" $libpth`
9941                 else
9942                         cryptlib=-lcrypt
9943                 fi
9944                 if $test -z "$cryptlib"; then
9945                         echo 'crypt() NOT found.' >&4
9946                         val="$undef"
9947                 else
9948                         val="$define"
9949                 fi
9950         fi
9951         set d_crypt
9952         eval $setvar
9953         ;;
9954 esac
9955
9956 : see if this is a crypt.h system
9957 set crypt.h i_crypt
9958 eval $inhdr
9959
9960 : see if crypt_r exists
9961 set crypt_r d_crypt_r
9962 eval $inlibc
9963 case "$d_crypt_r" in
9964 "$define")
9965         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
9966         case "crypt" in
9967         time)
9968                 hdrs="$hdrs $i_systime sys/time.h"
9969                 ;;
9970         esac
9971         case "$d_crypt_r_proto:$usethreads" in
9972         ":define")      d_crypt_r_proto=define
9973                 set d_crypt_r_proto crypt_r $hdrs
9974                 eval $hasproto ;;
9975         *)      ;;
9976         esac
9977         case "$d_crypt_r_proto" in
9978         define)
9979         case "$crypt_r_proto" in
9980         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
9981         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
9982         esac
9983         case "$crypt_r_proto" in
9984         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
9985         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
9986         esac
9987         case "$crypt_r_proto" in
9988         ''|0)   d_crypt_r=undef
9989                 crypt_r_proto=0
9990                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
9991         * )     case "$crypt_r_proto" in
9992                 REENTRANT_PROTO*) ;;
9993                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
9994                 esac
9995                 echo "Prototype: $try" ;;
9996         esac
9997         ;;
9998         *)      case "$usethreads" in
9999                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10000                 esac
10001                 d_crypt_r=undef
10002                 crypt_r_proto=0
10003                 ;;
10004         esac
10005         ;;
10006 *)      crypt_r_proto=0
10007         ;;
10008 esac
10009
10010 : get csh whereabouts
10011 case "$csh" in
10012 'csh') val="$undef" ;;
10013 *) val="$define" ;;
10014 esac
10015 set d_csh
10016 eval $setvar
10017 : Respect a hint or command line value for full_csh.
10018 case "$full_csh" in
10019 '') full_csh=$csh ;;
10020 esac
10021
10022 : see if ctermid_r exists
10023 set ctermid_r d_ctermid_r
10024 eval $inlibc
10025 case "$d_ctermid_r" in
10026 "$define")
10027         hdrs="$i_systypes sys/types.h define stdio.h "
10028         case "stdio" in
10029         time)
10030                 hdrs="$hdrs $i_systime sys/time.h"
10031                 ;;
10032         esac
10033         case "$d_ctermid_r_proto:$usethreads" in
10034         ":define")      d_ctermid_r_proto=define
10035                 set d_ctermid_r_proto ctermid_r $hdrs
10036                 eval $hasproto ;;
10037         *)      ;;
10038         esac
10039         case "$d_ctermid_r_proto" in
10040         define)
10041         case "$ctermid_r_proto" in
10042         ''|0) try='char* ctermid_r(char*);'
10043         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10044         esac
10045         case "$ctermid_r_proto" in
10046         ''|0)   d_ctermid_r=undef
10047                 ctermid_r_proto=0
10048                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10049         * )     case "$ctermid_r_proto" in
10050                 REENTRANT_PROTO*) ;;
10051                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10052                 esac
10053                 echo "Prototype: $try" ;;
10054         esac
10055         ;;
10056         *)      case "$usethreads" in
10057                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10058                 esac
10059                 d_ctermid_r=undef
10060                 ctermid_r_proto=0
10061                 ;;
10062         esac
10063         ;;
10064 *)      ctermid_r_proto=0
10065         ;;
10066 esac
10067
10068 : see if ctime_r exists
10069 set ctime_r d_ctime_r
10070 eval $inlibc
10071 case "$d_ctime_r" in
10072 "$define")
10073         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
10074         case "time" in
10075         time)
10076                 hdrs="$hdrs $i_systime sys/time.h"
10077                 ;;
10078         esac
10079         case "$d_ctime_r_proto:$usethreads" in
10080         ":define")      d_ctime_r_proto=define
10081                 set d_ctime_r_proto ctime_r $hdrs
10082                 eval $hasproto ;;
10083         *)      ;;
10084         esac
10085         case "$d_ctime_r_proto" in
10086         define)
10087         case "$ctime_r_proto" in
10088         ''|0) try='char* ctime_r(const time_t*, char*);'
10089         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10090         esac
10091         case "$ctime_r_proto" in
10092         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10093         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10094         esac
10095         case "$ctime_r_proto" in
10096         ''|0) try='int ctime_r(const time_t*, char*);'
10097         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10098         esac
10099         case "$ctime_r_proto" in
10100         ''|0) try='int ctime_r(const time_t*, char*, int);'
10101         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10102         esac
10103         case "$ctime_r_proto" in
10104         ''|0)   d_ctime_r=undef
10105                 ctime_r_proto=0
10106                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10107         * )     case "$ctime_r_proto" in
10108                 REENTRANT_PROTO*) ;;
10109                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10110                 esac
10111                 echo "Prototype: $try" ;;
10112         esac
10113         ;;
10114         *)      case "$usethreads" in
10115                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10116                 esac
10117                 d_ctime_r=undef
10118                 ctime_r_proto=0
10119                 ;;
10120         esac
10121         ;;
10122 *)      ctime_r_proto=0
10123         ;;
10124 esac
10125
10126 : see if cuserid exists
10127 set cuserid d_cuserid
10128 eval $inlibc
10129
10130 : see if this is a limits.h system
10131 set limits.h i_limits
10132 eval $inhdr
10133
10134 : see if this is a float.h system
10135 set float.h i_float
10136 eval $inhdr
10137
10138 : See if number of significant digits in a double precision number is known
10139 echo " "
10140 $cat >dbl_dig.c <<EOM
10141 #$i_limits I_LIMITS
10142 #$i_float I_FLOAT
10143 #ifdef I_LIMITS
10144 #include <limits.h>
10145 #endif
10146 #ifdef I_FLOAT
10147 #include <float.h>
10148 #endif
10149 #ifdef DBL_DIG
10150 printf("Contains DBL_DIG");
10151 #endif
10152 EOM
10153 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10154 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10155         echo "DBL_DIG found." >&4
10156         val="$define"
10157 else
10158         echo "DBL_DIG NOT found." >&4
10159         val="$undef"
10160 fi
10161 $rm -f dbl_dig.?
10162 set d_dbl_dig
10163 eval $setvar
10164
10165 : see if dbm.h is available
10166 : see if dbmclose exists
10167 set dbmclose d_dbmclose
10168 eval $inlibc
10169
10170 case "$d_dbmclose" in
10171 $define)
10172         set dbm.h i_dbm
10173         eval $inhdr
10174         case "$i_dbm" in
10175         $define)
10176                 val="$undef"
10177                 set i_rpcsvcdbm
10178                 eval $setvar
10179                 ;;
10180         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10181                 eval $inhdr
10182                 ;;
10183         esac
10184         ;;
10185 *)      echo "We won't be including <dbm.h>"
10186         val="$undef"
10187         set i_dbm
10188         eval $setvar
10189         val="$undef"
10190         set i_rpcsvcdbm
10191         eval $setvar
10192         ;;
10193 esac
10194
10195 : see if prototype for dbminit is available
10196 echo " "
10197 set d_dbminitproto dbminit $i_dbm dbm.h
10198 eval $hasproto
10199
10200 : see if difftime exists
10201 set difftime d_difftime
10202 eval $inlibc
10203
10204 : see if this is a dirent system
10205 echo " "
10206 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10207         val="$define"
10208         echo "<dirent.h> found." >&4
10209 else
10210         val="$undef"
10211         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10212                 echo "<sys/dir.h> found." >&4
10213                 echo " "
10214         else
10215                 xinc=`./findhdr sys/ndir.h`
10216         fi
10217         echo "<dirent.h> NOT found." >&4
10218 fi
10219 set i_dirent
10220 eval $setvar
10221
10222 : Look for type of directory structure.
10223 echo " "
10224 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10225
10226 case "$direntrytype" in
10227 ''|' ')
10228         case "$i_dirent" in
10229         $define) guess1='struct dirent' ;;
10230         *) guess1='struct direct'  ;;
10231         esac
10232         ;;
10233 *)      guess1="$direntrytype"
10234         ;;
10235 esac
10236
10237 case "$guess1" in
10238 'struct dirent') guess2='struct direct' ;;
10239 *) guess2='struct dirent' ;;
10240 esac
10241                 
10242 if $contains "$guess1" try.c >/dev/null 2>&1; then
10243         direntrytype="$guess1"
10244         echo "Your directory entries are $direntrytype." >&4
10245 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10246         direntrytype="$guess2"
10247         echo "Your directory entries seem to be $direntrytype." >&4
10248 else
10249         echo "I don't recognize your system's directory entries." >&4
10250         rp="What type is used for directory entries on this system?"
10251         dflt="$guess1"
10252         . ./myread
10253         direntrytype="$ans"
10254 fi
10255 $rm -f try.c
10256
10257
10258 : see if the directory entry stores field length
10259 echo " "
10260 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10261 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10262         echo "Good, your directory entry keeps length information in d_namlen." >&4
10263         val="$define"
10264 else
10265         echo "Your directory entry does not know about the d_namlen field." >&4
10266         val="$undef"
10267 fi
10268 set d_dirnamlen
10269 eval $setvar
10270 $rm -f try.c
10271
10272 : see if this is an sysdir system
10273 set sys/dir.h i_sysdir
10274 eval $inhdr
10275
10276 : see if this is an sysndir system
10277 set sys/ndir.h i_sysndir
10278 eval $inhdr
10279
10280 : Look for dirfd
10281 echo " "
10282 $cat >dirfd.c <<EOM
10283 #include <stdio.h>
10284 #$i_dirent I_DIRENT             /**/
10285 #$i_sysdir I_SYS_DIR            /**/
10286 #$i_sysndir I_SYS_NDIR          /**/
10287 #$i_systypes I_SYS_TYPES        /**/
10288 #if defined(I_SYS_TYPES)
10289 #include <sys/types.h>
10290 #endif
10291 #if defined(I_DIRENT)
10292 #include <dirent.h>
10293 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10294 #include <sys/dir.h>
10295 #endif
10296 #else
10297 #ifdef I_SYS_NDIR
10298 #include <sys/ndir.h>
10299 #else
10300 #ifdef I_SYS_DIR
10301 #ifdef hp9000s500
10302 #include <ndir.h>       /* may be wrong in the future */
10303 #else
10304 #include <sys/dir.h>
10305 #endif
10306 #endif
10307 #endif
10308 #endif 
10309 int main() {
10310         DIR *dirp = opendir(".");
10311         if (dirfd(dirp) >= 0)
10312                 exit(0);
10313         else
10314                 exit(1);
10315 }
10316 EOM
10317 set dirfd
10318 if eval $compile; then
10319         val="$define"
10320 fi
10321 case "$val" in
10322 $define)        echo "dirfd() found." >&4       ;;
10323 *)              echo "dirfd() NOT found." >&4   ;;
10324 esac
10325 set d_dirfd
10326 eval $setvar
10327 $rm -f dirfd*
10328
10329 : see if dlerror exists
10330 xxx_runnm="$runnm"
10331 runnm=false
10332 set dlerror d_dlerror
10333 eval $inlibc
10334 runnm="$xxx_runnm"
10335
10336 : see if dlfcn is available
10337 set dlfcn.h i_dlfcn
10338 eval $inhdr
10339
10340 case "$usedl" in
10341 $define|y|true)
10342         $cat << EOM
10343
10344 On a few systems, the dynamically loaded modules that perl generates and uses
10345 will need a different extension than shared libs. The default will probably
10346 be appropriate.
10347
10348 EOM
10349         case "$dlext" in
10350         '')     dflt="$so" ;;
10351         *)      dflt="$dlext" ;;
10352         esac
10353         rp='What is the extension of dynamically loaded modules'
10354         . ./myread
10355         dlext="$ans"
10356         ;;
10357 *)
10358         dlext="none"
10359         ;;
10360 esac
10361
10362 : Check if dlsym need a leading underscore
10363 echo " "
10364 val="$undef"
10365
10366 case "$dlsrc" in
10367 dl_dlopen.xs)
10368         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10369         $cat >dyna.c <<'EOM'
10370 fred () { }
10371 EOM
10372
10373 $cat >fred.c<<EOM
10374
10375 #include <stdio.h>
10376 #$i_dlfcn I_DLFCN
10377 #ifdef I_DLFCN
10378 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10379 #else
10380 #include <sys/types.h>
10381 #include <nlist.h>
10382 #include <link.h>
10383 #endif
10384
10385 extern int fred() ;
10386
10387 int main()
10388 {
10389     void * handle ;
10390     void * symbol ;
10391 #ifndef RTLD_LAZY
10392     int mode = 1 ;
10393 #else
10394     int mode = RTLD_LAZY ;
10395 #endif
10396     handle = dlopen("./dyna.$dlext", mode) ;
10397     if (handle == NULL) {
10398         printf ("1\n") ;
10399         fflush (stdout) ;
10400         exit(0);
10401     }
10402     symbol = dlsym(handle, "fred") ;
10403     if (symbol == NULL) {
10404         /* try putting a leading underscore */
10405         symbol = dlsym(handle, "_fred") ;
10406         if (symbol == NULL) {
10407             printf ("2\n") ;
10408             fflush (stdout) ;
10409             exit(0);
10410         }
10411         printf ("3\n") ;
10412     }
10413     else
10414         printf ("4\n") ;
10415     fflush (stdout) ;
10416     exit(0);
10417 }
10418 EOM
10419         : Call the object file tmp-dyna.o in case dlext=o.
10420         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10421                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10422                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10423                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10424                 xxx=`$run ./fred`
10425                 case $xxx in
10426                 1)      echo "Test program failed using dlopen." >&4
10427                         echo "Perhaps you should not use dynamic loading." >&4;;
10428                 2)      echo "Test program failed using dlsym." >&4
10429                         echo "Perhaps you should not use dynamic loading." >&4;;
10430                 3)      echo "dlsym needs a leading underscore" >&4
10431                         val="$define" ;;
10432                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10433                 esac
10434         else
10435                 echo "I can't compile and run the test program." >&4
10436                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10437         fi
10438         ;;
10439 esac
10440                 
10441 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10442
10443 set d_dlsymun
10444 eval $setvar
10445
10446 : see if drand48_r exists
10447 set drand48_r d_drand48_r
10448 eval $inlibc
10449 case "$d_drand48_r" in
10450 "$define")
10451         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10452         case "stdlib" in
10453         time)
10454                 hdrs="$hdrs $i_systime sys/time.h"
10455                 ;;
10456         esac
10457         case "$d_drand48_r_proto:$usethreads" in
10458         ":define")      d_drand48_r_proto=define
10459                 set d_drand48_r_proto drand48_r $hdrs
10460                 eval $hasproto ;;
10461         *)      ;;
10462         esac
10463         case "$d_drand48_r_proto" in
10464         define)
10465         case "$drand48_r_proto" in
10466         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10467         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10468         esac
10469         case "$drand48_r_proto" in
10470         ''|0)   d_drand48_r=undef
10471                 drand48_r_proto=0
10472                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10473         * )     case "$drand48_r_proto" in
10474                 REENTRANT_PROTO*) ;;
10475                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10476                 esac
10477                 echo "Prototype: $try" ;;
10478         esac
10479         ;;
10480         *)      case "$usethreads" in
10481                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10482                 esac
10483                 d_drand48_r=undef
10484                 drand48_r_proto=0
10485                 ;;
10486         esac
10487         ;;
10488 *)      drand48_r_proto=0
10489         ;;
10490 esac
10491
10492 : see if prototype for drand48 is available
10493 echo " "
10494 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
10495 eval $hasproto
10496
10497 : see if dup2 exists
10498 set dup2 d_dup2
10499 eval $inlibc
10500
10501 : see if eaccess exists
10502 set eaccess d_eaccess
10503 eval $inlibc
10504
10505 : see if endgrent exists
10506 set endgrent d_endgrent
10507 eval $inlibc
10508
10509 : see if this is an grp system
10510 set grp.h i_grp
10511 eval $inhdr
10512
10513 case "$i_grp" in
10514 $define)
10515         xxx=`./findhdr grp.h`
10516         $cppstdin $cppflags $cppminus < $xxx >$$.h
10517
10518         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
10519                 val="$define"
10520         else
10521                 val="$undef"
10522         fi
10523         set d_grpasswd
10524         eval $setvar
10525
10526         $rm -f $$.h
10527         ;;
10528 *)
10529         val="$undef";
10530         set d_grpasswd; eval $setvar
10531         ;;
10532 esac
10533
10534 : see if endgrent_r exists
10535 set endgrent_r d_endgrent_r
10536 eval $inlibc
10537 case "$d_endgrent_r" in
10538 "$define")
10539         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
10540         case "grp" in
10541         time)
10542                 hdrs="$hdrs $i_systime sys/time.h"
10543                 ;;
10544         esac
10545         case "$d_endgrent_r_proto:$usethreads" in
10546         ":define")      d_endgrent_r_proto=define
10547                 set d_endgrent_r_proto endgrent_r $hdrs
10548                 eval $hasproto ;;
10549         *)      ;;
10550         esac
10551         case "$d_endgrent_r_proto" in
10552         define)
10553         case "$endgrent_r_proto" in
10554         ''|0) try='int endgrent_r(FILE**);'
10555         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
10556         esac
10557         case "$endgrent_r_proto" in
10558         ''|0) try='void endgrent_r(FILE**);'
10559         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
10560         esac
10561         case "$endgrent_r_proto" in
10562         ''|0)   d_endgrent_r=undef
10563                 endgrent_r_proto=0
10564                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
10565         * )     case "$endgrent_r_proto" in
10566                 REENTRANT_PROTO*) ;;
10567                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
10568                 esac
10569                 echo "Prototype: $try" ;;
10570         esac
10571         ;;
10572         *)      case "$usethreads" in
10573                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
10574                 esac
10575                 d_endgrent_r=undef
10576                 endgrent_r_proto=0
10577                 ;;
10578         esac
10579         ;;
10580 *)      endgrent_r_proto=0
10581         ;;
10582 esac
10583
10584 : see if endhostent exists
10585 set endhostent d_endhent
10586 eval $inlibc
10587
10588 : see if this is a netdb.h system
10589 set netdb.h i_netdb
10590 eval $inhdr
10591
10592 : see if endhostent_r exists
10593 set endhostent_r d_endhostent_r
10594 eval $inlibc
10595 case "$d_endhostent_r" in
10596 "$define")
10597         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10598         case "netdb" in
10599         time)
10600                 hdrs="$hdrs $i_systime sys/time.h"
10601                 ;;
10602         esac
10603         case "$d_endhostent_r_proto:$usethreads" in
10604         ":define")      d_endhostent_r_proto=define
10605                 set d_endhostent_r_proto endhostent_r $hdrs
10606                 eval $hasproto ;;
10607         *)      ;;
10608         esac
10609         case "$d_endhostent_r_proto" in
10610         define)
10611         case "$endhostent_r_proto" in
10612         ''|0) try='int endhostent_r(struct hostent_data*);'
10613         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
10614         esac
10615         case "$endhostent_r_proto" in
10616         ''|0) try='void endhostent_r(struct hostent_data*);'
10617         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
10618         esac
10619         case "$endhostent_r_proto" in
10620         ''|0)   d_endhostent_r=undef
10621                 endhostent_r_proto=0
10622                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
10623         * )     case "$endhostent_r_proto" in
10624                 REENTRANT_PROTO*) ;;
10625                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
10626                 esac
10627                 echo "Prototype: $try" ;;
10628         esac
10629         ;;
10630         *)      case "$usethreads" in
10631                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
10632                 esac
10633                 d_endhostent_r=undef
10634                 endhostent_r_proto=0
10635                 ;;
10636         esac
10637         ;;
10638 *)      endhostent_r_proto=0
10639         ;;
10640 esac
10641
10642 : see if endnetent exists
10643 set endnetent d_endnent
10644 eval $inlibc
10645
10646 : see if endnetent_r exists
10647 set endnetent_r d_endnetent_r
10648 eval $inlibc
10649 case "$d_endnetent_r" in
10650 "$define")
10651         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10652         case "netdb" in
10653         time)
10654                 hdrs="$hdrs $i_systime sys/time.h"
10655                 ;;
10656         esac
10657         case "$d_endnetent_r_proto:$usethreads" in
10658         ":define")      d_endnetent_r_proto=define
10659                 set d_endnetent_r_proto endnetent_r $hdrs
10660                 eval $hasproto ;;
10661         *)      ;;
10662         esac
10663         case "$d_endnetent_r_proto" in
10664         define)
10665         case "$endnetent_r_proto" in
10666         ''|0) try='int endnetent_r(struct netent_data*);'
10667         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
10668         esac
10669         case "$endnetent_r_proto" in
10670         ''|0) try='void endnetent_r(struct netent_data*);'
10671         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
10672         esac
10673         case "$endnetent_r_proto" in
10674         ''|0)   d_endnetent_r=undef
10675                 endnetent_r_proto=0
10676                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
10677         * )     case "$endnetent_r_proto" in
10678                 REENTRANT_PROTO*) ;;
10679                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
10680                 esac
10681                 echo "Prototype: $try" ;;
10682         esac
10683         ;;
10684         *)      case "$usethreads" in
10685                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
10686                 esac
10687                 d_endnetent_r=undef
10688                 endnetent_r_proto=0
10689                 ;;
10690         esac
10691         ;;
10692 *)      endnetent_r_proto=0
10693         ;;
10694 esac
10695
10696 : see if endprotoent exists
10697 set endprotoent d_endpent
10698 eval $inlibc
10699
10700 : see if endprotoent_r exists
10701 set endprotoent_r d_endprotoent_r
10702 eval $inlibc
10703 case "$d_endprotoent_r" in
10704 "$define")
10705         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10706         case "netdb" in
10707         time)
10708                 hdrs="$hdrs $i_systime sys/time.h"
10709                 ;;
10710         esac
10711         case "$d_endprotoent_r_proto:$usethreads" in
10712         ":define")      d_endprotoent_r_proto=define
10713                 set d_endprotoent_r_proto endprotoent_r $hdrs
10714                 eval $hasproto ;;
10715         *)      ;;
10716         esac
10717         case "$d_endprotoent_r_proto" in
10718         define)
10719         case "$endprotoent_r_proto" in
10720         ''|0) try='int endprotoent_r(struct protoent_data*);'
10721         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
10722         esac
10723         case "$endprotoent_r_proto" in
10724         ''|0) try='void endprotoent_r(struct protoent_data*);'
10725         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
10726         esac
10727         case "$endprotoent_r_proto" in
10728         ''|0)   d_endprotoent_r=undef
10729                 endprotoent_r_proto=0
10730                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
10731         * )     case "$endprotoent_r_proto" in
10732                 REENTRANT_PROTO*) ;;
10733                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
10734                 esac
10735                 echo "Prototype: $try" ;;
10736         esac
10737         ;;
10738         *)      case "$usethreads" in
10739                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
10740                 esac
10741                 d_endprotoent_r=undef
10742                 endprotoent_r_proto=0
10743                 ;;
10744         esac
10745         ;;
10746 *)      endprotoent_r_proto=0
10747         ;;
10748 esac
10749
10750 : see if endpwent exists
10751 set endpwent d_endpwent
10752 eval $inlibc
10753
10754 : see if this is a pwd.h system
10755 set pwd.h i_pwd
10756 eval $inhdr
10757
10758 case "$i_pwd" in
10759 $define)
10760         xxx=`./findhdr pwd.h`
10761         $cppstdin $cppflags $cppminus < $xxx >$$.h
10762
10763         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
10764                 val="$define"
10765         else
10766                 val="$undef"
10767         fi
10768         set d_pwquota
10769         eval $setvar
10770
10771         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
10772                 val="$define"
10773         else
10774                 val="$undef"
10775         fi
10776         set d_pwage
10777         eval $setvar
10778
10779         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
10780                 val="$define"
10781         else
10782                 val="$undef"
10783         fi
10784         set d_pwchange
10785         eval $setvar
10786
10787         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
10788                 val="$define"
10789         else
10790                 val="$undef"
10791         fi
10792         set d_pwclass
10793         eval $setvar
10794
10795         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
10796                 val="$define"
10797         else
10798                 val="$undef"
10799         fi
10800         set d_pwexpire
10801         eval $setvar
10802
10803         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
10804                 val="$define"
10805         else
10806                 val="$undef"
10807         fi
10808         set d_pwcomment
10809         eval $setvar
10810
10811         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
10812                 val="$define"
10813         else
10814                 val="$undef"
10815         fi
10816         set d_pwgecos
10817         eval $setvar
10818
10819         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
10820                 val="$define"
10821         else
10822                 val="$undef"
10823         fi
10824         set d_pwpasswd
10825         eval $setvar
10826
10827         $rm -f $$.h
10828         ;;
10829 *)
10830         val="$undef"; 
10831         set d_pwquota; eval $setvar
10832         set d_pwage; eval $setvar
10833         set d_pwchange; eval $setvar
10834         set d_pwclass; eval $setvar
10835         set d_pwexpire; eval $setvar
10836         set d_pwcomment; eval $setvar
10837         set d_pwgecos; eval $setvar
10838         set d_pwpasswd; eval $setvar
10839         ;;
10840 esac
10841
10842 : see if endpwent_r exists
10843 set endpwent_r d_endpwent_r
10844 eval $inlibc
10845 case "$d_endpwent_r" in
10846 "$define")
10847         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
10848         case "pwd" in
10849         time)
10850                 hdrs="$hdrs $i_systime sys/time.h"
10851                 ;;
10852         esac
10853         case "$d_endpwent_r_proto:$usethreads" in
10854         ":define")      d_endpwent_r_proto=define
10855                 set d_endpwent_r_proto endpwent_r $hdrs
10856                 eval $hasproto ;;
10857         *)      ;;
10858         esac
10859         case "$d_endpwent_r_proto" in
10860         define)
10861         case "$endpwent_r_proto" in
10862         ''|0) try='int endpwent_r(FILE**);'
10863         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
10864         esac
10865         case "$endpwent_r_proto" in
10866         ''|0) try='void endpwent_r(FILE**);'
10867         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
10868         esac
10869         case "$endpwent_r_proto" in
10870         ''|0)   d_endpwent_r=undef
10871                 endpwent_r_proto=0
10872                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
10873         * )     case "$endpwent_r_proto" in
10874                 REENTRANT_PROTO*) ;;
10875                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
10876                 esac
10877                 echo "Prototype: $try" ;;
10878         esac
10879         ;;
10880         *)      case "$usethreads" in
10881                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
10882                 esac
10883                 d_endpwent_r=undef
10884                 endpwent_r_proto=0
10885                 ;;
10886         esac
10887         ;;
10888 *)      endpwent_r_proto=0
10889         ;;
10890 esac
10891
10892 : see if endservent exists
10893 set endservent d_endsent
10894 eval $inlibc
10895
10896 : see if endservent_r exists
10897 set endservent_r d_endservent_r
10898 eval $inlibc
10899 case "$d_endservent_r" in
10900 "$define")
10901         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10902         case "netdb" in
10903         time)
10904                 hdrs="$hdrs $i_systime sys/time.h"
10905                 ;;
10906         esac
10907         case "$d_endservent_r_proto:$usethreads" in
10908         ":define")      d_endservent_r_proto=define
10909                 set d_endservent_r_proto endservent_r $hdrs
10910                 eval $hasproto ;;
10911         *)      ;;
10912         esac
10913         case "$d_endservent_r_proto" in
10914         define)
10915         case "$endservent_r_proto" in
10916         ''|0) try='int endservent_r(struct servent_data*);'
10917         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
10918         esac
10919         case "$endservent_r_proto" in
10920         ''|0) try='void endservent_r(struct servent_data*);'
10921         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
10922         esac
10923         case "$endservent_r_proto" in
10924         ''|0)   d_endservent_r=undef
10925                 endservent_r_proto=0
10926                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
10927         * )     case "$endservent_r_proto" in
10928                 REENTRANT_PROTO*) ;;
10929                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
10930                 esac
10931                 echo "Prototype: $try" ;;
10932         esac
10933         ;;
10934         *)      case "$usethreads" in
10935                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
10936                 esac
10937                 d_endservent_r=undef
10938                 endservent_r_proto=0
10939                 ;;
10940         esac
10941         ;;
10942 *)      endservent_r_proto=0
10943         ;;
10944 esac
10945
10946 : Locate the flags for 'open()'
10947 echo " "
10948 $cat >try.c <<'EOCP'
10949 #include <sys/types.h>
10950 #ifdef I_FCNTL
10951 #include <fcntl.h>
10952 #endif
10953 #ifdef I_SYS_FILE
10954 #include <sys/file.h>
10955 #endif
10956 int main() {
10957         if(O_RDONLY);
10958 #ifdef O_TRUNC
10959         exit(0);
10960 #else
10961         exit(1);
10962 #endif
10963 }
10964 EOCP
10965 : check sys/file.h first to get FREAD on Sun
10966 if $test `./findhdr sys/file.h` && \
10967                 set try -DI_SYS_FILE && eval $compile; then
10968         h_sysfile=true;
10969         echo "<sys/file.h> defines the O_* constants..." >&4
10970         if $run ./try; then
10971                 echo "and you have the 3 argument form of open()." >&4
10972                 val="$define"
10973         else
10974                 echo "but not the 3 argument form of open().  Oh, well." >&4
10975                 val="$undef"
10976         fi
10977 elif $test `./findhdr fcntl.h` && \
10978                 set try -DI_FCNTL && eval $compile; then
10979         h_fcntl=true;
10980         echo "<fcntl.h> defines the O_* constants..." >&4
10981         if $run ./try; then
10982                 echo "and you have the 3 argument form of open()." >&4
10983                 val="$define"
10984         else
10985                 echo "but not the 3 argument form of open().  Oh, well." >&4
10986                 val="$undef"
10987         fi
10988 else
10989         val="$undef"
10990         echo "I can't find the O_* constant definitions!  You got problems." >&4
10991 fi
10992 set d_open3
10993 eval $setvar
10994 $rm -f try try.*
10995
10996 : see which of string.h or strings.h is needed
10997 echo " "
10998 strings=`./findhdr string.h`
10999 if $test "$strings" && $test -r "$strings"; then
11000         echo "Using <string.h> instead of <strings.h>." >&4
11001         val="$define"
11002 else
11003         val="$undef"
11004         strings=`./findhdr strings.h`
11005         if $test "$strings" && $test -r "$strings"; then
11006                 echo "Using <strings.h> instead of <string.h>." >&4
11007         else
11008                 echo "No string header found -- You'll surely have problems." >&4
11009         fi
11010 fi
11011 set i_string
11012 eval $setvar
11013 case "$i_string" in
11014 "$undef") strings=`./findhdr strings.h`;;
11015 *)        strings=`./findhdr string.h`;;
11016 esac
11017
11018 : see if this is a sys/file.h system
11019 val=''
11020 set sys/file.h val
11021 eval $inhdr
11022
11023 : do we need to include sys/file.h ?
11024 case "$val" in
11025 "$define")
11026         echo " "
11027         if $h_sysfile; then
11028                 val="$define"
11029                 echo "We'll be including <sys/file.h>." >&4
11030         else
11031                 val="$undef"
11032                 echo "We won't be including <sys/file.h>." >&4
11033         fi
11034         ;;
11035 *)
11036         h_sysfile=false
11037         ;;
11038 esac
11039 set i_sysfile
11040 eval $setvar
11041
11042 : see if fcntl.h is there
11043 val=''
11044 set fcntl.h val
11045 eval $inhdr
11046
11047 : see if we can include fcntl.h
11048 case "$val" in
11049 "$define")
11050         echo " "
11051         if $h_fcntl; then
11052                 val="$define"
11053                 echo "We'll be including <fcntl.h>." >&4
11054         else
11055                 val="$undef"
11056                 if $h_sysfile; then
11057         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11058                 else
11059                         echo "We won't be including <fcntl.h>." >&4
11060                 fi
11061         fi
11062         ;;
11063 *)
11064         h_fcntl=false
11065         val="$undef"
11066         ;;
11067 esac
11068 set i_fcntl
11069 eval $setvar
11070
11071 : check for non-blocking I/O stuff
11072 case "$h_sysfile" in
11073 true) echo "#include <sys/file.h>" > head.c;;
11074 *)
11075        case "$h_fcntl" in
11076        true) echo "#include <fcntl.h>" > head.c;;
11077        *) echo "#include <sys/fcntl.h>" > head.c;;
11078        esac
11079        ;;
11080 esac
11081 echo " "
11082 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11083 case "$o_nonblock" in
11084 '')
11085         $cat head.c > try.c
11086         $cat >>try.c <<EOCP
11087 #include <stdio.h>
11088 #include <stdlib.h>
11089 #$i_fcntl I_FCNTL
11090 #ifdef I_FCNTL
11091 #include <fcntl.h>
11092 #endif
11093 int main() {
11094 #ifdef O_NONBLOCK
11095         printf("O_NONBLOCK\n");
11096         exit(0);
11097 #endif
11098 #ifdef O_NDELAY
11099         printf("O_NDELAY\n");
11100         exit(0);
11101 #endif
11102 #ifdef FNDELAY
11103         printf("FNDELAY\n");
11104         exit(0);
11105 #endif
11106         exit(0);
11107 }
11108 EOCP
11109         set try
11110         if eval $compile_ok; then
11111                 o_nonblock=`$run ./try`
11112                 case "$o_nonblock" in
11113                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11114                 *) echo "Seems like we can use $o_nonblock.";;
11115                 esac
11116         else
11117                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11118         fi
11119         ;;
11120 *) echo "Using $hint value $o_nonblock.";;
11121 esac
11122 $rm -f try try.* .out core
11123
11124 echo " "
11125 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11126 case "$eagain" in
11127 '')
11128         $cat head.c > try.c
11129         $cat >>try.c <<EOCP
11130 #include <errno.h>
11131 #include <sys/types.h>
11132 #include <signal.h>
11133 #include <stdio.h> 
11134 #include <stdlib.h> 
11135 #$i_fcntl I_FCNTL
11136 #ifdef I_FCNTL
11137 #include <fcntl.h>
11138 #endif
11139 #define MY_O_NONBLOCK $o_nonblock
11140 #ifndef errno  /* XXX need better Configure test */
11141 extern int errno;
11142 #endif
11143 #$i_unistd I_UNISTD
11144 #ifdef I_UNISTD
11145 #include <unistd.h>
11146 #endif
11147 #$i_string I_STRING
11148 #ifdef I_STRING
11149 #include <string.h>
11150 #else
11151 #include <strings.h>
11152 #endif
11153 $signal_t blech(x) int x; { exit(3); }
11154 EOCP
11155         $cat >> try.c <<'EOCP'
11156 int main()
11157 {
11158         int pd[2];
11159         int pu[2];
11160         char buf[1];
11161         char string[100];
11162
11163         pipe(pd);       /* Down: child -> parent */
11164         pipe(pu);       /* Up: parent -> child */
11165         if (0 != fork()) {
11166                 int ret;
11167                 close(pd[1]);   /* Parent reads from pd[0] */
11168                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11169 #ifdef F_SETFL
11170                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11171                         exit(1);
11172 #else
11173                 exit(4);
11174 #endif
11175                 signal(SIGALRM, blech);
11176                 alarm(5);
11177                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11178                         exit(2);
11179                 sprintf(string, "%d\n", ret);
11180                 write(2, string, strlen(string));
11181                 alarm(0);
11182 #ifdef EAGAIN
11183                 if (errno == EAGAIN) {
11184                         printf("EAGAIN\n");
11185                         goto ok;
11186                 }
11187 #endif
11188 #ifdef EWOULDBLOCK
11189                 if (errno == EWOULDBLOCK)
11190                         printf("EWOULDBLOCK\n");
11191 #endif
11192         ok:
11193                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11194                 sleep(2);                               /* Give it time to close our pipe */
11195                 alarm(5);
11196                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11197                 alarm(0);
11198                 sprintf(string, "%d\n", ret);
11199                 write(4, string, strlen(string));
11200                 exit(0);
11201         }
11202
11203         close(pd[0]);                   /* We write to pd[1] */
11204         close(pu[1]);                   /* We read from pu[0] */
11205         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11206         close(pd[1]);                   /* Pipe pd is now fully closed! */
11207         exit(0);                                /* Bye bye, thank you for playing! */
11208 }
11209 EOCP
11210         set try
11211         if eval $compile_ok; then
11212                 echo "$startsh" >mtry
11213                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11214                 chmod +x mtry
11215                 ./mtry >/dev/null 2>&1
11216                 case $? in
11217                 0) eagain=`$cat try.out`;;
11218                 1) echo "Could not perform non-blocking setting!";;
11219                 2) echo "I did a successful read() for something that was not there!";;
11220                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11221                 4) echo "Could not find F_SETFL!";;
11222                 *) echo "Something terribly wrong happened during testing.";;
11223                 esac
11224                 rd_nodata=`$cat try.ret`
11225                 echo "A read() system call with no data present returns $rd_nodata."
11226                 case "$rd_nodata" in
11227                 0|-1) ;;
11228                 *)
11229                         echo "(That's peculiar, fixing that to be -1.)"
11230                         rd_nodata=-1
11231                         ;;
11232                 esac
11233                 case "$eagain" in
11234                 '')
11235                         echo "Forcing errno EAGAIN on read() with no data available."
11236                         eagain=EAGAIN
11237                         ;;
11238                 *)
11239                         echo "Your read() sets errno to $eagain when no data is available."
11240                         ;;
11241                 esac
11242                 status=`$cat try.err`
11243                 case "$status" in
11244                 0) echo "And it correctly returns 0 to signal EOF.";;
11245                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11246                 *) echo "However, your read() returns '$status' on EOF??";;
11247                 esac
11248                 val="$define"
11249                 if test "$status" = "$rd_nodata"; then
11250                         echo "WARNING: you can't distinguish between EOF and no data!"
11251                         val="$undef"
11252                 fi
11253         else
11254                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11255                 eagain=EAGAIN
11256         fi
11257         set d_eofnblk
11258         eval $setvar
11259         ;;
11260 *)
11261         echo "Using $hint value $eagain."
11262         echo "Your read() returns $rd_nodata when no data is present."
11263         case "$d_eofnblk" in
11264         "$define") echo "And you can see EOF because read() returns 0.";;
11265         "$undef") echo "But you can't see EOF status from read() returned value.";;
11266         *)
11267                 echo "(Assuming you can't see EOF status from read anyway.)"
11268                 d_eofnblk=$undef
11269                 ;;
11270         esac
11271         ;;
11272 esac
11273 $rm -f try try.* .out core head.c mtry
11274
11275 : see if fchdir exists
11276 set fchdir d_fchdir
11277 eval $inlibc
11278
11279 : see if fchmod exists
11280 set fchmod d_fchmod
11281 eval $inlibc
11282
11283 : see if fchown exists
11284 set fchown d_fchown
11285 eval $inlibc
11286
11287 : see if this is an fcntl system
11288 set fcntl d_fcntl
11289 eval $inlibc
11290
11291 echo " "
11292 : See if fcntl-based locking works.
11293 $cat >try.c <<EOCP
11294 #include <stdlib.h>
11295 #include <unistd.h>
11296 #include <fcntl.h>
11297 #include <signal.h>
11298 $signal_t blech(x) int x; { exit(3); }
11299 int main() {
11300 #if defined(F_SETLK) && defined(F_SETLKW)
11301      struct flock flock;
11302      int retval, fd;
11303      fd = open("try.c", O_RDONLY);
11304      flock.l_type = F_RDLCK;
11305      flock.l_whence = SEEK_SET;
11306      flock.l_start = flock.l_len = 0;
11307      signal(SIGALRM, blech);
11308      alarm(10);
11309      retval = fcntl(fd, F_SETLK, &flock);
11310      close(fd);
11311      (retval < 0 ? exit(2) : exit(0));
11312 #else
11313      exit(2);
11314 #endif
11315 }
11316 EOCP
11317 echo "Checking if fcntl-based file locking works... "
11318 case "$d_fcntl" in
11319 "$define")
11320         set try
11321         if eval $compile_ok; then
11322                 if $run ./try; then
11323                         echo "Yes, it seems to work."
11324                         val="$define"
11325                 else
11326                         echo "Nope, it didn't work."
11327                         val="$undef"
11328                         case "$?" in
11329                         3) $cat >&4 <<EOM
11330 ***
11331 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
11332 *** This is (almost) impossible.
11333 *** If your NFS lock daemons are not feeling well, something like
11334 *** this may happen, please investigate.  Cannot continue, aborting.
11335 ***
11336 EOM
11337                                 exit 1
11338                                 ;;
11339                         esac
11340                 fi
11341         else
11342                 echo "I'm unable to compile the test program, so I'll assume not."
11343                 val="$undef"
11344         fi
11345         ;;
11346 *) val="$undef";
11347         echo "Nope, since you don't even have fcntl()."
11348         ;;
11349 esac
11350 set d_fcntl_can_lock
11351 eval $setvar
11352 $rm -f try*
11353
11354
11355 : check for fd_set items
11356 $cat <<EOM
11357
11358 Checking to see how well your C compiler handles fd_set and friends ...
11359 EOM
11360 $cat >try.c <<EOCP
11361 #$i_systime I_SYS_TIME
11362 #$i_sysselct I_SYS_SELECT
11363 #$d_socket HAS_SOCKET
11364 #include <sys/types.h>
11365 #ifdef HAS_SOCKET
11366 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
11367 #endif
11368 #ifdef I_SYS_TIME
11369 #include <sys/time.h>
11370 #endif
11371 #ifdef I_SYS_SELECT
11372 #include <sys/select.h>
11373 #endif
11374 int main() {
11375         fd_set fds;
11376
11377 #ifdef TRYBITS
11378         if(fds.fds_bits);
11379 #endif
11380
11381 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
11382         exit(0);
11383 #else
11384         exit(1);
11385 #endif
11386 }
11387 EOCP
11388 set try -DTRYBITS
11389 if eval $compile; then
11390         d_fds_bits="$define"
11391         d_fd_set="$define"
11392         echo "Well, your system knows about the normal fd_set typedef..." >&4
11393         if $run ./try; then
11394                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
11395                 d_fd_macros="$define"
11396         else
11397                 $cat >&4 <<'EOM'
11398 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
11399 EOM
11400                 d_fd_macros="$undef"
11401         fi
11402 else
11403         $cat <<'EOM'
11404 Hmm, your compiler has some difficulty with fd_set.  Checking further...
11405 EOM
11406         set try
11407         if eval $compile; then
11408                 d_fds_bits="$undef"
11409                 d_fd_set="$define"
11410                 echo "Well, your system has some sort of fd_set available..." >&4
11411                 if $run ./try; then
11412                         echo "and you have the normal fd_set macros." >&4
11413                         d_fd_macros="$define"
11414                 else
11415                         $cat <<'EOM'
11416 but not the normal fd_set macros!  Gross!  More work for me...
11417 EOM
11418                         d_fd_macros="$undef"
11419                 fi
11420         else
11421         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
11422                 d_fd_set="$undef"
11423                 d_fds_bits="$undef"
11424                 d_fd_macros="$undef"
11425         fi
11426 fi
11427 $rm -f try try.*
11428
11429 : see if fgetpos exists
11430 set fgetpos d_fgetpos
11431 eval $inlibc
11432
11433 : see if finite exists
11434 set finite d_finite
11435 eval $inlibc
11436
11437 : see if finitel exists
11438 set finitel d_finitel
11439 eval $inlibc
11440
11441 : see if flock exists
11442 set flock d_flock
11443 eval $inlibc
11444
11445 : see if prototype for flock is available
11446 echo " "
11447 set d_flockproto flock $i_sysfile sys/file.h
11448 eval $hasproto
11449
11450 : see if fork exists
11451 set fork d_fork
11452 eval $inlibc
11453
11454 : see if fp_class exists
11455 set fp_class d_fp_class
11456 eval $inlibc
11457
11458 : see if pathconf exists
11459 set pathconf d_pathconf
11460 eval $inlibc
11461
11462 : see if fpathconf exists
11463 set fpathconf d_fpathconf
11464 eval $inlibc
11465
11466 : see if fpclass exists
11467 set fpclass d_fpclass
11468 eval $inlibc
11469
11470 : see if fpclassify exists
11471 set fpclassify d_fpclassify
11472 eval $inlibc
11473
11474 : see if fpclassl exists
11475 set fpclassl d_fpclassl
11476 eval $inlibc
11477
11478
11479 : check for fpos64_t
11480 echo " "
11481 echo "Checking to see if you have fpos64_t..." >&4
11482 $cat >try.c <<EOCP
11483 #include <stdio.h>
11484 int main() { fpos64_t x = 7; }
11485 EOCP
11486 set try
11487 if eval $compile; then
11488         val="$define"
11489         echo "You have fpos64_t."
11490 else
11491         val="$undef"
11492         echo "You do not have fpos64_t."
11493         case "$fpossize" in
11494         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
11495         esac
11496 fi
11497 $rm -f try.* try
11498 set d_fpos64_t
11499 eval $setvar
11500
11501 : see if frexpl exists
11502 set frexpl d_frexpl
11503 eval $inlibc
11504
11505 : see if this is a sys/param system
11506 set sys/param.h i_sysparam
11507 eval $inhdr
11508
11509 : see if this is a sys/mount.h system
11510 set sys/mount.h i_sysmount
11511 eval $inhdr
11512
11513
11514 echo " "
11515 echo "Checking to see if your system supports struct fs_data..." >&4
11516 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
11517 eval $hasstruct
11518 case "$d_fs_data_s" in
11519 "$define")      echo "Yes, it does."   ;;
11520 *)              echo "No, it doesn't." ;;
11521 esac
11522
11523 : see if fseeko exists
11524 set fseeko d_fseeko
11525 eval $inlibc
11526 case "$longsize" in
11527 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
11528 esac
11529
11530 : see if fsetpos exists
11531 set fsetpos d_fsetpos
11532 eval $inlibc
11533
11534
11535 : see if fstatfs exists
11536 set fstatfs d_fstatfs
11537 eval $inlibc
11538
11539
11540 : see if statvfs exists
11541 set statvfs d_statvfs
11542 eval $inlibc
11543
11544 : see if fstatvfs exists
11545 set fstatvfs d_fstatvfs
11546 eval $inlibc
11547
11548
11549 : see if fsync exists
11550 set fsync d_fsync
11551 eval $inlibc
11552
11553 : see if ftello exists
11554 set ftello d_ftello
11555 eval $inlibc
11556 case "$longsize" in
11557 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
11558 esac
11559
11560 : see if getcwd exists
11561 set getcwd d_getcwd
11562 eval $inlibc
11563
11564 : see if getespwnam exists
11565 set getespwnam d_getespwnam
11566 eval $inlibc
11567
11568
11569 : see if getfsstat exists
11570 set getfsstat d_getfsstat
11571 eval $inlibc
11572
11573 : see if getgrent exists
11574 set getgrent d_getgrent
11575 eval $inlibc
11576
11577 : see if getgrent_r exists
11578 set getgrent_r d_getgrent_r
11579 eval $inlibc
11580 case "$d_getgrent_r" in
11581 "$define")
11582         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11583         case "grp" in
11584         time)
11585                 hdrs="$hdrs $i_systime sys/time.h"
11586                 ;;
11587         esac
11588         case "$d_getgrent_r_proto:$usethreads" in
11589         ":define")      d_getgrent_r_proto=define
11590                 set d_getgrent_r_proto getgrent_r $hdrs
11591                 eval $hasproto ;;
11592         *)      ;;
11593         esac
11594         case "$d_getgrent_r_proto" in
11595         define)
11596         case "$getgrent_r_proto" in
11597         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
11598         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
11599         esac
11600         case "$getgrent_r_proto" in
11601         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
11602         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
11603         esac
11604         case "$getgrent_r_proto" in
11605         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
11606         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
11607         esac
11608         case "$getgrent_r_proto" in
11609         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
11610         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
11611         esac
11612         case "$getgrent_r_proto" in
11613         ''|0) try='int getgrent_r(struct group*, char*, int);'
11614         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
11615         esac
11616         case "$getgrent_r_proto" in
11617         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
11618         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
11619         esac
11620         case "$getgrent_r_proto" in
11621         ''|0)   d_getgrent_r=undef
11622                 getgrent_r_proto=0
11623                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
11624         * )     case "$getgrent_r_proto" in
11625                 REENTRANT_PROTO*) ;;
11626                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
11627                 esac
11628                 echo "Prototype: $try" ;;
11629         esac
11630         ;;
11631         *)      case "$usethreads" in
11632                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
11633                 esac
11634                 d_getgrent_r=undef
11635                 getgrent_r_proto=0
11636                 ;;
11637         esac
11638         ;;
11639 *)      getgrent_r_proto=0
11640         ;;
11641 esac
11642
11643 : see if getgrgid_r exists
11644 set getgrgid_r d_getgrgid_r
11645 eval $inlibc
11646 case "$d_getgrgid_r" in
11647 "$define")
11648         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11649         case "grp" in
11650         time)
11651                 hdrs="$hdrs $i_systime sys/time.h"
11652                 ;;
11653         esac
11654         case "$d_getgrgid_r_proto:$usethreads" in
11655         ":define")      d_getgrgid_r_proto=define
11656                 set d_getgrgid_r_proto getgrgid_r $hdrs
11657                 eval $hasproto ;;
11658         *)      ;;
11659         esac
11660         case "$d_getgrgid_r_proto" in
11661         define)
11662         case "$getgrgid_r_proto" in
11663         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
11664         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
11665         esac
11666         case "$getgrgid_r_proto" in
11667         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
11668         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
11669         esac
11670         case "$getgrgid_r_proto" in
11671         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
11672         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
11673         esac
11674         case "$getgrgid_r_proto" in
11675         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
11676         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
11677         esac
11678         case "$getgrgid_r_proto" in
11679         ''|0)   d_getgrgid_r=undef
11680                 getgrgid_r_proto=0
11681                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
11682         * )     case "$getgrgid_r_proto" in
11683                 REENTRANT_PROTO*) ;;
11684                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
11685                 esac
11686                 echo "Prototype: $try" ;;
11687         esac
11688         ;;
11689         *)      case "$usethreads" in
11690                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
11691                 esac
11692                 d_getgrgid_r=undef
11693                 getgrgid_r_proto=0
11694                 ;;
11695         esac
11696         ;;
11697 *)      getgrgid_r_proto=0
11698         ;;
11699 esac
11700
11701 : see if getgrnam_r exists
11702 set getgrnam_r d_getgrnam_r
11703 eval $inlibc
11704 case "$d_getgrnam_r" in
11705 "$define")
11706         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11707         case "grp" in
11708         time)
11709                 hdrs="$hdrs $i_systime sys/time.h"
11710                 ;;
11711         esac
11712         case "$d_getgrnam_r_proto:$usethreads" in
11713         ":define")      d_getgrnam_r_proto=define
11714                 set d_getgrnam_r_proto getgrnam_r $hdrs
11715                 eval $hasproto ;;
11716         *)      ;;
11717         esac
11718         case "$d_getgrnam_r_proto" in
11719         define)
11720         case "$getgrnam_r_proto" in
11721         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
11722         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
11723         esac
11724         case "$getgrnam_r_proto" in
11725         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
11726         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
11727         esac
11728         case "$getgrnam_r_proto" in
11729         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
11730         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
11731         esac
11732         case "$getgrnam_r_proto" in
11733         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
11734         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
11735         esac
11736         case "$getgrnam_r_proto" in
11737         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
11738         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
11739         esac
11740         case "$getgrnam_r_proto" in
11741         ''|0)   d_getgrnam_r=undef
11742                 getgrnam_r_proto=0
11743                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
11744         * )     case "$getgrnam_r_proto" in
11745                 REENTRANT_PROTO*) ;;
11746                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
11747                 esac
11748                 echo "Prototype: $try" ;;
11749         esac
11750         ;;
11751         *)      case "$usethreads" in
11752                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
11753                 esac
11754                 d_getgrnam_r=undef
11755                 getgrnam_r_proto=0
11756                 ;;
11757         esac
11758         ;;
11759 *)      getgrnam_r_proto=0
11760         ;;
11761 esac
11762
11763 : see if gethostbyaddr exists
11764 set gethostbyaddr d_gethbyaddr
11765 eval $inlibc
11766
11767 : see if gethostbyname exists
11768 set gethostbyname d_gethbyname
11769 eval $inlibc
11770
11771 : see if gethostent exists
11772 set gethostent d_gethent
11773 eval $inlibc
11774
11775 : see how we will look up host name
11776 echo " "
11777 call=''
11778 if set gethostname val -f d_gethname; eval $csym; $val; then
11779         echo 'gethostname() found.' >&4
11780         d_gethname="$define"
11781         call=gethostname
11782 fi
11783 if set uname val -f d_uname; eval $csym; $val; then
11784         if ./xenix; then
11785                 $cat <<'EOM'
11786 uname() was found, but you're running xenix, and older versions of xenix
11787 have a broken uname(). If you don't really know whether your xenix is old
11788 enough to have a broken system call, use the default answer.
11789
11790 EOM
11791                 dflt=y
11792                 case "$d_uname" in
11793                 "$define") dflt=n;;
11794                 esac
11795                 rp='Is your uname() broken?'
11796                 . ./myread
11797                 case "$ans" in
11798                 n*) d_uname="$define"; call=uname;;
11799                 esac
11800         else
11801                 echo 'uname() found.' >&4
11802                 d_uname="$define"
11803                 case "$call" in
11804                 '') call=uname ;;
11805                 esac
11806         fi
11807 fi
11808 case "$d_gethname" in
11809 '') d_gethname="$undef";;
11810 esac
11811 case "$d_uname" in
11812 '') d_uname="$undef";;
11813 esac
11814 case "$d_uname$d_gethname" in
11815 *define*)
11816         dflt=n
11817         cat <<EOM
11818  
11819 Every now and then someone has a $call() that lies about the hostname
11820 but can't be fixed for political or economic reasons.  If you wish, I can
11821 pretend $call() isn't there and maybe compute hostname at run-time
11822 thanks to the '$phostname' command.
11823
11824 EOM
11825         rp="Shall I ignore $call() from now on?"
11826         . ./myread
11827         case "$ans" in
11828         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
11829         esac;;
11830 esac
11831 case "$phostname" in
11832 '') aphostname='';;
11833 *) case "$aphostname" in
11834         /*) ;;
11835         *) set X $phostname
11836                 shift
11837                 file=$1
11838                 shift
11839                 file=`./loc $file $file $pth`
11840                 aphostname=`echo $file $*`
11841                 ;;
11842         esac
11843         ;;
11844 esac
11845 case "$d_uname$d_gethname" in
11846 *define*) ;;
11847 *)
11848         case "$phostname" in
11849         '')
11850                 echo "There will be no way for $package to get your hostname." >&4;;
11851         *)
11852         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
11853                 ;;
11854         esac;;
11855 esac
11856 case "$d_phostname" in
11857 '') d_phostname="$undef";;
11858 esac
11859
11860 : see if gethostbyaddr_r exists
11861 set gethostbyaddr_r d_gethostbyaddr_r
11862 eval $inlibc
11863 case "$d_gethostbyaddr_r" in
11864 "$define")
11865         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11866         case "netdb" in
11867         time)
11868                 hdrs="$hdrs $i_systime sys/time.h"
11869                 ;;
11870         esac
11871         case "$d_gethostbyaddr_r_proto:$usethreads" in
11872         ":define")      d_gethostbyaddr_r_proto=define
11873                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
11874                 eval $hasproto ;;
11875         *)      ;;
11876         esac
11877         case "$d_gethostbyaddr_r_proto" in
11878         define)
11879         case "$gethostbyaddr_r_proto" in
11880         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
11881         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
11882         esac
11883         case "$gethostbyaddr_r_proto" in
11884         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
11885         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
11886         esac
11887         case "$gethostbyaddr_r_proto" in
11888         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
11889         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
11890         esac
11891         case "$gethostbyaddr_r_proto" in
11892         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
11893         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
11894         esac
11895         case "$gethostbyaddr_r_proto" in
11896         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
11897         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
11898         esac
11899         case "$gethostbyaddr_r_proto" in
11900         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
11901         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
11902         esac
11903         case "$gethostbyaddr_r_proto" in
11904         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
11905         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
11906         esac
11907         case "$gethostbyaddr_r_proto" in
11908         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
11909         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
11910         esac
11911         case "$gethostbyaddr_r_proto" in
11912         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
11913         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
11914         esac
11915         case "$gethostbyaddr_r_proto" in
11916         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
11917         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
11918         esac
11919         case "$gethostbyaddr_r_proto" in
11920         ''|0)   d_gethostbyaddr_r=undef
11921                 gethostbyaddr_r_proto=0
11922                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
11923         * )     case "$gethostbyaddr_r_proto" in
11924                 REENTRANT_PROTO*) ;;
11925                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
11926                 esac
11927                 echo "Prototype: $try" ;;
11928         esac
11929         ;;
11930         *)      case "$usethreads" in
11931                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
11932                 esac
11933                 d_gethostbyaddr_r=undef
11934                 gethostbyaddr_r_proto=0
11935                 ;;
11936         esac
11937         ;;
11938 *)      gethostbyaddr_r_proto=0
11939         ;;
11940 esac
11941
11942 : see if gethostbyname_r exists
11943 set gethostbyname_r d_gethostbyname_r
11944 eval $inlibc
11945 case "$d_gethostbyname_r" in
11946 "$define")
11947         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11948         case "netdb" in
11949         time)
11950                 hdrs="$hdrs $i_systime sys/time.h"
11951                 ;;
11952         esac
11953         case "$d_gethostbyname_r_proto:$usethreads" in
11954         ":define")      d_gethostbyname_r_proto=define
11955                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
11956                 eval $hasproto ;;
11957         *)      ;;
11958         esac
11959         case "$d_gethostbyname_r_proto" in
11960         define)
11961         case "$gethostbyname_r_proto" in
11962         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
11963         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
11964         esac
11965         case "$gethostbyname_r_proto" in
11966         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
11967         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
11968         esac
11969         case "$gethostbyname_r_proto" in
11970         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
11971         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
11972         esac
11973         case "$gethostbyname_r_proto" in
11974         ''|0)   d_gethostbyname_r=undef
11975                 gethostbyname_r_proto=0
11976                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
11977         * )     case "$gethostbyname_r_proto" in
11978                 REENTRANT_PROTO*) ;;
11979                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
11980                 esac
11981                 echo "Prototype: $try" ;;
11982         esac
11983         ;;
11984         *)      case "$usethreads" in
11985                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
11986                 esac
11987                 d_gethostbyname_r=undef
11988                 gethostbyname_r_proto=0
11989                 ;;
11990         esac
11991         ;;
11992 *)      gethostbyname_r_proto=0
11993         ;;
11994 esac
11995
11996 : see if gethostent_r exists
11997 set gethostent_r d_gethostent_r
11998 eval $inlibc
11999 case "$d_gethostent_r" in
12000 "$define")
12001         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12002         case "netdb" in
12003         time)
12004                 hdrs="$hdrs $i_systime sys/time.h"
12005                 ;;
12006         esac
12007         case "$d_gethostent_r_proto:$usethreads" in
12008         ":define")      d_gethostent_r_proto=define
12009                 set d_gethostent_r_proto gethostent_r $hdrs
12010                 eval $hasproto ;;
12011         *)      ;;
12012         esac
12013         case "$d_gethostent_r_proto" in
12014         define)
12015         case "$gethostent_r_proto" in
12016         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
12017         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
12018         esac
12019         case "$gethostent_r_proto" in
12020         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
12021         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
12022         esac
12023         case "$gethostent_r_proto" in
12024         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
12025         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
12026         esac
12027         case "$gethostent_r_proto" in
12028         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
12029         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
12030         esac
12031         case "$gethostent_r_proto" in
12032         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
12033         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
12034         esac
12035         case "$gethostent_r_proto" in
12036         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
12037         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
12038         esac
12039         case "$gethostent_r_proto" in
12040         ''|0)   d_gethostent_r=undef
12041                 gethostent_r_proto=0
12042                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
12043         * )     case "$gethostent_r_proto" in
12044                 REENTRANT_PROTO*) ;;
12045                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12046                 esac
12047                 echo "Prototype: $try" ;;
12048         esac
12049         ;;
12050         *)      case "$usethreads" in
12051                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12052                 esac
12053                 d_gethostent_r=undef
12054                 gethostent_r_proto=0
12055                 ;;
12056         esac
12057         ;;
12058 *)      gethostent_r_proto=0
12059         ;;
12060 esac
12061
12062 : see if prototypes for various gethostxxx netdb.h functions are available
12063 echo " "
12064 set d_gethostprotos gethostent $i_netdb netdb.h
12065 eval $hasproto
12066
12067 : see if getitimer exists
12068 set getitimer d_getitimer
12069 eval $inlibc
12070
12071 : see if getlogin exists
12072 set getlogin d_getlogin
12073 eval $inlibc
12074
12075 : see if getlogin_r exists
12076 set getlogin_r d_getlogin_r
12077 eval $inlibc
12078 case "$d_getlogin_r" in
12079 "$define")
12080         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12081         case "unistd" in
12082         time)
12083                 hdrs="$hdrs $i_systime sys/time.h"
12084                 ;;
12085         esac
12086         case "$d_getlogin_r_proto:$usethreads" in
12087         ":define")      d_getlogin_r_proto=define
12088                 set d_getlogin_r_proto getlogin_r $hdrs
12089                 eval $hasproto ;;
12090         *)      ;;
12091         esac
12092         case "$d_getlogin_r_proto" in
12093         define)
12094         case "$getlogin_r_proto" in
12095         ''|0) try='int getlogin_r(char*, size_t);'
12096         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12097         esac
12098         case "$getlogin_r_proto" in
12099         ''|0) try='int getlogin_r(char*, int);'
12100         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12101         esac
12102         case "$getlogin_r_proto" in
12103         ''|0) try='char* getlogin_r(char*, size_t);'
12104         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12105         esac
12106         case "$getlogin_r_proto" in
12107         ''|0) try='char* getlogin_r(char*, int);'
12108         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12109         esac
12110         case "$getlogin_r_proto" in
12111         ''|0)   d_getlogin_r=undef
12112                 getlogin_r_proto=0
12113                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12114         * )     case "$getlogin_r_proto" in
12115                 REENTRANT_PROTO*) ;;
12116                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12117                 esac
12118                 echo "Prototype: $try" ;;
12119         esac
12120         ;;
12121         *)      case "$usethreads" in
12122                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12123                 esac
12124                 d_getlogin_r=undef
12125                 getlogin_r_proto=0
12126                 ;;
12127         esac
12128         ;;
12129 *)      getlogin_r_proto=0
12130         ;;
12131 esac
12132
12133 : see if getmnt exists
12134 set getmnt d_getmnt
12135 eval $inlibc
12136
12137 : see if getmntent exists
12138 set getmntent d_getmntent
12139 eval $inlibc
12140
12141 : see if getnetbyaddr exists
12142 set getnetbyaddr d_getnbyaddr
12143 eval $inlibc
12144
12145 : see if getnetbyname exists
12146 set getnetbyname d_getnbyname
12147 eval $inlibc
12148
12149 : see if getnetent exists
12150 set getnetent d_getnent
12151 eval $inlibc
12152
12153 : see if getnetbyaddr_r exists
12154 set getnetbyaddr_r d_getnetbyaddr_r
12155 eval $inlibc
12156 case "$d_getnetbyaddr_r" in
12157 "$define")
12158         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12159         case "netdb" in
12160         time)
12161                 hdrs="$hdrs $i_systime sys/time.h"
12162                 ;;
12163         esac
12164         case "$d_getnetbyaddr_r_proto:$usethreads" in
12165         ":define")      d_getnetbyaddr_r_proto=define
12166                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12167                 eval $hasproto ;;
12168         *)      ;;
12169         esac
12170         case "$d_getnetbyaddr_r_proto" in
12171         define)
12172         case "$getnetbyaddr_r_proto" in
12173         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12174         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12175         esac
12176         case "$getnetbyaddr_r_proto" in
12177         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12178         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12179         esac
12180         case "$getnetbyaddr_r_proto" in
12181         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12182         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12183         esac
12184         case "$getnetbyaddr_r_proto" in
12185         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12186         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12187         esac
12188         case "$getnetbyaddr_r_proto" in
12189         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12190         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12191         esac
12192         case "$getnetbyaddr_r_proto" in
12193         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12194         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12195         esac
12196         case "$getnetbyaddr_r_proto" in
12197         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12198         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12199         esac
12200         case "$getnetbyaddr_r_proto" in
12201         ''|0)   d_getnetbyaddr_r=undef
12202                 getnetbyaddr_r_proto=0
12203                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12204         * )     case "$getnetbyaddr_r_proto" in
12205                 REENTRANT_PROTO*) ;;
12206                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12207                 esac
12208                 echo "Prototype: $try" ;;
12209         esac
12210         ;;
12211         *)      case "$usethreads" in
12212                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12213                 esac
12214                 d_getnetbyaddr_r=undef
12215                 getnetbyaddr_r_proto=0
12216                 ;;
12217         esac
12218         ;;
12219 *)      getnetbyaddr_r_proto=0
12220         ;;
12221 esac
12222
12223 : see if getnetbyname_r exists
12224 set getnetbyname_r d_getnetbyname_r
12225 eval $inlibc
12226 case "$d_getnetbyname_r" in
12227 "$define")
12228         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12229         case "netdb" in
12230         time)
12231                 hdrs="$hdrs $i_systime sys/time.h"
12232                 ;;
12233         esac
12234         case "$d_getnetbyname_r_proto:$usethreads" in
12235         ":define")      d_getnetbyname_r_proto=define
12236                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12237                 eval $hasproto ;;
12238         *)      ;;
12239         esac
12240         case "$d_getnetbyname_r_proto" in
12241         define)
12242         case "$getnetbyname_r_proto" in
12243         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12244         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12245         esac
12246         case "$getnetbyname_r_proto" in
12247         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12248         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12249         esac
12250         case "$getnetbyname_r_proto" in
12251         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
12252         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
12253         esac
12254         case "$getnetbyname_r_proto" in
12255         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
12256         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
12257         esac
12258         case "$getnetbyname_r_proto" in
12259         ''|0)   d_getnetbyname_r=undef
12260                 getnetbyname_r_proto=0
12261                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
12262         * )     case "$getnetbyname_r_proto" in
12263                 REENTRANT_PROTO*) ;;
12264                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
12265                 esac
12266                 echo "Prototype: $try" ;;
12267         esac
12268         ;;
12269         *)      case "$usethreads" in
12270                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
12271                 esac
12272                 d_getnetbyname_r=undef
12273                 getnetbyname_r_proto=0
12274                 ;;
12275         esac
12276         ;;
12277 *)      getnetbyname_r_proto=0
12278         ;;
12279 esac
12280
12281 : see if getnetent_r exists
12282 set getnetent_r d_getnetent_r
12283 eval $inlibc
12284 case "$d_getnetent_r" in
12285 "$define")
12286         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12287         case "netdb" in
12288         time)
12289                 hdrs="$hdrs $i_systime sys/time.h"
12290                 ;;
12291         esac
12292         case "$d_getnetent_r_proto:$usethreads" in
12293         ":define")      d_getnetent_r_proto=define
12294                 set d_getnetent_r_proto getnetent_r $hdrs
12295                 eval $hasproto ;;
12296         *)      ;;
12297         esac
12298         case "$d_getnetent_r_proto" in
12299         define)
12300         case "$getnetent_r_proto" in
12301         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
12302         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
12303         esac
12304         case "$getnetent_r_proto" in
12305         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
12306         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
12307         esac
12308         case "$getnetent_r_proto" in
12309         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
12310         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
12311         esac
12312         case "$getnetent_r_proto" in
12313         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
12314         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
12315         esac
12316         case "$getnetent_r_proto" in
12317         ''|0) try='int getnetent_r(struct netent*, char*, int);'
12318         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
12319         esac
12320         case "$getnetent_r_proto" in
12321         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
12322         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
12323         esac
12324         case "$getnetent_r_proto" in
12325         ''|0)   d_getnetent_r=undef
12326                 getnetent_r_proto=0
12327                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
12328         * )     case "$getnetent_r_proto" in
12329                 REENTRANT_PROTO*) ;;
12330                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
12331                 esac
12332                 echo "Prototype: $try" ;;
12333         esac
12334         ;;
12335         *)      case "$usethreads" in
12336                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
12337                 esac
12338                 d_getnetent_r=undef
12339                 getnetent_r_proto=0
12340                 ;;
12341         esac
12342         ;;
12343 *)      getnetent_r_proto=0
12344         ;;
12345 esac
12346
12347 : see if prototypes for various getnetxxx netdb.h functions are available
12348 echo " "
12349 set d_getnetprotos getnetent $i_netdb netdb.h
12350 eval $hasproto
12351
12352 : see if getpagesize exists
12353 set getpagesize d_getpagsz
12354 eval $inlibc
12355
12356
12357 : see if getprotobyname exists
12358 set getprotobyname d_getpbyname
12359 eval $inlibc
12360
12361 : see if getprotobynumber exists
12362 set getprotobynumber d_getpbynumber
12363 eval $inlibc
12364
12365 : see if getprotoent exists
12366 set getprotoent d_getpent
12367 eval $inlibc
12368
12369 : see if getpgid exists
12370 set getpgid d_getpgid
12371 eval $inlibc
12372
12373 : see if getpgrp2 exists
12374 set getpgrp2 d_getpgrp2
12375 eval $inlibc
12376
12377 : see if getppid exists
12378 set getppid d_getppid
12379 eval $inlibc
12380
12381 : see if getpriority exists
12382 set getpriority d_getprior
12383 eval $inlibc
12384
12385 : see if getprotobyname_r exists
12386 set getprotobyname_r d_getprotobyname_r
12387 eval $inlibc
12388 case "$d_getprotobyname_r" in
12389 "$define")
12390         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12391         case "netdb" in
12392         time)
12393                 hdrs="$hdrs $i_systime sys/time.h"
12394                 ;;
12395         esac
12396         case "$d_getprotobyname_r_proto:$usethreads" in
12397         ":define")      d_getprotobyname_r_proto=define
12398                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
12399                 eval $hasproto ;;
12400         *)      ;;
12401         esac
12402         case "$d_getprotobyname_r_proto" in
12403         define)
12404         case "$getprotobyname_r_proto" in
12405         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
12406         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
12407         esac
12408         case "$getprotobyname_r_proto" in
12409         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
12410         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
12411         esac
12412         case "$getprotobyname_r_proto" in
12413         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
12414         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
12415         esac
12416         case "$getprotobyname_r_proto" in
12417         ''|0)   d_getprotobyname_r=undef
12418                 getprotobyname_r_proto=0
12419                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
12420         * )     case "$getprotobyname_r_proto" in
12421                 REENTRANT_PROTO*) ;;
12422                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
12423                 esac
12424                 echo "Prototype: $try" ;;
12425         esac
12426         ;;
12427         *)      case "$usethreads" in
12428                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
12429                 esac
12430                 d_getprotobyname_r=undef
12431                 getprotobyname_r_proto=0
12432                 ;;
12433         esac
12434         ;;
12435 *)      getprotobyname_r_proto=0
12436         ;;
12437 esac
12438
12439 : see if getprotobynumber_r exists
12440 set getprotobynumber_r d_getprotobynumber_r
12441 eval $inlibc
12442 case "$d_getprotobynumber_r" in
12443 "$define")
12444         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12445         case "netdb" in
12446         time)
12447                 hdrs="$hdrs $i_systime sys/time.h"
12448                 ;;
12449         esac
12450         case "$d_getprotobynumber_r_proto:$usethreads" in
12451         ":define")      d_getprotobynumber_r_proto=define
12452                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
12453                 eval $hasproto ;;
12454         *)      ;;
12455         esac
12456         case "$d_getprotobynumber_r_proto" in
12457         define)
12458         case "$getprotobynumber_r_proto" in
12459         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
12460         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
12461         esac
12462         case "$getprotobynumber_r_proto" in
12463         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
12464         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
12465         esac
12466         case "$getprotobynumber_r_proto" in
12467         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
12468         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
12469         esac
12470         case "$getprotobynumber_r_proto" in
12471         ''|0)   d_getprotobynumber_r=undef
12472                 getprotobynumber_r_proto=0
12473                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
12474         * )     case "$getprotobynumber_r_proto" in
12475                 REENTRANT_PROTO*) ;;
12476                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
12477                 esac
12478                 echo "Prototype: $try" ;;
12479         esac
12480         ;;
12481         *)      case "$usethreads" in
12482                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
12483                 esac
12484                 d_getprotobynumber_r=undef
12485                 getprotobynumber_r_proto=0
12486                 ;;
12487         esac
12488         ;;
12489 *)      getprotobynumber_r_proto=0
12490         ;;
12491 esac
12492
12493 : see if getprotoent_r exists
12494 set getprotoent_r d_getprotoent_r
12495 eval $inlibc
12496 case "$d_getprotoent_r" in
12497 "$define")
12498         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12499         case "netdb" in
12500         time)
12501                 hdrs="$hdrs $i_systime sys/time.h"
12502                 ;;
12503         esac
12504         case "$d_getprotoent_r_proto:$usethreads" in
12505         ":define")      d_getprotoent_r_proto=define
12506                 set d_getprotoent_r_proto getprotoent_r $hdrs
12507                 eval $hasproto ;;
12508         *)      ;;
12509         esac
12510         case "$d_getprotoent_r_proto" in
12511         define)
12512         case "$getprotoent_r_proto" in
12513         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
12514         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
12515         esac
12516         case "$getprotoent_r_proto" in
12517         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
12518         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
12519         esac
12520         case "$getprotoent_r_proto" in
12521         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
12522         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
12523         esac
12524         case "$getprotoent_r_proto" in
12525         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
12526         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
12527         esac
12528         case "$getprotoent_r_proto" in
12529         ''|0)   d_getprotoent_r=undef
12530                 getprotoent_r_proto=0
12531                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
12532         * )     case "$getprotoent_r_proto" in
12533                 REENTRANT_PROTO*) ;;
12534                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
12535                 esac
12536                 echo "Prototype: $try" ;;
12537         esac
12538         ;;
12539         *)      case "$usethreads" in
12540                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
12541                 esac
12542                 d_getprotoent_r=undef
12543                 getprotoent_r_proto=0
12544                 ;;
12545         esac
12546         ;;
12547 *)      getprotoent_r_proto=0
12548         ;;
12549 esac
12550
12551 : see if prototypes for various getprotoxxx netdb.h functions are available
12552 echo " "
12553 set d_getprotoprotos getprotoent $i_netdb netdb.h
12554 eval $hasproto
12555
12556 : see if getprpwnam exists
12557 set getprpwnam d_getprpwnam
12558 eval $inlibc
12559
12560 : see if getpwent exists
12561 set getpwent d_getpwent
12562 eval $inlibc
12563
12564 : see if getpwent_r exists
12565 set getpwent_r d_getpwent_r
12566 eval $inlibc
12567 case "$d_getpwent_r" in
12568 "$define")
12569         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12570         case "pwd" in
12571         time)
12572                 hdrs="$hdrs $i_systime sys/time.h"
12573                 ;;
12574         esac
12575         case "$d_getpwent_r_proto:$usethreads" in
12576         ":define")      d_getpwent_r_proto=define
12577                 set d_getpwent_r_proto getpwent_r $hdrs
12578                 eval $hasproto ;;
12579         *)      ;;
12580         esac
12581         case "$d_getpwent_r_proto" in
12582         define)
12583         case "$getpwent_r_proto" in
12584         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
12585         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
12586         esac
12587         case "$getpwent_r_proto" in
12588         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
12589         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
12590         esac
12591         case "$getpwent_r_proto" in
12592         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
12593         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
12594         esac
12595         case "$getpwent_r_proto" in
12596         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
12597         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
12598         esac
12599         case "$getpwent_r_proto" in
12600         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
12601         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
12602         esac
12603         case "$getpwent_r_proto" in
12604         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
12605         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
12606         esac
12607         case "$getpwent_r_proto" in
12608         ''|0)   d_getpwent_r=undef
12609                 getpwent_r_proto=0
12610                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
12611         * )     case "$getpwent_r_proto" in
12612                 REENTRANT_PROTO*) ;;
12613                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
12614                 esac
12615                 echo "Prototype: $try" ;;
12616         esac
12617         ;;
12618         *)      case "$usethreads" in
12619                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
12620                 esac
12621                 d_getpwent_r=undef
12622                 getpwent_r_proto=0
12623                 ;;
12624         esac
12625         ;;
12626 *)      getpwent_r_proto=0
12627         ;;
12628 esac
12629
12630 : see if getpwnam_r exists
12631 set getpwnam_r d_getpwnam_r
12632 eval $inlibc
12633 case "$d_getpwnam_r" in
12634 "$define")
12635         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12636         case "pwd" in
12637         time)
12638                 hdrs="$hdrs $i_systime sys/time.h"
12639                 ;;
12640         esac
12641         case "$d_getpwnam_r_proto:$usethreads" in
12642         ":define")      d_getpwnam_r_proto=define
12643                 set d_getpwnam_r_proto getpwnam_r $hdrs
12644                 eval $hasproto ;;
12645         *)      ;;
12646         esac
12647         case "$d_getpwnam_r_proto" in
12648         define)
12649         case "$getpwnam_r_proto" in
12650         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
12651         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
12652         esac
12653         case "$getpwnam_r_proto" in
12654         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
12655         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
12656         esac
12657         case "$getpwnam_r_proto" in
12658         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
12659         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
12660         esac
12661         case "$getpwnam_r_proto" in
12662         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
12663         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
12664         esac
12665         case "$getpwnam_r_proto" in
12666         ''|0)   d_getpwnam_r=undef
12667                 getpwnam_r_proto=0
12668                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
12669         * )     case "$getpwnam_r_proto" in
12670                 REENTRANT_PROTO*) ;;
12671                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
12672                 esac
12673                 echo "Prototype: $try" ;;
12674         esac
12675         ;;
12676         *)      case "$usethreads" in
12677                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
12678                 esac
12679                 d_getpwnam_r=undef
12680                 getpwnam_r_proto=0
12681                 ;;
12682         esac
12683         ;;
12684 *)      getpwnam_r_proto=0
12685         ;;
12686 esac
12687
12688 : see if getpwuid_r exists
12689 set getpwuid_r d_getpwuid_r
12690 eval $inlibc
12691 case "$d_getpwuid_r" in
12692 "$define")
12693         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12694         case "pwd" in
12695         time)
12696                 hdrs="$hdrs $i_systime sys/time.h"
12697                 ;;
12698         esac
12699         case "$d_getpwuid_r_proto:$usethreads" in
12700         ":define")      d_getpwuid_r_proto=define
12701                 set d_getpwuid_r_proto getpwuid_r $hdrs
12702                 eval $hasproto ;;
12703         *)      ;;
12704         esac
12705         case "$d_getpwuid_r_proto" in
12706         define)
12707         case "$getpwuid_r_proto" in
12708         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
12709         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
12710         esac
12711         case "$getpwuid_r_proto" in
12712         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
12713         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
12714         esac
12715         case "$getpwuid_r_proto" in
12716         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
12717         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
12718         esac
12719         case "$getpwuid_r_proto" in
12720         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
12721         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
12722         esac
12723         case "$getpwuid_r_proto" in
12724         ''|0)   d_getpwuid_r=undef
12725                 getpwuid_r_proto=0
12726                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
12727         * )     case "$getpwuid_r_proto" in
12728                 REENTRANT_PROTO*) ;;
12729                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
12730                 esac
12731                 echo "Prototype: $try" ;;
12732         esac
12733         ;;
12734         *)      case "$usethreads" in
12735                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
12736                 esac
12737                 d_getpwuid_r=undef
12738                 getpwuid_r_proto=0
12739                 ;;
12740         esac
12741         ;;
12742 *)      getpwuid_r_proto=0
12743         ;;
12744 esac
12745
12746
12747 : see if getservbyname exists
12748 set getservbyname d_getsbyname
12749 eval $inlibc
12750
12751 : see if getservbyport exists
12752 set getservbyport d_getsbyport
12753 eval $inlibc
12754
12755 : see if getservent exists
12756 set getservent d_getsent
12757 eval $inlibc
12758
12759 : see if getservbyname_r exists
12760 set getservbyname_r d_getservbyname_r
12761 eval $inlibc
12762 case "$d_getservbyname_r" in
12763 "$define")
12764         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12765         case "netdb" in
12766         time)
12767                 hdrs="$hdrs $i_systime sys/time.h"
12768                 ;;
12769         esac
12770         case "$d_getservbyname_r_proto:$usethreads" in
12771         ":define")      d_getservbyname_r_proto=define
12772                 set d_getservbyname_r_proto getservbyname_r $hdrs
12773                 eval $hasproto ;;
12774         *)      ;;
12775         esac
12776         case "$d_getservbyname_r_proto" in
12777         define)
12778         case "$getservbyname_r_proto" in
12779         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
12780         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
12781         esac
12782         case "$getservbyname_r_proto" in
12783         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
12784         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
12785         esac
12786         case "$getservbyname_r_proto" in
12787         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
12788         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
12789         esac
12790         case "$getservbyname_r_proto" in
12791         ''|0)   d_getservbyname_r=undef
12792                 getservbyname_r_proto=0
12793                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
12794         * )     case "$getservbyname_r_proto" in
12795                 REENTRANT_PROTO*) ;;
12796                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
12797                 esac
12798                 echo "Prototype: $try" ;;
12799         esac
12800         ;;
12801         *)      case "$usethreads" in
12802                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
12803                 esac
12804                 d_getservbyname_r=undef
12805                 getservbyname_r_proto=0
12806                 ;;
12807         esac
12808         ;;
12809 *)      getservbyname_r_proto=0
12810         ;;
12811 esac
12812
12813 : see if getservbyport_r exists
12814 set getservbyport_r d_getservbyport_r
12815 eval $inlibc
12816 case "$d_getservbyport_r" in
12817 "$define")
12818         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12819         case "netdb" in
12820         time)
12821                 hdrs="$hdrs $i_systime sys/time.h"
12822                 ;;
12823         esac
12824         case "$d_getservbyport_r_proto:$usethreads" in
12825         ":define")      d_getservbyport_r_proto=define
12826                 set d_getservbyport_r_proto getservbyport_r $hdrs
12827                 eval $hasproto ;;
12828         *)      ;;
12829         esac
12830         case "$d_getservbyport_r_proto" in
12831         define)
12832         case "$getservbyport_r_proto" in
12833         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
12834         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
12835         esac
12836         case "$getservbyport_r_proto" in
12837         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
12838         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
12839         esac
12840         case "$getservbyport_r_proto" in
12841         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
12842         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
12843         esac
12844         case "$getservbyport_r_proto" in
12845         ''|0)   d_getservbyport_r=undef
12846                 getservbyport_r_proto=0
12847                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
12848         * )     case "$getservbyport_r_proto" in
12849                 REENTRANT_PROTO*) ;;
12850                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
12851                 esac
12852                 echo "Prototype: $try" ;;
12853         esac
12854         ;;
12855         *)      case "$usethreads" in
12856                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
12857                 esac
12858                 d_getservbyport_r=undef
12859                 getservbyport_r_proto=0
12860                 ;;
12861         esac
12862         ;;
12863 *)      getservbyport_r_proto=0
12864         ;;
12865 esac
12866
12867 : see if getservent_r exists
12868 set getservent_r d_getservent_r
12869 eval $inlibc
12870 case "$d_getservent_r" in
12871 "$define")
12872         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12873         case "netdb" in
12874         time)
12875                 hdrs="$hdrs $i_systime sys/time.h"
12876                 ;;
12877         esac
12878         case "$d_getservent_r_proto:$usethreads" in
12879         ":define")      d_getservent_r_proto=define
12880                 set d_getservent_r_proto getservent_r $hdrs
12881                 eval $hasproto ;;
12882         *)      ;;
12883         esac
12884         case "$d_getservent_r_proto" in
12885         define)
12886         case "$getservent_r_proto" in
12887         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
12888         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
12889         esac
12890         case "$getservent_r_proto" in
12891         ''|0) try='int getservent_r(struct servent*, char*, int);'
12892         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
12893         esac
12894         case "$getservent_r_proto" in
12895         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
12896         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
12897         esac
12898         case "$getservent_r_proto" in
12899         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
12900         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
12901         esac
12902         case "$getservent_r_proto" in
12903         ''|0)   d_getservent_r=undef
12904                 getservent_r_proto=0
12905                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
12906         * )     case "$getservent_r_proto" in
12907                 REENTRANT_PROTO*) ;;
12908                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
12909                 esac
12910                 echo "Prototype: $try" ;;
12911         esac
12912         ;;
12913         *)      case "$usethreads" in
12914                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
12915                 esac
12916                 d_getservent_r=undef
12917                 getservent_r_proto=0
12918                 ;;
12919         esac
12920         ;;
12921 *)      getservent_r_proto=0
12922         ;;
12923 esac
12924
12925 : see if prototypes for various getservxxx netdb.h functions are available
12926 echo " "
12927 set d_getservprotos getservent $i_netdb netdb.h
12928 eval $hasproto
12929
12930 : see if getspnam exists
12931 set getspnam d_getspnam
12932 eval $inlibc
12933
12934 : see if this is a shadow.h system
12935 set shadow.h i_shadow
12936 eval $inhdr
12937
12938 : see if getspnam_r exists
12939 set getspnam_r d_getspnam_r
12940 eval $inlibc
12941 case "$d_getspnam_r" in
12942 "$define")
12943         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
12944         case "shadow" in
12945         time)
12946                 hdrs="$hdrs $i_systime sys/time.h"
12947                 ;;
12948         esac
12949         case "$d_getspnam_r_proto:$usethreads" in
12950         ":define")      d_getspnam_r_proto=define
12951                 set d_getspnam_r_proto getspnam_r $hdrs
12952                 eval $hasproto ;;
12953         *)      ;;
12954         esac
12955         case "$d_getspnam_r_proto" in
12956         define)
12957         case "$getspnam_r_proto" in
12958         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
12959         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
12960         esac
12961         case "$getspnam_r_proto" in
12962         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
12963         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
12964         esac
12965         case "$getspnam_r_proto" in
12966         ''|0)   d_getspnam_r=undef
12967                 getspnam_r_proto=0
12968                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
12969         * )     case "$getspnam_r_proto" in
12970                 REENTRANT_PROTO*) ;;
12971                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
12972                 esac
12973                 echo "Prototype: $try" ;;
12974         esac
12975         ;;
12976         *)      case "$usethreads" in
12977                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
12978                 esac
12979                 d_getspnam_r=undef
12980                 getspnam_r_proto=0
12981                 ;;
12982         esac
12983         ;;
12984 *)      getspnam_r_proto=0
12985         ;;
12986 esac
12987
12988 : see if gettimeofday or ftime exists
12989 set gettimeofday d_gettimeod
12990 eval $inlibc
12991 case "$d_gettimeod" in
12992 "$undef")
12993         set ftime d_ftime 
12994         eval $inlibc
12995         ;;
12996 *)
12997         val="$undef"; set d_ftime; eval $setvar
12998         ;;
12999 esac
13000 case "$d_gettimeod$d_ftime" in
13001 "$undef$undef")
13002         echo " "
13003         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
13004         ;;
13005 esac
13006
13007 : see if gmtime_r exists
13008 set gmtime_r d_gmtime_r
13009 eval $inlibc
13010 case "$d_gmtime_r" in
13011 "$define")
13012         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
13013         case "time" in
13014         time)
13015                 hdrs="$hdrs $i_systime sys/time.h"
13016                 ;;
13017         esac
13018         case "$d_gmtime_r_proto:$usethreads" in
13019         ":define")      d_gmtime_r_proto=define
13020                 set d_gmtime_r_proto gmtime_r $hdrs
13021                 eval $hasproto ;;
13022         *)      ;;
13023         esac
13024         case "$d_gmtime_r_proto" in
13025         define)
13026         case "$gmtime_r_proto" in
13027         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13028         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13029         esac
13030         case "$gmtime_r_proto" in
13031         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13032         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13033         esac
13034         case "$gmtime_r_proto" in
13035         ''|0)   d_gmtime_r=undef
13036                 gmtime_r_proto=0
13037                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13038         * )     case "$gmtime_r_proto" in
13039                 REENTRANT_PROTO*) ;;
13040                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13041                 esac
13042                 echo "Prototype: $try" ;;
13043         esac
13044         ;;
13045         *)      case "$usethreads" in
13046                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13047                 esac
13048                 d_gmtime_r=undef
13049                 gmtime_r_proto=0
13050                 ;;
13051         esac
13052         ;;
13053 *)      gmtime_r_proto=0
13054         ;;
13055 esac
13056
13057 : see if hasmntopt exists
13058 set hasmntopt d_hasmntopt
13059 eval $inlibc
13060
13061 : see if this is a netinet/in.h or sys/in.h system
13062 set netinet/in.h i_niin sys/in.h i_sysin
13063 eval $inhdr
13064
13065 : see if arpa/inet.h has to be included
13066 set arpa/inet.h i_arpainet
13067 eval $inhdr
13068
13069 : see if htonl --and friends-- exists
13070 val=''
13071 set htonl val
13072 eval $inlibc
13073
13074 : Maybe they are macros.
13075 case "$val" in
13076 $undef)
13077         $cat >htonl.c <<EOM
13078 #include <stdio.h>
13079 #include <sys/types.h>
13080 #$i_niin I_NETINET_IN
13081 #$i_sysin I_SYS_IN
13082 #$i_arpainet I_ARPA_INET
13083 #ifdef I_NETINET_IN
13084 #include <netinet/in.h>
13085 #endif
13086 #ifdef I_SYS_IN
13087 #include <sys/in.h>
13088 #endif
13089 #ifdef I_ARPA_INET
13090 #include <arpa/inet.h>
13091 #endif
13092 #ifdef htonl
13093 printf("Defined as a macro.");
13094 #endif
13095 EOM
13096         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
13097         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
13098                 val="$define"
13099                 echo "But it seems to be defined as a macro." >&4
13100         fi
13101         $rm -f htonl.?
13102         ;;
13103 esac
13104 set d_htonl
13105 eval $setvar
13106
13107 : index or strchr
13108 echo " "
13109 if set index val -f; eval $csym; $val; then
13110         if set strchr val -f d_strchr; eval $csym; $val; then
13111                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
13112                         val="$define"
13113                         vali="$undef"
13114                         echo "strchr() found." >&4
13115                 else
13116                         val="$undef"
13117                         vali="$define"
13118                         echo "index() found." >&4
13119                 fi
13120         else
13121                 val="$undef"
13122                 vali="$define"
13123                 echo "index() found." >&4
13124         fi
13125 else
13126         if set strchr val -f d_strchr; eval $csym; $val; then
13127                 val="$define"
13128                 vali="$undef"
13129                 echo "strchr() found." >&4
13130         else
13131                 echo "No index() or strchr() found!" >&4
13132                 val="$undef"
13133                 vali="$undef"
13134         fi
13135 fi
13136 set d_strchr; eval $setvar
13137 val="$vali"
13138 set d_index; eval $setvar
13139
13140 : check whether inet_aton exists
13141 set inet_aton d_inetaton
13142 eval $inlibc
13143
13144 : Look for isascii
13145 echo " "
13146 $cat >isascii.c <<'EOCP'
13147 #include <stdio.h>
13148 #include <ctype.h>
13149 int main() {
13150         int c = 'A';
13151         if (isascii(c))
13152                 exit(0);
13153         else
13154                 exit(1);
13155 }
13156 EOCP
13157 set isascii
13158 if eval $compile; then
13159         echo "isascii() found." >&4
13160         val="$define"
13161 else
13162         echo "isascii() NOT found." >&4
13163         val="$undef"
13164 fi
13165 set d_isascii
13166 eval $setvar
13167 $rm -f isascii*
13168
13169 : see if isfinite exists
13170 set isfinite d_isfinite
13171 eval $inlibc
13172
13173 : see if isinf exists
13174 set isinf d_isinf
13175 eval $inlibc
13176
13177 : see if isnan exists
13178 set isnan d_isnan
13179 eval $inlibc
13180
13181 : see if isnanl exists
13182 set isnanl d_isnanl
13183 eval $inlibc
13184
13185 : see if killpg exists
13186 set killpg d_killpg
13187 eval $inlibc
13188
13189 : see if lchown exists
13190 echo " "
13191 $cat > try.c <<'EOCP'
13192 /* System header to define __stub macros and hopefully few prototypes,
13193     which can conflict with char lchown(); below.  */
13194 #include <assert.h>
13195 /* Override any gcc2 internal prototype to avoid an error.  */
13196 /* We use char because int might match the return type of a gcc2
13197    builtin and then its argument prototype would still apply.  */
13198 char lchown();
13199 int main() {
13200     /*  The GNU C library defines this for functions which it implements
13201         to always fail with ENOSYS.  Some functions are actually named
13202         something starting with __ and the normal name is an alias.  */
13203 #if defined (__stub_lchown) || defined (__stub___lchown)
13204 choke me
13205 #else
13206 lchown();
13207 #endif
13208 ; return 0; }
13209 EOCP
13210 set try
13211 if eval $compile; then
13212     $echo "lchown() found." >&4
13213     val="$define"
13214 else
13215     $echo "lchown() NOT found." >&4
13216     val="$undef"
13217 fi
13218 set d_lchown
13219 eval $setvar
13220
13221 : See if number of significant digits in a double precision number is known
13222 echo " "
13223 $cat >ldbl_dig.c <<EOM
13224 #$i_limits I_LIMITS
13225 #$i_float I_FLOAT
13226 #ifdef I_LIMITS
13227 #include <limits.h>
13228 #endif
13229 #ifdef I_FLOAT
13230 #include <float.h>
13231 #endif
13232 #ifdef LDBL_DIG
13233 printf("Contains LDBL_DIG");
13234 #endif
13235 EOM
13236 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13237 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13238         echo "LDBL_DIG found." >&4
13239         val="$define"
13240 else
13241         echo "LDBL_DIG NOT found." >&4
13242         val="$undef"
13243 fi
13244 $rm -f ldbl_dig.?
13245 set d_ldbl_dig
13246 eval $setvar
13247
13248 : see if link exists
13249 set link d_link
13250 eval $inlibc
13251
13252 : see if localtime_r exists
13253 set localtime_r d_localtime_r
13254 eval $inlibc
13255 case "$d_localtime_r" in
13256 "$define")
13257         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
13258         case "time" in
13259         time)
13260                 hdrs="$hdrs $i_systime sys/time.h"
13261                 ;;
13262         esac
13263         case "$d_localtime_r_proto:$usethreads" in
13264         ":define")      d_localtime_r_proto=define
13265                 set d_localtime_r_proto localtime_r $hdrs
13266                 eval $hasproto ;;
13267         *)      ;;
13268         esac
13269         case "$d_localtime_r_proto" in
13270         define)
13271         case "$localtime_r_proto" in
13272         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13273         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13274         esac
13275         case "$localtime_r_proto" in
13276         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13277         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13278         esac
13279         case "$localtime_r_proto" in
13280         ''|0)   d_localtime_r=undef
13281                 localtime_r_proto=0
13282                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13283         * )     case "$localtime_r_proto" in
13284                 REENTRANT_PROTO*) ;;
13285                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13286                 esac
13287                 echo "Prototype: $try" ;;
13288         esac
13289         ;;
13290         *)      case "$usethreads" in
13291                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13292                 esac
13293                 d_localtime_r=undef
13294                 localtime_r_proto=0
13295                 ;;
13296         esac
13297         ;;
13298 *)      localtime_r_proto=0
13299         ;;
13300 esac
13301
13302 : see if localeconv exists
13303 set localeconv d_locconv
13304 eval $inlibc
13305
13306 : see if lockf exists
13307 set lockf d_lockf
13308 eval $inlibc
13309
13310 : see if prototype for lseek is available
13311 echo " "
13312 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
13313 eval $hasproto
13314
13315 : see if lstat exists
13316 set lstat d_lstat
13317 eval $inlibc
13318
13319 : see if madvise exists
13320 set madvise d_madvise
13321 eval $inlibc
13322
13323 : see if mblen exists
13324 set mblen d_mblen
13325 eval $inlibc
13326
13327 : see if mbstowcs exists
13328 set mbstowcs d_mbstowcs
13329 eval $inlibc
13330
13331 : see if mbtowc exists
13332 set mbtowc d_mbtowc
13333 eval $inlibc
13334
13335 : see if memchr exists
13336 set memchr d_memchr
13337 eval $inlibc
13338
13339 : see if memcmp exists
13340 set memcmp d_memcmp
13341 eval $inlibc
13342
13343 : see if memcpy exists
13344 set memcpy d_memcpy
13345 eval $inlibc
13346
13347 : see if memmove exists
13348 set memmove d_memmove
13349 eval $inlibc
13350
13351 : see if memset exists
13352 set memset d_memset
13353 eval $inlibc
13354
13355 : see if mkdir exists
13356 set mkdir d_mkdir
13357 eval $inlibc
13358
13359 : see if mkdtemp exists
13360 set mkdtemp d_mkdtemp
13361 eval $inlibc
13362
13363 : see if mkfifo exists
13364 set mkfifo d_mkfifo
13365 eval $inlibc
13366
13367 : see if mkstemp exists
13368 set mkstemp d_mkstemp
13369 eval $inlibc
13370
13371 : see if mkstemps exists
13372 set mkstemps d_mkstemps
13373 eval $inlibc
13374
13375 : see if mktime exists
13376 set mktime d_mktime
13377 eval $inlibc
13378
13379 : see if this is a sys/mman.h system
13380 set sys/mman.h i_sysmman
13381 eval $inhdr
13382
13383 : see if mmap exists
13384 set mmap d_mmap
13385 eval $inlibc
13386 : see what shmat returns
13387 : default to something harmless
13388 mmaptype='void *'
13389 case "$i_sysmman$d_mmap" in
13390 "$define$define")
13391         $cat >mmap.c <<'END'
13392 #include <sys/mman.h>
13393 void *mmap();
13394 END
13395         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
13396                 mmaptype='void *'
13397         else
13398                 mmaptype='caddr_t'
13399         fi
13400         echo "and it returns ($mmaptype)." >&4
13401         ;;
13402 esac
13403
13404
13405
13406 : see if mprotect exists
13407 set mprotect d_mprotect
13408 eval $inlibc
13409
13410 : see if msgctl exists
13411 set msgctl d_msgctl
13412 eval $inlibc
13413
13414 : see if msgget exists
13415 set msgget d_msgget
13416 eval $inlibc
13417
13418 : see if msgsnd exists
13419 set msgsnd d_msgsnd
13420 eval $inlibc
13421
13422 : see if msgrcv exists
13423 set msgrcv d_msgrcv
13424 eval $inlibc
13425
13426 : see how much of the 'msg*(2)' library is present.
13427 h_msg=true
13428 echo " "
13429 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
13430 *"$undef"*) h_msg=false;;
13431 esac
13432 case "$osname" in
13433 freebsd)
13434     case "`ipcs 2>&1`" in
13435     "SVID messages"*"not configured"*)
13436         echo "Your $osname does not have the msg*(2) configured." >&4
13437         h_msg=false
13438         val="$undef"
13439         set msgctl d_msgctl
13440         eval $setvar
13441         set msgget d_msgget
13442         eval $setvar
13443         set msgsnd d_msgsnd
13444         eval $setvar
13445         set msgrcv d_msgrcv
13446         eval $setvar
13447         ;;
13448     esac
13449     ;;
13450 esac
13451 : we could also check for sys/ipc.h ...
13452 if $h_msg && $test `./findhdr sys/msg.h`; then
13453         echo "You have the full msg*(2) library." >&4
13454         val="$define"
13455 else
13456         echo "You don't have the full msg*(2) library." >&4
13457         val="$undef"
13458 fi
13459 set d_msg
13460 eval $setvar
13461
13462
13463 echo " "
13464 echo "Checking to see if your system supports struct msghdr..." >&4
13465 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
13466 eval $hasstruct
13467 case "$d_msghdr_s" in
13468 "$define")      echo "Yes, it does."   ;;
13469 *)              echo "No, it doesn't." ;;
13470 esac
13471
13472
13473 : see if msync exists
13474 set msync d_msync
13475 eval $inlibc
13476
13477 : see if munmap exists
13478 set munmap d_munmap
13479 eval $inlibc
13480
13481 : see if nice exists
13482 set nice d_nice
13483 eval $inlibc
13484
13485 : see if this is a langinfo.h system
13486 set langinfo.h i_langinfo
13487 eval $inhdr
13488
13489 : see if nl_langinfo exists
13490 set nl_langinfo d_nl_langinfo
13491 eval $inlibc
13492
13493 : check for length of character
13494 echo " "
13495 case "$charsize" in
13496 '')
13497         echo "Checking to see how big your characters are (hey, you never know)..." >&4
13498         $cat >try.c <<'EOCP'
13499 #include <stdio.h>
13500 int main()
13501 {
13502     printf("%d\n", (int)sizeof(char));
13503     exit(0);
13504 }
13505 EOCP
13506         set try
13507         if eval $compile_ok; then
13508                 dflt=`$run ./try`
13509         else
13510                 dflt='1'
13511                 echo "(I can't seem to compile the test program.  Guessing...)"
13512         fi
13513         ;;
13514 *)
13515         dflt="$charsize"
13516         ;;
13517 esac
13518 rp="What is the size of a character (in bytes)?"
13519 . ./myread
13520 charsize="$ans"
13521 $rm -f try.c try
13522
13523 : check for volatile keyword
13524 echo " "
13525 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
13526 $cat >try.c <<'EOCP'
13527 int main()
13528 {
13529         typedef struct _goo_struct goo_struct;
13530         goo_struct * volatile goo = ((goo_struct *)0);
13531         struct _goo_struct {
13532                 long long_int;
13533                 int reg_int;
13534                 char char_var;
13535         };
13536         typedef unsigned short foo_t;
13537         char *volatile foo;
13538         volatile int bar;
13539         volatile foo_t blech;
13540         foo = foo;
13541 }
13542 EOCP
13543 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
13544         val="$define"
13545         echo "Yup, it does."
13546 else
13547         val="$undef"
13548         echo "Nope, it doesn't."
13549 fi
13550 set d_volatile
13551 eval $setvar
13552 $rm -f try.*
13553
13554
13555 echo " "
13556 $echo "Choosing the C types to be used for Perl's internal types..." >&4
13557
13558 case "$use64bitint:$d_quad:$quadtype" in
13559 define:define:?*)
13560         ivtype="$quadtype"
13561         uvtype="$uquadtype"
13562         ivsize=8
13563         uvsize=8
13564         ;;
13565 *)      ivtype="long"
13566         uvtype="unsigned long"
13567         ivsize=$longsize
13568         uvsize=$longsize
13569         ;;
13570 esac
13571
13572 case "$uselongdouble:$d_longdbl" in
13573 define:define)
13574         nvtype="long double"
13575         nvsize=$longdblsize
13576         ;;
13577 *)      nvtype=double
13578         nvsize=$doublesize
13579         ;;
13580 esac
13581
13582 $echo "(IV will be "$ivtype", $ivsize bytes)"
13583 $echo "(UV will be "$uvtype", $uvsize bytes)"
13584 $echo "(NV will be "$nvtype", $nvsize bytes)"
13585
13586 $cat >try.c <<EOCP
13587 #$i_inttypes I_INTTYPES
13588 #ifdef I_INTTYPES
13589 #include <inttypes.h>
13590 #endif
13591 #include <stdio.h>
13592 int main() {
13593 #ifdef INT8
13594    int8_t i =  INT8_MAX;
13595   uint8_t u = UINT8_MAX;
13596   printf("int8_t\n");
13597 #endif
13598 #ifdef INT16
13599    int16_t i =  INT16_MAX;
13600   uint16_t i = UINT16_MAX;
13601   printf("int16_t\n");
13602 #endif
13603 #ifdef INT32
13604    int32_t i =  INT32_MAX;
13605   uint32_t u = UINT32_MAX;
13606   printf("int32_t\n");
13607 #endif
13608 }
13609 EOCP
13610
13611 case "$i8type" in
13612 '')     case "$charsize" in
13613         1)      i8type=char
13614                 u8type="unsigned char"
13615                 i8size=$charsize
13616                 u8size=$charsize
13617                 ;;
13618         esac
13619         ;;
13620 esac
13621 case "$i8type" in
13622 '')     set try -DINT8
13623         if eval $compile; then
13624                 case "`$run ./try`" in
13625                 int8_t) i8type=int8_t
13626                         u8type=uint8_t
13627                         i8size=1
13628                         u8size=1
13629                         ;;
13630                 esac
13631         fi
13632         ;;
13633 esac
13634 case "$i8type" in
13635 '')     if $test $charsize -ge 1; then
13636                 i8type=char
13637                 u8type="unsigned char"
13638                 i8size=$charsize
13639                 u8size=$charsize
13640         fi
13641         ;;
13642 esac
13643
13644 case "$i16type" in
13645 '')     case "$shortsize" in
13646         2)      i16type=short
13647                 u16type="unsigned short"
13648                 i16size=$shortsize
13649                 u16size=$shortsize
13650                 ;;
13651         esac
13652         ;;
13653 esac
13654 case "$i16type" in
13655 '')     set try -DINT16
13656         if eval $compile; then
13657                 case "`$run ./try`" in
13658                 int16_t)
13659                         i16type=int16_t
13660                         u16type=uint16_t
13661                         i16size=2
13662                         u16size=2
13663                         ;;
13664                 esac
13665         fi
13666         ;;
13667 esac
13668 case "$i16type" in
13669 '')     if $test $shortsize -ge 2; then
13670                 i16type=short
13671                 u16type="unsigned short"
13672                 i16size=$shortsize
13673                 u16size=$shortsize
13674         fi
13675         ;;
13676 esac
13677
13678 case "$i32type" in
13679 '')     case "$longsize" in
13680         4)      i32type=long
13681                 u32type="unsigned long"
13682                 i32size=$longsize
13683                 u32size=$longsize
13684                 ;;
13685         *)      case "$intsize" in
13686                 4)      i32type=int
13687                         u32type="unsigned int"
13688                         i32size=$intsize
13689                         u32size=$intsize
13690                         ;;
13691                 esac
13692                 ;;
13693         esac
13694         ;;
13695 esac
13696 case "$i32type" in
13697 '')     set try -DINT32
13698         if eval $compile; then
13699                 case "`$run ./try`" in
13700                 int32_t)
13701                         i32type=int32_t
13702                         u32type=uint32_t
13703                         i32size=4
13704                         u32size=4
13705                         ;;
13706                 esac
13707         fi
13708         ;;
13709 esac
13710 case "$i32type" in
13711 '')     if $test $intsize -ge 4; then
13712                 i32type=int
13713                 u32type="unsigned int"
13714                 i32size=$intsize
13715                 u32size=$intsize
13716         fi
13717         ;;
13718 esac
13719
13720 case "$i64type" in
13721 '')     case "$d_quad:$quadtype" in
13722         define:?*)
13723                 i64type="$quadtype"
13724                 u64type="$uquadtype"
13725                 i64size=8
13726                 u64size=8
13727                 ;;
13728         esac
13729         ;;
13730 esac
13731
13732 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
13733 : volatile so that the compiler has to store it out to memory.
13734 if test X"$d_volatile" = X"$define"; then
13735         volatile=volatile
13736 fi
13737 $cat <<EOP >try.c
13738 #include <stdio.h>
13739 #include <sys/types.h>
13740 #include <signal.h>
13741 #ifdef SIGFPE
13742 $volatile int bletched = 0;
13743 $signal_t blech(s) int s; { bletched = 1; }
13744 #endif
13745 int main() {
13746     $uvtype u = 0;
13747     $nvtype d;
13748     int     n = 8 * $uvsize;
13749     int     i;
13750 #ifdef SIGFPE
13751     signal(SIGFPE, blech);
13752 #endif
13753
13754     for (i = 0; i < n; i++) {
13755       u = u << 1 | ($uvtype)1;
13756       d = ($nvtype)u;
13757       if (($uvtype)d != u)
13758         break;
13759       if (d <= 0)
13760         break;
13761       d = ($nvtype)(u - 1);
13762       if (($uvtype)d != (u - 1))
13763         break;
13764 #ifdef SIGFPE
13765       if (bletched) {
13766         break;
13767 #endif
13768       } 
13769     }
13770     printf("%d\n", ((i == n) ? -n : i));
13771     exit(0);
13772 }
13773 EOP
13774 set try
13775
13776 d_nv_preserves_uv="$undef"
13777 if eval $compile; then
13778         nv_preserves_uv_bits="`$run ./try`"
13779 fi
13780 case "$nv_preserves_uv_bits" in
13781 \-[1-9]*)       
13782         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
13783         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
13784         d_nv_preserves_uv="$define"
13785         ;;
13786 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
13787         d_nv_preserves_uv="$undef" ;;
13788 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
13789         nv_preserves_uv_bits="$undef" ;;
13790 esac
13791
13792 $rm -f try.* try
13793
13794
13795 : check for off64_t
13796 echo " "
13797 echo "Checking to see if you have off64_t..." >&4
13798 $cat >try.c <<EOCP
13799 #include <sys/types.h>
13800 #include <unistd.h>
13801 int main() { off64_t x = 7; }
13802 EOCP
13803 set try
13804 if eval $compile; then
13805         val="$define"
13806         echo "You have off64_t."
13807 else
13808         val="$undef"
13809         echo "You do not have off64_t."
13810         case "$lseeksize" in
13811         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
13812         esac
13813 fi
13814 $rm -f try.* try
13815 set d_off64_t
13816 eval $setvar
13817
13818 : see if POSIX threads are available
13819 set pthread.h i_pthread
13820 eval $inhdr
13821
13822
13823
13824
13825 : how to create joinable pthreads
13826 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
13827         echo " "
13828         echo "Checking what constant to use for creating joinable pthreads..." >&4 
13829         $cat >try.c <<'EOCP'
13830 #include <pthread.h>
13831 int main() {
13832     int detachstate = JOINABLE;
13833 }
13834 EOCP
13835         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
13836         if eval $compile; then
13837                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
13838                 val="$undef" # Yes, undef.
13839                 set d_old_pthread_create_joinable
13840                 eval $setvar
13841                 val=""
13842                 set old_pthread_create_joinable
13843                 eval $setvar
13844         else
13845                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
13846                 if eval $compile; then
13847                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
13848                         val="$define"
13849                         set d_old_pthread_create_joinable
13850                         eval $setvar
13851                         val=PTHREAD_CREATE_UNDETACHED
13852                         set old_pthread_create_joinable
13853                         eval $setvar
13854                 else            
13855                         set try -DJOINABLE=__UNDETACHED
13856                         if eval $compile; then
13857                                 echo "You seem to use __UNDETACHED." >&4
13858                                 val="$define"
13859                                 set d_old_pthread_create_joinable
13860                                 eval $setvar
13861                                 val=__UNDETACHED
13862                                 set old_pthread_create_joinable
13863                                 eval $setvar
13864                         else
13865                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
13866                                 val="$define"
13867                                 set d_old_pthread_create_joinable
13868                                 eval $setvar
13869                                 val=0
13870                                 set old_pthread_create_joinable
13871                                 eval $setvar
13872                         fi
13873                 fi
13874         fi
13875         $rm -f try try.*
13876 else
13877     d_old_pthread_create_joinable="$undef"
13878     old_pthread_create_joinable=""
13879 fi
13880
13881 : see if pause exists
13882 set pause d_pause
13883 eval $inlibc
13884
13885 : see if pipe exists
13886 set pipe d_pipe
13887 eval $inlibc
13888
13889 : see if poll exists
13890 set poll d_poll
13891 eval $inlibc
13892
13893 : see if readlink exists
13894 set readlink d_readlink
13895 eval $inlibc
13896
13897 echo " "
13898 procselfexe=''
13899 val="$undef"
13900 case "$d_readlink" in
13901 "$define")
13902         if $issymlink /proc/self/exe ; then
13903                 $ls -l /proc/self/exe > reflect
13904                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
13905                         echo "You have Linux-like /proc/self/exe."
13906                         procselfexe='"/proc/self/exe"'
13907                         val="$define"
13908                 fi
13909         fi
13910         if $issymlink /proc/curproc/file ; then
13911                 $ls -l /proc/curproc/file > reflect
13912                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
13913                         echo "You have BSD-like /proc/curproc/file."
13914                         procselfexe='"/proc/curproc/file"'
13915                         val="$define"
13916                 fi
13917         fi
13918         ;;
13919 esac
13920 $rm -f reflect
13921 set d_procselfexe
13922 eval $setvar
13923
13924 : see whether the pthread_atfork exists
13925 $cat >try.c <<EOP
13926 #include <pthread.h>
13927 #include <stdio.h>
13928 int main() {
13929 #ifdef  PTHREAD_ATFORK
13930         pthread_atfork(NULL,NULL,NULL);
13931 #endif
13932 }
13933 EOP
13934
13935 : see if pthread_atfork exists
13936 set try -DPTHREAD_ATFORK
13937 if eval $compile; then
13938     val="$define"
13939 else
13940     val="$undef"
13941 fi
13942 case "$usethreads" in
13943 $define)
13944         case "$val" in
13945         $define) echo 'pthread_atfork found.' >&4        ;;
13946         *)       echo 'pthread_atfork NOT found.' >&4    ;;
13947         esac
13948 esac
13949 set d_pthread_atfork
13950 eval $setvar
13951
13952
13953 : see whether the various POSIXish _yields exist
13954 $cat >try.c <<EOP
13955 #include <pthread.h>
13956 #include <stdio.h>
13957 int main() {
13958 #ifdef SCHED_YIELD
13959         sched_yield();
13960 #else
13961 #ifdef PTHREAD_YIELD
13962         pthread_yield();
13963 #else
13964 #ifdef PTHREAD_YIELD_NULL
13965         pthread_yield(NULL);
13966 #endif
13967 #endif
13968 #endif
13969 }
13970 EOP
13971 : see if sched_yield exists
13972 set try -DSCHED_YIELD
13973 if eval $compile; then
13974     val="$define"
13975     sched_yield='sched_yield()'
13976 else
13977     val="$undef"
13978 fi
13979 case "$usethreads" in
13980 $define)
13981         case "$val" in
13982         $define) echo 'sched_yield() found.' >&4        ;;
13983         *)       echo 'sched_yield() NOT found.' >&4    ;;
13984         esac
13985 esac
13986 set d_sched_yield
13987 eval $setvar
13988
13989 : see if pthread_yield exists
13990 set try -DPTHREAD_YIELD
13991 if eval $compile; then
13992     val="$define"
13993     case "$sched_yield" in
13994     '') sched_yield='pthread_yield()' ;;
13995     esac
13996 else
13997     set try -DPTHREAD_YIELD_NULL
13998     if eval $compile; then
13999         val="$define"
14000         case "$sched_yield" in
14001         '') sched_yield='pthread_yield(NULL)' ;;
14002         esac
14003     else
14004         val="$undef"
14005     fi
14006 fi
14007 case "$usethreads" in
14008 $define)
14009         case "$val" in
14010         $define) echo 'pthread_yield() found.' >&4      ;;
14011         *)       echo 'pthread_yield() NOT found.' >&4  ;;
14012         esac
14013         ;;
14014 esac
14015 set d_pthread_yield
14016 eval $setvar
14017
14018 case "$sched_yield" in
14019 '') sched_yield=undef ;;
14020 esac
14021
14022 $rm -f try try.*
14023
14024 : see if random_r exists
14025 set random_r d_random_r
14026 eval $inlibc
14027 case "$d_random_r" in
14028 "$define")
14029         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
14030         case "stdlib" in
14031         time)
14032                 hdrs="$hdrs $i_systime sys/time.h"
14033                 ;;
14034         esac
14035         case "$d_random_r_proto:$usethreads" in
14036         ":define")      d_random_r_proto=define
14037                 set d_random_r_proto random_r $hdrs
14038                 eval $hasproto ;;
14039         *)      ;;
14040         esac
14041         case "$d_random_r_proto" in
14042         define)
14043         case "$random_r_proto" in
14044         ''|0) try='int random_r(int*, struct random_data*);'
14045         ./protochk "extern $try" $hdrs && random_r_proto=I_TS ;;
14046         esac
14047         case "$random_r_proto" in
14048         ''|0)   d_random_r=undef
14049                 random_r_proto=0
14050                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
14051         * )     case "$random_r_proto" in
14052                 REENTRANT_PROTO*) ;;
14053                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
14054                 esac
14055                 echo "Prototype: $try" ;;
14056         esac
14057         ;;
14058         *)      case "$usethreads" in
14059                 define) echo "random_r has no prototype, not using it." >&4 ;;
14060                 esac
14061                 d_random_r=undef
14062                 random_r_proto=0
14063                 ;;
14064         esac
14065         ;;
14066 *)      random_r_proto=0
14067         ;;
14068 esac
14069
14070 : see if readdir and friends exist
14071 set readdir d_readdir
14072 eval $inlibc
14073 set seekdir d_seekdir
14074 eval $inlibc
14075 set telldir d_telldir
14076 eval $inlibc
14077 set rewinddir d_rewinddir
14078 eval $inlibc
14079
14080 : see if readdir64_r exists
14081 set readdir64_r d_readdir64_r
14082 eval $inlibc
14083 case "$d_readdir64_r" in
14084 "$define")
14085         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14086         case "dirent" in
14087         time)
14088                 hdrs="$hdrs $i_systime sys/time.h"
14089                 ;;
14090         esac
14091         case "$d_readdir64_r_proto:$usethreads" in
14092         ":define")      d_readdir64_r_proto=define
14093                 set d_readdir64_r_proto readdir64_r $hdrs
14094                 eval $hasproto ;;
14095         *)      ;;
14096         esac
14097         case "$d_readdir64_r_proto" in
14098         define)
14099         case "$readdir64_r_proto" in
14100         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
14101         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
14102         esac
14103         case "$readdir64_r_proto" in
14104         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
14105         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
14106         esac
14107         case "$readdir64_r_proto" in
14108         ''|0)   d_readdir64_r=undef
14109                 readdir64_r_proto=0
14110                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
14111         * )     case "$readdir64_r_proto" in
14112                 REENTRANT_PROTO*) ;;
14113                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
14114                 esac
14115                 echo "Prototype: $try" ;;
14116         esac
14117         ;;
14118         *)      case "$usethreads" in
14119                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
14120                 esac
14121                 d_readdir64_r=undef
14122                 readdir64_r_proto=0
14123                 ;;
14124         esac
14125         ;;
14126 *)      readdir64_r_proto=0
14127         ;;
14128 esac
14129
14130 : see if readdir_r exists
14131 set readdir_r d_readdir_r
14132 eval $inlibc
14133 case "$d_readdir_r" in
14134 "$define")
14135         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14136         case "dirent" in
14137         time)
14138                 hdrs="$hdrs $i_systime sys/time.h"
14139                 ;;
14140         esac
14141         case "$d_readdir_r_proto:$usethreads" in
14142         ":define")      d_readdir_r_proto=define
14143                 set d_readdir_r_proto readdir_r $hdrs
14144                 eval $hasproto ;;
14145         *)      ;;
14146         esac
14147         case "$d_readdir_r_proto" in
14148         define)
14149         case "$readdir_r_proto" in
14150         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14151         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14152         esac
14153         case "$readdir_r_proto" in
14154         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14155         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14156         esac
14157         case "$readdir_r_proto" in
14158         ''|0)   d_readdir_r=undef
14159                 readdir_r_proto=0
14160                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14161         * )     case "$readdir_r_proto" in
14162                 REENTRANT_PROTO*) ;;
14163                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14164                 esac
14165                 echo "Prototype: $try" ;;
14166         esac
14167         ;;
14168         *)      case "$usethreads" in
14169                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14170                 esac
14171                 d_readdir_r=undef
14172                 readdir_r_proto=0
14173                 ;;
14174         esac
14175         ;;
14176 *)      readdir_r_proto=0
14177         ;;
14178 esac
14179
14180 : see if readv exists
14181 set readv d_readv
14182 eval $inlibc
14183
14184 : see if recvmsg exists
14185 set recvmsg d_recvmsg
14186 eval $inlibc
14187
14188 : see if rename exists
14189 set rename d_rename
14190 eval $inlibc
14191
14192 : see if rmdir exists
14193 set rmdir d_rmdir
14194 eval $inlibc
14195
14196 : see if memory.h is available.
14197 val=''
14198 set memory.h val
14199 eval $inhdr
14200
14201 : See if it conflicts with string.h
14202 case "$val" in
14203 $define)
14204         case "$strings" in
14205         '') ;;
14206         *)
14207                 $cppstdin $cppflags $cppminus < $strings > mem.h
14208                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
14209                         echo " "
14210                         echo "We won't be including <memory.h>."
14211                         val="$undef"
14212                 fi
14213                 $rm -f mem.h
14214                 ;;
14215         esac
14216 esac
14217 set i_memory
14218 eval $setvar
14219
14220 : can bcopy handle overlapping blocks?
14221 echo " "
14222 val="$undef"
14223 case "$d_memmove" in
14224 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
14225 *)      case "$d_bcopy" in
14226         "$define")
14227                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
14228                 $cat >try.c <<EOCP
14229 #$i_memory I_MEMORY
14230 #$i_stdlib I_STDLIB
14231 #$i_string I_STRING
14232 #$i_unistd I_UNISTD
14233 EOCP
14234         $cat >>try.c <<'EOCP'
14235 #include <stdio.h>
14236 #ifdef I_MEMORY
14237 #  include <memory.h>
14238 #endif
14239 #ifdef I_STDLIB
14240 #  include <stdlib.h>
14241 #endif
14242 #ifdef I_STRING
14243 #  include <string.h>
14244 #else
14245 #  include <strings.h>
14246 #endif
14247 #ifdef I_UNISTD
14248 #  include <unistd.h>  /* Needed for NetBSD */
14249 #endif
14250 int main()
14251 {
14252 char buf[128], abc[128];
14253 char *b;
14254 int len;
14255 int off;
14256 int align;
14257
14258 /* Copy "abcde..." string to char abc[] so that gcc doesn't
14259    try to store the string in read-only memory. */
14260 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
14261
14262 for (align = 7; align >= 0; align--) {
14263         for (len = 36; len; len--) {
14264                 b = buf+align;
14265                 bcopy(abc, b, len);
14266                 for (off = 1; off <= len; off++) {
14267                         bcopy(b, b+off, len);
14268                         bcopy(b+off, b, len);
14269                         if (bcmp(b, abc, len))
14270                                 exit(1);
14271                 }
14272         }
14273 }
14274 exit(0);
14275 }
14276 EOCP
14277                 set try
14278                 if eval $compile_ok; then
14279                         if ./try 2>/dev/null; then
14280                                 echo "Yes, it can."
14281                                 val="$define"
14282                         else
14283                                 echo "It can't, sorry."
14284                         fi
14285                 else
14286                         echo "(I can't compile the test program, so we'll assume not...)"
14287                 fi
14288                 ;;
14289         esac
14290         $rm -f try.* try core
14291         ;;
14292 esac
14293 set d_safebcpy
14294 eval $setvar
14295
14296 : can memcpy handle overlapping blocks?
14297 echo " "
14298 val="$undef"
14299 case "$d_memmove" in
14300 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
14301 *)      case "$d_memcpy" in
14302         "$define")
14303                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
14304                 $cat >try.c <<EOCP
14305 #$i_memory I_MEMORY
14306 #$i_stdlib I_STDLIB
14307 #$i_string I_STRING
14308 #$i_unistd I_UNISTD
14309 EOCP
14310         $cat >>try.c <<'EOCP'
14311 #include <stdio.h>
14312 #ifdef I_MEMORY
14313 #  include <memory.h>
14314 #endif
14315 #ifdef I_STDLIB
14316 #  include <stdlib.h>
14317 #endif
14318 #ifdef I_STRING
14319 #  include <string.h>
14320 #else
14321 #  include <strings.h>
14322 #endif
14323 #ifdef I_UNISTD
14324 #  include <unistd.h>  /* Needed for NetBSD */
14325 #endif
14326 int main()
14327 {
14328 char buf[128], abc[128];
14329 char *b;
14330 int len;
14331 int off;
14332 int align;
14333
14334 /* Copy "abcde..." string to char abc[] so that gcc doesn't
14335    try to store the string in read-only memory. */
14336 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
14337
14338 for (align = 7; align >= 0; align--) {
14339         for (len = 36; len; len--) {
14340                 b = buf+align;
14341                 memcpy(b, abc, len);
14342                 for (off = 1; off <= len; off++) {
14343                         memcpy(b+off, b, len);
14344                         memcpy(b, b+off, len);
14345                         if (memcmp(b, abc, len))
14346                                 exit(1);
14347                 }
14348         }
14349 }
14350 exit(0);
14351 }
14352 EOCP
14353                 set try
14354                 if eval $compile_ok; then
14355                         if ./try 2>/dev/null; then
14356                                 echo "Yes, it can."
14357                                 val="$define"
14358                         else
14359                                 echo "It can't, sorry."
14360                         fi
14361                 else
14362                         echo "(I can't compile the test program, so we'll assume not...)"
14363                 fi
14364                 ;;
14365         esac
14366         $rm -f try.* try core
14367         ;;
14368 esac
14369 set d_safemcpy
14370 eval $setvar
14371
14372 : can memcmp be trusted to compare relative magnitude?
14373 val="$undef"
14374 case "$d_memcmp" in
14375 "$define")
14376         echo " "
14377         echo "Checking if your memcmp() can compare relative magnitude..." >&4
14378         $cat >try.c <<EOCP
14379 #$i_memory I_MEMORY
14380 #$i_stdlib I_STDLIB
14381 #$i_string I_STRING
14382 #$i_unistd I_UNISTD
14383 EOCP
14384         $cat >>try.c <<'EOCP'
14385 #include <stdio.h>
14386 #ifdef I_MEMORY
14387 #  include <memory.h>
14388 #endif
14389 #ifdef I_STDLIB
14390 #  include <stdlib.h>
14391 #endif
14392 #ifdef I_STRING
14393 #  include <string.h>
14394 #else
14395 #  include <strings.h>
14396 #endif
14397 #ifdef I_UNISTD
14398 #  include <unistd.h>  /* Needed for NetBSD */
14399 #endif
14400 int main()
14401 {
14402 char a = -1;
14403 char b = 0;
14404 if ((a < b) && memcmp(&a, &b, 1) < 0)
14405         exit(1);
14406 exit(0);
14407 }
14408 EOCP
14409         set try
14410         if eval $compile_ok; then
14411                 if $run ./try 2>/dev/null; then
14412                         echo "Yes, it can."
14413                         val="$define"
14414                 else
14415                         echo "No, it can't (it uses signed chars)."
14416                 fi
14417         else
14418                 echo "(I can't compile the test program, so we'll assume not...)"
14419         fi
14420         ;;
14421 esac
14422 $rm -f try.* try core
14423 set d_sanemcmp
14424 eval $setvar
14425
14426 : see if prototype for sbrk is available
14427 echo " "
14428 set d_sbrkproto sbrk $i_unistd unistd.h
14429 eval $hasproto
14430
14431 : see if select exists
14432 set select d_select
14433 eval $inlibc
14434
14435 : see if semctl exists
14436 set semctl d_semctl
14437 eval $inlibc
14438
14439 : see if semget exists
14440 set semget d_semget
14441 eval $inlibc
14442
14443 : see if semop exists
14444 set semop d_semop
14445 eval $inlibc
14446
14447 : see how much of the 'sem*(2)' library is present.
14448 h_sem=true
14449 echo " "
14450 case "$d_semctl$d_semget$d_semop" in
14451 *"$undef"*) h_sem=false;;
14452 esac
14453 case "$osname" in
14454 freebsd)
14455     case "`ipcs 2>&1`" in
14456     "SVID messages"*"not configured"*)
14457         echo "Your $osname does not have the sem*(2) configured." >&4
14458         h_sem=false
14459         val="$undef"
14460         set semctl d_semctl
14461         eval $setvar
14462         set semget d_semget
14463         eval $setvar
14464         set semop d_semop
14465         eval $setvar
14466         ;;
14467     esac
14468     ;;
14469 esac
14470 : we could also check for sys/ipc.h ...
14471 if $h_sem && $test `./findhdr sys/sem.h`; then
14472         echo "You have the full sem*(2) library." >&4
14473         val="$define"
14474 else
14475         echo "You don't have the full sem*(2) library." >&4
14476         val="$undef"
14477 fi
14478 set d_sem
14479 eval $setvar
14480
14481 : see whether sys/sem.h defines union semun
14482 echo " "
14483 $cat > try.c <<'END'
14484 #include <sys/types.h>
14485 #include <sys/ipc.h>
14486 #include <sys/sem.h>
14487 int main () { union semun semun; semun.buf = 0; }
14488 END
14489 set try
14490 if eval $compile; then
14491     echo "You have union semun in <sys/sem.h>." >&4
14492     val="$define"
14493 else
14494     echo "You do not have union semun in <sys/sem.h>." >&4
14495     val="$undef"
14496 fi
14497 $rm -f try try.c try.h
14498 set d_union_semun
14499 eval $setvar
14500
14501 : see how to do semctl IPC_STAT
14502 case "$d_sem" in
14503 $define)
14504     : see whether semctl IPC_STAT can use union semun
14505     echo " "
14506     $cat > try.h <<END
14507 #ifndef S_IRUSR
14508 #   ifdef S_IREAD
14509 #       define S_IRUSR S_IREAD
14510 #       define S_IWUSR S_IWRITE
14511 #       define S_IXUSR S_IEXEC
14512 #   else
14513 #       define S_IRUSR 0400
14514 #       define S_IWUSR 0200
14515 #       define S_IXUSR 0100
14516 #   endif
14517 #   define S_IRGRP (S_IRUSR>>3)
14518 #   define S_IWGRP (S_IWUSR>>3)
14519 #   define S_IXGRP (S_IXUSR>>3)
14520 #   define S_IROTH (S_IRUSR>>6)
14521 #   define S_IWOTH (S_IWUSR>>6)
14522 #   define S_IXOTH (S_IXUSR>>6)
14523 #endif
14524 #ifndef S_IRWXU
14525 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
14526 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
14527 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
14528 #endif
14529 END
14530
14531     $cat > try.c <<END
14532 #include <sys/types.h>
14533 #include <sys/ipc.h>
14534 #include <sys/sem.h>
14535 #include <sys/stat.h>
14536 #include <stdio.h>
14537 #include <errno.h>
14538 #include "try.h"
14539 #ifndef errno
14540 extern int errno;
14541 #endif
14542 #$d_union_semun HAS_UNION_SEMUN
14543 int main() {
14544     union semun
14545 #ifndef HAS_UNION_SEMUN
14546     {
14547         int val;
14548         struct semid_ds *buf;
14549         unsigned short *array;
14550     }
14551 #endif
14552     arg;
14553     int sem, st;
14554
14555 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
14556     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
14557     if (sem > -1) {
14558         struct semid_ds argbuf;
14559         arg.buf = &argbuf;
14560 #       ifdef IPC_STAT
14561         st = semctl(sem, 0, IPC_STAT, arg);
14562         if (st == 0)
14563             printf("semun\n");
14564         else
14565 #       endif /* IPC_STAT */
14566             printf("semctl IPC_STAT failed: errno = %d\n", errno);
14567 #       ifdef IPC_RMID
14568         if (semctl(sem, 0, IPC_RMID, arg) != 0)
14569 #       endif /* IPC_RMID */
14570             printf("semctl IPC_RMID failed: errno = %d\n", errno);
14571     } else
14572 #endif /* IPC_PRIVATE && ... */
14573         printf("semget failed: errno = %d\n", errno);
14574   return 0;
14575 }
14576 END
14577     val="$undef"
14578     set try
14579     if eval $compile; then
14580         xxx=`$run ./try`
14581         case "$xxx" in
14582         semun) val="$define" ;;
14583         esac
14584     fi
14585     $rm -f try try.c
14586     set d_semctl_semun
14587     eval $setvar
14588     case "$d_semctl_semun" in
14589     $define)
14590         echo "You can use union semun for semctl IPC_STAT." >&4
14591         also='also'
14592         ;;
14593     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
14594         also=''
14595         ;;
14596     esac
14597
14598     : see whether semctl IPC_STAT can use struct semid_ds pointer
14599     $cat > try.c <<'END'
14600 #include <sys/types.h>
14601 #include <sys/ipc.h>
14602 #include <sys/sem.h>
14603 #include <sys/stat.h>
14604 #include "try.h"
14605 #include <stdio.h>
14606 #include <errno.h>
14607 #ifndef errno
14608 extern int errno;
14609 #endif
14610 int main() {
14611     struct semid_ds arg;
14612     int sem, st;
14613
14614 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
14615     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
14616     if (sem > -1) {
14617 #       ifdef IPC_STAT
14618         st = semctl(sem, 0, IPC_STAT, &arg);
14619         if (st == 0)
14620             printf("semid_ds\n");
14621         else
14622 #       endif /* IPC_STAT */
14623             printf("semctl IPC_STAT failed: errno = %d\n", errno);
14624 #       ifdef IPC_RMID
14625         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
14626 #       endif /* IPC_RMID */
14627             printf("semctl IPC_RMID failed: errno = %d\n", errno);
14628     } else
14629 #endif /* IPC_PRIVATE && ... */
14630         printf("semget failed: errno = %d\n", errno);
14631
14632     return 0;
14633 }
14634 END
14635     val="$undef"
14636     set try
14637     if eval $compile; then
14638         xxx=`$run ./try`
14639         case "$xxx" in
14640         semid_ds) val="$define" ;;
14641         esac
14642     fi
14643     $rm -f try try.c
14644     set d_semctl_semid_ds
14645     eval $setvar
14646     case "$d_semctl_semid_ds" in
14647     $define)
14648         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
14649         ;;
14650     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
14651         ;;
14652     esac
14653     $rm -f try.h
14654     ;;
14655 *)  val="$undef"
14656
14657     # We do not have the full sem*(2) library, so assume we can not
14658     # use either.
14659
14660     set d_semctl_semun
14661     eval $setvar
14662
14663     set d_semctl_semid_ds
14664     eval $setvar
14665     ;;
14666 esac
14667
14668 : see if sendmsg exists
14669 set sendmsg d_sendmsg
14670 eval $inlibc
14671
14672 : see if setegid exists
14673 set setegid d_setegid
14674 eval $inlibc
14675
14676 : see if seteuid exists
14677 set seteuid d_seteuid
14678 eval $inlibc
14679
14680 : see if setgrent exists
14681 set setgrent d_setgrent
14682 eval $inlibc
14683
14684 : see if setgrent_r exists
14685 set setgrent_r d_setgrent_r
14686 eval $inlibc
14687 case "$d_setgrent_r" in
14688 "$define")
14689         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
14690         case "grp" in
14691         time)
14692                 hdrs="$hdrs $i_systime sys/time.h"
14693                 ;;
14694         esac
14695         case "$d_setgrent_r_proto:$usethreads" in
14696         ":define")      d_setgrent_r_proto=define
14697                 set d_setgrent_r_proto setgrent_r $hdrs
14698                 eval $hasproto ;;
14699         *)      ;;
14700         esac
14701         case "$d_setgrent_r_proto" in
14702         define)
14703         case "$setgrent_r_proto" in
14704         ''|0) try='int setgrent_r(FILE**);'
14705         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
14706         esac
14707         case "$setgrent_r_proto" in
14708         ''|0) try='void setgrent_r(FILE**);'
14709         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
14710         esac
14711         case "$setgrent_r_proto" in
14712         ''|0)   d_setgrent_r=undef
14713                 setgrent_r_proto=0
14714                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
14715         * )     case "$setgrent_r_proto" in
14716                 REENTRANT_PROTO*) ;;
14717                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
14718                 esac
14719                 echo "Prototype: $try" ;;
14720         esac
14721         ;;
14722         *)      case "$usethreads" in
14723                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
14724                 esac
14725                 d_setgrent_r=undef
14726                 setgrent_r_proto=0
14727                 ;;
14728         esac
14729         ;;
14730 *)      setgrent_r_proto=0
14731         ;;
14732 esac
14733
14734 : see if sethostent exists
14735 set sethostent d_sethent
14736 eval $inlibc
14737
14738 : see if sethostent_r exists
14739 set sethostent_r d_sethostent_r
14740 eval $inlibc
14741 case "$d_sethostent_r" in
14742 "$define")
14743         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14744         case "netdb" in
14745         time)
14746                 hdrs="$hdrs $i_systime sys/time.h"
14747                 ;;
14748         esac
14749         case "$d_sethostent_r_proto:$usethreads" in
14750         ":define")      d_sethostent_r_proto=define
14751                 set d_sethostent_r_proto sethostent_r $hdrs
14752                 eval $hasproto ;;
14753         *)      ;;
14754         esac
14755         case "$d_sethostent_r_proto" in
14756         define)
14757         case "$sethostent_r_proto" in
14758         ''|0) try='int sethostent_r(int, struct hostent_data*);'
14759         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
14760         esac
14761         case "$sethostent_r_proto" in
14762         ''|0) try='void sethostent_r(int, struct hostent_data*);'
14763         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
14764         esac
14765         case "$sethostent_r_proto" in
14766         ''|0)   d_sethostent_r=undef
14767                 sethostent_r_proto=0
14768                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
14769         * )     case "$sethostent_r_proto" in
14770                 REENTRANT_PROTO*) ;;
14771                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
14772                 esac
14773                 echo "Prototype: $try" ;;
14774         esac
14775         ;;
14776         *)      case "$usethreads" in
14777                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
14778                 esac
14779                 d_sethostent_r=undef
14780                 sethostent_r_proto=0
14781                 ;;
14782         esac
14783         ;;
14784 *)      sethostent_r_proto=0
14785         ;;
14786 esac
14787
14788 : see if setitimer exists
14789 set setitimer d_setitimer
14790 eval $inlibc
14791
14792 : see if setlinebuf exists
14793 set setlinebuf d_setlinebuf
14794 eval $inlibc
14795
14796 : see if setlocale exists
14797 set setlocale d_setlocale
14798 eval $inlibc
14799
14800 : see if locale.h is available
14801 set locale.h i_locale
14802 eval $inhdr
14803
14804 : see if setlocale_r exists
14805 set setlocale_r d_setlocale_r
14806 eval $inlibc
14807 case "$d_setlocale_r" in
14808 "$define")
14809         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
14810         case "locale" in
14811         time)
14812                 hdrs="$hdrs $i_systime sys/time.h"
14813                 ;;
14814         esac
14815         case "$d_setlocale_r_proto:$usethreads" in
14816         ":define")      d_setlocale_r_proto=define
14817                 set d_setlocale_r_proto setlocale_r $hdrs
14818                 eval $hasproto ;;
14819         *)      ;;
14820         esac
14821         case "$d_setlocale_r_proto" in
14822         define)
14823         case "$setlocale_r_proto" in
14824         ''|0) try='int setlocale_r(int, const char*, char*, int);'
14825         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
14826         esac
14827         case "$setlocale_r_proto" in
14828         ''|0)   d_setlocale_r=undef
14829                 setlocale_r_proto=0
14830                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
14831         * )     case "$setlocale_r_proto" in
14832                 REENTRANT_PROTO*) ;;
14833                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
14834                 esac
14835                 echo "Prototype: $try" ;;
14836         esac
14837         ;;
14838         *)      case "$usethreads" in
14839                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
14840                 esac
14841                 d_setlocale_r=undef
14842                 setlocale_r_proto=0
14843                 ;;
14844         esac
14845         ;;
14846 *)      setlocale_r_proto=0
14847         ;;
14848 esac
14849
14850 : see if setnetent exists
14851 set setnetent d_setnent
14852 eval $inlibc
14853
14854 : see if setnetent_r exists
14855 set setnetent_r d_setnetent_r
14856 eval $inlibc
14857 case "$d_setnetent_r" in
14858 "$define")
14859         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14860         case "netdb" in
14861         time)
14862                 hdrs="$hdrs $i_systime sys/time.h"
14863                 ;;
14864         esac
14865         case "$d_setnetent_r_proto:$usethreads" in
14866         ":define")      d_setnetent_r_proto=define
14867                 set d_setnetent_r_proto setnetent_r $hdrs
14868                 eval $hasproto ;;
14869         *)      ;;
14870         esac
14871         case "$d_setnetent_r_proto" in
14872         define)
14873         case "$setnetent_r_proto" in
14874         ''|0) try='int setnetent_r(int, struct netent_data*);'
14875         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
14876         esac
14877         case "$setnetent_r_proto" in
14878         ''|0) try='void setnetent_r(int, struct netent_data*);'
14879         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
14880         esac
14881         case "$setnetent_r_proto" in
14882         ''|0)   d_setnetent_r=undef
14883                 setnetent_r_proto=0
14884                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
14885         * )     case "$setnetent_r_proto" in
14886                 REENTRANT_PROTO*) ;;
14887                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
14888                 esac
14889                 echo "Prototype: $try" ;;
14890         esac
14891         ;;
14892         *)      case "$usethreads" in
14893                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
14894                 esac
14895                 d_setnetent_r=undef
14896                 setnetent_r_proto=0
14897                 ;;
14898         esac
14899         ;;
14900 *)      setnetent_r_proto=0
14901         ;;
14902 esac
14903
14904 : see if setprotoent exists
14905 set setprotoent d_setpent
14906 eval $inlibc
14907
14908 : see if setpgid exists
14909 set setpgid d_setpgid
14910 eval $inlibc
14911
14912 : see if setpgrp2 exists
14913 set setpgrp2 d_setpgrp2
14914 eval $inlibc
14915
14916 : see if setpriority exists
14917 set setpriority d_setprior
14918 eval $inlibc
14919
14920 : see if setproctitle exists
14921 set setproctitle d_setproctitle
14922 eval $inlibc
14923
14924 : see if setprotoent_r exists
14925 set setprotoent_r d_setprotoent_r
14926 eval $inlibc
14927 case "$d_setprotoent_r" in
14928 "$define")
14929         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14930         case "netdb" in
14931         time)
14932                 hdrs="$hdrs $i_systime sys/time.h"
14933                 ;;
14934         esac
14935         case "$d_setprotoent_r_proto:$usethreads" in
14936         ":define")      d_setprotoent_r_proto=define
14937                 set d_setprotoent_r_proto setprotoent_r $hdrs
14938                 eval $hasproto ;;
14939         *)      ;;
14940         esac
14941         case "$d_setprotoent_r_proto" in
14942         define)
14943         case "$setprotoent_r_proto" in
14944         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
14945         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
14946         esac
14947         case "$setprotoent_r_proto" in
14948         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
14949         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
14950         esac
14951         case "$setprotoent_r_proto" in
14952         ''|0)   d_setprotoent_r=undef
14953                 setprotoent_r_proto=0
14954                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
14955         * )     case "$setprotoent_r_proto" in
14956                 REENTRANT_PROTO*) ;;
14957                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
14958                 esac
14959                 echo "Prototype: $try" ;;
14960         esac
14961         ;;
14962         *)      case "$usethreads" in
14963                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
14964                 esac
14965                 d_setprotoent_r=undef
14966                 setprotoent_r_proto=0
14967                 ;;
14968         esac
14969         ;;
14970 *)      setprotoent_r_proto=0
14971         ;;
14972 esac
14973
14974 : see if setpwent exists
14975 set setpwent d_setpwent
14976 eval $inlibc
14977
14978 : see if setpwent_r exists
14979 set setpwent_r d_setpwent_r
14980 eval $inlibc
14981 case "$d_setpwent_r" in
14982 "$define")
14983         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
14984         case "pwd" in
14985         time)
14986                 hdrs="$hdrs $i_systime sys/time.h"
14987                 ;;
14988         esac
14989         case "$d_setpwent_r_proto:$usethreads" in
14990         ":define")      d_setpwent_r_proto=define
14991                 set d_setpwent_r_proto setpwent_r $hdrs
14992                 eval $hasproto ;;
14993         *)      ;;
14994         esac
14995         case "$d_setpwent_r_proto" in
14996         define)
14997         case "$setpwent_r_proto" in
14998         ''|0) try='int setpwent_r(FILE**);'
14999         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
15000         esac
15001         case "$setpwent_r_proto" in
15002         ''|0) try='void setpwent_r(FILE**);'
15003         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
15004         esac
15005         case "$setpwent_r_proto" in
15006         ''|0)   d_setpwent_r=undef
15007                 setpwent_r_proto=0
15008                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
15009         * )     case "$setpwent_r_proto" in
15010                 REENTRANT_PROTO*) ;;
15011                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
15012                 esac
15013                 echo "Prototype: $try" ;;
15014         esac
15015         ;;
15016         *)      case "$usethreads" in
15017                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
15018                 esac
15019                 d_setpwent_r=undef
15020                 setpwent_r_proto=0
15021                 ;;
15022         esac
15023         ;;
15024 *)      setpwent_r_proto=0
15025         ;;
15026 esac
15027
15028 : see if setregid exists
15029 set setregid d_setregid
15030 eval $inlibc
15031 set setresgid d_setresgid
15032 eval $inlibc
15033
15034 : see if setreuid exists
15035 set setreuid d_setreuid
15036 eval $inlibc
15037 set setresuid d_setresuid
15038 eval $inlibc
15039
15040 : see if setrgid exists
15041 set setrgid d_setrgid
15042 eval $inlibc
15043
15044 : see if setruid exists
15045 set setruid d_setruid
15046 eval $inlibc
15047
15048 : see if setservent exists
15049 set setservent d_setsent
15050 eval $inlibc
15051
15052 : see if setservent_r exists
15053 set setservent_r d_setservent_r
15054 eval $inlibc
15055 case "$d_setservent_r" in
15056 "$define")
15057         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15058         case "netdb" in
15059         time)
15060                 hdrs="$hdrs $i_systime sys/time.h"
15061                 ;;
15062         esac
15063         case "$d_setservent_r_proto:$usethreads" in
15064         ":define")      d_setservent_r_proto=define
15065                 set d_setservent_r_proto setservent_r $hdrs
15066                 eval $hasproto ;;
15067         *)      ;;
15068         esac
15069         case "$d_setservent_r_proto" in
15070         define)
15071         case "$setservent_r_proto" in
15072         ''|0) try='int setservent_r(int, struct servent_data*);'
15073         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
15074         esac
15075         case "$setservent_r_proto" in
15076         ''|0) try='void setservent_r(int, struct servent_data*);'
15077         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
15078         esac
15079         case "$setservent_r_proto" in
15080         ''|0)   d_setservent_r=undef
15081                 setservent_r_proto=0
15082                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
15083         * )     case "$setservent_r_proto" in
15084                 REENTRANT_PROTO*) ;;
15085                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
15086                 esac
15087                 echo "Prototype: $try" ;;
15088         esac
15089         ;;
15090         *)      case "$usethreads" in
15091                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
15092                 esac
15093                 d_setservent_r=undef
15094                 setservent_r_proto=0
15095                 ;;
15096         esac
15097         ;;
15098 *)      setservent_r_proto=0
15099         ;;
15100 esac
15101
15102 : see if setsid exists
15103 set setsid d_setsid
15104 eval $inlibc
15105
15106 : see if setvbuf exists
15107 set setvbuf d_setvbuf
15108 eval $inlibc
15109
15110 : see if sfio.h is available
15111 set sfio.h i_sfio
15112 eval $inhdr
15113
15114
15115 : see if sfio library is available
15116 case "$i_sfio" in
15117 $define)
15118         val=''
15119         set sfreserve val
15120         eval $inlibc
15121         ;;
15122 *)
15123         val="$undef"
15124         ;;
15125 esac
15126 : Ok, but do we want to use it.
15127 case "$val" in
15128 $define)
15129         case "$usesfio" in
15130         true|$define|[yY]*) dflt='y';;
15131         *) dflt='n';;
15132         esac
15133         echo "$package can use the sfio library, but it is experimental."
15134         case "$useperlio" in
15135         "$undef")
15136             echo "For sfio also the PerlIO abstraction layer is needed."
15137             echo "Earlier you said you wouldn't want that."
15138             ;;
15139         esac
15140         rp="You seem to have sfio available, do you want to try using it?"
15141         . ./myread
15142         case "$ans" in
15143         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
15144                 useperlio="$define"
15145                 val="$define"
15146                 ;;
15147         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
15148                 val="$undef"
15149                 ;;
15150         esac
15151         ;;
15152 *)      case "$usesfio" in
15153         true|$define|[yY]*)
15154                 echo "Sorry, cannot find sfio on this machine." >&4
15155                 echo "Ignoring your setting of usesfio=$usesfio." >&4
15156                 val="$undef"
15157                 ;;
15158         esac
15159         ;;
15160 esac
15161 set d_sfio
15162 eval $setvar
15163 case "$d_sfio" in
15164 $define) usesfio='true';;
15165 *) usesfio='false';;
15166 esac
15167 case "$d_sfio" in
15168 $define) ;;
15169 *)      : Remove sfio from list of libraries to use
15170         case "$libs" in
15171         *-lsfio*)
15172                 echo "Removing unneeded -lsfio from library list" >&4
15173                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
15174                 shift
15175                 libs="$*"
15176                 echo "libs = $libs" >&4
15177                 ;;
15178         esac
15179 ;;
15180 esac
15181
15182
15183 : see if shmctl exists
15184 set shmctl d_shmctl
15185 eval $inlibc
15186
15187 : see if shmget exists
15188 set shmget d_shmget
15189 eval $inlibc
15190
15191 : see if shmat exists
15192 set shmat d_shmat
15193 eval $inlibc
15194 : see what shmat returns
15195 case "$d_shmat" in
15196 "$define")
15197         $cat >shmat.c <<'END'
15198 #include <sys/shm.h>
15199 void *shmat();
15200 END
15201         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15202                 shmattype='void *'
15203         else
15204                 shmattype='char *'
15205         fi
15206         echo "and it returns ($shmattype)." >&4
15207         : see if a prototype for shmat is available
15208         xxx=`./findhdr sys/shm.h`
15209         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15210         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15211                 val="$define"
15212         else
15213                 val="$undef"
15214         fi
15215         $rm -f shmat.[co]
15216         ;;
15217 *)
15218         val="$undef"
15219         ;;
15220 esac
15221 set d_shmatprototype
15222 eval $setvar
15223
15224 : see if shmdt exists
15225 set shmdt d_shmdt
15226 eval $inlibc
15227
15228 : see how much of the 'shm*(2)' library is present.
15229 h_shm=true
15230 echo " "
15231 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
15232 *"$undef"*) h_shm=false;;
15233 esac
15234 case "$osname" in
15235 freebsd)
15236     case "`ipcs 2>&1`" in
15237     "SVID shared memory"*"not configured"*)
15238         echo "Your $osname does not have the shm*(2) configured." >&4
15239         h_shm=false
15240         val="$undef"
15241         set shmctl d_shmctl
15242         evat $setvar
15243         set shmget d_shmget
15244         evat $setvar
15245         set shmat d_shmat
15246         evat $setvar
15247         set shmdt d_shmdt
15248         evat $setvar
15249         ;;
15250     esac
15251     ;;
15252 esac
15253 : we could also check for sys/ipc.h ...
15254 if $h_shm && $test `./findhdr sys/shm.h`; then
15255         echo "You have the full shm*(2) library." >&4
15256         val="$define"
15257 else
15258         echo "You don't have the full shm*(2) library." >&4
15259         val="$undef"
15260 fi
15261 set d_shm
15262 eval $setvar
15263
15264 echo " "
15265 : see if we have sigaction
15266 if set sigaction val -f d_sigaction; eval $csym; $val; then
15267         echo 'sigaction() found.' >&4
15268         $cat > try.c <<'EOP'
15269 #include <stdio.h>
15270 #include <sys/types.h>
15271 #include <signal.h>
15272 int main()
15273 {
15274     struct sigaction act, oact;
15275     act.sa_flags = 0;
15276     oact.sa_handler = 0;
15277     /* so that act and oact are used */
15278     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
15279 }
15280 EOP
15281         set try
15282         if eval $compile_ok; then
15283                 val="$define"
15284         else
15285                 echo "But you don't seem to have a useable struct sigaction." >&4
15286                 val="$undef"
15287         fi
15288 else
15289         echo 'sigaction NOT found.' >&4
15290         val="$undef"
15291 fi
15292 set d_sigaction; eval $setvar
15293 $rm -f try try$_o try.c
15294
15295 : see if sigprocmask exists
15296 set sigprocmask d_sigprocmask
15297 eval $inlibc
15298
15299 : see if sigsetjmp exists
15300 echo " "
15301 case "$d_sigsetjmp" in
15302 '')
15303         $cat >try.c <<'EOP'
15304 #include <setjmp.h>
15305 sigjmp_buf env;
15306 int set = 1;
15307 int main()
15308 {
15309         if (sigsetjmp(env,1))
15310                 exit(set);
15311         set = 0;
15312         siglongjmp(env, 1);
15313         exit(1);
15314 }
15315 EOP
15316         set try
15317         if eval $compile; then
15318                 if $run ./try >/dev/null 2>&1; then
15319                         echo "POSIX sigsetjmp found." >&4
15320                         val="$define"
15321                 else
15322                         $cat >&4 <<EOM
15323 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
15324 I'll ignore them.
15325 EOM
15326                         val="$undef"
15327                 fi
15328         else
15329                 echo "sigsetjmp not found." >&4
15330                 val="$undef"
15331         fi
15332         ;;
15333 *) val="$d_sigsetjmp"
15334         case "$d_sigsetjmp" in
15335         $define) echo "POSIX sigsetjmp found." >&4;;
15336         $undef) echo "sigsetjmp not found." >&4;;
15337         esac
15338         ;;
15339 esac
15340 set d_sigsetjmp
15341 eval $setvar
15342 $rm -f try.c try
15343
15344 : see if sockatmark exists
15345 set sockatmark d_sockatmark
15346 eval $inlibc
15347
15348 : see if prototype for sockatmark is available
15349 echo " "
15350 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
15351 eval $hasproto
15352
15353 : see if socks5_init exists
15354 set socks5_init d_socks5_init
15355 eval $inlibc
15356
15357 : see if srand48_r exists
15358 set srand48_r d_srand48_r
15359 eval $inlibc
15360 case "$d_srand48_r" in
15361 "$define")
15362         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
15363         case "stdlib" in
15364         time)
15365                 hdrs="$hdrs $i_systime sys/time.h"
15366                 ;;
15367         esac
15368         case "$d_srand48_r_proto:$usethreads" in
15369         ":define")      d_srand48_r_proto=define
15370                 set d_srand48_r_proto srand48_r $hdrs
15371                 eval $hasproto ;;
15372         *)      ;;
15373         esac
15374         case "$d_srand48_r_proto" in
15375         define)
15376         case "$srand48_r_proto" in
15377         ''|0) try='int srand48_r(long, struct drand48_data*);'
15378         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
15379         esac
15380         case "$srand48_r_proto" in
15381         ''|0)   d_srand48_r=undef
15382                 srand48_r_proto=0
15383                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
15384         * )     case "$srand48_r_proto" in
15385                 REENTRANT_PROTO*) ;;
15386                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
15387                 esac
15388                 echo "Prototype: $try" ;;
15389         esac
15390         ;;
15391         *)      case "$usethreads" in
15392                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
15393                 esac
15394                 d_srand48_r=undef
15395                 srand48_r_proto=0
15396                 ;;
15397         esac
15398         ;;
15399 *)      srand48_r_proto=0
15400         ;;
15401 esac
15402
15403 : see if srandom_r exists
15404 set srandom_r d_srandom_r
15405 eval $inlibc
15406 case "$d_srandom_r" in
15407 "$define")
15408         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
15409         case "stdlib" in
15410         time)
15411                 hdrs="$hdrs $i_systime sys/time.h"
15412                 ;;
15413         esac
15414         case "$d_srandom_r_proto:$usethreads" in
15415         ":define")      d_srandom_r_proto=define
15416                 set d_srandom_r_proto srandom_r $hdrs
15417                 eval $hasproto ;;
15418         *)      ;;
15419         esac
15420         case "$d_srandom_r_proto" in
15421         define)
15422         case "$srandom_r_proto" in
15423         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
15424         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
15425         esac
15426         case "$srandom_r_proto" in
15427         ''|0)   d_srandom_r=undef
15428                 srandom_r_proto=0
15429                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
15430         * )     case "$srandom_r_proto" in
15431                 REENTRANT_PROTO*) ;;
15432                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
15433                 esac
15434                 echo "Prototype: $try" ;;
15435         esac
15436         ;;
15437         *)      case "$usethreads" in
15438                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
15439                 esac
15440                 d_srandom_r=undef
15441                 srandom_r_proto=0
15442                 ;;
15443         esac
15444         ;;
15445 *)      srandom_r_proto=0
15446         ;;
15447 esac
15448
15449 : see if prototype for setresgid is available
15450 echo " "
15451 set d_sresgproto setresgid $i_unistd unistd.h
15452 eval $hasproto
15453
15454 : see if prototype for setresuid is available
15455 echo " "
15456 set d_sresuproto setresuid $i_unistd unistd.h
15457 eval $hasproto
15458
15459 : see if sys/stat.h is available
15460 set sys/stat.h i_sysstat
15461 eval $inhdr
15462
15463
15464 : see if stat knows about block sizes
15465 echo " "
15466 echo "Checking to see if your struct stat has st_blocks field..." >&4
15467 set d_statblks stat st_blocks $i_sysstat sys/stat.h
15468 eval $hasfield
15469
15470
15471 : see if this is a sys/vfs.h system
15472 set sys/vfs.h i_sysvfs
15473 eval $inhdr
15474
15475
15476 : see if this is a sys/statfs.h system
15477 set sys/statfs.h i_sysstatfs
15478 eval $inhdr
15479
15480
15481 echo " "
15482 echo "Checking to see if your system supports struct statfs..." >&4
15483 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
15484 eval $hasstruct
15485 case "$d_statfs_s" in
15486 "$define")      echo "Yes, it does."   ;;
15487 *)              echo "No, it doesn't." ;;
15488 esac
15489
15490
15491
15492 : see if struct statfs knows about f_flags
15493 case "$d_statfs_s" in
15494 define) 
15495         echo " "
15496         echo "Checking to see if your struct statfs has f_flags field..." >&4
15497         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
15498         eval $hasfield
15499         ;;
15500 *)      val="$undef"
15501         set d_statfs_f_flags
15502         eval $setvar
15503         ;;
15504 esac
15505 case "$d_statfs_f_flags" in
15506 "$define")      echo "Yes, it does."   ;;
15507 *)              echo "No, it doesn't." ;;
15508 esac
15509
15510 : see if _ptr and _cnt from stdio act std
15511 echo " "
15512
15513 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
15514         echo "(Looks like you have stdio.h from BSD.)"
15515         case "$stdio_ptr" in
15516         '') stdio_ptr='((fp)->_p)'
15517                 ptr_lval=$define
15518                 ;;
15519         *)      ptr_lval=$d_stdio_ptr_lval;;
15520         esac
15521         case "$stdio_cnt" in
15522         '') stdio_cnt='((fp)->_r)'
15523                 cnt_lval=$define
15524                 ;;
15525         *)      cnt_lval=$d_stdio_cnt_lval;;
15526         esac
15527         case "$stdio_base" in
15528         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
15529         esac
15530         case "$stdio_bufsiz" in
15531         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
15532         esac
15533 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
15534         echo "(Looks like you have stdio.h from Linux.)"
15535         case "$stdio_ptr" in
15536         '') stdio_ptr='((fp)->_IO_read_ptr)'
15537                 ptr_lval=$define
15538                 ;;
15539         *)      ptr_lval=$d_stdio_ptr_lval;;
15540         esac
15541         case "$stdio_cnt" in
15542         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
15543                 cnt_lval=$undef
15544                 ;;
15545         *)      cnt_lval=$d_stdio_cnt_lval;;
15546         esac
15547         case "$stdio_base" in
15548         '') stdio_base='((fp)->_IO_read_base)';;
15549         esac
15550         case "$stdio_bufsiz" in
15551         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
15552         esac
15553 else
15554         case "$stdio_ptr" in
15555         '') stdio_ptr='((fp)->_ptr)'
15556                 ptr_lval=$define
15557                 ;;
15558         *)      ptr_lval=$d_stdio_ptr_lval;;
15559         esac
15560         case "$stdio_cnt" in
15561         '') stdio_cnt='((fp)->_cnt)'
15562                 cnt_lval=$define
15563                 ;;
15564         *)      cnt_lval=$d_stdio_cnt_lval;;
15565         esac
15566         case "$stdio_base" in
15567         '') stdio_base='((fp)->_base)';;
15568         esac
15569         case "$stdio_bufsiz" in
15570         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
15571         esac
15572 fi
15573
15574 : test whether _ptr and _cnt really work
15575 echo "Checking how std your stdio is..." >&4
15576 $cat >try.c <<EOP
15577 #include <stdio.h>
15578 #define FILE_ptr(fp)    $stdio_ptr
15579 #define FILE_cnt(fp)    $stdio_cnt
15580 int main() {
15581         FILE *fp = fopen("try.c", "r");
15582         char c = getc(fp);
15583         if (
15584                 18 <= FILE_cnt(fp) &&
15585                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
15586         )
15587                 exit(0);
15588         exit(1);
15589 }
15590 EOP
15591 val="$undef"
15592 set try
15593 if eval $compile && $to try.c; then
15594         if $run ./try; then
15595                 echo "Your stdio acts pretty std."
15596                 val="$define"
15597         else
15598                 echo "Your stdio isn't very std."
15599         fi
15600 else
15601         echo "Your stdio doesn't appear very std."
15602 fi
15603 $rm -f try.c try
15604 set d_stdstdio
15605 eval $setvar
15606
15607 : Can _ptr be used as an lvalue?
15608 case "$d_stdstdio$ptr_lval" in
15609 $define$define) val=$define ;;
15610 *) val=$undef ;;
15611 esac
15612 set d_stdio_ptr_lval
15613 eval $setvar
15614
15615 : Can _cnt be used as an lvalue?
15616 case "$d_stdstdio$cnt_lval" in
15617 $define$define) val=$define ;;
15618 *) val=$undef ;;
15619 esac
15620 set d_stdio_cnt_lval
15621 eval $setvar
15622
15623
15624 : test whether setting _ptr sets _cnt as a side effect
15625 d_stdio_ptr_lval_sets_cnt="$undef"
15626 d_stdio_ptr_lval_nochange_cnt="$undef"
15627 case "$d_stdio_ptr_lval$d_stdstdio" in
15628 $define$define)
15629         echo "Checking to see what happens if we set the stdio ptr..." >&4
15630 $cat >try.c <<EOP
15631 #include <stdio.h>
15632 /* Can we scream? */
15633 /* Eat dust sed :-) */
15634 /* In the buffer space, no one can hear you scream. */
15635 #define FILE_ptr(fp)    $stdio_ptr
15636 #define FILE_cnt(fp)    $stdio_cnt
15637 #include <sys/types.h>
15638 int main() {
15639         FILE *fp = fopen("try.c", "r");
15640         int c;
15641         char *ptr;
15642         size_t cnt;
15643         if (!fp) {
15644             puts("Fail even to read");
15645             exit(1);
15646         }
15647         c = getc(fp); /* Read away the first # */
15648         if (c == EOF) {
15649             puts("Fail even to read");
15650             exit(1);
15651         }
15652         if (!(
15653                 18 <= FILE_cnt(fp) &&
15654                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
15655         )) {
15656                 puts("Fail even to read");
15657                 exit (1);
15658         }
15659         ptr = (char*) FILE_ptr(fp);
15660         cnt = (size_t)FILE_cnt(fp);
15661
15662         FILE_ptr(fp) += 42;
15663
15664         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
15665                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
15666                 exit (1);
15667         }
15668         if (FILE_cnt(fp) <= 20) {
15669                 printf ("Fail (<20 chars to test)");
15670                 exit (1);
15671         }
15672         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
15673                 puts("Fail compare");
15674                 exit (1);
15675         }
15676         if (cnt == FILE_cnt(fp)) {
15677                 puts("Pass_unchanged");
15678                 exit (0);
15679         }       
15680         if (FILE_cnt(fp) == (cnt - 42)) {
15681                 puts("Pass_changed");
15682                 exit (0);
15683         }
15684         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
15685         return 1;
15686
15687 }
15688 EOP
15689         set try
15690         if eval $compile && $to try.c; then
15691                 case `$run ./try` in
15692                 Pass_changed)
15693                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
15694                         d_stdio_ptr_lval_sets_cnt="$define" ;;
15695                 Pass_unchanged)
15696                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
15697                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
15698                 Fail*)
15699                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
15700                 *)
15701                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
15702         esac
15703         else
15704                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
15705         fi
15706         $rm -f try.c try
15707         ;;
15708 esac
15709
15710 : see if _base is also standard
15711 val="$undef"
15712 case "$d_stdstdio" in
15713 $define)
15714         $cat >try.c <<EOP
15715 #include <stdio.h>
15716 #define FILE_base(fp)   $stdio_base
15717 #define FILE_bufsiz(fp) $stdio_bufsiz
15718 int main() {
15719         FILE *fp = fopen("try.c", "r");
15720         char c = getc(fp);
15721         if (
15722                 19 <= FILE_bufsiz(fp) &&
15723                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
15724         )
15725                 exit(0);
15726         exit(1);
15727 }
15728 EOP
15729         set try
15730         if eval $compile && $to try.c; then
15731                 if $run ./try; then
15732                         echo "And its _base field acts std."
15733                         val="$define"
15734                 else
15735                         echo "But its _base field isn't std."
15736                 fi
15737         else
15738                 echo "However, it seems to be lacking the _base field."
15739         fi
15740         $rm -f try.c try
15741         ;;
15742 esac
15743 set d_stdiobase
15744 eval $setvar
15745
15746 $cat >&4 <<EOM
15747 Checking how to access stdio streams by file descriptor number...
15748 EOM
15749 case "$stdio_stream_array" in
15750 '')     $cat >try.c <<EOCP
15751 #include <stdio.h>
15752 int main() {
15753   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
15754     printf("yes\n");
15755 }
15756 EOCP
15757         for s in _iob __iob __sF
15758         do
15759                 set try -DSTDIO_STREAM_ARRAY=$s
15760                 if eval $compile; then
15761                         case "`$run ./try`" in
15762                         yes)    stdio_stream_array=$s; break ;;
15763                         esac
15764                 fi
15765         done
15766         $rm -f try.* try$exe_ext
15767 esac
15768 case "$stdio_stream_array" in
15769 '')     $cat >&4 <<EOM
15770 I can't figure out how to access stdio streams by file descriptor number.
15771 EOM
15772         d_stdio_stream_array="$undef"
15773         ;;
15774 *)      $cat >&4 <<EOM
15775 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
15776 EOM
15777         d_stdio_stream_array="$define"
15778         ;;
15779 esac
15780
15781 : see if strcoll exists
15782 set strcoll d_strcoll
15783 eval $inlibc
15784
15785 : check for structure copying
15786 echo " "
15787 echo "Checking to see if your C compiler can copy structs..." >&4
15788 $cat >try.c <<'EOCP'
15789 int main()
15790 {
15791         struct blurfl {
15792                 int dyick;
15793         } foo, bar;
15794
15795         foo = bar;
15796 }
15797 EOCP
15798 if $cc -c try.c >/dev/null 2>&1 ; then
15799         val="$define"
15800         echo "Yup, it can."
15801 else
15802         val="$undef"
15803         echo "Nope, it can't."
15804 fi
15805 set d_strctcpy
15806 eval $setvar
15807 $rm -f try.*
15808
15809 : see if strerror and/or sys_errlist[] exist
15810 echo " "
15811 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
15812     if set strerror val -f d_strerror; eval $csym; $val; then
15813                 echo 'strerror() found.' >&4
15814                 d_strerror="$define"
15815                 d_strerrm='strerror(e)'
15816                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
15817                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
15818                         d_syserrlst="$define"
15819                 else
15820                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
15821                         d_syserrlst="$undef"
15822                 fi
15823     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
15824                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
15825                 echo 'strerror() found in string header.' >&4
15826                 d_strerror="$define"
15827                 d_strerrm='strerror(e)'
15828                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
15829                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
15830                                 d_syserrlst="$define"
15831                 else
15832                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
15833                         d_syserrlst="$undef"
15834                 fi
15835     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
15836                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
15837                 d_strerror="$undef"
15838                 d_syserrlst="$define"
15839                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
15840     else
15841                 echo 'strerror() and sys_errlist[] NOT found.' >&4
15842                 d_strerror="$undef"
15843                 d_syserrlst="$undef"
15844                 d_strerrm='"unknown"'
15845     fi
15846 fi
15847
15848 : see if strerror_r exists
15849 set strerror_r d_strerror_r
15850 eval $inlibc
15851 case "$d_strerror_r" in
15852 "$define")
15853         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
15854         case "string" in
15855         time)
15856                 hdrs="$hdrs $i_systime sys/time.h"
15857                 ;;
15858         esac
15859         case "$d_strerror_r_proto:$usethreads" in
15860         ":define")      d_strerror_r_proto=define
15861                 set d_strerror_r_proto strerror_r $hdrs
15862                 eval $hasproto ;;
15863         *)      ;;
15864         esac
15865         case "$d_strerror_r_proto" in
15866         define)
15867         case "$strerror_r_proto" in
15868         ''|0) try='int strerror_r(int, char*, size_t);'
15869         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
15870         esac
15871         case "$strerror_r_proto" in
15872         ''|0) try='int strerror_r(int, char*, int);'
15873         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
15874         esac
15875         case "$strerror_r_proto" in
15876         ''|0) try='char* strerror_r(int, char*, size_t);'
15877         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
15878         esac
15879         case "$strerror_r_proto" in
15880         ''|0)   d_strerror_r=undef
15881                 strerror_r_proto=0
15882                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
15883         * )     case "$strerror_r_proto" in
15884                 REENTRANT_PROTO*) ;;
15885                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
15886                 esac
15887                 echo "Prototype: $try" ;;
15888         esac
15889         ;;
15890         *)      case "$usethreads" in
15891                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
15892                 esac
15893                 d_strerror_r=undef
15894                 strerror_r_proto=0
15895                 ;;
15896         esac
15897         ;;
15898 *)      strerror_r_proto=0
15899         ;;
15900 esac
15901
15902 : see if strftime exists
15903 set strftime d_strftime
15904 eval $inlibc
15905
15906 : see if strtod exists
15907 set strtod d_strtod
15908 eval $inlibc
15909
15910 : see if strtol exists
15911 set strtol d_strtol
15912 eval $inlibc
15913
15914 : see if strtold exists
15915 set strtold d_strtold
15916 eval $inlibc
15917
15918 : see if strtoll exists
15919 set strtoll d_strtoll
15920 eval $inlibc
15921
15922 case "$d_longlong-$d_strtoll" in
15923 "$define-$define")
15924         $cat <<EOM
15925 Checking whether your strtoll() works okay...
15926 EOM
15927         $cat >try.c <<'EOCP'
15928 #include <errno.h>
15929 #ifdef __hpux
15930 #define strtoll __strtoll
15931 #endif
15932 #ifdef __EMX__
15933 #define strtoll _strtoll
15934 #endif
15935 #include <stdio.h>
15936 extern long long int strtoll(char *s, char **, int); 
15937 static int bad = 0;
15938 int check(char *s, long long ell, int een) {
15939         long long gll;
15940         errno = 0;
15941         gll = strtoll(s, 0, 10);
15942         if (!((gll == ell) && (errno == een)))
15943                 bad++;
15944 }
15945 int main() {
15946         check(" 1",                                      1LL, 0);
15947         check(" 0",                                      0LL, 0);
15948         check("-1",                                     -1LL, 0);
15949         check("-9223372036854775808", -9223372036854775808LL, 0);
15950         check("-9223372036854775808", -9223372036854775808LL, 0);
15951         check(" 9223372036854775807",  9223372036854775807LL, 0);
15952         check("-9223372036854775808", -9223372036854775808LL, 0);
15953         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
15954         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
15955         if (!bad)
15956                 printf("ok\n");
15957 }
15958 EOCP
15959         set try
15960         if eval $compile; then
15961                 yyy=`$run ./try`
15962                 case "$yyy" in
15963                 ok) echo "Your strtoll() seems to be working okay." ;;
15964                 *) cat <<EOM >&4
15965 Your strtoll() doesn't seem to be working okay.
15966 EOM
15967                    d_strtoll="$undef"
15968                    ;;
15969                 esac
15970         else
15971                 echo "(I can't seem to compile the test program--assuming it doesn't)"
15972                 d_strtoll="$undef"
15973         fi
15974         ;;
15975 esac
15976
15977 : see if strtoq exists
15978 set strtoq d_strtoq
15979 eval $inlibc
15980
15981 : see if strtoul exists
15982 set strtoul d_strtoul
15983 eval $inlibc
15984
15985 case "$d_strtoul" in
15986 "$define")
15987         $cat <<EOM
15988 Checking whether your strtoul() works okay...
15989 EOM
15990         $cat >try.c <<'EOCP'
15991 #include <errno.h>
15992 #include <stdio.h>
15993 extern unsigned long int strtoul(char *s, char **, int); 
15994 static int bad = 0;
15995 void check(char *s, unsigned long eul, int een) {
15996         unsigned long gul;
15997         errno = 0;
15998         gul = strtoul(s, 0, 10);
15999         if (!((gul == eul) && (errno == een)))
16000                 bad++;
16001 }
16002 int main() {
16003         check(" 1", 1L, 0);
16004         check(" 0", 0L, 0);
16005 EOCP
16006         case "$longsize" in
16007         8)
16008             $cat >>try.c <<'EOCP'
16009         check("18446744073709551615", 18446744073709551615UL, 0);
16010         check("18446744073709551616", 18446744073709551615UL, ERANGE);
16011 #if 0 /* strtoul() for /^-/ strings is undefined. */
16012         check("-1", 18446744073709551615UL, 0);
16013         check("-18446744073709551614", 2, 0);
16014         check("-18446744073709551615", 1, 0);
16015         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
16016         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
16017 #endif
16018 EOCP
16019                 ;;
16020         4)
16021                     $cat >>try.c <<'EOCP'
16022         check("4294967295", 4294967295UL, 0);
16023         check("4294967296", 4294967295UL, ERANGE);
16024 #if 0 /* strtoul() for /^-/ strings is undefined. */
16025         check("-1", 4294967295UL, 0);
16026         check("-4294967294", 2, 0);
16027         check("-4294967295", 1, 0);
16028         check("-4294967296", 4294967295UL, ERANGE);
16029         check("-4294967297", 4294967295UL, ERANGE);
16030 #endif
16031 EOCP
16032                 ;;
16033         *)
16034 : Should we write these tests to be more portable by sprintf-ing
16035 : ~0 and then manipulating that char string as input for strtol?
16036                 ;;
16037         esac
16038         $cat >>try.c <<'EOCP'
16039         if (!bad)
16040                 printf("ok\n");
16041         return 0;
16042 }
16043 EOCP
16044         set try
16045         if eval $compile; then
16046                 case "`$run ./try`" in
16047                 ok) echo "Your strtoul() seems to be working okay." ;;
16048                 *) cat <<EOM >&4
16049 Your strtoul() doesn't seem to be working okay.
16050 EOM
16051                    d_strtoul="$undef"
16052                    ;;
16053                 esac
16054         fi
16055         ;;
16056 esac
16057
16058 : see if strtoull exists
16059 set strtoull d_strtoull
16060 eval $inlibc
16061
16062 case "$d_longlong-$d_strtoull" in
16063 "$define-$define")
16064         $cat <<EOM
16065 Checking whether your strtoull() works okay...
16066 EOM
16067         $cat >try.c <<'EOCP'
16068 #include <errno.h>
16069 #ifdef __hpux
16070 #define strtoull __strtoull
16071 #endif
16072 #include <stdio.h>
16073 extern unsigned long long int strtoull(char *s, char **, int); 
16074 static int bad = 0;
16075 int check(char *s, long long eull, int een) {
16076         long long gull;
16077         errno = 0;
16078         gull = strtoull(s, 0, 10);
16079         if (!((gull == eull) && (errno == een)))
16080                 bad++;
16081 }
16082 int main() {
16083         check(" 1",                                        1LL, 0);
16084         check(" 0",                                        0LL, 0);
16085         check("18446744073709551615",  18446744073709551615ULL, 0);
16086         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16087 #if 0 /* strtoull() for /^-/ strings is undefined. */
16088         check("-1",                    18446744073709551615ULL, 0);
16089         check("-18446744073709551614",                     2LL, 0);
16090         check("-18446744073709551615",                     1LL, 0);
16091         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16092         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16093 #endif
16094         if (!bad)
16095                 printf("ok\n");
16096 }
16097 EOCP
16098         set try
16099         if eval $compile; then
16100                 case "`$run ./try`" in
16101                 ok) echo "Your strtoull() seems to be working okay." ;;
16102                 *) cat <<EOM >&4
16103 Your strtoull() doesn't seem to be working okay.
16104 EOM
16105                    d_strtoull="$undef"
16106                    ;;
16107                 esac
16108         fi
16109         ;;
16110 esac
16111
16112 : see if strtouq exists
16113 set strtouq d_strtouq
16114 eval $inlibc
16115
16116 case "$d_strtouq" in
16117 "$define")
16118         $cat <<EOM
16119 Checking whether your strtouq() works okay...
16120 EOM
16121         $cat >try.c <<'EOCP'
16122 #include <errno.h>
16123 #include <stdio.h>
16124 extern unsigned long long int strtouq(char *s, char **, int); 
16125 static int bad = 0;
16126 void check(char *s, unsigned long long eull, int een) {
16127         unsigned long long gull;
16128         errno = 0;
16129         gull = strtouq(s, 0, 10);
16130         if (!((gull == eull) && (errno == een)))
16131                 bad++;
16132 }
16133 int main() {
16134         check(" 1",                                        1LL, 0);
16135         check(" 0",                                        0LL, 0);
16136         check("18446744073709551615",  18446744073709551615ULL, 0);
16137         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16138 #if 0 /* strtouq() for /^-/ strings is undefined. */
16139         check("-1",                    18446744073709551615ULL, 0);
16140         check("-18446744073709551614",                     2LL, 0);
16141         check("-18446744073709551615",                     1LL, 0);
16142         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16143         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16144 #endif
16145         if (!bad)
16146                 printf("ok\n");
16147         return 0;
16148 }
16149 EOCP
16150         set try
16151         if eval $compile; then
16152                 case "`$run ./try`" in
16153                 ok) echo "Your strtouq() seems to be working okay." ;;
16154                 *) cat <<EOM >&4
16155 Your strtouq() doesn't seem to be working okay.
16156 EOM
16157                    d_strtouq="$undef"
16158                    ;;
16159                 esac
16160         fi
16161         ;;
16162 esac
16163
16164 : see if strxfrm exists
16165 set strxfrm d_strxfrm
16166 eval $inlibc
16167
16168 : see if symlink exists
16169 set symlink d_symlink
16170 eval $inlibc
16171
16172 : see if syscall exists
16173 set syscall d_syscall
16174 eval $inlibc
16175
16176 : see if prototype for syscall is available
16177 echo " "
16178 set d_syscallproto syscall $i_unistd unistd.h
16179 eval $hasproto
16180
16181 : see if sysconf exists
16182 set sysconf d_sysconf
16183 eval $inlibc
16184
16185 : see if system exists
16186 set system d_system
16187 eval $inlibc
16188
16189 : see if tcgetpgrp exists
16190 set tcgetpgrp d_tcgetpgrp
16191 eval $inlibc
16192
16193 : see if tcsetpgrp exists
16194 set tcsetpgrp d_tcsetpgrp
16195 eval $inlibc
16196
16197 : see if prototype for telldir is available
16198 echo " "
16199 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16200 eval $hasproto
16201
16202 : see if time exists
16203 echo " "
16204 if test "X$d_time" = X -o X"$timetype" = X; then
16205     if set time val -f d_time; eval $csym; $val; then
16206                 echo 'time() found.' >&4
16207                 val="$define"
16208                 rp="What is the type returned by time() on this system?"
16209                 set time_t timetype long stdio.h sys/types.h
16210                 eval $typedef_ask
16211     else
16212                 echo 'time() not found, hope that will do.' >&4
16213                 val="$undef"
16214                 timetype='int';
16215     fi
16216     set d_time
16217     eval $setvar
16218 fi
16219
16220 : see if this is a sys/times.h system
16221 set sys/times.h i_systimes
16222 eval $inhdr
16223
16224 : see if times exists
16225 echo " "
16226 if set times val -f d_times; eval $csym; $val; then
16227         echo 'times() found.' >&4
16228         d_times="$define"
16229         inc=''
16230         case "$i_systimes" in
16231         "$define") inc='sys/times.h';;
16232         esac
16233         rp="What is the type returned by times() on this system?"
16234         set clock_t clocktype long stdio.h sys/types.h $inc
16235         eval $typedef_ask
16236 else
16237         echo 'times() NOT found, hope that will do.' >&4
16238         d_times="$undef"
16239         clocktype='int'
16240 fi
16241
16242 : see if tmpnam_r exists
16243 set tmpnam_r d_tmpnam_r
16244 eval $inlibc
16245 case "$d_tmpnam_r" in
16246 "$define")
16247         hdrs="$i_systypes sys/types.h define stdio.h "
16248         case "stdio" in
16249         time)
16250                 hdrs="$hdrs $i_systime sys/time.h"
16251                 ;;
16252         esac
16253         case "$d_tmpnam_r_proto:$usethreads" in
16254         ":define")      d_tmpnam_r_proto=define
16255                 set d_tmpnam_r_proto tmpnam_r $hdrs
16256                 eval $hasproto ;;
16257         *)      ;;
16258         esac
16259         case "$d_tmpnam_r_proto" in
16260         define)
16261         case "$tmpnam_r_proto" in
16262         ''|0) try='char* tmpnam_r(char*);'
16263         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16264         esac
16265         case "$tmpnam_r_proto" in
16266         ''|0)   d_tmpnam_r=undef
16267                 tmpnam_r_proto=0
16268                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16269         * )     case "$tmpnam_r_proto" in
16270                 REENTRANT_PROTO*) ;;
16271                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16272                 esac
16273                 echo "Prototype: $try" ;;
16274         esac
16275         ;;
16276         *)      case "$usethreads" in
16277                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16278                 esac
16279                 d_tmpnam_r=undef
16280                 tmpnam_r_proto=0
16281                 ;;
16282         esac
16283         ;;
16284 *)      tmpnam_r_proto=0
16285         ;;
16286 esac
16287
16288 : see if truncate exists
16289 set truncate d_truncate
16290 eval $inlibc
16291
16292 : see if ttyname_r exists
16293 set ttyname_r d_ttyname_r
16294 eval $inlibc
16295 case "$d_ttyname_r" in
16296 "$define")
16297         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16298         case "unistd" in
16299         time)
16300                 hdrs="$hdrs $i_systime sys/time.h"
16301                 ;;
16302         esac
16303         case "$d_ttyname_r_proto:$usethreads" in
16304         ":define")      d_ttyname_r_proto=define
16305                 set d_ttyname_r_proto ttyname_r $hdrs
16306                 eval $hasproto ;;
16307         *)      ;;
16308         esac
16309         case "$d_ttyname_r_proto" in
16310         define)
16311         case "$ttyname_r_proto" in
16312         ''|0) try='int ttyname_r(int, char*, size_t);'
16313         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16314         esac
16315         case "$ttyname_r_proto" in
16316         ''|0) try='int ttyname_r(int, char*, int);'
16317         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16318         esac
16319         case "$ttyname_r_proto" in
16320         ''|0) try='char* ttyname_r(int, char*, int);'
16321         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16322         esac
16323         case "$ttyname_r_proto" in
16324         ''|0)   d_ttyname_r=undef
16325                 ttyname_r_proto=0
16326                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16327         * )     case "$ttyname_r_proto" in
16328                 REENTRANT_PROTO*) ;;
16329                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16330                 esac
16331                 echo "Prototype: $try" ;;
16332         esac
16333         ;;
16334         *)      case "$usethreads" in
16335                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16336                 esac
16337                 d_ttyname_r=undef
16338                 ttyname_r_proto=0
16339                 ;;
16340         esac
16341         ;;
16342 *)      ttyname_r_proto=0
16343         ;;
16344 esac
16345
16346 : see if tzname[] exists
16347 echo " "
16348 if set tzname val -a d_tzname; eval $csym; $val; then
16349         val="$define"
16350         echo 'tzname[] found.' >&4
16351 else
16352         val="$undef"
16353         echo 'tzname[] NOT found.' >&4
16354 fi
16355 set d_tzname
16356 eval $setvar
16357
16358 case "$osname" in
16359 next|rhapsody|darwin) multiarch="$define" ;;
16360 esac
16361 case "$multiarch" in
16362 ''|[nN]*) multiarch="$undef" ;;
16363 esac
16364
16365 : check for ordering of bytes in a long
16366 echo " "
16367 case "$usecrosscompile$multiarch" in
16368 *$define*)
16369         $cat <<EOM
16370 You seem to be either cross-compiling or doing a multiarchitecture build,
16371 skipping the byteorder check.
16372
16373 EOM
16374         byteorder='ffff'
16375         ;;
16376 *)
16377         case "$byteorder" in
16378         '')
16379                 $cat <<'EOM'
16380 In the following, larger digits indicate more significance.  A big-endian
16381 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16382 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16383 machines may have weird orders like 3412.  A Cray will report 87654321,
16384 an Alpha will report 12345678. If the test program works the default is
16385 probably right.
16386 I'm now running the test program...
16387 EOM
16388                 $cat >try.c <<'EOCP'
16389 #include <stdio.h>
16390 int main()
16391 {
16392         int i;
16393         union {
16394                 unsigned long l;
16395                 char c[sizeof(long)];
16396         } u;
16397
16398         if (sizeof(long) > 4)
16399                 u.l = (0x08070605L << 32) | 0x04030201L;
16400         else
16401                 u.l = 0x04030201L;
16402         for (i = 0; i < sizeof(long); i++)
16403                 printf("%c", u.c[i]+'0');
16404         printf("\n");
16405         exit(0);
16406 }
16407 EOCP
16408                 xxx_prompt=y
16409                 set try
16410                 if eval $compile && ./try > /dev/null; then
16411                         dflt=`$run ./try`
16412                         case "$dflt" in
16413                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16414                                 echo "(The test program ran ok.)"
16415                                 echo "byteorder=$dflt"
16416                                 xxx_prompt=n
16417                         ;;
16418                         ????|????????) echo "(The test program ran ok.)" ;;
16419                         *) echo "(The test program didn't run right for some reason.)" ;;
16420                         esac
16421                 else
16422                         dflt='4321'
16423                         cat <<'EOM'
16424 (I can't seem to compile the test program.  Guessing big-endian...)
16425 EOM
16426                 fi
16427                 case "$xxx_prompt" in
16428                 y)
16429                         rp="What is the order of bytes in a long?"
16430                         . ./myread
16431                         byteorder="$ans"
16432                         ;;
16433                 *)      byteorder=$dflt
16434                         ;;
16435                 esac
16436                 ;;
16437         esac
16438         $rm -f try.c try
16439         ;;
16440 esac
16441
16442
16443 $cat <<EOM
16444
16445 Checking to see whether you can access character data unalignedly...
16446 EOM
16447 case "$d_u32align" in
16448 '')   $cat >try.c <<EOCP
16449 #include <stdio.h>
16450 #define U32 $u32type
16451 #define BYTEORDER 0x$byteorder
16452 #define U8 $u8type
16453 #include <signal.h>
16454 #ifdef SIGBUS
16455 $signal_t bletch(s) int s; { exit(4); }
16456 #endif
16457 int main() {
16458 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
16459     U8 buf[8];
16460     U32 *up;
16461     int i;
16462
16463     if (sizeof(U32) != 4) {
16464         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
16465         exit(1);
16466     }
16467
16468     fflush(stdout);
16469
16470 #ifdef SIGBUS
16471     signal(SIGBUS, bletch);
16472 #endif
16473
16474     buf[0] = 0;
16475     buf[1] = 0;
16476     buf[2] = 0;
16477     buf[3] = 1;
16478     buf[5] = 0;
16479     buf[6] = 0;
16480     buf[7] = 0;
16481     buf[8] = 1;
16482
16483     for (i = 0; i < 4; i++) {
16484         up = (U32*)(buf + i);
16485         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
16486                (*up == 1 << (8*(3-i)))  /* little-endian */
16487               )
16488            )
16489         {
16490             printf("read failed (%x)\n", *up);
16491             exit(2);
16492         }
16493     }
16494
16495     /* write test */
16496     for (i = 0; i < 4; i++) {
16497         up = (U32*)(buf + i);
16498         *up = 0xBeef;
16499         if (*up != 0xBeef) {
16500             printf("write failed (%x)\n", *up);
16501             exit(3);
16502         }
16503     }
16504
16505     exit(0);
16506 #else
16507     printf("1\n");
16508     exit(1);
16509 #endif
16510     return 0;
16511 }
16512 EOCP
16513 set try
16514 if eval $compile_ok; then
16515         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
16516         $run ./try 2>&1 >/dev/null
16517         case "$?" in
16518         0)      cat >&4 <<EOM
16519 You can access character data pretty unalignedly.
16520 EOM
16521                 d_u32align="$undef"
16522                 ;;
16523         *)      cat >&4 <<EOM
16524 It seems that you must access character data in an aligned manner.
16525 EOM
16526                 d_u32align="$define"
16527                 ;;
16528         esac
16529 else
16530         rp='Can you access character data at unaligned addresses?'
16531         dflt='n'
16532         . ./myread
16533         case "$ans" in
16534         [yY]*)  d_u32align="$undef"  ;;
16535         *)      d_u32align="$define" ;;
16536         esac
16537 fi
16538 $rm -f core core.try.* try.core
16539 ;;
16540 esac
16541
16542 : see if ualarm exists
16543 set ualarm d_ualarm
16544 eval $inlibc
16545
16546 : see if umask exists
16547 set umask d_umask
16548 eval $inlibc
16549
16550 : see if unordered exists
16551 set unordered d_unordered
16552 eval $inlibc
16553
16554 : see if usleep exists
16555 set usleep d_usleep
16556 eval $inlibc
16557
16558 : see if prototype for usleep is available
16559 echo " "
16560 set d_usleepproto usleep $i_unistd unistd.h
16561 eval $hasproto
16562
16563 : see if ustat exists
16564 set ustat d_ustat
16565 eval $inlibc
16566
16567 : backward compatibility for d_hvfork
16568 if test X$d_hvfork != X; then
16569         d_vfork="$d_hvfork"
16570         d_hvfork=''
16571 fi
16572 : see if there is a vfork
16573 val=''
16574 set vfork val
16575 eval $inlibc
16576
16577 : Ok, but do we want to use it. vfork is reportedly unreliable in 
16578 : perl on Solaris 2.x, and probably elsewhere.
16579 case "$val" in
16580 $define)
16581         echo " "
16582         case "$usevfork" in
16583         false) dflt='n';;
16584         *) dflt='y';;
16585         esac
16586         cat <<'EOM'
16587  
16588 Perl can only use a vfork() that doesn't suffer from strict
16589 restrictions on calling functions or modifying global data in
16590 the child.  For example, glibc-2.1 contains such a vfork()
16591 that is unsuitable.  If your system provides a proper fork()
16592 call, chances are that you do NOT want perl to use vfork().
16593
16594 EOM
16595         rp="Do you still want to use vfork()?"
16596         . ./myread
16597         case "$ans" in
16598         y|Y) ;;
16599         *)
16600                 echo "Ok, we won't use vfork()."
16601                 val="$undef"
16602                 ;;
16603         esac
16604         ;;
16605 esac
16606 set d_vfork
16607 eval $setvar
16608 case "$d_vfork" in
16609 $define) usevfork='true';;
16610 *) usevfork='false';;
16611 esac
16612
16613 : see if closedir exists
16614 set closedir d_closedir
16615 eval $inlibc
16616
16617 case "$d_closedir" in
16618 "$define")
16619         echo " "
16620         echo "Checking whether closedir() returns a status..." >&4
16621         cat > try.c <<EOM
16622 #$i_dirent I_DIRENT             /**/
16623 #$i_sysdir I_SYS_DIR            /**/
16624 #$i_sysndir I_SYS_NDIR          /**/
16625 #$i_systypes I_SYS_TYPES        /**/
16626
16627 #if defined(I_SYS_TYPES)
16628 #include <sys/types.h>
16629 #endif
16630 #if defined(I_DIRENT)
16631 #include <dirent.h>
16632 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
16633 #include <sys/dir.h>
16634 #endif
16635 #else
16636 #ifdef I_SYS_NDIR
16637 #include <sys/ndir.h>
16638 #else
16639 #ifdef I_SYS_DIR
16640 #ifdef hp9000s500
16641 #include <ndir.h>       /* may be wrong in the future */
16642 #else
16643 #include <sys/dir.h>
16644 #endif
16645 #endif
16646 #endif
16647 #endif 
16648 int main() { return closedir(opendir(".")); }
16649 EOM
16650         set try
16651         if eval $compile_ok; then
16652                 if $run ./try > /dev/null 2>&1 ; then
16653                         echo "Yes, it does."
16654                         val="$undef"
16655                 else
16656                         echo "No, it doesn't."
16657                         val="$define"
16658                 fi
16659         else
16660                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16661                 val="$define"
16662         fi
16663         ;;
16664 *)
16665         val="$undef";
16666         ;;
16667 esac
16668 set d_void_closedir
16669 eval $setvar
16670 $rm -f try try.*
16671 : see if there is a wait4
16672 set wait4 d_wait4
16673 eval $inlibc
16674
16675 : see if waitpid exists
16676 set waitpid d_waitpid
16677 eval $inlibc
16678
16679 : see if wcstombs exists
16680 set wcstombs d_wcstombs
16681 eval $inlibc
16682
16683 : see if wctomb exists
16684 set wctomb d_wctomb
16685 eval $inlibc
16686
16687 : see if writev exists
16688 set writev d_writev
16689 eval $inlibc
16690
16691 : preserve RCS keywords in files with variable substitution, grrr
16692 Date='$Date'
16693 Id='$Id'
16694 Log='$Log'
16695 RCSfile='$RCSfile'
16696 Revision='$Revision'
16697
16698 : check for alignment requirements
16699 echo " "
16700 case "$usecrosscompile$multiarch" in
16701 *$define*)
16702         $cat <<EOM
16703 You seem to be either cross-compiling or doing a multiarchitecture build,
16704 skipping the memory alignment check.
16705
16706 EOM
16707         case "$alignbytes" in
16708         '') alignbytes=8 ;;
16709         esac
16710         ;;
16711 *)
16712         case "$alignbytes" in
16713         '') echo "Checking alignment constraints..." >&4
16714                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
16715                         $cat >try.c <<'EOCP'
16716 typedef long double NV;
16717 EOCP
16718                 else
16719                         $cat >try.c <<'EOCP'
16720 typedef double NV;
16721 EOCP
16722                 fi
16723                 $cat >>try.c <<'EOCP'
16724 #include <stdio.h>
16725 struct foobar {
16726         char foo;
16727         NV bar;
16728 } try_algn;
16729 int main()
16730 {
16731     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
16732     return(0);
16733 }
16734 EOCP
16735                 set try
16736                 if eval $compile_ok; then
16737                         dflt=`$run ./try`
16738                 else
16739                         dflt='8'
16740                         echo "(I can't seem to compile the test program...)"
16741                 fi
16742                 ;;
16743         *) dflt="$alignbytes"
16744                 ;;
16745         esac
16746         rp="Doubles must be aligned on a how-many-byte boundary?"
16747         . ./myread
16748         alignbytes="$ans"
16749         $rm -f try.c try
16750         ;;
16751 esac
16752
16753
16754 : set the base revision
16755 baserev=5.0
16756
16757 : how do we catenate cpp tokens here?
16758 echo " "
16759 echo "Checking to see how your cpp does stuff like catenate tokens..." >&4
16760 $cat >cpp_stuff.c <<'EOCP'
16761 #define RCAT(a,b)a/**/b
16762 #define ACAT(a,b)a ## b
16763 RCAT(Rei,ser)
16764 ACAT(Cir,cus)
16765 EOCP
16766 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
16767 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
16768         echo "Oh!  Smells like ANSI's been here." >&4
16769         echo "We can catify or stringify, separately or together!"
16770         cpp_stuff=42
16771 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
16772         echo "Ah, yes!  The good old days!" >&4
16773         echo "However, in the good old days we don't know how to stringify and"
16774         echo "catify at the same time."
16775         cpp_stuff=1
16776 else
16777         $cat >&4 <<EOM
16778 Hmm, I don't seem to be able to catenate tokens with your cpp.  You're going
16779 to have to edit the values of CAT[2-5] in config.h...
16780 EOM
16781         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
16782 fi
16783 $rm -f cpp_stuff.*
16784
16785 : see if this is a db.h system
16786 set db.h i_db
16787 eval $inhdr
16788
16789 case "$i_db" in
16790 $define)
16791         : Check db version.
16792         echo " "
16793         echo "Checking Berkeley DB version ..." >&4
16794         $cat >try.c <<EOCP
16795 #$d_const HASCONST
16796 #ifndef HASCONST
16797 #define const
16798 #endif
16799 #include <sys/types.h>
16800 #include <stdio.h>
16801 #include <db.h>
16802 int main(int argc, char *argv[])
16803 {
16804 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
16805     int Major, Minor, Patch ;
16806     unsigned long Version ;
16807     (void)db_version(&Major, &Minor, &Patch) ;
16808     if (argc == 2) {
16809         printf("%d %d %d %d %d %d\n",
16810                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
16811                Major, Minor, Patch);
16812         exit(0);
16813     }
16814     printf("You have Berkeley DB Version 2 or greater.\n");
16815
16816     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
16817                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
16818     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
16819                 Major, Minor, Patch) ;
16820
16821     /* check that db.h & libdb are compatible */
16822     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
16823         printf("db.h and libdb are incompatible.\n") ;
16824         exit(3);        
16825     }
16826
16827     printf("db.h and libdb are compatible.\n") ;
16828
16829     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
16830                 + DB_VERSION_PATCH ;
16831
16832     /* needs to be >= 2.3.4 */
16833     if (Version < 2003004) {
16834     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
16835         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
16836         exit(2);        
16837     }
16838
16839     exit(0);
16840 #else
16841 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
16842     if (argc == 2) {
16843         printf("1 0 0\n");
16844         exit(0);
16845     }
16846     printf("You have Berkeley DB Version 1.\n");
16847     exit(0);    /* DB version < 2: the coast is clear. */
16848 #else
16849     exit(1);    /* <db.h> not Berkeley DB? */
16850 #endif
16851 #endif
16852 }
16853 EOCP
16854         set try
16855         if eval $compile_ok && $run ./try; then
16856                 echo 'Looks OK.' >&4
16857                 set `$run ./try 1`
16858                 db_version_major=$1
16859                 db_version_minor=$2
16860                 db_version_patch=$3
16861         else
16862                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
16863                 i_db=$undef
16864                 case " $libs " in
16865                 *"-ldb "*)
16866                         : Remove db from list of libraries to use
16867                         echo "Removing unusable -ldb from library list" >&4
16868                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
16869                         shift
16870                         libs="$*"
16871                         echo "libs = $libs" >&4
16872                         ;;
16873                 esac
16874         fi
16875         $rm -f try.*
16876         ;;
16877 esac
16878
16879 case "$i_db" in
16880 define)
16881         : Check the return type needed for hash 
16882         echo " "
16883         echo "Checking return type needed for hash for Berkeley DB ..." >&4
16884         $cat >try.c <<EOCP
16885 #$d_const HASCONST
16886 #ifndef HASCONST
16887 #define const
16888 #endif
16889 #include <sys/types.h>
16890 #include <db.h>
16891
16892 #ifndef DB_VERSION_MAJOR
16893 u_int32_t hash_cb (ptr, size)
16894 const void *ptr;
16895 size_t size;
16896 {
16897 }
16898 HASHINFO info;
16899 int main()
16900 {
16901         info.hash = hash_cb;
16902 }
16903 #endif
16904 EOCP
16905         if $cc $ccflags -c try.c >try.out 2>&1 ; then
16906                 if $contains warning try.out >>/dev/null 2>&1 ; then
16907                         db_hashtype='int'
16908                 else
16909                         db_hashtype='u_int32_t'
16910                 fi
16911         else
16912                 : XXX Maybe we should just give up here.
16913                 db_hashtype=u_int32_t
16914                 $cat try.out >&4
16915                 echo "Help:  I can't seem to compile the db test program." >&4
16916                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
16917         fi
16918         $rm -f try.*
16919         echo "Your version of Berkeley DB uses $db_hashtype for hash."
16920         ;;
16921 *)      db_hashtype=u_int32_t
16922         ;;
16923 esac
16924 case "$i_db" in
16925 define)
16926         : Check the return type needed for prefix 
16927         echo " "
16928         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
16929         cat >try.c <<EOCP
16930 #$d_const HASCONST
16931 #ifndef HASCONST
16932 #define const
16933 #endif
16934 #include <sys/types.h>
16935 #include <db.h>
16936
16937 #ifndef DB_VERSION_MAJOR
16938 size_t prefix_cb (key1, key2)
16939 const DBT *key1;
16940 const DBT *key2;
16941 {
16942 }
16943 BTREEINFO info;
16944 int main()
16945 {
16946         info.prefix = prefix_cb;
16947 }
16948 #endif
16949 EOCP
16950         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
16951                 if $contains warning try.out >>/dev/null 2>&1 ; then
16952                         db_prefixtype='int'
16953                 else
16954                         db_prefixtype='size_t'
16955                 fi
16956         else
16957                 db_prefixtype='size_t'
16958                 : XXX Maybe we should just give up here.
16959                 $cat try.out >&4
16960                 echo "Help:  I can't seem to compile the db test program." >&4
16961                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
16962         fi
16963         $rm -f try.*
16964         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
16965         ;;
16966 *)      db_prefixtype='size_t'
16967         ;;
16968 esac
16969
16970
16971 : How can we generate normalized random numbers ?
16972 echo " "
16973 echo "Looking for a random number function..." >&4
16974 case "$randfunc" in
16975 '')
16976         if set drand48 val -f; eval $csym; $val; then
16977                 dflt="drand48"
16978                 echo "Good, found drand48()." >&4
16979         elif set random val -f; eval $csym; $val; then
16980                 dflt="random"
16981                 echo "OK, found random()." >&4
16982         else
16983                 dflt="rand"
16984                 echo "Yick, looks like I have to use rand()." >&4
16985         fi
16986         echo " "
16987         ;;
16988 *)
16989         dflt="$randfunc"
16990         ;;
16991 esac
16992 cont=true
16993
16994 case "$ccflags" in
16995 *-Dmy_rand=*|*-Dmy_srand=*)
16996         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
16997         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
16998         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
16999         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
17000         ;;
17001 esac
17002
17003 while $test "$cont"; do
17004         rp="Use which function to generate random numbers?"
17005         . ./myread
17006         if $test "$ans" = "$dflt"; then
17007                 : null
17008         else
17009                 randbits=''
17010         fi
17011         randfunc="$ans"
17012         if set $ans val -f; eval $csym; $val; then
17013                 cont=''
17014         else
17015                 dflt=y
17016                 rp="I cannot find function $ans. Use that name anyway?"
17017                 . ./myread
17018                 dflt=rand
17019                 case "$ans" in
17020                         [yY]*) cont='';;
17021                 esac
17022         fi
17023         case "$cont" in
17024         '')
17025                 case "$randfunc" in
17026                 drand48)
17027                         drand01="drand48()"
17028                         seedfunc="srand48"
17029                         randbits=48
17030                         randseedtype=long
17031                         ;;
17032                 rand|random)
17033                         case "$randbits" in
17034                         '')
17035 echo "Checking to see how many bits your $randfunc() function produces..." >&4
17036                                 $cat >try.c <<EOCP
17037 #$i_unistd I_UNISTD
17038 #$i_stdlib I_STDLIB
17039 #include <stdio.h>
17040 #ifdef I_UNISTD
17041 #  include <unistd.h>
17042 #endif
17043 #ifdef I_STDLIB
17044 #  include <stdlib.h>
17045 #endif
17046 int main()
17047 {
17048         register int i;
17049         register unsigned long tmp;
17050         register unsigned long max = 0L;
17051
17052         for (i = 1000; i; i--) {
17053                 tmp = (unsigned long) $randfunc();
17054                 if (tmp > max) max = tmp;
17055         }
17056         for (i = 0; max; i++)
17057                 max /= 2;
17058         printf("%d\n",i);
17059 }
17060 EOCP
17061                                 set try
17062                                 if eval $compile_ok; then
17063                                         dflt=`try`
17064                                 else
17065                                         dflt='?'
17066                                         echo "(I can't seem to compile the test program...)"
17067                                 fi
17068                                 ;;
17069                         *)
17070                                 dflt="$randbits"
17071                                 ;;
17072                         esac
17073                         rp="How many bits does your $randfunc() function produce?"
17074                         . ./myread
17075                         randbits="$ans"
17076                         $rm -f try.c try
17077                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17078                         seedfunc="s$randfunc"
17079                         randseedtype=unsigned
17080                         ;;
17081                 *)
17082                         dflt="31"
17083                         rp="How many bits does your $randfunc() function produce?"
17084                         . ./myread
17085                         randbits="$ans"
17086                         seedfunc="s$randfunc"
17087                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17088                         if set $seedfunc val -f; eval $csym; $val; then
17089                                 echo "(Using $seedfunc() to seed random generator)"
17090                         else
17091                                 echo "(Warning: no $seedfunc() to seed random generator)"
17092                                 seedfunc=rand
17093                         fi
17094                         randseedtype=unsigned
17095                         ;;
17096                 esac
17097                 ;;
17098         esac
17099 done
17100
17101 echo " "
17102 echo "Determining whether or not we are on an EBCDIC system..." >&4
17103 $cat >try.c <<'EOM'
17104 int main()
17105 {
17106   if ('M'==0xd4) return 0;
17107   return 1;
17108 }
17109 EOM
17110
17111 val=$undef
17112 set try
17113 if eval $compile_ok; then
17114         if $run ./try; then
17115                 echo "You seem to speak EBCDIC." >&4
17116                 val="$define"
17117         else
17118                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
17119         fi
17120 else
17121         echo "I'm unable to compile the test program." >&4
17122         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
17123 fi
17124 $rm -f try try.*
17125 set ebcdic
17126 eval $setvar
17127
17128 echo " "
17129 $cat >&4 <<EOM
17130 Checking how to flush all pending stdio output...
17131 EOM
17132 # I only know how to find the first 32 possibly open files on SunOS.
17133 # See also hints/sunos_4_1.sh and util.c  --AD
17134 case "$osname" in
17135 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
17136 esac
17137 $cat >>try.c <<EOCP
17138 #include <stdio.h>
17139 #$i_unistd I_UNISTD
17140 #ifdef I_UNISTD
17141 # include <unistd.h>
17142 #endif
17143 #$d_sysconf HAS_SYSCONF
17144 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
17145 #ifdef HAS_STDIO_STREAM_ARRAY
17146 # define STDIO_STREAM_ARRAY $stdio_stream_array
17147 #endif
17148 int main() {
17149   FILE* p;
17150   unlink("try.out");
17151   p = fopen("try.out", "w");
17152 #ifdef TRY_FPUTC
17153   fputc('x', p);
17154 #else
17155 # ifdef TRY_FPRINTF
17156   fprintf(p, "x");
17157 # endif
17158 #endif
17159 #ifdef TRY_FFLUSH_NULL
17160   fflush(NULL);
17161 #endif
17162 #ifdef TRY_FFLUSH_ALL
17163   {
17164     long open_max = -1;
17165 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
17166     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
17167 # else
17168 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
17169     open_max = sysconf(_SC_OPEN_MAX);
17170 #  else
17171 #   ifdef FOPEN_MAX
17172     open_max = FOPEN_MAX;
17173 #   else
17174 #    ifdef OPEN_MAX
17175     open_max = OPEN_MAX;
17176 #    else
17177 #     ifdef _NFILE
17178     open_max = _NFILE;
17179 #     endif
17180 #    endif
17181 #   endif
17182 #  endif
17183 # endif 
17184 # ifdef HAS_STDIO_STREAM_ARRAY
17185     if (open_max > 0) {
17186       long i;
17187       for (i = 0; i < open_max; i++)
17188             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17189                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17190                 STDIO_STREAM_ARRAY[i]._flag)
17191                 fflush(&STDIO_STREAM_ARRAY[i]);
17192     }   
17193   }
17194 # endif
17195 #endif
17196   _exit(42);
17197 }
17198 EOCP
17199 : first we have to find out how _not_ to flush
17200 $to try.c
17201 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17202     output=''
17203     set try -DTRY_FPUTC
17204     if eval $compile; then
17205             $run ./try 2>/dev/null
17206             code="$?"
17207             $from try.out
17208             if $test ! -s try.out -a "X$code" = X42; then
17209                 output=-DTRY_FPUTC
17210             fi
17211     fi
17212     case "$output" in
17213     '')
17214             set try -DTRY_FPRINTF
17215             if eval $compile; then
17216                     $run ./try 2>/dev/null
17217                     code="$?"
17218                     $from try.out
17219                     if $test ! -s try.out -a "X$code" = X42; then
17220                         output=-DTRY_FPRINTF
17221                     fi
17222             fi
17223         ;;
17224     esac
17225 fi
17226 : check for fflush NULL behaviour
17227 case "$fflushNULL" in
17228 '')     set try -DTRY_FFLUSH_NULL $output
17229         if eval $compile; then
17230                 $run ./try 2>/dev/null
17231                 code="$?"
17232                 $from try.out
17233                 if $test -s try.out -a "X$code" = X42; then
17234                         fflushNULL="`$cat try.out`"
17235                 else
17236                         if $test "X$code" != X42; then
17237                                 $cat >&4 <<EOM
17238 (If this test failed, don't worry, we'll try another method shortly.)
17239 EOM
17240                         fi
17241                 fi
17242         fi
17243         $rm -f core try.core core.try.*
17244         case "$fflushNULL" in
17245         x)      $cat >&4 <<EOM
17246 Your fflush(NULL) works okay for output streams.
17247 Let's see if it clobbers input pipes...
17248 EOM
17249 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17250 # bug that improperly flushes the input end of pipes.  So we avoid the
17251 # autoflush on fork/system/exec support for now. :-(
17252 $cat >tryp.c <<EOCP
17253 #include <stdio.h>
17254 int
17255 main(int argc, char **argv)
17256 {
17257     char buf[1024];
17258     int i;
17259     char *bp = buf;
17260     while (1) {
17261         while ((i = getc(stdin)) != -1
17262                && (*bp++ = i) != '\n'
17263                && bp < &buf[1024])
17264         /* DO NOTHING */ ;
17265         *bp = '\0';
17266         fprintf(stdout, "%s", buf);
17267         fflush(NULL);
17268         if (i == -1)
17269             return 0;
17270         bp = buf;
17271     }
17272 }
17273 EOCP
17274                 fflushNULL="$define"
17275                 set tryp
17276                 if eval $compile; then
17277                     $rm -f tryp.out
17278                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17279                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17280                        $cat >&4 <<EOM
17281 fflush(NULL) seems to behave okay with input streams.
17282 EOM
17283                         fflushNULL="$define"
17284                     else
17285                         $cat >&4 <<EOM
17286 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17287 EOM
17288                         fflushNULL="$undef"
17289                     fi
17290                 fi
17291                 $rm -f core tryp.c tryp.core core.tryp.*
17292                 ;;
17293         '')     $cat >&4 <<EOM
17294 Your fflush(NULL) isn't working (contrary to ANSI C).
17295 EOM
17296                 fflushNULL="$undef"
17297                 ;;
17298         *)      $cat >&4 <<EOM
17299 Cannot figure out whether your fflush(NULL) works or not.
17300 I'm assuming it doesn't (contrary to ANSI C).
17301 EOM
17302                 fflushNULL="$undef"
17303                 ;;
17304         esac
17305         ;;
17306 $define|true|[yY]*)
17307         fflushNULL="$define"
17308         ;;
17309 *)
17310         fflushNULL="$undef"
17311         ;;
17312 esac
17313 : check explicit looping only if NULL did not work, and if the pipe
17314 : bug does not show up on an explicit flush too
17315 case "$fflushNULL" in
17316 "$undef")
17317         $cat >tryp.c <<EOCP
17318 #include <stdio.h>
17319 int
17320 main(int argc, char **argv)
17321 {
17322     char buf[1024];
17323     int i;
17324     char *bp = buf;
17325     while (1) {
17326         while ((i = getc(stdin)) != -1
17327                && (*bp++ = i) != '\n'
17328                && bp < &buf[1024])
17329         /* DO NOTHING */ ;
17330         *bp = '\0';
17331         fprintf(stdout, "%s", buf);
17332         fflush(stdin);
17333         if (i == -1)
17334             return 0;
17335         bp = buf;
17336     }
17337 }
17338 EOCP
17339         set tryp
17340         if eval $compile; then
17341             $rm -f tryp.out
17342             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17343             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17344                $cat >&4 <<EOM
17345 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17346 EOM
17347                 : now check for fflushall behaviour
17348                 case "$fflushall" in
17349                 '')     set try -DTRY_FFLUSH_ALL $output
17350                         if eval $compile; then
17351                                 $cat >&4 <<EOM
17352 (Now testing the other method--but note that this also may fail.)
17353 EOM
17354                                 $run ./try 2>/dev/null
17355                                 code=$?
17356                                 $from try.out
17357                                 if $test -s try.out -a "X$code" = X42; then
17358                                         fflushall="`$cat try.out`"
17359                                 fi
17360                         fi
17361                         $rm -f core try.core core.try.*
17362                         case "$fflushall" in
17363                         x)      $cat >&4 <<EOM
17364 Whew. Flushing explicitly all the stdio streams works.
17365 EOM
17366                                 fflushall="$define"
17367                                 ;;
17368                         '')     $cat >&4 <<EOM
17369 Sigh. Flushing explicitly all the stdio streams doesn't work.
17370 EOM
17371                                 fflushall="$undef"
17372                                 ;;
17373                         *)      $cat >&4 <<EOM
17374 Cannot figure out whether flushing stdio streams explicitly works or not.
17375 I'm assuming it doesn't.
17376 EOM
17377                                 fflushall="$undef"
17378                                 ;;
17379                         esac
17380                         ;;
17381                 "$define"|true|[yY]*)
17382                         fflushall="$define"
17383                         ;;
17384                 *)
17385                         fflushall="$undef"
17386                         ;;
17387                 esac
17388             else
17389                 $cat >&4 <<EOM
17390 All is futile.  Even fflush(stdin) clobbers input pipes!
17391 EOM
17392                 fflushall="$undef"
17393             fi
17394         else
17395             fflushall="$undef"
17396         fi
17397         $rm -f core tryp.c tryp.core core.tryp.*
17398         ;;
17399 *)      fflushall="$undef"
17400         ;;
17401 esac
17402
17403 case "$fflushNULL$fflushall" in
17404 undefundef)
17405         $cat <<EOM
17406 OK, I give up.  I cannot figure out how to flush pending stdio output.
17407 We won't be flushing handles at all before fork/exec/popen.
17408 EOM
17409         ;;
17410 esac
17411 $rm -f try.* try$exe_ext
17412
17413 : Store the full pathname to the ar program for use in the C program
17414 : Respect a hint or command line value for full_ar.
17415 case "$full_ar" in
17416 '') full_ar=$ar ;;
17417 esac
17418
17419 : Store the full pathname to the sed program for use in the C program
17420 full_sed=$sed
17421
17422 : see what type gids are declared as in the kernel
17423 echo " "
17424 echo "Looking for the type for group ids returned by getgid()."
17425 set gid_t gidtype xxx stdio.h sys/types.h
17426 eval $typedef
17427 case "$gidtype" in
17428 xxx)
17429         xxx=`./findhdr sys/user.h`
17430         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17431         case $1 in
17432         unsigned) dflt="$1 $2" ;;
17433         *) dflt="$1" ;;
17434         esac
17435         ;;
17436 *) dflt="$gidtype";;
17437 esac
17438 case "$gidtype" in
17439 gid_t) echo "gid_t found." ;;
17440 *)      rp="What is the type for group ids returned by getgid()?"
17441         . ./myread
17442         gidtype="$ans"
17443         ;;
17444 esac
17445
17446 echo " "
17447 case "$gidtype" in
17448 *_t) zzz="$gidtype"     ;;
17449 *)   zzz="gid"          ;;
17450 esac
17451 echo "Checking the size of $zzz..." >&4 
17452 cat > try.c <<EOCP
17453 #include <sys/types.h>
17454 #include <stdio.h>
17455 int main() {
17456     printf("%d\n", (int)sizeof($gidtype));
17457     exit(0);
17458 }
17459 EOCP
17460 set try
17461 if eval $compile_ok; then
17462         yyy=`$run ./try`
17463         case "$yyy" in
17464         '')     gidsize=4
17465                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
17466                 ;;
17467         *)      gidsize=$yyy
17468                 echo "Your $zzz is $gidsize bytes long."
17469                 ;;
17470         esac
17471 else
17472         gidsize=4
17473         echo "(I can't compile the test program--guessing $gidsize.)" >&4
17474 fi
17475
17476
17477 echo " "
17478 case "$gidtype" in
17479 *_t) zzz="$gidtype"     ;;
17480 *)   zzz="gid"          ;;
17481 esac
17482 echo "Checking the sign of $zzz..." >&4 
17483 cat > try.c <<EOCP
17484 #include <sys/types.h>
17485 #include <stdio.h>
17486 int main() {
17487         $gidtype foo = -1;
17488         if (foo < 0)
17489                 printf("-1\n");
17490         else
17491                 printf("1\n");
17492 }
17493 EOCP
17494 set try
17495 if eval $compile; then
17496         yyy=`$run ./try`
17497         case "$yyy" in
17498         '')     gidsign=1
17499                 echo "(I can't execute the test program--guessing unsigned.)" >&4
17500                 ;;
17501         *)      gidsign=$yyy
17502                 case "$gidsign" in
17503                  1) echo "Your $zzz is unsigned." ;;
17504                 -1) echo "Your $zzz is signed."   ;;
17505                 esac
17506                 ;;
17507         esac
17508 else
17509         gidsign=1
17510         echo "(I can't compile the test program--guessing unsigned.)" >&4
17511 fi
17512
17513
17514 echo " "
17515
17516 if $test X"$quadtype" != X; then
17517
17518 echo "Checking how to print 64-bit integers..." >&4
17519
17520 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
17521         $cat >try.c <<'EOCP'
17522 #include <sys/types.h>
17523 #include <stdio.h>
17524 int main() {
17525   int q = 12345678901;
17526   printf("%ld\n", q);
17527 }
17528 EOCP
17529         set try
17530         if eval $compile; then
17531                 yyy=`$run ./try`
17532                 case "$yyy" in
17533                 12345678901)
17534                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
17535                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
17536                         echo "We will use %d."
17537                         ;;
17538                 esac
17539         fi
17540 fi
17541
17542 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
17543         $cat >try.c <<'EOCP'
17544 #include <sys/types.h>
17545 #include <stdio.h>
17546 int main() {
17547   long q = 12345678901;
17548   printf("%ld\n", q);
17549 }
17550 EOCP
17551         set try
17552         if eval $compile; then
17553                 yyy=`$run ./try`
17554                 case "$yyy" in
17555                 12345678901)
17556                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
17557                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
17558                         echo "We will use %ld."
17559                         ;;
17560                 esac
17561         fi
17562 fi
17563
17564 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
17565         $cat >try.c <<'EOCP'
17566 #include <sys/types.h>
17567 #include <inttypes.h>
17568 #include <stdio.h>
17569 int main() {
17570   int64_t q = 12345678901;
17571   printf("%" PRId64 "\n", q);
17572 }
17573 EOCP
17574         set try
17575         if eval $compile; then
17576                 yyy=`$run ./try`
17577                 case "$yyy" in
17578                 12345678901)
17579                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
17580                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
17581                         echo "We will use the C9X style."
17582                         ;;
17583                 esac
17584         fi
17585 fi
17586
17587 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
17588         $cat >try.c <<EOCP
17589 #include <sys/types.h>
17590 #include <stdio.h>
17591 int main() {
17592   $quadtype q = 12345678901;
17593   printf("%Ld\n", q);
17594 }
17595 EOCP
17596         set try
17597         if eval $compile; then
17598                 yyy=`$run ./try`
17599                 case "$yyy" in
17600                 12345678901)
17601                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
17602                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
17603                         echo "We will use %Ld."
17604                         ;;
17605                 esac
17606         fi
17607 fi
17608
17609 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
17610         $cat >try.c <<'EOCP'
17611 #include <sys/types.h>
17612 #include <stdio.h>
17613 int main() {
17614   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
17615   printf("%lld\n", q);
17616 }
17617 EOCP
17618         set try
17619         if eval $compile; then
17620                 yyy=`$run ./try`
17621                 case "$yyy" in
17622                 12345678901)
17623                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
17624                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
17625                         echo "We will use the %lld style."
17626                         ;;
17627                 esac
17628         fi
17629 fi
17630
17631 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
17632         $cat >try.c <<EOCP
17633 #include <sys/types.h>
17634 #include <stdio.h>
17635 int main() {
17636   $quadtype q = 12345678901;
17637   printf("%qd\n", q);
17638 }
17639 EOCP
17640         set try
17641         if eval $compile; then
17642                 yyy=`$run ./try`
17643                 case "$yyy" in
17644                 12345678901)
17645                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
17646                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
17647                         echo "We will use %qd."
17648                         ;;
17649                 esac
17650         fi
17651 fi
17652
17653 if $test X"$sPRId64" = X; then
17654         echo "Cannot figure out how to print 64-bit integers." >&4
17655 fi
17656
17657 $rm -f try try.*
17658
17659 fi
17660
17661 case "$sPRId64" in
17662 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
17663         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
17664         ;;
17665 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
17666         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
17667         ;;
17668 esac
17669
17670
17671 echo " "
17672 $echo "Checking the format strings to be used for Perl's internal types..." >&4
17673
17674 if $test X"$ivsize" = X8; then
17675         ivdformat="$sPRId64"
17676         uvuformat="$sPRIu64"
17677         uvoformat="$sPRIo64"
17678         uvxformat="$sPRIx64"
17679         uvXUformat="$sPRIXU64"
17680 else
17681         if $test X"$ivsize" = X"$longsize"; then
17682                 ivdformat='"ld"'
17683                 uvuformat='"lu"'
17684                 uvoformat='"lo"'
17685                 uvxformat='"lx"'
17686                 uvXUformat='"lX"'
17687         else
17688                 if $test X"$ivsize" = X"$intsize"; then
17689                         ivdformat='"d"'
17690                         uvuformat='"u"'
17691                         uvoformat='"o"'
17692                         uvxformat='"x"'
17693                         uvXUformat='"X"'
17694                 else
17695                         : far out
17696                         if $test X"$ivsize" = X"$shortsize"; then
17697                                 ivdformat='"hd"'
17698                                 uvuformat='"hu"'
17699                                 uvoformat='"ho"'
17700                                 uvxformat='"hx"'
17701                                 uvXUformat='"hX"'
17702                         fi
17703                 fi
17704         fi
17705 fi
17706
17707 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
17708         nveformat="$sPRIeldbl"
17709         nvfformat="$sPRIfldbl"
17710         nvgformat="$sPRIgldbl"
17711         nvEUformat="$sPRIEUldbl"
17712         nvFUformat="$sPRIFUldbl"
17713         nvGUformat="$sPRIGUldbl"
17714 else
17715         nveformat='"e"'
17716         nvfformat='"f"'
17717         nvgformat='"g"'
17718         nvEUformat='"E"'
17719         nvFUformat='"F"'
17720         nvGUformat='"G"'
17721 fi
17722
17723 case "$ivdformat" in
17724 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
17725     exit 1
17726     ;;
17727 esac
17728
17729
17730 echo " "
17731 $echo "Checking the format string to be used for gids..." >&4
17732
17733 case "$gidsign" in
17734 -1)     if $test X"$gidsize" = X"$ivsize"; then
17735                 gidformat="$ivdformat"
17736         else
17737                 if $test X"$gidsize" = X"$longsize"; then
17738                         gidformat='"ld"'
17739                 else
17740                         if $test X"$gidsize" = X"$intsize"; then
17741                                 gidformat='"d"'
17742                         else
17743                                 if $test X"$gidsize" = X"$shortsize"; then
17744                                         gidformat='"hd"'
17745                                 fi
17746                         fi
17747                 fi
17748         fi
17749         ;;
17750 *)      if $test X"$gidsize" = X"$uvsize"; then
17751                 gidformat="$uvuformat"
17752         else
17753                 if $test X"$gidsize" = X"$longsize"; then
17754                         gidformat='"lu"'
17755                 else
17756                         if $test X"$gidsize" = X"$intsize"; then
17757                                 gidformat='"u"'
17758                         else
17759                                 if $test X"$gidsize" = X"$shortsize"; then
17760                                         gidformat='"hu"'
17761                                 fi
17762                         fi
17763                 fi
17764         fi
17765         ;;
17766 esac
17767
17768 : see if getgroups exists
17769 set getgroups d_getgrps
17770 eval $inlibc
17771
17772 : see if setgroups exists
17773 set setgroups d_setgrps
17774 eval $inlibc
17775
17776
17777 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
17778 echo " "
17779 case "$d_getgrps$d_setgrps" in
17780 *define*)
17781         case "$groupstype" in
17782         '') dflt="$gidtype" ;;
17783         *)  dflt="$groupstype" ;;
17784         esac
17785         $cat <<EOM
17786 What type of pointer is the second argument to getgroups() and setgroups()?
17787 Usually this is the same as group ids, $gidtype, but not always.
17788
17789 EOM
17790         rp='What type pointer is the second argument to getgroups() and setgroups()?'
17791         . ./myread
17792         groupstype="$ans"
17793         ;;
17794 *)  groupstype="$gidtype";;
17795 esac
17796
17797 echo " "
17798 echo "Checking if your $make program sets \$(MAKE)..." >&4
17799 case "$make_set_make" in
17800 '')
17801         $sed 's/^X //' > testmake.mak << 'EOF'
17802 Xall:
17803 X       @echo 'maketemp="$(MAKE)"'
17804 EOF
17805         case "`$make -f testmake.mak 2>/dev/null`" in
17806         *maketemp=*) make_set_make='#' ;;
17807         *)      make_set_make="MAKE=$make" ;;
17808         esac
17809         $rm -f testmake.mak
17810         ;;
17811 esac
17812 case "$make_set_make" in
17813 '#') echo "Yup, it does.";;
17814 *) echo "Nope, it doesn't.";;
17815 esac
17816
17817 : see what type is used for mode_t
17818 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
17819 set mode_t modetype int stdio.h sys/types.h
17820 eval $typedef_ask
17821
17822 : see if stdarg is available
17823 echo " "
17824 if $test `./findhdr stdarg.h`; then
17825         echo "<stdarg.h> found." >&4
17826         valstd="$define"
17827 else
17828         echo "<stdarg.h> NOT found." >&4
17829         valstd="$undef"
17830 fi
17831
17832 : see if varags is available
17833 echo " "
17834 if $test `./findhdr varargs.h`; then
17835         echo "<varargs.h> found." >&4
17836 else
17837         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
17838 fi
17839
17840 : set up the varargs testing programs
17841 $cat > varargs.c <<EOP
17842 #ifdef I_STDARG
17843 #include <stdarg.h>
17844 #endif
17845 #ifdef I_VARARGS
17846 #include <varargs.h>
17847 #endif
17848
17849 #ifdef I_STDARG
17850 int f(char *p, ...)
17851 #else
17852 int f(va_alist)
17853 va_dcl
17854 #endif
17855 {
17856         va_list ap;
17857 #ifndef I_STDARG
17858         char *p;
17859 #endif
17860 #ifdef I_STDARG
17861         va_start(ap,p);
17862 #else
17863         va_start(ap);
17864         p = va_arg(ap, char *);
17865 #endif
17866         va_end(ap);
17867 }
17868 EOP
17869 $cat > varargs <<EOP
17870 $startsh
17871 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
17872         echo "true"
17873 else
17874         echo "false"
17875 fi
17876 $rm -f varargs$_o
17877 EOP
17878 chmod +x varargs
17879
17880 : now check which varargs header should be included
17881 echo " "
17882 i_varhdr=''
17883 case "$valstd" in
17884 "$define")
17885         if `./varargs I_STDARG`; then
17886                 val='stdarg.h'
17887         elif `./varargs I_VARARGS`; then
17888                 val='varargs.h'
17889         fi
17890         ;;
17891 *)
17892         if `./varargs I_VARARGS`; then
17893                 val='varargs.h'
17894         fi
17895         ;;
17896 esac
17897 case "$val" in
17898 '')
17899 echo "I could not find the definition for va_dcl... You have problems..." >&4
17900         val="$undef"; set i_stdarg; eval $setvar
17901         val="$undef"; set i_varargs; eval $setvar
17902         ;;
17903 *) 
17904         set i_varhdr
17905         eval $setvar
17906         case "$i_varhdr" in
17907         stdarg.h)
17908                 val="$define"; set i_stdarg; eval $setvar
17909                 val="$undef"; set i_varargs; eval $setvar
17910                 ;;
17911         varargs.h)
17912                 val="$undef"; set i_stdarg; eval $setvar
17913                 val="$define"; set i_varargs; eval $setvar
17914                 ;;
17915         esac
17916         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
17917 esac
17918 $rm -f varargs*
17919
17920 : see if we need va_copy
17921 echo " "
17922 case "$i_stdarg" in
17923 "$define")
17924         $cat >try.c <<EOCP
17925 #include <stdarg.h>
17926 #include <stdio.h>
17927 #$i_stdlib I_STDLIB
17928 #ifdef I_STDLIB
17929 #include <stdlib.h>
17930 #endif
17931 #include <signal.h>
17932
17933 int
17934 ivfprintf(FILE *f, const char *fmt, va_list *valp)
17935 {
17936   return vfprintf(f, fmt, *valp);
17937 }
17938  
17939 int    
17940 myvfprintf(FILE *f, const  char *fmt, va_list val)
17941 {
17942   return ivfprintf(f, fmt, &val);
17943 }
17944       
17945 int
17946 myprintf(char *fmt, ...) 
17947 {
17948   va_list val;
17949   va_start(val, fmt);
17950   return myvfprintf(stdout, fmt, val); 
17951 }         
17952
17953 int
17954 main(int ac, char **av)
17955 {
17956   signal(SIGSEGV, exit);
17957
17958   myprintf("%s%cs all right, then\n", "that", '\'');                            
17959   exit(0);      
17960 }
17961 EOCP
17962         set try
17963         if eval $compile && $run ./try 2>&1 >/dev/null; then
17964                 case "`$run ./try`" in
17965                 "that's all right, then")
17966                         okay=yes
17967                         ;;
17968                 esac
17969         fi
17970         case "$okay" in
17971         yes)    echo "It seems that you don't need va_copy()." >&4
17972                 need_va_copy="$undef"
17973                 ;;
17974         *)      echo "It seems that va_copy() or similar will be needed." >&4
17975                 need_va_copy="$define"
17976                 ;;
17977         esac
17978         $rm -f try.* core core.* *.core *.core.*
17979         ;;
17980 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
17981         ;;
17982 esac
17983
17984 : see what type is used for size_t
17985 rp="What is the type used for the length parameter for string functions?"
17986 set size_t sizetype 'unsigned int' stdio.h sys/types.h
17987 eval $typedef_ask
17988
17989 : check for type of arguments to gethostbyaddr. 
17990 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
17991         case "$d_gethbyaddr" in
17992         $define)
17993                 $cat <<EOM
17994
17995 Checking to see what type of arguments are accepted by gethostbyaddr().
17996 EOM
17997                 hdrs="$define sys/types.h
17998                         $d_socket sys/socket.h 
17999                         $i_niin netinet/in.h 
18000                         $i_netdb netdb.h
18001                         $i_unistd unistd.h"
18002                 : The first arg can 'char *' or 'void *'
18003                 : The second arg is some of integral type
18004                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
18005                         for yyy in size_t long int; do
18006                                 case "$netdb_host_type" in
18007                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
18008                                         if ./protochk "$try" $hdrs; then
18009                                                 echo "Your system accepts $xxx for the first arg."
18010                                                 echo "...and $yyy for the second arg."
18011                                                 netdb_host_type="$xxx"
18012                                                 netdb_hlen_type="$yyy"
18013                                         fi
18014                                         ;;
18015                                 esac
18016                         done
18017                 done
18018                 : In case none of those worked, prompt the user.
18019                 case "$netdb_host_type" in
18020                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
18021                         dflt='char *'
18022                         . ./myread
18023                         netdb_host_type=$ans
18024                         rp='What is the type for the 2nd argument to gethostbyaddr?'
18025                         dflt="$sizetype"
18026                         . ./myread
18027                         netdb_hlen_type=$ans
18028                         ;;
18029                 esac
18030                 ;;
18031         *)      : no gethostbyaddr, so pick harmless defaults
18032                 netdb_host_type='char *'
18033                 netdb_hlen_type="$sizetype"
18034                 ;;
18035         esac
18036         # Remove the "const" if needed. -- but then we'll have a 
18037         # prototype clash!
18038         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
18039 fi
18040
18041 : check for type of argument to gethostbyname. 
18042 if test "X$netdb_name_type" = X ; then
18043         case "$d_gethbyname" in
18044         $define)
18045                 $cat <<EOM
18046
18047 Checking to see what type of argument is accepted by gethostbyname().
18048 EOM
18049                 hdrs="$define sys/types.h
18050                         $d_socket sys/socket.h 
18051                         $i_niin netinet/in.h 
18052                         $i_netdb netdb.h
18053                         $i_unistd unistd.h"
18054                 for xxx in "const char *" "char *"; do
18055                         case "$netdb_name_type" in
18056                         '')     try="extern struct hostent *gethostbyname($xxx);"
18057                                 if ./protochk "$try" $hdrs; then
18058                                         echo "Your system accepts $xxx."
18059                                         netdb_name_type="$xxx"
18060                                 fi
18061                                 ;;
18062                         esac
18063                 done
18064                 : In case none of those worked, prompt the user.
18065                 case "$netdb_name_type" in
18066                 '')     rp='What is the type for the 1st argument to gethostbyname?'
18067                         dflt='char *'
18068                         . ./myread
18069                         netdb_name_type=$ans
18070                         ;;
18071                 esac
18072                 ;;
18073         *)      : no gethostbyname, so pick harmless default
18074                 netdb_name_type='char *'
18075                 ;;
18076         esac
18077 fi
18078
18079 : check for type of 1st argument to getnetbyaddr. 
18080 if test "X$netdb_net_type" = X ; then
18081         case "$d_getnbyaddr" in
18082         $define)
18083                 $cat <<EOM
18084
18085 Checking to see what type of 1st argument is accepted by getnetbyaddr().
18086 EOM
18087                 hdrs="$define sys/types.h
18088                         $d_socket sys/socket.h 
18089                         $i_niin netinet/in.h 
18090                         $i_netdb netdb.h
18091                         $i_unistd unistd.h"
18092                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
18093                         case "$netdb_net_type" in
18094                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
18095                                 if ./protochk "$try" $hdrs; then
18096                                         echo "Your system accepts $xxx."
18097                                         netdb_net_type="$xxx"
18098                                 fi
18099                                 ;;
18100                         esac
18101                 done
18102                 : In case none of those worked, prompt the user.
18103                 case "$netdb_net_type" in
18104                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
18105                         dflt='long'
18106                         . ./myread
18107                         netdb_net_type=$ans
18108                         ;;
18109                 esac
18110                 ;;
18111         *)      : no getnetbyaddr, so pick harmless default
18112                 netdb_net_type='long'
18113                 ;;
18114         esac
18115 fi
18116 : locate the preferred pager for this system
18117 case "$pager" in
18118 '')
18119         dflt=''
18120         case "$pg" in
18121         /*) dflt=$pg;;
18122         [a-zA-Z]:/*) dflt=$pg;;
18123         esac
18124         case "$more" in
18125         /*) dflt=$more;;
18126         [a-zA-Z]:/*) dflt=$more;;
18127         esac
18128         case "$less" in
18129         /*) dflt=$less;;
18130         [a-zA-Z]:/*) dflt=$less;;
18131         esac
18132         case "$dflt" in
18133         '') dflt=/usr/ucb/more;;
18134         esac
18135         ;;
18136 *) dflt="$pager";;
18137 esac
18138 echo " "
18139 fn=f/
18140 rp='What pager is used on your system?'
18141 . ./getfile
18142 pager="$ans"
18143
18144 : see what type pids are declared as in the kernel
18145 rp="What is the type of process ids on this system?"
18146 set pid_t pidtype int stdio.h sys/types.h
18147 eval $typedef_ask
18148
18149 : Find earliest binary compatible site_perl subdirectory perl can use.
18150 case "$bincompat5005" in
18151 "$define") xs_apiversion='5.005' ;;
18152 *) xs_apiversion=$version ;;   # The current site_perl version.
18153 esac
18154 : Find earliest pure perl site_perl subdirectory perl can use.
18155 : The versioned directories started at 5.005.
18156 pm_apiversion='5.005'
18157
18158 : see if ar generates random libraries by itself
18159 echo " "
18160 echo "Checking how to generate random libraries on your machine..." >&4
18161 echo 'int bar1() { return bar2(); }' > bar1.c
18162 echo 'int bar2() { return 2; }' > bar2.c
18163 $cat > foo.c <<'EOP'
18164 int main() { printf("%d\n", bar1()); exit(0); }
18165 EOP
18166 $cc $ccflags -c bar1.c >/dev/null 2>&1
18167 $cc $ccflags -c bar2.c >/dev/null 2>&1
18168 $cc $ccflags -c foo.c >/dev/null 2>&1
18169 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
18170 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18171         $run ./foobar >/dev/null 2>&1; then
18172         echo "$ar appears to generate random libraries itself."
18173         orderlib=false
18174         ranlib=":"
18175 elif $ar ts bar$_a >/dev/null 2>&1 &&
18176         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18177         $run ./foobar >/dev/null 2>&1; then
18178                 echo "a table of contents needs to be added with '$ar ts'."
18179                 orderlib=false
18180                 ranlib="$ar ts"
18181 else
18182         case "$ranlib" in
18183         :) ranlib='';;
18184         '')
18185                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18186                 $test -f $ranlib || ranlib=''
18187                 ;;
18188         esac
18189         if $test -n "$ranlib"; then
18190                 echo "your system has '$ranlib'; we'll use that."
18191                 orderlib=false
18192         else
18193                 echo "your system doesn't seem to support random libraries"
18194                 echo "so we'll use lorder and tsort to order the libraries."
18195                 orderlib=true
18196                 ranlib=":"
18197         fi
18198 fi
18199 $rm -f foo* bar* 
18200
18201 : check for type of arguments to select. 
18202 case "$selecttype" in
18203 '') case "$d_select" in
18204         $define)
18205                 echo " "
18206                 $cat <<EOM
18207 Checking to see what type of arguments are accepted by select().
18208 EOM
18209                 hdrs="$define sys/types.h
18210                         $i_systime sys/time.h 
18211                         $i_sysselct sys/select.h
18212                         $d_socket sys/socket.h"
18213                 : The first arg can be int, unsigned, or size_t
18214                 : The last arg may or may not be 'const'
18215                 val=''
18216                 : void pointer has been seen but using that
18217                 : breaks the selectminbits test
18218                 for xxx in 'fd_set *' 'int *'; do
18219                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18220                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18221                                         case "$val" in
18222                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18223                                                 if ./protochk "$try" $hdrs; then
18224                                                         echo "Your system accepts $xxx."
18225                                                         val="$xxx"
18226                                                 fi
18227                                                 ;;
18228                                         esac
18229                                 done
18230                         done
18231                 done
18232                 case "$val" in
18233                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18234                         case "$d_fd_set" in
18235                                 $define) dflt="fd_set *" ;;
18236                                 *)              dflt="int *" ;;
18237                         esac
18238                         . ./myread
18239                         val=$ans
18240                         ;;
18241                 esac
18242                 selecttype="$val"
18243                 ;;
18244         *)      : no select, so pick a harmless default
18245                 selecttype='int *'
18246                 ;;
18247         esac
18248         ;;
18249 esac
18250
18251 : check for the select 'width'
18252 case "$selectminbits" in
18253 '') case "$d_select" in
18254         $define)
18255                 $cat <<EOM
18256
18257 Checking to see on how many bits at a time your select() operates...
18258 EOM
18259                 $cat >try.c <<EOCP
18260 #include <sys/types.h>
18261 #$i_time I_TIME
18262 #$i_systime I_SYS_TIME
18263 #$i_systimek I_SYS_TIME_KERNEL
18264 #ifdef I_TIME
18265 #   include <time.h>
18266 #endif
18267 #ifdef I_SYS_TIME
18268 #   ifdef I_SYS_TIME_KERNEL
18269 #       define KERNEL
18270 #   endif
18271 #   include <sys/time.h>
18272 #   ifdef I_SYS_TIME_KERNEL
18273 #       undef KERNEL
18274 #   endif
18275 #endif
18276 #$i_sysselct I_SYS_SELECT
18277 #ifdef I_SYS_SELECT
18278 #include <sys/select.h>
18279 #endif
18280 #$d_socket HAS_SOCKET
18281 #ifdef HAS_SOCKET
18282 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18283 #endif
18284 #include <stdio.h>
18285 $selecttype b;
18286 #define S sizeof(*(b))
18287 #define MINBITS 64
18288 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18289 #define NBITS  (NBYTES * 8)
18290 int main() {
18291     char s[NBYTES];
18292     struct timeval t;
18293     int i;
18294     FILE* fp;
18295     int fd;
18296
18297     fclose(stdin);
18298     fp = fopen("try.c", "r");
18299     if (fp == 0)
18300       exit(1);
18301     fd = fileno(fp);
18302     if (fd < 0)
18303       exit(2);
18304     b = ($selecttype)s;
18305     for (i = 0; i < NBITS; i++)
18306         FD_SET(i, b);
18307     t.tv_sec  = 0;
18308     t.tv_usec = 0;
18309     select(fd + 1, b, 0, 0, &t);
18310     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18311     printf("%d\n", i + 1);
18312     return 0;
18313 }
18314 EOCP
18315                 set try
18316                 if eval $compile_ok; then
18317                         selectminbits=`$run ./try`
18318                         case "$selectminbits" in
18319                         '')     cat >&4 <<EOM
18320 Cannot figure out on how many bits at a time your select() operates.
18321 I'll play safe and guess it is 32 bits.
18322 EOM
18323                                 selectminbits=32
18324                                 bits="32 bits"
18325                                 ;;
18326                         1)      bits="1 bit" ;;
18327                         *)      bits="$selectminbits bits" ;;
18328                         esac
18329                         echo "Your select() operates on $bits at a time." >&4
18330                 else
18331                         rp='What is the minimum number of bits your select() operates on?'
18332                         case "$byteorder" in
18333                         1234|12345678)  dflt=32 ;;
18334                         *)              dflt=1  ;;
18335                         esac
18336                         . ./myread
18337                         val=$ans
18338                         selectminbits="$val"
18339                 fi
18340                 $rm -f try.* try
18341                 ;;
18342         *)      : no select, so pick a harmless default
18343                 selectminbits='32'
18344                 ;;
18345         esac
18346         ;;
18347 esac
18348
18349 : Trace out the files included by signal.h, then look for SIGxxx names.
18350 : Remove SIGARRAYSIZE used by HPUX.
18351 : Remove SIGSTKSIZE used by Linux.
18352 : Remove SIGSTKSZ used by Posix.
18353 : Remove SIGTYP void lines used by OS2.
18354 : Some cpps, like os390, dont give the file name anywhere
18355 if [ "X$fieldn" = X ]; then
18356         : Just make some guesses.  We check them later.
18357         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18358 else
18359         xxx=`echo '#include <signal.h>' |
18360         $cppstdin $cppminus $cppflags 2>/dev/null |
18361         $grep '^[       ]*#.*include' | 
18362         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18363 fi
18364 : Check this list of files to be sure we have parsed the cpp output ok.
18365 : This will also avoid potentially non-existent files, such 
18366 : as ../foo/bar.h
18367 xxxfiles=''
18368 for xx in $xxx /dev/null ; do
18369         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18370 done
18371 : If we have found no files, at least try signal.h
18372 case "$xxxfiles" in
18373 '')     xxxfiles=`./findhdr signal.h` ;;
18374 esac
18375 xxx=`awk '
18376 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18377         print substr($2, 4, 20)
18378 }
18379 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18380         print substr($3, 4, 20)
18381 }' $xxxfiles`
18382 : Append some common names just in case the awk scan failed.
18383 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18384 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18385 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18386 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18387 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18388
18389 : generate a few handy files for later
18390 $cat > signal.c <<'EOCP'
18391 #include <sys/types.h>
18392 #include <signal.h>
18393 #include <stdio.h>
18394 int main() {
18395
18396 /* Strange style to avoid deeply-nested #if/#else/#endif */
18397 #ifndef NSIG
18398 #  ifdef _NSIG
18399 #    define NSIG (_NSIG)
18400 #  endif
18401 #endif
18402
18403 #ifndef NSIG
18404 #  ifdef SIGMAX
18405 #    define NSIG (SIGMAX+1)
18406 #  endif
18407 #endif
18408
18409 #ifndef NSIG
18410 #  ifdef SIG_MAX
18411 #    define NSIG (SIG_MAX+1)
18412 #  endif
18413 #endif
18414
18415 #ifndef NSIG
18416 #  ifdef MAXSIG
18417 #    define NSIG (MAXSIG+1)
18418 #  endif
18419 #endif
18420
18421 #ifndef NSIG
18422 #  ifdef MAX_SIG
18423 #    define NSIG (MAX_SIG+1)
18424 #  endif
18425 #endif
18426
18427 #ifndef NSIG
18428 #  ifdef SIGARRAYSIZE
18429 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18430 #  endif
18431 #endif
18432
18433 #ifndef NSIG
18434 #  ifdef _sys_nsig
18435 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
18436 #  endif
18437 #endif
18438
18439 /* Default to some arbitrary number that's big enough to get most
18440    of the common signals.
18441 */
18442 #ifndef NSIG
18443 #    define NSIG 50
18444 #endif
18445
18446 printf("NSIG %d\n", NSIG);
18447
18448 #ifndef JUST_NSIG
18449
18450 EOCP
18451
18452 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
18453 {
18454         printf "#ifdef SIG"; printf $1; printf "\n"
18455         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
18456         printf $1; printf ");\n"
18457         printf "#endif\n"
18458 }
18459 END {
18460         printf "#endif /* JUST_NSIG */\n";
18461         printf "exit(0);\n}\n";
18462 }
18463 ' >>signal.c
18464 $cat >signal.awk <<'EOP'
18465 BEGIN { ndups = 0 }
18466 $1 ~ /^NSIG$/ { nsig = $2 }
18467 ($1 !~ /^NSIG$/) && (NF == 2) {
18468     if ($2 > maxsig) { maxsig = $2 }
18469     if (sig_name[$2]) {
18470         dup_name[ndups] = $1
18471         dup_num[ndups] = $2
18472         ndups++ 
18473     }
18474     else {
18475         sig_name[$2] = $1
18476         sig_num[$2] = $2
18477     }
18478 }
18479 END { 
18480     if (nsig == 0) {
18481         nsig = maxsig + 1
18482     }
18483     printf("NSIG %d\n", nsig);
18484     for (n = 1; n < nsig; n++) {
18485         if (sig_name[n]) {
18486             printf("%s %d\n", sig_name[n], sig_num[n])
18487         }
18488         else {
18489             printf("NUM%d %d\n", n, n) 
18490         }
18491     }
18492     for (n = 0; n < ndups; n++) {
18493         printf("%s %d\n", dup_name[n], dup_num[n])
18494     }
18495 }
18496 EOP
18497 $cat >signal_cmd <<EOS
18498 $startsh
18499 if $test -s signal.lst; then
18500     echo "Using your existing signal.lst file"
18501         exit 0
18502 fi
18503 xxx="$xxx"
18504 EOS
18505 $cat >>signal_cmd <<'EOS'
18506
18507 set signal
18508 if eval $compile_ok; then
18509         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
18510 else
18511         echo "(I can't seem be able to compile the whole test program)" >&4
18512         echo "(I'll try it in little pieces.)" >&4
18513         set signal -DJUST_NSIG
18514         if eval $compile_ok; then
18515                 $run ./signal$_exe > signal.nsg
18516                 $cat signal.nsg
18517         else
18518                 echo "I can't seem to figure out how many signals you have." >&4
18519                 echo "Guessing 50." >&4
18520                 echo 'NSIG 50' > signal.nsg
18521         fi
18522         : Now look at all the signal names, one at a time.
18523         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
18524                 $cat > signal.c <<EOCP
18525 #include <sys/types.h>
18526 #include <signal.h>
18527 #include <stdio.h>
18528 int main() {
18529 printf("$xx %d\n", SIG${xx});
18530 return 0;
18531 }
18532 EOCP
18533                 set signal
18534                 if eval $compile; then
18535                         echo "SIG${xx} found."
18536                         $run ./signal$_exe  >> signal.ls1
18537                 else
18538                         echo "SIG${xx} NOT found."
18539                 fi
18540         done
18541         if $test -s signal.ls1; then
18542                 $cat signal.nsg signal.ls1 |
18543                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
18544         fi
18545
18546 fi
18547 if $test -s signal.lst; then
18548         :
18549 else
18550         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
18551         echo 'kill -l' >signal
18552         set X `csh -f <signal`
18553         $rm -f signal
18554         shift
18555         case $# in
18556         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
18557         esac
18558         echo $@ | $tr ' ' $trnl | \
18559             $awk '{ printf "%s %d\n", $1, ++s; }
18560                   END { printf "NSIG %d\n", ++s }' >signal.lst
18561 fi
18562 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
18563 EOS
18564 chmod a+x signal_cmd
18565 $eunicefix signal_cmd
18566
18567 : generate list of signal names
18568 echo " "
18569 case "$sig_name_init" in
18570 '') doinit=yes ;;
18571 *)  case "$sig_num_init" in
18572     ''|*,*) doinit=yes ;;
18573     esac ;;
18574 esac
18575 case "$doinit" in
18576 yes)
18577         echo "Generating a list of signal names and numbers..." >&4
18578         . ./signal_cmd
18579         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
18580         sig_name=`$awk 'BEGIN { printf "ZERO " }
18581                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
18582         sig_num=`$awk  'BEGIN { printf "0 " }
18583                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
18584         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
18585                              !/^NSIG/   { printf "\"%s\", ", $1 }
18586                              END        { printf "0\n" }' signal.lst`
18587         sig_num_init=`$awk  'BEGIN      { printf "0, " }
18588                              !/^NSIG/   { printf "%d, ", $2}
18589                              END        { printf "0\n"}' signal.lst`
18590         ;;
18591 esac
18592 echo "The following $sig_count signals are available:"
18593 echo " "
18594 echo $sig_name | $awk \
18595 'BEGIN { linelen = 0 }
18596 {
18597         for (i = 1; i <= NF; i++) {
18598                 name = "SIG" $i " "
18599                 linelen = linelen + length(name)
18600                 if (linelen > 70) {
18601                         printf "\n"
18602                         linelen = length(name)
18603                 }
18604                 printf "%s", name
18605         }
18606         printf "\n"
18607 }'
18608 sig_size=`echo $sig_name | awk '{print NF}'`
18609 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
18610
18611 echo " "
18612 case "$sizetype" in
18613 *_t) zzz="$sizetype"    ;;
18614 *)   zzz="filesize"     ;;
18615 esac
18616 echo "Checking the size of $zzz..." >&4 
18617 cat > try.c <<EOCP
18618 #include <sys/types.h>
18619 #include <stdio.h>
18620 int main() {
18621     printf("%d\n", (int)sizeof($sizetype));
18622     exit(0);
18623 }
18624 EOCP
18625 set try
18626 if eval $compile_ok; then
18627         yyy=`$run ./try`
18628         case "$yyy" in
18629         '')     sizesize=4
18630                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
18631                 ;;
18632         *)      sizesize=$yyy
18633                 echo "Your $zzz size is $sizesize bytes."
18634                 ;;
18635         esac
18636 else
18637         sizesize=4
18638         echo "(I can't compile the test program--guessing $sizesize.)" >&4
18639 fi
18640
18641
18642 : check for socklen_t
18643 echo " "
18644 echo "Checking to see if you have socklen_t..." >&4
18645 $cat >try.c <<EOCP
18646 #include <sys/types.h>
18647 #$d_socket HAS_SOCKET
18648 #ifdef HAS_SOCKET
18649 #include <sys/socket.h>
18650 #endif
18651 int main() { socklen_t x = 16; }
18652 EOCP
18653 set try
18654 if eval $compile; then
18655         val="$define"
18656         echo "You have socklen_t."
18657 else
18658         val="$undef"
18659         echo "You do not have socklen_t."
18660         case "$sizetype" in
18661         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
18662         esac
18663 fi
18664 $rm -f try try.*
18665 set d_socklen_t
18666 eval $setvar
18667
18668 : see if this is a socks.h system
18669 set socks.h i_socks
18670 eval $inhdr
18671
18672 : check for type of the size argument to socket calls
18673 case "$d_socket" in
18674 "$define")
18675         $cat <<EOM
18676
18677 Checking to see what type is the last argument of accept().
18678 EOM
18679         yyy=''
18680         case "$d_socklen_t" in
18681         "$define") yyy="$yyy socklen_t"
18682         esac
18683         yyy="$yyy $sizetype int long unsigned"
18684         for xxx in $yyy; do
18685                 case "$socksizetype" in
18686                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
18687                         case "$usesocks" in
18688                         "$define")
18689                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
18690                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
18691                                         socksizetype="$xxx"
18692                                 fi
18693                                 ;;
18694                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
18695                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
18696                                         socksizetype="$xxx"
18697                                 fi
18698                                 ;;
18699                         esac
18700                         ;;
18701                 esac
18702         done
18703 : In case none of those worked, prompt the user.
18704         case "$socksizetype" in
18705         '')     rp='What is the type for socket address structure sizes?'
18706                 dflt='int'
18707                 . ./myread
18708                 socksizetype=$ans
18709                 ;;
18710         esac
18711         ;;
18712 *)      : no sockets, so pick relatively harmless default
18713         socksizetype='int'
18714         ;;
18715 esac
18716
18717 : see what type is used for signed size_t
18718 set ssize_t ssizetype int stdio.h sys/types.h
18719 eval $typedef
18720 dflt="$ssizetype"
18721 $cat > try.c <<EOM
18722 #include <stdio.h>
18723 #include <sys/types.h>
18724 #define Size_t $sizetype
18725 #define SSize_t $dflt
18726 int main()
18727 {
18728         if (sizeof(Size_t) == sizeof(SSize_t))
18729                 printf("$dflt\n");
18730         else if (sizeof(Size_t) == sizeof(int))
18731                 printf("int\n");
18732         else 
18733                 printf("long\n");
18734         exit(0);
18735 }
18736 EOM
18737 echo " "
18738 set try
18739 if eval $compile_ok && $run ./try > /dev/null; then
18740         ssizetype=`$run ./try`
18741         echo "I'll be using $ssizetype for functions returning a byte count." >&4
18742 else
18743         $cat >&4 <<EOM
18744 Help! I can't compile and run the ssize_t test program: please enlighten me!
18745 (This is probably a misconfiguration in your system or libraries, and
18746 you really ought to fix it.  Still, I'll try anyway.)
18747
18748 I need a type that is the same size as $sizetype, but is guaranteed to
18749 be signed.  Common values are ssize_t, int and long.
18750
18751 EOM
18752         rp="What signed type is the same size as $sizetype?"
18753         . ./myread
18754         ssizetype="$ans"
18755 fi
18756 $rm -f try try.*
18757
18758 : see what type of char stdio uses.
18759 echo " "
18760 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
18761 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
18762         echo "Your stdio uses unsigned chars." >&4
18763         stdchar="unsigned char"
18764 else
18765         echo "Your stdio uses signed chars." >&4
18766         stdchar="char"
18767 fi
18768 $rm -f stdioh
18769
18770
18771
18772 : see what type uids are declared as in the kernel
18773 echo " "
18774 echo "Looking for the type for user ids returned by getuid()."
18775 set uid_t uidtype xxx stdio.h sys/types.h
18776 eval $typedef
18777 case "$uidtype" in
18778 xxx)
18779         xxx=`./findhdr sys/user.h`
18780         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
18781         case $1 in
18782         unsigned) dflt="$1 $2" ;;
18783         *) dflt="$1" ;;
18784         esac
18785         ;;
18786 *) dflt="$uidtype";;
18787 esac
18788 case "$uidtype" in
18789 uid_t)  echo "uid_t found." ;;
18790 *)      rp="What is the type for user ids returned by getuid()?"
18791         . ./myread
18792         uidtype="$ans"
18793         ;;
18794 esac
18795
18796 echo " "
18797 case "$uidtype" in
18798 *_t) zzz="$uidtype"     ;;
18799 *)   zzz="uid"          ;;
18800 esac
18801 echo "Checking the size of $zzz..." >&4 
18802 cat > try.c <<EOCP
18803 #include <sys/types.h>
18804 #include <stdio.h>
18805 int main() {
18806     printf("%d\n", (int)sizeof($uidtype));
18807     exit(0);
18808 }
18809 EOCP
18810 set try
18811 if eval $compile_ok; then
18812         yyy=`$run ./try`
18813         case "$yyy" in
18814         '')     uidsize=4
18815                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
18816                 ;;
18817         *)      uidsize=$yyy
18818                 echo "Your $zzz is $uidsize bytes long."
18819                 ;;
18820         esac
18821 else
18822         uidsize=4
18823         echo "(I can't compile the test program--guessing $uidsize.)" >&4
18824 fi
18825
18826 echo " "
18827 case "$uidtype" in
18828 *_t) zzz="$uidtype"     ;;
18829 *)   zzz="uid"          ;;
18830 esac
18831 echo "Checking the sign of $zzz..." >&4
18832 cat > try.c <<EOCP
18833 #include <sys/types.h>
18834 #include <stdio.h>
18835 int main() {
18836         $uidtype foo = -1;
18837         if (foo < 0)
18838                 printf("-1\n");
18839         else
18840                 printf("1\n");
18841 }
18842 EOCP
18843 set try
18844 if eval $compile; then
18845         yyy=`$run ./try`
18846         case "$yyy" in
18847         '')     uidsign=1
18848                 echo "(I can't execute the test program--guessing unsigned.)" >&4
18849                 ;;
18850         *)      uidsign=$yyy
18851                 case "$uidsign" in
18852                  1) echo "Your $zzz is unsigned." ;;
18853                 -1) echo "Your $zzz is signed."   ;;
18854                 esac
18855                 ;;
18856         esac
18857 else
18858         uidsign=1
18859         echo "(I can't compile the test program--guessing unsigned.)" >&4
18860 fi
18861
18862
18863
18864 echo " "
18865 $echo "Checking the format string to be used for uids..." >&4
18866
18867 case "$uidsign" in
18868 -1)     if $test X"$uidsize" = X"$ivsize"; then
18869                 uidformat="$ivdformat"
18870         else
18871                 if $test X"$uidsize" = X"$longsize"; then
18872                         uidformat='"ld"'
18873                 else
18874                         if $test X"$uidsize" = X"$intsize"; then
18875                                 uidformat='"d"'
18876                         else
18877                                 if $test X"$uidsize" = X"$shortsize"; then
18878                                         uidformat='"hd"'
18879                                 fi
18880                         fi
18881                 fi
18882         fi
18883         ;;
18884 *)      if $test X"$uidsize" = X"$uvsize"; then
18885                 uidformat="$uvuformat"
18886         else
18887                 if $test X"$uidsize" = X"$longsize"; then
18888                         uidformat='"lu"'
18889                 else
18890                         if $test X"$uidsize" = X"$intsize"; then
18891                                 uidformat='"u"'
18892                         else
18893                                 if $test X"$uidsize" = X"$shortsize"; then
18894                                         uidformat='"hu"'
18895                                 fi
18896                         fi
18897                 fi
18898         fi
18899         ;;
18900 esac
18901
18902 : determine compiler compiler
18903 case "$yacc" in
18904 '')
18905         dflt=yacc;;
18906 *)
18907         dflt="$yacc";;
18908 esac
18909 echo " "
18910 comp='yacc'
18911 if $test -f "$byacc$_exe"; then
18912         dflt="$byacc"
18913         comp="byacc or $comp"
18914 fi
18915 if $test -f "$bison$_exe"; then
18916         comp="$comp or bison -y"
18917 fi
18918 rp="Which compiler compiler ($comp) shall I use?"
18919 . ./myread
18920 yacc="$ans"
18921 case "$yacc" in
18922 *bis*)
18923         case "$yacc" in
18924         *-y*) ;;
18925         *)
18926                 yacc="$yacc -y"
18927                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
18928                 ;;
18929         esac
18930         ;;
18931 esac
18932
18933 : see if this is a fp.h system
18934 set fp.h i_fp
18935 eval $inhdr
18936
18937 : see if this is a fp_class.h system
18938 set fp_class.h i_fp_class
18939 eval $inhdr
18940
18941 : see if this is a ieeefp.h system
18942 case "$i_ieeefp" in
18943 '' ) set ieeefp.h i_ieeefp
18944      eval $inhdr
18945      ;;
18946 esac
18947
18948 : see if this is a libutil.h system
18949 set libutil.h i_libutil
18950 eval $inhdr
18951
18952 : see if mach cthreads are available
18953 if test "X$usethreads" = "X$define"; then
18954         set mach/cthreads.h i_machcthr
18955         eval $inhdr
18956 else
18957         i_machcthr="$undef"
18958 fi
18959
18960
18961
18962 : see if this is a math.h system
18963 set math.h i_math
18964 eval $inhdr
18965
18966 : see if this is a mntent.h system
18967 set mntent.h i_mntent
18968 eval $inhdr
18969
18970 : see if ndbm.h is available
18971 set ndbm.h t_ndbm
18972 eval $inhdr
18973
18974 case "$t_ndbm" in
18975 $undef)
18976     # Some Linux distributions such as RedHat 7.1 put the
18977     # ndbm.h header in /usr/include/gdbm/ndbm.h.
18978     if $test -f /usr/include/gdbm/ndbm.h; then
18979         echo '<gdbm/ndbm.h> found.'
18980         ccflags="$ccflags -I/usr/include/gdbm"
18981         cppflags="$cppflags -I/usr/include/gdbm"
18982         t_ndbm=$define
18983     fi
18984     ;;
18985 esac
18986
18987 case "$t_ndbm" in
18988 $define)
18989         : see if dbm_open exists
18990         set dbm_open d_dbm_open
18991         eval $inlibc
18992         case "$d_dbm_open" in
18993         $undef)
18994                 t_ndbm="$undef"
18995                 echo "We won't be including <ndbm.h>"
18996                 ;;
18997         esac
18998         ;;
18999 esac
19000 val="$t_ndbm"
19001 set i_ndbm
19002 eval $setvar
19003
19004 : see if net/errno.h is available
19005 val=''
19006 set net/errno.h val
19007 eval $inhdr
19008
19009 : Unfortunately, it causes problems on some systems.  Arrgh.
19010 case "$val" in
19011 $define)
19012         cat > try.c <<'EOM'
19013 #include <stdio.h>
19014 #include <errno.h>
19015 #include <net/errno.h>
19016 int func()
19017 {
19018         return ENOTSOCK;
19019 }
19020 EOM
19021         if $cc $ccflags -c try.c >/dev/null 2>&1; then
19022                 echo "We'll be including <net/errno.h>." >&4
19023         else
19024                 echo "We won't be including <net/errno.h>." >&4
19025                 val="$undef"
19026         fi
19027         $rm -f try.* try
19028         ;;
19029 esac
19030 set i_neterrno
19031 eval $setvar
19032
19033 : see if netinet/tcp.h is available
19034 set netinet/tcp.h i_netinettcp
19035 eval $inhdr
19036
19037 : see if this is a poll.h system
19038 set poll.h i_poll
19039 eval $inhdr
19040
19041 : see if this is a prot.h system
19042 set prot.h i_prot
19043 eval $inhdr
19044
19045 echo " "
19046 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
19047 $cat <<'EOSH' > Cppsym.know
19048 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
19049 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
19050 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
19051 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
19052 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
19053 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
19054 bull c cadmus clipper CMU COFF COMPILER_VERSION
19055 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
19056 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
19057 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
19058 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
19059 GLIBC GLIBC_MINOR
19060 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
19061 H3050R H3050RX hbullx20 hcx host_mips
19062 hp200 hp300 hp700 HP700 hp800 hp9000
19063 hp9000s200 hp9000s300 hp9000s400 hp9000s500
19064 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
19065 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
19066 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
19067 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
19068 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
19069 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
19070 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
19071 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
19072 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
19073 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
19074 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
19075 MATH_HAS_NO_SIDE_EFFECTS
19076 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
19077 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
19078 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
19079 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
19080 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
19081 NetBSD news1500 news1700 news1800 news1900 news3700
19082 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
19083 ns32016 ns32332 ns32k nsc32000
19084 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
19085 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
19086 pc532 pdp11 PGC PIC plexus PORTAR posix
19087 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
19088 POSIX_C_SOURCE POSIX_SOURCE POWER
19089 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
19090 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
19091 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
19092 sony sony_news sonyrisc sparc sparclite spectrum
19093 stardent stdc STDC_EXT stratos sun sun3 sun386
19094 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
19095 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
19096 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
19097 sysV68 sysV88 Tek4132 Tek4300 titan
19098 TM3200 TM5400 TM5600
19099 tower tower32 tower32_200 tower32_600 tower32_700
19100 tower32_800 tower32_850 tss
19101 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
19102 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
19103 unix UNIX95 UNIX99 unixpc unos
19104 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
19105 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
19106 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
19107 USGr4 USGr4_2
19108 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
19109 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
19110 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
19111 z8000
19112 EOSH
19113 # Maybe put other stuff here too.
19114 cat <<EOSH >>Cppsym.know
19115 $osname
19116 EOSH
19117 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
19118 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
19119 $cat Cppsym.know > Cppsym.c
19120 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
19121 $rm -f Cppsym.a Cppsym.b Cppsym.c
19122 cat <<EOSH > Cppsym
19123 $startsh
19124 if $test \$# -gt 0; then
19125     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
19126     if $test -s Cppsym.got; then
19127         $rm -f Cppsym.got
19128         exit 0
19129     fi
19130     $rm -f Cppsym.got
19131     exit 1
19132 else
19133     $tr " " "$trnl" | ./Cppsym.try
19134     exit 0
19135 fi
19136 EOSH
19137 chmod +x Cppsym
19138 $eunicefix Cppsym
19139 cat <<EOSH > Cppsym.try
19140 $startsh
19141 cat <<'EOCP' > try.c
19142 #include <stdio.h>
19143 int main() {
19144 EOCP
19145 $awk \\
19146 EOSH
19147 cat <<'EOSH' >> Cppsym.try
19148 'length($1) > 0 {
19149     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
19150     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
19151     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
19152     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
19153 }'       >> try.c
19154 echo 'return 0;}' >> try.c
19155 EOSH
19156 cat <<EOSH >> Cppsym.try
19157 ccflags="$ccflags"
19158 case "$osname-$gccversion" in
19159 irix-) ccflags="\$ccflags -woff 1178" ;;
19160 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
19161 esac
19162 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
19163 EOSH
19164 chmod +x Cppsym.try
19165 $eunicefix Cppsym.try
19166 ./Cppsym < Cppsym.know > Cppsym.true
19167 : now check the C compiler for additional symbols
19168 postprocess_cc_v=''
19169 case "$osname" in
19170 aix) postprocess_cc_v="|$tr , ' '" ;;
19171 esac
19172 $cat >ccsym <<EOS
19173 $startsh
19174 $cat >tmp.c <<EOF
19175 extern int foo;
19176 EOF
19177 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
19178 do
19179         case "\$i" in
19180         -D*) echo "\$i" | $sed 's/^-D//';;
19181         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
19182         esac
19183 done
19184 $rm -f try.c
19185 EOS
19186 postprocess_cc_v=''
19187 chmod +x ccsym
19188 $eunicefix ccsym
19189 ./ccsym > ccsym1.raw
19190 if $test -s ccsym1.raw; then
19191        $sort ccsym1.raw | $uniq >ccsym.raw
19192 else
19193        mv ccsym1.raw ccsym.raw
19194 fi
19195
19196 $awk '/\=/ { print $0; next }
19197         { print $0"=1" }' ccsym.raw >ccsym.list
19198 $awk '/\=/ { print $0; next }
19199         { print $0"=1" }' Cppsym.true >ccsym.true
19200 $comm -13 ccsym.true ccsym.list >ccsym.own
19201 $comm -12 ccsym.true ccsym.list >ccsym.com
19202 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19203 also=''
19204 if $test -z ccsym.raw; then
19205         echo "Your C compiler doesn't seem to define any symbols!" >&4
19206         echo " "
19207         echo "However, your C preprocessor defines the following symbols:"
19208         $cat Cppsym.true
19209         ccsymbols=''
19210         cppsymbols=`$cat Cppsym.true`
19211         cppsymbols=`echo $cppsymbols`
19212         cppccsymbols="$cppsymbols"
19213 else
19214         if $test -s ccsym.com; then
19215                 echo "Your C compiler and pre-processor define these symbols:"
19216                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19217                 also='also '
19218                 symbols='ones'
19219                 cppccsymbols=`$cat ccsym.com`
19220                 cppccsymbols=`echo $cppccsymbols`
19221                 $test "$silent" || sleep 1
19222         fi
19223         if $test -s ccsym.cpp; then
19224                 $test "$also" && echo " "
19225                 echo "Your C pre-processor ${also}defines the following symbols:"
19226                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19227                 also='further '
19228                 cppsymbols=`$cat ccsym.cpp`
19229                 cppsymbols=`echo $cppsymbols`
19230                 $test "$silent" || sleep 1
19231         fi
19232         if $test -s ccsym.own; then
19233                 $test "$also" && echo " "
19234                 echo "Your C compiler ${also}defines the following cpp symbols:"
19235                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19236                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19237                 ccsymbols=`$cat ccsym.own`
19238                 ccsymbols=`echo $ccsymbols`
19239                 $test "$silent" || sleep 1
19240         fi
19241 fi
19242
19243 : see if this is a termio system
19244 val="$undef"
19245 val2="$undef"
19246 val3="$undef"
19247 if $test `./findhdr termios.h`; then
19248         set tcsetattr i_termios
19249         eval $inlibc
19250         val3="$i_termios"
19251 fi
19252 echo " "
19253 case "$val3" in
19254 "$define") echo "You have POSIX termios.h... good!" >&4;;
19255 *) if ./Cppsym pyr; then
19256                 case "`/bin/universe`" in
19257                 ucb) if $test `./findhdr sgtty.h`; then
19258                                 val2="$define"
19259                                 echo "<sgtty.h> found." >&4
19260                         else
19261                                 echo "System is pyramid with BSD universe."
19262                                 echo "<sgtty.h> not found--you could have problems." >&4
19263                         fi;;
19264                 *) if $test `./findhdr termio.h`; then
19265                                 val="$define"
19266                                 echo "<termio.h> found." >&4
19267                         else
19268                                 echo "System is pyramid with USG universe."
19269                                 echo "<termio.h> not found--you could have problems." >&4
19270                         fi;;
19271                 esac
19272         elif ./usg; then
19273                 if $test `./findhdr termio.h`; then
19274                         echo "<termio.h> found." >&4
19275                         val="$define"
19276                 elif $test `./findhdr sgtty.h`; then
19277                         echo "<sgtty.h> found." >&4
19278                         val2="$define"
19279                 else
19280 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19281                 fi
19282         else
19283                 if $test `./findhdr sgtty.h`; then
19284                         echo "<sgtty.h> found." >&4
19285                         val2="$define"
19286                 elif $test `./findhdr termio.h`; then
19287                         echo "<termio.h> found." >&4
19288                         val="$define"
19289                 else
19290 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19291                 fi
19292         fi;;
19293 esac
19294 set i_termio; eval $setvar
19295 val=$val2; set i_sgtty; eval $setvar
19296 val=$val3; set i_termios; eval $setvar
19297
19298 : see if stddef is available
19299 set stddef.h i_stddef
19300 eval $inhdr
19301
19302 : see if this is a sunmath.h system
19303 set sunmath.h i_sunmath
19304 eval $inhdr
19305
19306 : see if sys/access.h is available
19307 set sys/access.h i_sysaccess
19308 eval $inhdr
19309
19310 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19311 set sys/filio.h i_sysfilio
19312 eval $inhdr
19313 echo " "
19314 if $test `./findhdr sys/ioctl.h`; then
19315         val="$define"
19316         echo '<sys/ioctl.h> found.' >&4
19317 else
19318         val="$undef"
19319         if $test $i_sysfilio = "$define"; then
19320             echo '<sys/ioctl.h> NOT found.' >&4
19321         else
19322                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19323                 $test $i_termio = "$define" && xxx="termio.h"
19324                 $test $i_termios = "$define" && xxx="termios.h"
19325 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19326         fi
19327 fi
19328 set i_sysioctl
19329 eval $setvar
19330
19331 : see if socket ioctl defs are in sys/sockio.h
19332 echo " "
19333 xxx=`./findhdr sys/sockio.h`
19334 if $test "$xxx"; then
19335         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19336                 val="$define"
19337                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19338         else
19339                 val="$undef"
19340                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19341         fi
19342 else
19343         val="$undef"
19344         $cat <<EOM
19345 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19346 EOM
19347 fi
19348 set i_syssockio
19349 eval $setvar
19350
19351
19352 : see if this is a syslog.h system
19353 set syslog.h i_syslog
19354 eval $inhdr
19355
19356
19357 : see if this is a sys/mode.h system
19358 set sys/mode.h i_sysmode
19359 eval $inhdr
19360
19361 : see if sys/resource.h has to be included
19362 set sys/resource.h i_sysresrc
19363 eval $inhdr
19364
19365 : see if sys/security.h is available
19366 set sys/security.h i_syssecrt
19367 eval $inhdr
19368
19369 : see if this is a sys/statvfs.h system
19370 set sys/statvfs.h i_sysstatvfs
19371 eval $inhdr
19372
19373 : see if this is a sys/un.h system
19374 set sys/un.h i_sysun
19375 eval $inhdr
19376
19377
19378 : see if this is a sys/utsname.h system
19379 set sys/utsname.h i_sysutsname
19380 eval $inhdr
19381
19382 : see if this is a syswait system
19383 set sys/wait.h i_syswait
19384 eval $inhdr
19385
19386 : see if this is a ustat.h system
19387 set ustat.h i_ustat
19388 eval $inhdr
19389
19390 : see if this is an utime system
19391 set utime.h i_utime
19392 eval $inhdr
19393
19394 : see if this is a values.h system
19395 set values.h i_values
19396 eval $inhdr
19397
19398 : see if this is a vfork system
19399 case "$d_vfork" in
19400 "$define")
19401         set vfork.h i_vfork
19402         eval $inhdr
19403         ;;
19404 *)
19405         i_vfork="$undef"
19406         ;;
19407 esac
19408
19409 : see if gdbm.h is available
19410 set gdbm.h t_gdbm
19411 eval $inhdr
19412 case "$t_gdbm" in
19413 $define)
19414         : see if gdbm_open exists
19415         set gdbm_open d_gdbm_open
19416         eval $inlibc
19417         case "$d_gdbm_open" in
19418         $undef)
19419                 t_gdbm="$undef"
19420                 echo "We won't be including <gdbm.h>"
19421                 ;;
19422         esac
19423         ;;
19424 esac
19425 val="$t_gdbm"
19426 set i_gdbm
19427 eval $setvar
19428
19429 echo " "
19430 echo "Looking for extensions..." >&4
19431 : If we are using the old config.sh, known_extensions may contain
19432 : old or inaccurate or duplicate values.
19433 known_extensions=''
19434 nonxs_extensions=''
19435 : We do not use find because it might not be available.
19436 : We do not just use MANIFEST because the user may have dropped
19437 : some additional extensions into the source tree and expect them
19438 : to be built.
19439
19440 : Function to recursively find available extensions, ignoring DynaLoader
19441 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
19442 find_extensions='
19443     for xxx in *; do
19444        case "$xxx" in
19445            DynaLoader|dynaload) ;;
19446            *)
19447            if $test -f $xxx/$xxx.xs; then
19448                known_extensions="$known_extensions $1$xxx";
19449            elif $test -f $xxx/Makefile.PL; then
19450                nonxs_extensions="$nonxs_extensions $1$xxx";
19451            else
19452                if $test -d $xxx -a $# -lt 10; then
19453                    set $1$xxx/ $*;
19454                    cd "$xxx";
19455                    eval $find_extensions;
19456                    cd ..;
19457                    shift;
19458                fi;
19459            fi
19460            ;;
19461        esac;
19462     done'
19463 tdir=`pwd`
19464 cd "$rsrc/ext"
19465 set X
19466 shift
19467 eval $find_extensions
19468 # Special case:  Add in threads/shared since it is not picked up by the
19469 # recursive find above (and adding in general recursive finding breaks
19470 # SDBM_File/sdbm).  A.D.  10/25/2001.
19471 known_extensions="$known_extensions threads/shared"
19472 set X $nonxs_extensions
19473 shift
19474 nonxs_extensions="$*"
19475 set X $known_extensions
19476 shift
19477 known_extensions="$*"
19478 cd "$tdir"
19479
19480 : Now see which are supported on this system.
19481 avail_ext=''
19482 for xxx in $known_extensions ; do
19483         case "$xxx" in
19484         DB_File|db_file)
19485                 case "$i_db" in
19486                 $define) avail_ext="$avail_ext $xxx" ;;
19487                 esac
19488                 ;;
19489         GDBM_File|gdbm_fil)
19490                 case "$i_gdbm" in 
19491                 $define) avail_ext="$avail_ext $xxx" ;;
19492                 esac
19493                 ;;
19494         I18N/Langinfo|i18n_lan)
19495                 case "$i_langinfo$d_nl_langinfo" in 
19496                 $define$define) avail_ext="$avail_ext $xxx" ;;
19497                 esac
19498                 ;;
19499         NDBM_File|ndbm_fil)
19500                 case "$i_ndbm" in
19501                 $define)
19502                     case "$osname-$use64bitint" in
19503                     cygwin-*|hpux-define)
19504                         case "$libs" in
19505                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
19506                         esac
19507                         ;;
19508                     *) avail_ext="$avail_ext $xxx" ;;
19509                     esac
19510                     ;;
19511                 esac
19512                 ;;
19513         ODBM_File|odbm_fil) 
19514                 case "${i_dbm}${i_rpcsvcdbm}" in
19515                 *"${define}"*)
19516                     case "$osname-$use64bitint" in
19517                     cygwin-*|hpux-define)
19518                         case "$libs" in
19519                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
19520                         esac
19521                         ;;
19522                     *) avail_ext="$avail_ext $xxx" ;;
19523                     esac
19524                     ;;
19525                 esac
19526                 ;;
19527         POSIX|posix)
19528                 case "$useposix" in
19529                 true|define|y) avail_ext="$avail_ext $xxx" ;;
19530                 esac
19531                 ;;
19532         Opcode|opcode)
19533                 case "$useopcode" in
19534                 true|define|y) avail_ext="$avail_ext $xxx" ;;
19535                 esac
19536                 ;;
19537         Socket|socket)
19538                 case "$d_socket" in 
19539                 true|$define|y)
19540                     case "$osname" in
19541                     beos) ;; # not unless BONE
19542                     *) avail_ext="$avail_ext $xxx" ;;
19543                     esac
19544                     ;;
19545                 esac
19546                 ;;
19547         Sys/Syslog|sys/syslog)
19548                 : XXX syslog requires socket
19549                 case "$d_socket" in 
19550                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
19551                 esac
19552                 ;;
19553         Thread|thread)
19554                 case "$usethreads" in
19555                 true|$define|y)
19556                         case "$useithreads" in
19557                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
19558                         esac
19559                 esac
19560                 ;;
19561         threads|threads/shared)
19562                 case "$usethreads" in
19563                 true|$define|y)
19564                         case "$useithreads" in
19565                         $define|true|[yY]*) avail_ext="$avail_ext $xxx" ;;
19566                         esac
19567                 esac
19568                 ;;
19569         IPC/SysV|ipc/sysv)
19570                 : XXX Do we need a useipcsysv variable here
19571                 case "${d_msg}${d_sem}${d_shm}" in 
19572                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
19573                 esac
19574                 ;;
19575         *)      avail_ext="$avail_ext $xxx"
19576                 ;;
19577         esac
19578 done
19579
19580 set X $avail_ext
19581 shift
19582 avail_ext="$*"
19583
19584 : Now see which nonxs extensions are supported on this system.
19585 : For now assume all are.
19586 nonxs_ext=''
19587 for xxx in $nonxs_extensions ; do
19588         case "$xxx" in
19589         *)      nonxs_ext="$nonxs_ext $xxx"
19590                 ;;
19591         esac
19592 done
19593
19594 set X $nonxs_ext
19595 shift
19596 nonxs_ext="$*"
19597
19598 case $usedl in
19599 $define)
19600         $cat <<EOM
19601 A number of extensions are supplied with $package.  You may choose to
19602 compile these extensions for dynamic loading (the default), compile
19603 them into the $package executable (static loading), or not include
19604 them at all.  Answer "none" to include no extensions.
19605 Note that DynaLoader is always built and need not be mentioned here.
19606
19607 EOM
19608         case "$dynamic_ext" in
19609         '') dflt="$avail_ext" ;;
19610         *)      dflt="$dynamic_ext"
19611                 # Perhaps we are reusing an old out-of-date config.sh.
19612                 case "$hint" in
19613                 previous)
19614                         if test X"$dynamic_ext" != X"$avail_ext"; then
19615                                 $cat <<EOM
19616 NOTICE:  Your previous config.sh list may be incorrect. 
19617 The extensions now available to you are 
19618         ${avail_ext}
19619 but the default list from your previous config.sh is
19620         ${dynamic_ext} 
19621
19622 EOM
19623                         fi
19624                         ;;
19625                 esac
19626                 ;;
19627         esac
19628         case "$dflt" in
19629         '')     dflt=none;;
19630         esac
19631         rp="What extensions do you wish to load dynamically?"
19632         . ./myread
19633         case "$ans" in
19634         none) dynamic_ext=' ' ;;
19635         *) dynamic_ext="$ans" ;;
19636         esac
19637
19638         case "$static_ext" in
19639         '')
19640                 : Exclude those already listed in dynamic linking
19641                 dflt=''
19642                 for xxx in $avail_ext; do
19643                         case " $dynamic_ext " in
19644                         *" $xxx "*) ;;
19645                         *) dflt="$dflt $xxx" ;;
19646                         esac
19647                 done
19648                 set X $dflt
19649                 shift
19650                 dflt="$*"
19651                 ;;
19652         *)  dflt="$static_ext" 
19653                 ;;
19654         esac
19655
19656         case "$dflt" in
19657         '')     dflt=none;;
19658         esac
19659         rp="What extensions do you wish to load statically?"
19660         . ./myread
19661         case "$ans" in
19662         none) static_ext=' ' ;;
19663         *) static_ext="$ans" ;;
19664         esac
19665         ;;
19666 *)
19667         $cat <<EOM
19668 A number of extensions are supplied with $package.  Answer "none" 
19669 to include no extensions. 
19670 Note that DynaLoader is always built and need not be mentioned here.
19671
19672 EOM
19673         case "$static_ext" in
19674         '') dflt="$avail_ext" ;;
19675         *)      dflt="$static_ext"
19676                 # Perhaps we are reusing an old out-of-date config.sh.
19677                 case "$hint" in
19678                 previous)
19679                         if test X"$static_ext" != X"$avail_ext"; then
19680                                 $cat <<EOM
19681 NOTICE:  Your previous config.sh list may be incorrect. 
19682 The extensions now available to you are 
19683         ${avail_ext}
19684 but the default list from your previous config.sh is
19685         ${static_ext} 
19686
19687 EOM
19688                         fi
19689                         ;;
19690                 esac
19691                 ;;
19692         esac
19693         : Exclude those that are not xs extensions
19694         case "$dflt" in
19695         '')     dflt=none;;
19696         *)  case " $dflt " in
19697             *" Encode "*) # Add the subextensions of Encode
19698                 cd "$rsrc/ext"
19699                 for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
19700                         dflt="$dflt Encode/$xxx"
19701                 done
19702                 cd "$tdir"
19703                 ;;
19704             esac
19705             ;;
19706         esac
19707         rp="What extensions do you wish to include?"
19708         . ./myread
19709         case "$ans" in
19710         none) static_ext=' ' ;;
19711         *) static_ext="$ans" ;;
19712         esac
19713         ;;
19714 esac
19715
19716 set X $dynamic_ext $static_ext $nonxs_ext
19717 shift
19718 extensions="$*"
19719
19720 : Remove libraries needed only for extensions
19721 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
19722 : The exception is SunOS 4.x, which needs them.
19723 case "${osname}X${osvers}" in
19724 sunos*X4*)
19725     perllibs="$libs"
19726     ;;
19727 *) case "$usedl" in
19728     $define|true|[yY]*)
19729             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
19730             shift
19731             perllibs="$*"
19732             ;;
19733     *)  perllibs="$libs"
19734             ;;
19735     esac
19736     ;;
19737 esac
19738
19739 : Remove build directory name from cppstdin so it can be used from
19740 : either the present location or the final installed location.
19741 echo " "
19742 : Get out of the UU directory to get correct path name.
19743 cd ..
19744 case "$cppstdin" in
19745 `pwd`/cppstdin)
19746         echo "Stripping down cppstdin path name"
19747         cppstdin=cppstdin
19748         ;;
19749 esac
19750 cd UU
19751
19752 : end of configuration questions
19753 echo " "
19754 echo "End of configuration questions."
19755 echo " "
19756
19757 : back to where it started
19758 if test -d ../UU; then
19759         cd ..
19760 fi
19761
19762 : configuration may be patched via a 'config.arch' file
19763 if $test -f config.arch; then
19764         echo "I see a config.arch file, loading it."
19765         . ./config.arch
19766 fi
19767
19768 : configuration may be patched via a 'config.over' file
19769 if $test -f config.over; then
19770         echo " "
19771         dflt=y
19772         rp='I see a config.over file.  Do you wish to load it?'
19773         . UU/myread
19774         case "$ans" in
19775         n*) echo "OK, I'll ignore it.";;
19776         *)      . ./config.over
19777                 echo "Configuration override changes have been loaded."
19778                 ;;
19779         esac
19780 fi
19781
19782 : in case they want portability, strip down executable paths
19783 case "$d_portable" in
19784 "$define")
19785         echo " "
19786         echo "Stripping down executable paths..." >&4
19787         for file in $loclist $trylist; do
19788                 eval temp=\$$file
19789                 eval $file=`basename $temp`
19790         done
19791         ;;
19792 esac
19793
19794 : create config.sh file
19795 echo " "
19796 echo "Creating config.sh..." >&4
19797 $spitshell <<EOT >config.sh
19798 $startsh
19799 #
19800 # This file was produced by running the Configure script. It holds all the
19801 # definitions figured out by Configure. Should you modify one of these values,
19802 # do not forget to propagate your changes by running "Configure -der". You may
19803 # instead choose to run each of the .SH files by yourself, or "Configure -S".
19804 #
19805
19806 # Package name      : $package
19807 # Source directory  : $src
19808 # Configuration time: $cf_time
19809 # Configured by     : $cf_by
19810 # Target system     : $myuname
19811
19812 Author='$Author'
19813 Date='$Date'
19814 Header='$Header'
19815 Id='$Id'
19816 Locker='$Locker'
19817 Log='$Log'
19818 Mcc='$Mcc'
19819 RCSfile='$RCSfile'
19820 Revision='$Revision'
19821 Source='$Source'
19822 State='$State'
19823 _a='$_a'
19824 _exe='$_exe'
19825 _o='$_o'
19826 afs='$afs'
19827 afsroot='$afsroot'
19828 alignbytes='$alignbytes'
19829 ansi2knr='$ansi2knr'
19830 aphostname='$aphostname'
19831 api_revision='$api_revision'
19832 api_subversion='$api_subversion'
19833 api_version='$api_version'
19834 api_versionstring='$api_versionstring'
19835 ar='$ar'
19836 archlib='$archlib'
19837 archlibexp='$archlibexp'
19838 archname64='$archname64'
19839 archname='$archname'
19840 archobjs='$archobjs'
19841 asctime_r_proto='$asctime_r_proto'
19842 awk='$awk'
19843 baserev='$baserev'
19844 bash='$bash'
19845 bin='$bin'
19846 bincompat5005='$bincompat5005'
19847 binexp='$binexp'
19848 bison='$bison'
19849 byacc='$byacc'
19850 byteorder='$byteorder'
19851 c='$c'
19852 castflags='$castflags'
19853 cat='$cat'
19854 cc='$cc'
19855 cccdlflags='$cccdlflags'
19856 ccdlflags='$ccdlflags'
19857 ccflags='$ccflags'
19858 ccflags_uselargefiles='$ccflags_uselargefiles'
19859 ccname='$ccname'
19860 ccsymbols='$ccsymbols'
19861 ccversion='$ccversion'
19862 cf_by='$cf_by'
19863 cf_email='$cf_email'
19864 cf_time='$cf_time'
19865 charsize='$charsize'
19866 chgrp='$chgrp'
19867 chmod='$chmod'
19868 chown='$chown'
19869 clocktype='$clocktype'
19870 comm='$comm'
19871 compress='$compress'
19872 contains='$contains'
19873 cp='$cp'
19874 cpio='$cpio'
19875 cpp='$cpp'
19876 cpp_stuff='$cpp_stuff'
19877 cppccsymbols='$cppccsymbols'
19878 cppflags='$cppflags'
19879 cpplast='$cpplast'
19880 cppminus='$cppminus'
19881 cpprun='$cpprun'
19882 cppstdin='$cppstdin'
19883 cppsymbols='$cppsymbols'
19884 crypt_r_proto='$crypt_r_proto'
19885 cryptlib='$cryptlib'
19886 csh='$csh'
19887 ctermid_r_proto='$ctermid_r_proto'
19888 ctime_r_proto='$ctime_r_proto'
19889 d_Gconvert='$d_Gconvert'
19890 d_PRIEUldbl='$d_PRIEUldbl'
19891 d_PRIFUldbl='$d_PRIFUldbl'
19892 d_PRIGUldbl='$d_PRIGUldbl'
19893 d_PRIXU64='$d_PRIXU64'
19894 d_PRId64='$d_PRId64'
19895 d_PRIeldbl='$d_PRIeldbl'
19896 d_PRIfldbl='$d_PRIfldbl'
19897 d_PRIgldbl='$d_PRIgldbl'
19898 d_PRIi64='$d_PRIi64'
19899 d_PRIo64='$d_PRIo64'
19900 d_PRIu64='$d_PRIu64'
19901 d_PRIx64='$d_PRIx64'
19902 d_SCNfldbl='$d_SCNfldbl'
19903 d__fwalk='$d__fwalk'
19904 d_access='$d_access'
19905 d_accessx='$d_accessx'
19906 d_alarm='$d_alarm'
19907 d_archlib='$d_archlib'
19908 d_asctime_r='$d_asctime_r'
19909 d_atolf='$d_atolf'
19910 d_atoll='$d_atoll'
19911 d_attribut='$d_attribut'
19912 d_bcmp='$d_bcmp'
19913 d_bcopy='$d_bcopy'
19914 d_bincompat5005='$d_bincompat5005'
19915 d_bsd='$d_bsd'
19916 d_bsdgetpgrp='$d_bsdgetpgrp'
19917 d_bsdsetpgrp='$d_bsdsetpgrp'
19918 d_bzero='$d_bzero'
19919 d_casti32='$d_casti32'
19920 d_castneg='$d_castneg'
19921 d_charvspr='$d_charvspr'
19922 d_chown='$d_chown'
19923 d_chroot='$d_chroot'
19924 d_chsize='$d_chsize'
19925 d_class='$d_class'
19926 d_closedir='$d_closedir'
19927 d_cmsghdr_s='$d_cmsghdr_s'
19928 d_const='$d_const'
19929 d_crypt='$d_crypt'
19930 d_crypt_r='$d_crypt_r'
19931 d_csh='$d_csh'
19932 d_ctermid_r='$d_ctermid_r'
19933 d_ctime_r='$d_ctime_r'
19934 d_cuserid='$d_cuserid'
19935 d_dbl_dig='$d_dbl_dig'
19936 d_dbminitproto='$d_dbminitproto'
19937 d_difftime='$d_difftime'
19938 d_dirfd='$d_dirfd'
19939 d_dirnamlen='$d_dirnamlen'
19940 d_dlerror='$d_dlerror'
19941 d_dlopen='$d_dlopen'
19942 d_dlsymun='$d_dlsymun'
19943 d_dosuid='$d_dosuid'
19944 d_drand48_r='$d_drand48_r'
19945 d_drand48proto='$d_drand48proto'
19946 d_dup2='$d_dup2'
19947 d_eaccess='$d_eaccess'
19948 d_endgrent='$d_endgrent'
19949 d_endgrent_r='$d_endgrent_r'
19950 d_endhent='$d_endhent'
19951 d_endhostent_r='$d_endhostent_r'
19952 d_endnent='$d_endnent'
19953 d_endnetent_r='$d_endnetent_r'
19954 d_endpent='$d_endpent'
19955 d_endprotoent_r='$d_endprotoent_r'
19956 d_endpwent='$d_endpwent'
19957 d_endpwent_r='$d_endpwent_r'
19958 d_endsent='$d_endsent'
19959 d_endservent_r='$d_endservent_r'
19960 d_eofnblk='$d_eofnblk'
19961 d_eunice='$d_eunice'
19962 d_fchdir='$d_fchdir'
19963 d_fchmod='$d_fchmod'
19964 d_fchown='$d_fchown'
19965 d_fcntl='$d_fcntl'
19966 d_fcntl_can_lock='$d_fcntl_can_lock'
19967 d_fd_macros='$d_fd_macros'
19968 d_fd_set='$d_fd_set'
19969 d_fds_bits='$d_fds_bits'
19970 d_fgetpos='$d_fgetpos'
19971 d_finite='$d_finite'
19972 d_finitel='$d_finitel'
19973 d_flexfnam='$d_flexfnam'
19974 d_flock='$d_flock'
19975 d_flockproto='$d_flockproto'
19976 d_fork='$d_fork'
19977 d_fp_class='$d_fp_class'
19978 d_fpathconf='$d_fpathconf'
19979 d_fpclass='$d_fpclass'
19980 d_fpclassify='$d_fpclassify'
19981 d_fpclassl='$d_fpclassl'
19982 d_fpos64_t='$d_fpos64_t'
19983 d_frexpl='$d_frexpl'
19984 d_fs_data_s='$d_fs_data_s'
19985 d_fseeko='$d_fseeko'
19986 d_fsetpos='$d_fsetpos'
19987 d_fstatfs='$d_fstatfs'
19988 d_fstatvfs='$d_fstatvfs'
19989 d_fsync='$d_fsync'
19990 d_ftello='$d_ftello'
19991 d_ftime='$d_ftime'
19992 d_getcwd='$d_getcwd'
19993 d_getespwnam='$d_getespwnam'
19994 d_getfsstat='$d_getfsstat'
19995 d_getgrent='$d_getgrent'
19996 d_getgrent_r='$d_getgrent_r'
19997 d_getgrgid_r='$d_getgrgid_r'
19998 d_getgrnam_r='$d_getgrnam_r'
19999 d_getgrps='$d_getgrps'
20000 d_gethbyaddr='$d_gethbyaddr'
20001 d_gethbyname='$d_gethbyname'
20002 d_gethent='$d_gethent'
20003 d_gethname='$d_gethname'
20004 d_gethostbyaddr_r='$d_gethostbyaddr_r'
20005 d_gethostbyname_r='$d_gethostbyname_r'
20006 d_gethostent_r='$d_gethostent_r'
20007 d_gethostprotos='$d_gethostprotos'
20008 d_getitimer='$d_getitimer'
20009 d_getlogin='$d_getlogin'
20010 d_getlogin_r='$d_getlogin_r'
20011 d_getmnt='$d_getmnt'
20012 d_getmntent='$d_getmntent'
20013 d_getnbyaddr='$d_getnbyaddr'
20014 d_getnbyname='$d_getnbyname'
20015 d_getnent='$d_getnent'
20016 d_getnetbyaddr_r='$d_getnetbyaddr_r'
20017 d_getnetbyname_r='$d_getnetbyname_r'
20018 d_getnetent_r='$d_getnetent_r'
20019 d_getnetprotos='$d_getnetprotos'
20020 d_getpagsz='$d_getpagsz'
20021 d_getpbyname='$d_getpbyname'
20022 d_getpbynumber='$d_getpbynumber'
20023 d_getpent='$d_getpent'
20024 d_getpgid='$d_getpgid'
20025 d_getpgrp2='$d_getpgrp2'
20026 d_getpgrp='$d_getpgrp'
20027 d_getppid='$d_getppid'
20028 d_getprior='$d_getprior'
20029 d_getprotobyname_r='$d_getprotobyname_r'
20030 d_getprotobynumber_r='$d_getprotobynumber_r'
20031 d_getprotoent_r='$d_getprotoent_r'
20032 d_getprotoprotos='$d_getprotoprotos'
20033 d_getprpwnam='$d_getprpwnam'
20034 d_getpwent='$d_getpwent'
20035 d_getpwent_r='$d_getpwent_r'
20036 d_getpwnam_r='$d_getpwnam_r'
20037 d_getpwuid_r='$d_getpwuid_r'
20038 d_getsbyname='$d_getsbyname'
20039 d_getsbyport='$d_getsbyport'
20040 d_getsent='$d_getsent'
20041 d_getservbyname_r='$d_getservbyname_r'
20042 d_getservbyport_r='$d_getservbyport_r'
20043 d_getservent_r='$d_getservent_r'
20044 d_getservprotos='$d_getservprotos'
20045 d_getspnam='$d_getspnam'
20046 d_getspnam_r='$d_getspnam_r'
20047 d_gettimeod='$d_gettimeod'
20048 d_gmtime_r='$d_gmtime_r'
20049 d_gnulibc='$d_gnulibc'
20050 d_grpasswd='$d_grpasswd'
20051 d_hasmntopt='$d_hasmntopt'
20052 d_htonl='$d_htonl'
20053 d_index='$d_index'
20054 d_inetaton='$d_inetaton'
20055 d_int64_t='$d_int64_t'
20056 d_isascii='$d_isascii'
20057 d_isfinite='$d_isfinite'
20058 d_isinf='$d_isinf'
20059 d_isnan='$d_isnan'
20060 d_isnanl='$d_isnanl'
20061 d_killpg='$d_killpg'
20062 d_lchown='$d_lchown'
20063 d_ldbl_dig='$d_ldbl_dig'
20064 d_link='$d_link'
20065 d_localtime_r='$d_localtime_r'
20066 d_locconv='$d_locconv'
20067 d_lockf='$d_lockf'
20068 d_longdbl='$d_longdbl'
20069 d_longlong='$d_longlong'
20070 d_lseekproto='$d_lseekproto'
20071 d_lstat='$d_lstat'
20072 d_madvise='$d_madvise'
20073 d_mblen='$d_mblen'
20074 d_mbstowcs='$d_mbstowcs'
20075 d_mbtowc='$d_mbtowc'
20076 d_memchr='$d_memchr'
20077 d_memcmp='$d_memcmp'
20078 d_memcpy='$d_memcpy'
20079 d_memmove='$d_memmove'
20080 d_memset='$d_memset'
20081 d_mkdir='$d_mkdir'
20082 d_mkdtemp='$d_mkdtemp'
20083 d_mkfifo='$d_mkfifo'
20084 d_mkstemp='$d_mkstemp'
20085 d_mkstemps='$d_mkstemps'
20086 d_mktime='$d_mktime'
20087 d_mmap='$d_mmap'
20088 d_modfl='$d_modfl'
20089 d_modfl_pow32_bug='$d_modfl_pow32_bug'
20090 d_mprotect='$d_mprotect'
20091 d_msg='$d_msg'
20092 d_msg_ctrunc='$d_msg_ctrunc'
20093 d_msg_dontroute='$d_msg_dontroute'
20094 d_msg_oob='$d_msg_oob'
20095 d_msg_peek='$d_msg_peek'
20096 d_msg_proxy='$d_msg_proxy'
20097 d_msgctl='$d_msgctl'
20098 d_msgget='$d_msgget'
20099 d_msghdr_s='$d_msghdr_s'
20100 d_msgrcv='$d_msgrcv'
20101 d_msgsnd='$d_msgsnd'
20102 d_msync='$d_msync'
20103 d_munmap='$d_munmap'
20104 d_mymalloc='$d_mymalloc'
20105 d_nice='$d_nice'
20106 d_nl_langinfo='$d_nl_langinfo'
20107 d_nv_preserves_uv='$d_nv_preserves_uv'
20108 d_off64_t='$d_off64_t'
20109 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
20110 d_oldpthreads='$d_oldpthreads'
20111 d_oldsock='$d_oldsock'
20112 d_open3='$d_open3'
20113 d_pathconf='$d_pathconf'
20114 d_pause='$d_pause'
20115 d_perl_otherlibdirs='$d_perl_otherlibdirs'
20116 d_phostname='$d_phostname'
20117 d_pipe='$d_pipe'
20118 d_poll='$d_poll'
20119 d_portable='$d_portable'
20120 d_procselfexe='$d_procselfexe'
20121 d_pthread_atfork='$d_pthread_atfork'
20122 d_pthread_yield='$d_pthread_yield'
20123 d_pwage='$d_pwage'
20124 d_pwchange='$d_pwchange'
20125 d_pwclass='$d_pwclass'
20126 d_pwcomment='$d_pwcomment'
20127 d_pwexpire='$d_pwexpire'
20128 d_pwgecos='$d_pwgecos'
20129 d_pwpasswd='$d_pwpasswd'
20130 d_pwquota='$d_pwquota'
20131 d_qgcvt='$d_qgcvt'
20132 d_quad='$d_quad'
20133 d_random_r='$d_random_r'
20134 d_readdir64_r='$d_readdir64_r'
20135 d_readdir='$d_readdir'
20136 d_readdir_r='$d_readdir_r'
20137 d_readlink='$d_readlink'
20138 d_readv='$d_readv'
20139 d_recvmsg='$d_recvmsg'
20140 d_rename='$d_rename'
20141 d_rewinddir='$d_rewinddir'
20142 d_rmdir='$d_rmdir'
20143 d_safebcpy='$d_safebcpy'
20144 d_safemcpy='$d_safemcpy'
20145 d_sanemcmp='$d_sanemcmp'
20146 d_sbrkproto='$d_sbrkproto'
20147 d_sched_yield='$d_sched_yield'
20148 d_scm_rights='$d_scm_rights'
20149 d_seekdir='$d_seekdir'
20150 d_select='$d_select'
20151 d_sem='$d_sem'
20152 d_semctl='$d_semctl'
20153 d_semctl_semid_ds='$d_semctl_semid_ds'
20154 d_semctl_semun='$d_semctl_semun'
20155 d_semget='$d_semget'
20156 d_semop='$d_semop'
20157 d_sendmsg='$d_sendmsg'
20158 d_setegid='$d_setegid'
20159 d_seteuid='$d_seteuid'
20160 d_setgrent='$d_setgrent'
20161 d_setgrent_r='$d_setgrent_r'
20162 d_setgrps='$d_setgrps'
20163 d_sethent='$d_sethent'
20164 d_sethostent_r='$d_sethostent_r'
20165 d_setitimer='$d_setitimer'
20166 d_setlinebuf='$d_setlinebuf'
20167 d_setlocale='$d_setlocale'
20168 d_setlocale_r='$d_setlocale_r'
20169 d_setnent='$d_setnent'
20170 d_setnetent_r='$d_setnetent_r'
20171 d_setpent='$d_setpent'
20172 d_setpgid='$d_setpgid'
20173 d_setpgrp2='$d_setpgrp2'
20174 d_setpgrp='$d_setpgrp'
20175 d_setprior='$d_setprior'
20176 d_setproctitle='$d_setproctitle'
20177 d_setprotoent_r='$d_setprotoent_r'
20178 d_setpwent='$d_setpwent'
20179 d_setpwent_r='$d_setpwent_r'
20180 d_setregid='$d_setregid'
20181 d_setresgid='$d_setresgid'
20182 d_setresuid='$d_setresuid'
20183 d_setreuid='$d_setreuid'
20184 d_setrgid='$d_setrgid'
20185 d_setruid='$d_setruid'
20186 d_setsent='$d_setsent'
20187 d_setservent_r='$d_setservent_r'
20188 d_setsid='$d_setsid'
20189 d_setvbuf='$d_setvbuf'
20190 d_sfio='$d_sfio'
20191 d_shm='$d_shm'
20192 d_shmat='$d_shmat'
20193 d_shmatprototype='$d_shmatprototype'
20194 d_shmctl='$d_shmctl'
20195 d_shmdt='$d_shmdt'
20196 d_shmget='$d_shmget'
20197 d_sigaction='$d_sigaction'
20198 d_sigprocmask='$d_sigprocmask'
20199 d_sigsetjmp='$d_sigsetjmp'
20200 d_sockatmark='$d_sockatmark'
20201 d_sockatmarkproto='$d_sockatmarkproto'
20202 d_socket='$d_socket'
20203 d_socklen_t='$d_socklen_t'
20204 d_sockpair='$d_sockpair'
20205 d_socks5_init='$d_socks5_init'
20206 d_sqrtl='$d_sqrtl'
20207 d_srand48_r='$d_srand48_r'
20208 d_srandom_r='$d_srandom_r'
20209 d_sresgproto='$d_sresgproto'
20210 d_sresuproto='$d_sresuproto'
20211 d_statblks='$d_statblks'
20212 d_statfs_f_flags='$d_statfs_f_flags'
20213 d_statfs_s='$d_statfs_s'
20214 d_statvfs='$d_statvfs'
20215 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20216 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20217 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20218 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20219 d_stdio_stream_array='$d_stdio_stream_array'
20220 d_stdiobase='$d_stdiobase'
20221 d_stdstdio='$d_stdstdio'
20222 d_strchr='$d_strchr'
20223 d_strcoll='$d_strcoll'
20224 d_strctcpy='$d_strctcpy'
20225 d_strerrm='$d_strerrm'
20226 d_strerror='$d_strerror'
20227 d_strerror_r='$d_strerror_r'
20228 d_strftime='$d_strftime'
20229 d_strtod='$d_strtod'
20230 d_strtol='$d_strtol'
20231 d_strtold='$d_strtold'
20232 d_strtoll='$d_strtoll'
20233 d_strtoq='$d_strtoq'
20234 d_strtoul='$d_strtoul'
20235 d_strtoull='$d_strtoull'
20236 d_strtouq='$d_strtouq'
20237 d_strxfrm='$d_strxfrm'
20238 d_suidsafe='$d_suidsafe'
20239 d_symlink='$d_symlink'
20240 d_syscall='$d_syscall'
20241 d_syscallproto='$d_syscallproto'
20242 d_sysconf='$d_sysconf'
20243 d_sysernlst='$d_sysernlst'
20244 d_syserrlst='$d_syserrlst'
20245 d_system='$d_system'
20246 d_tcgetpgrp='$d_tcgetpgrp'
20247 d_tcsetpgrp='$d_tcsetpgrp'
20248 d_telldir='$d_telldir'
20249 d_telldirproto='$d_telldirproto'
20250 d_time='$d_time'
20251 d_times='$d_times'
20252 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20253 d_tm_tm_zone='$d_tm_tm_zone'
20254 d_tmpnam_r='$d_tmpnam_r'
20255 d_truncate='$d_truncate'
20256 d_ttyname_r='$d_ttyname_r'
20257 d_tzname='$d_tzname'
20258 d_u32align='$d_u32align'
20259 d_ualarm='$d_ualarm'
20260 d_umask='$d_umask'
20261 d_uname='$d_uname'
20262 d_union_semun='$d_union_semun'
20263 d_unordered='$d_unordered'
20264 d_usleep='$d_usleep'
20265 d_usleepproto='$d_usleepproto'
20266 d_ustat='$d_ustat'
20267 d_vendorarch='$d_vendorarch'
20268 d_vendorbin='$d_vendorbin'
20269 d_vendorlib='$d_vendorlib'
20270 d_vfork='$d_vfork'
20271 d_void_closedir='$d_void_closedir'
20272 d_voidsig='$d_voidsig'
20273 d_voidtty='$d_voidtty'
20274 d_volatile='$d_volatile'
20275 d_vprintf='$d_vprintf'
20276 d_wait4='$d_wait4'
20277 d_waitpid='$d_waitpid'
20278 d_wcstombs='$d_wcstombs'
20279 d_wctomb='$d_wctomb'
20280 d_writev='$d_writev'
20281 d_xenix='$d_xenix'
20282 date='$date'
20283 db_hashtype='$db_hashtype'
20284 db_prefixtype='$db_prefixtype'
20285 db_version_major='$db_version_major'
20286 db_version_minor='$db_version_minor'
20287 db_version_patch='$db_version_patch'
20288 defvoidused='$defvoidused'
20289 direntrytype='$direntrytype'
20290 dlext='$dlext'
20291 dlsrc='$dlsrc'
20292 doublesize='$doublesize'
20293 drand01='$drand01'
20294 drand48_r_proto='$drand48_r_proto'
20295 dynamic_ext='$dynamic_ext'
20296 eagain='$eagain'
20297 ebcdic='$ebcdic'
20298 echo='$echo'
20299 egrep='$egrep'
20300 emacs='$emacs'
20301 endgrent_r_proto='$endgrent_r_proto'
20302 endhostent_r_proto='$endhostent_r_proto'
20303 endnetent_r_proto='$endnetent_r_proto'
20304 endprotoent_r_proto='$endprotoent_r_proto'
20305 endpwent_r_proto='$endpwent_r_proto'
20306 endservent_r_proto='$endservent_r_proto'
20307 eunicefix='$eunicefix'
20308 exe_ext='$exe_ext'
20309 expr='$expr'
20310 extensions='$extensions'
20311 extras='$extras'
20312 fflushNULL='$fflushNULL'
20313 fflushall='$fflushall'
20314 find='$find'
20315 firstmakefile='$firstmakefile'
20316 flex='$flex'
20317 fpossize='$fpossize'
20318 fpostype='$fpostype'
20319 freetype='$freetype'
20320 from='$from'
20321 full_ar='$full_ar'
20322 full_csh='$full_csh'
20323 full_sed='$full_sed'
20324 gccosandvers='$gccosandvers'
20325 gccversion='$gccversion'
20326 getgrent_r_proto='$getgrent_r_proto'
20327 getgrgid_r_proto='$getgrgid_r_proto'
20328 getgrnam_r_proto='$getgrnam_r_proto'
20329 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
20330 gethostbyname_r_proto='$gethostbyname_r_proto'
20331 gethostent_r_proto='$gethostent_r_proto'
20332 getlogin_r_proto='$getlogin_r_proto'
20333 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
20334 getnetbyname_r_proto='$getnetbyname_r_proto'
20335 getnetent_r_proto='$getnetent_r_proto'
20336 getprotobyname_r_proto='$getprotobyname_r_proto'
20337 getprotobynumber_r_proto='$getprotobynumber_r_proto'
20338 getprotoent_r_proto='$getprotoent_r_proto'
20339 getpwent_r_proto='$getpwent_r_proto'
20340 getpwnam_r_proto='$getpwnam_r_proto'
20341 getpwuid_r_proto='$getpwuid_r_proto'
20342 getservbyname_r_proto='$getservbyname_r_proto'
20343 getservbyport_r_proto='$getservbyport_r_proto'
20344 getservent_r_proto='$getservent_r_proto'
20345 getspnam_r_proto='$getspnam_r_proto'
20346 gidformat='$gidformat'
20347 gidsign='$gidsign'
20348 gidsize='$gidsize'
20349 gidtype='$gidtype'
20350 glibpth='$glibpth'
20351 gmake='$gmake'
20352 gmtime_r_proto='$gmtime_r_proto'
20353 grep='$grep'
20354 groupcat='$groupcat'
20355 groupstype='$groupstype'
20356 gzip='$gzip'
20357 h_fcntl='$h_fcntl'
20358 h_sysfile='$h_sysfile'
20359 hint='$hint'
20360 hostcat='$hostcat'
20361 i16size='$i16size'
20362 i16type='$i16type'
20363 i32size='$i32size'
20364 i32type='$i32type'
20365 i64size='$i64size'
20366 i64type='$i64type'
20367 i8size='$i8size'
20368 i8type='$i8type'
20369 i_arpainet='$i_arpainet'
20370 i_bsdioctl='$i_bsdioctl'
20371 i_crypt='$i_crypt'
20372 i_db='$i_db'
20373 i_dbm='$i_dbm'
20374 i_dirent='$i_dirent'
20375 i_dld='$i_dld'
20376 i_dlfcn='$i_dlfcn'
20377 i_fcntl='$i_fcntl'
20378 i_float='$i_float'
20379 i_fp='$i_fp'
20380 i_fp_class='$i_fp_class'
20381 i_gdbm='$i_gdbm'
20382 i_grp='$i_grp'
20383 i_ieeefp='$i_ieeefp'
20384 i_inttypes='$i_inttypes'
20385 i_langinfo='$i_langinfo'
20386 i_libutil='$i_libutil'
20387 i_limits='$i_limits'
20388 i_locale='$i_locale'
20389 i_machcthr='$i_machcthr'
20390 i_malloc='$i_malloc'
20391 i_math='$i_math'
20392 i_memory='$i_memory'
20393 i_mntent='$i_mntent'
20394 i_ndbm='$i_ndbm'
20395 i_netdb='$i_netdb'
20396 i_neterrno='$i_neterrno'
20397 i_netinettcp='$i_netinettcp'
20398 i_niin='$i_niin'
20399 i_poll='$i_poll'
20400 i_prot='$i_prot'
20401 i_pthread='$i_pthread'
20402 i_pwd='$i_pwd'
20403 i_rpcsvcdbm='$i_rpcsvcdbm'
20404 i_sfio='$i_sfio'
20405 i_sgtty='$i_sgtty'
20406 i_shadow='$i_shadow'
20407 i_socks='$i_socks'
20408 i_stdarg='$i_stdarg'
20409 i_stddef='$i_stddef'
20410 i_stdlib='$i_stdlib'
20411 i_string='$i_string'
20412 i_sunmath='$i_sunmath'
20413 i_sysaccess='$i_sysaccess'
20414 i_sysdir='$i_sysdir'
20415 i_sysfile='$i_sysfile'
20416 i_sysfilio='$i_sysfilio'
20417 i_sysin='$i_sysin'
20418 i_sysioctl='$i_sysioctl'
20419 i_syslog='$i_syslog'
20420 i_sysmman='$i_sysmman'
20421 i_sysmode='$i_sysmode'
20422 i_sysmount='$i_sysmount'
20423 i_sysndir='$i_sysndir'
20424 i_sysparam='$i_sysparam'
20425 i_sysresrc='$i_sysresrc'
20426 i_syssecrt='$i_syssecrt'
20427 i_sysselct='$i_sysselct'
20428 i_syssockio='$i_syssockio'
20429 i_sysstat='$i_sysstat'
20430 i_sysstatfs='$i_sysstatfs'
20431 i_sysstatvfs='$i_sysstatvfs'
20432 i_systime='$i_systime'
20433 i_systimek='$i_systimek'
20434 i_systimes='$i_systimes'
20435 i_systypes='$i_systypes'
20436 i_sysuio='$i_sysuio'
20437 i_sysun='$i_sysun'
20438 i_sysutsname='$i_sysutsname'
20439 i_sysvfs='$i_sysvfs'
20440 i_syswait='$i_syswait'
20441 i_termio='$i_termio'
20442 i_termios='$i_termios'
20443 i_time='$i_time'
20444 i_unistd='$i_unistd'
20445 i_ustat='$i_ustat'
20446 i_utime='$i_utime'
20447 i_values='$i_values'
20448 i_varargs='$i_varargs'
20449 i_varhdr='$i_varhdr'
20450 i_vfork='$i_vfork'
20451 ignore_versioned_solibs='$ignore_versioned_solibs'
20452 inc_version_list='$inc_version_list'
20453 inc_version_list_init='$inc_version_list_init'
20454 incpath='$incpath'
20455 inews='$inews'
20456 installarchlib='$installarchlib'
20457 installbin='$installbin'
20458 installman1dir='$installman1dir'
20459 installman3dir='$installman3dir'
20460 installprefix='$installprefix'
20461 installprefixexp='$installprefixexp'
20462 installprivlib='$installprivlib'
20463 installscript='$installscript'
20464 installsitearch='$installsitearch'
20465 installsitebin='$installsitebin'
20466 installsitelib='$installsitelib'
20467 installstyle='$installstyle'
20468 installusrbinperl='$installusrbinperl'
20469 installvendorarch='$installvendorarch'
20470 installvendorbin='$installvendorbin'
20471 installvendorlib='$installvendorlib'
20472 intsize='$intsize'
20473 issymlink='$issymlink'
20474 ivdformat='$ivdformat'
20475 ivsize='$ivsize'
20476 ivtype='$ivtype'
20477 known_extensions='$known_extensions'
20478 ksh='$ksh'
20479 ld='$ld'
20480 lddlflags='$lddlflags'
20481 ldflags='$ldflags'
20482 ldflags_uselargefiles='$ldflags_uselargefiles'
20483 ldlibpthname='$ldlibpthname'
20484 less='$less'
20485 lib_ext='$lib_ext'
20486 libc='$libc'
20487 libperl='$libperl'
20488 libpth='$libpth'
20489 libs='$libs'
20490 libsdirs='$libsdirs'
20491 libsfiles='$libsfiles'
20492 libsfound='$libsfound'
20493 libspath='$libspath'
20494 libswanted='$libswanted'
20495 libswanted_uselargefiles='$libswanted_uselargefiles'
20496 line='$line'
20497 lint='$lint'
20498 lkflags='$lkflags'
20499 ln='$ln'
20500 lns='$lns'
20501 localtime_r_proto='$localtime_r_proto'
20502 locincpth='$locincpth'
20503 loclibpth='$loclibpth'
20504 longdblsize='$longdblsize'
20505 longlongsize='$longlongsize'
20506 longsize='$longsize'
20507 lp='$lp'
20508 lpr='$lpr'
20509 ls='$ls'
20510 lseeksize='$lseeksize'
20511 lseektype='$lseektype'
20512 mail='$mail'
20513 mailx='$mailx'
20514 make='$make'
20515 make_set_make='$make_set_make'
20516 mallocobj='$mallocobj'
20517 mallocsrc='$mallocsrc'
20518 malloctype='$malloctype'
20519 man1dir='$man1dir'
20520 man1direxp='$man1direxp'
20521 man1ext='$man1ext'
20522 man3dir='$man3dir'
20523 man3direxp='$man3direxp'
20524 man3ext='$man3ext'
20525 mips_type='$mips_type'
20526 mkdir='$mkdir'
20527 mmaptype='$mmaptype'
20528 modetype='$modetype'
20529 more='$more'
20530 multiarch='$multiarch'
20531 mv='$mv'
20532 myarchname='$myarchname'
20533 mydomain='$mydomain'
20534 myhostname='$myhostname'
20535 myuname='$myuname'
20536 n='$n'
20537 need_va_copy='$need_va_copy'
20538 netdb_hlen_type='$netdb_hlen_type'
20539 netdb_host_type='$netdb_host_type'
20540 netdb_name_type='$netdb_name_type'
20541 netdb_net_type='$netdb_net_type'
20542 nm='$nm'
20543 nm_opt='$nm_opt'
20544 nm_so_opt='$nm_so_opt'
20545 nonxs_ext='$nonxs_ext'
20546 nroff='$nroff'
20547 nvEUformat='$nvEUformat'
20548 nvFUformat='$nvFUformat'
20549 nvGUformat='$nvGUformat'
20550 nv_preserves_uv_bits='$nv_preserves_uv_bits'
20551 nveformat='$nveformat'
20552 nvfformat='$nvfformat'
20553 nvgformat='$nvgformat'
20554 nvsize='$nvsize'
20555 nvtype='$nvtype'
20556 o_nonblock='$o_nonblock'
20557 obj_ext='$obj_ext'
20558 old_pthread_create_joinable='$old_pthread_create_joinable'
20559 optimize='$optimize'
20560 orderlib='$orderlib'
20561 osname='$osname'
20562 osvers='$osvers'
20563 otherlibdirs='$otherlibdirs'
20564 package='$package'
20565 pager='$pager'
20566 passcat='$passcat'
20567 patchlevel='$patchlevel'
20568 path_sep='$path_sep'
20569 perl5='$perl5'
20570 perl='$perl'
20571 perl_patchlevel='$perl_patchlevel'
20572 perladmin='$perladmin'
20573 perllibs='$perllibs'
20574 perlpath='$perlpath'
20575 pg='$pg'
20576 phostname='$phostname'
20577 pidtype='$pidtype'
20578 plibpth='$plibpth'
20579 pm_apiversion='$pm_apiversion'
20580 pmake='$pmake'
20581 pr='$pr'
20582 prefix='$prefix'
20583 prefixexp='$prefixexp'
20584 privlib='$privlib'
20585 privlibexp='$privlibexp'
20586 procselfexe='$procselfexe'
20587 prototype='$prototype'
20588 ptrsize='$ptrsize'
20589 quadkind='$quadkind'
20590 quadtype='$quadtype'
20591 randbits='$randbits'
20592 randfunc='$randfunc'
20593 random_r_proto='$random_r_proto'
20594 randseedtype='$randseedtype'
20595 ranlib='$ranlib'
20596 rd_nodata='$rd_nodata'
20597 readdir64_r_proto='$readdir64_r_proto'
20598 readdir_r_proto='$readdir_r_proto'
20599 revision='$revision'
20600 rm='$rm'
20601 rmail='$rmail'
20602 run='$run'
20603 runnm='$runnm'
20604 sPRIEUldbl='$sPRIEUldbl'
20605 sPRIFUldbl='$sPRIFUldbl'
20606 sPRIGUldbl='$sPRIGUldbl'
20607 sPRIXU64='$sPRIXU64'
20608 sPRId64='$sPRId64'
20609 sPRIeldbl='$sPRIeldbl'
20610 sPRIfldbl='$sPRIfldbl'
20611 sPRIgldbl='$sPRIgldbl'
20612 sPRIi64='$sPRIi64'
20613 sPRIo64='$sPRIo64'
20614 sPRIu64='$sPRIu64'
20615 sPRIx64='$sPRIx64'
20616 sSCNfldbl='$sSCNfldbl'
20617 sched_yield='$sched_yield'
20618 scriptdir='$scriptdir'
20619 scriptdirexp='$scriptdirexp'
20620 sed='$sed'
20621 seedfunc='$seedfunc'
20622 selectminbits='$selectminbits'
20623 selecttype='$selecttype'
20624 sendmail='$sendmail'
20625 setgrent_r_proto='$setgrent_r_proto'
20626 sethostent_r_proto='$sethostent_r_proto'
20627 setlocale_r_proto='$setlocale_r_proto'
20628 setnetent_r_proto='$setnetent_r_proto'
20629 setprotoent_r_proto='$setprotoent_r_proto'
20630 setpwent_r_proto='$setpwent_r_proto'
20631 setservent_r_proto='$setservent_r_proto'
20632 sh='$sh'
20633 shar='$shar'
20634 sharpbang='$sharpbang'
20635 shmattype='$shmattype'
20636 shortsize='$shortsize'
20637 shrpenv='$shrpenv'
20638 shsharp='$shsharp'
20639 sig_count='$sig_count'
20640 sig_name='$sig_name'
20641 sig_name_init='$sig_name_init'
20642 sig_num='$sig_num'
20643 sig_num_init='$sig_num_init'
20644 sig_size='$sig_size'
20645 signal_t='$signal_t'
20646 sitearch='$sitearch'
20647 sitearchexp='$sitearchexp'
20648 sitebin='$sitebin'
20649 sitebinexp='$sitebinexp'
20650 sitelib='$sitelib'
20651 sitelib_stem='$sitelib_stem'
20652 sitelibexp='$sitelibexp'
20653 siteprefix='$siteprefix'
20654 siteprefixexp='$siteprefixexp'
20655 sizesize='$sizesize'
20656 sizetype='$sizetype'
20657 sleep='$sleep'
20658 smail='$smail'
20659 so='$so'
20660 sockethdr='$sockethdr'
20661 socketlib='$socketlib'
20662 socksizetype='$socksizetype'
20663 sort='$sort'
20664 spackage='$spackage'
20665 spitshell='$spitshell'
20666 srand48_r_proto='$srand48_r_proto'
20667 srandom_r_proto='$srandom_r_proto'
20668 src='$src'
20669 ssizetype='$ssizetype'
20670 startperl='$startperl'
20671 startsh='$startsh'
20672 static_ext='$static_ext'
20673 stdchar='$stdchar'
20674 stdio_base='$stdio_base'
20675 stdio_bufsiz='$stdio_bufsiz'
20676 stdio_cnt='$stdio_cnt'
20677 stdio_filbuf='$stdio_filbuf'
20678 stdio_ptr='$stdio_ptr'
20679 stdio_stream_array='$stdio_stream_array'
20680 strerror_r_proto='$strerror_r_proto'
20681 strings='$strings'
20682 submit='$submit'
20683 subversion='$subversion'
20684 sysman='$sysman'
20685 tail='$tail'
20686 tar='$tar'
20687 targetarch='$targetarch'
20688 tbl='$tbl'
20689 tee='$tee'
20690 test='$test'
20691 timeincl='$timeincl'
20692 timetype='$timetype'
20693 tmpnam_r_proto='$tmpnam_r_proto'
20694 to='$to'
20695 touch='$touch'
20696 tr='$tr'
20697 trnl='$trnl'
20698 troff='$troff'
20699 ttyname_r_proto='$ttyname_r_proto'
20700 u16size='$u16size'
20701 u16type='$u16type'
20702 u32size='$u32size'
20703 u32type='$u32type'
20704 u64size='$u64size'
20705 u64type='$u64type'
20706 u8size='$u8size'
20707 u8type='$u8type'
20708 uidformat='$uidformat'
20709 uidsign='$uidsign'
20710 uidsize='$uidsize'
20711 uidtype='$uidtype'
20712 uname='$uname'
20713 uniq='$uniq'
20714 uquadtype='$uquadtype'
20715 use5005threads='$use5005threads'
20716 use64bitall='$use64bitall'
20717 use64bitint='$use64bitint'
20718 usecrosscompile='$usecrosscompile'
20719 usedl='$usedl'
20720 useithreads='$useithreads'
20721 uselargefiles='$uselargefiles'
20722 uselongdouble='$uselongdouble'
20723 usemorebits='$usemorebits'
20724 usemultiplicity='$usemultiplicity'
20725 usemymalloc='$usemymalloc'
20726 usenm='$usenm'
20727 useopcode='$useopcode'
20728 useperlio='$useperlio'
20729 useposix='$useposix'
20730 usereentrant='$usereentrant'
20731 usesfio='$usesfio'
20732 useshrplib='$useshrplib'
20733 usesocks='$usesocks'
20734 usethreads='$usethreads'
20735 usevendorprefix='$usevendorprefix'
20736 usevfork='$usevfork'
20737 usrinc='$usrinc'
20738 uuname='$uuname'
20739 uvXUformat='$uvXUformat'
20740 uvoformat='$uvoformat'
20741 uvsize='$uvsize'
20742 uvtype='$uvtype'
20743 uvuformat='$uvuformat'
20744 uvxformat='$uvxformat'
20745 vendorarch='$vendorarch'
20746 vendorarchexp='$vendorarchexp'
20747 vendorbin='$vendorbin'
20748 vendorbinexp='$vendorbinexp'
20749 vendorlib='$vendorlib'
20750 vendorlib_stem='$vendorlib_stem'
20751 vendorlibexp='$vendorlibexp'
20752 vendorprefix='$vendorprefix'
20753 vendorprefixexp='$vendorprefixexp'
20754 version='$version'
20755 version_patchlevel_string='$version_patchlevel_string'
20756 versiononly='$versiononly'
20757 vi='$vi'
20758 voidflags='$voidflags'
20759 xlibpth='$xlibpth'
20760 xs_apiversion='$xs_apiversion'
20761 yacc='$yacc'
20762 yaccflags='$yaccflags'
20763 zcat='$zcat'
20764 zip='$zip'
20765 EOT
20766
20767 : Add in command line options if available
20768 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
20769
20770 : add special variables
20771 $test -f $src/patchlevel.h && \
20772 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
20773 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
20774 echo "PERL_CONFIG_SH=true" >>config.sh
20775
20776 : propagate old symbols
20777 if $test -f UU/config.sh; then
20778         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
20779         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
20780         $sort | $uniq -u >UU/oldsyms
20781         set X `cat UU/oldsyms`
20782         shift
20783         case $# in
20784         0) ;;
20785         *)
20786                 cat <<EOM
20787 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
20788 EOM
20789                 echo "# Variables propagated from previous config.sh file." >>config.sh
20790                 for sym in `cat UU/oldsyms`; do
20791                         echo "    Propagating $hint variable "'$'"$sym..."
20792                         eval 'tmp="$'"${sym}"'"'
20793                         echo "$tmp" | \
20794                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
20795                 done
20796                 ;;
20797         esac
20798 fi
20799
20800 : Finish up by extracting the .SH files
20801 case "$alldone" in
20802 exit)
20803         $rm -rf UU
20804         echo "Extraction done."
20805         exit 0
20806         ;;
20807 cont)
20808         ;;
20809 '')
20810         dflt=''
20811         nostick=true
20812         $cat <<EOM
20813
20814 If you'd like to make any changes to the config.sh file before I begin
20815 to configure things, do it as a shell escape now (e.g. !vi config.sh).
20816
20817 EOM
20818         rp="Press return or use a shell escape to edit config.sh:"
20819         . UU/myread
20820         nostick=''
20821         case "$ans" in
20822         '') ;;
20823         *) : in case they cannot read
20824                 sh 1>&4 -c "$ans";;
20825         esac
20826         ;;
20827 esac
20828
20829 : if this fails, just run all the .SH files by hand
20830 . ./config.sh
20831
20832 echo " "
20833 exec 1>&4
20834 pwd=`pwd`
20835 . ./UU/extract
20836 cd "$pwd"
20837
20838 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
20839         dflt=y
20840         case "$silent" in
20841         true) ;;
20842         *)
20843                 $cat <<EOM
20844
20845 Now you need to generate make dependencies by running "$make depend".
20846 You might prefer to run it in background: "$make depend > makedepend.out &"
20847 It can take a while, so you might not want to run it right now.
20848
20849 EOM
20850                 ;;
20851         esac
20852         rp="Run $make depend now?"
20853         . UU/myread
20854         case "$ans" in
20855         y*)
20856                 $make depend && echo "Now you must run '$make'."
20857                 ;;
20858         *)
20859                 echo "You must run '$make depend' then '$make'."
20860                 ;;
20861         esac
20862 elif test -f [Mm]akefile; then
20863         echo " "
20864         echo "Now you must run a $make."
20865 else
20866         echo "Configure done."
20867 fi
20868
20869 if $test -f Policy.sh; then
20870     $cat <<EOM
20871
20872 If you compile $package on a different machine or from a different object
20873 directory, copy the Policy.sh file from this object directory to the
20874 new one before you run Configure -- this will help you with most of
20875 the policy defaults.
20876
20877 EOM
20878 fi
20879 if $test -f config.msg; then
20880     echo "Hmm.  I also noted the following information while running:"
20881     echo " "
20882     $cat config.msg >&4
20883     $rm -f config.msg
20884 fi
20885 $rm -f kit*isdone ark*isdone
20886 $rm -rf UU
20887
20888 : End of Configure
20889