Upgrade to Encode 1.11, from Dan Kogai.
[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 Mar 29 18:09:14 EET 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                 POSIX-BC | posix-bc ) osname=posix-bc
3079                         osvers="$3"
3080                         ;;
3081                 powerux | power_ux | powermax_os | powermaxos | \
3082                 powerunix | power_unix) osname=powerux
3083                         osvers="$3"
3084                         ;;
3085                 qnx) osname=qnx
3086                         osvers="$4"
3087                         ;;
3088                 solaris) osname=solaris
3089                         case "$3" in
3090                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3091                         *)      osvers="$3" ;;
3092                         esac
3093                         ;;
3094                 sunos) osname=sunos
3095                         case "$3" in
3096                         5*) osname=solaris
3097                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3098                         *)      osvers="$3" ;;
3099                         esac
3100                         ;;
3101                 titanos) osname=titanos
3102                         case "$3" in
3103                         1*) osvers=1 ;;
3104                         2*) osvers=2 ;;
3105                         3*) osvers=3 ;;
3106                         4*) osvers=4 ;;
3107                         *)      osvers="$3" ;;
3108                         esac
3109                         ;;
3110                 ultrix) osname=ultrix
3111                         osvers="$3"
3112                         ;;
3113                 osf1|mls+)      case "$5" in
3114                                 alpha)
3115                                         osname=dec_osf
3116                                         osvers=`sizer -v | awk '{print $3}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3117                                         case "$osvers" in
3118                                         [1-9].[0-9]*) ;;
3119                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3120                                         esac
3121                                         ;;
3122                         hp*)    osname=hp_osf1  ;;
3123                         mips)   osname=mips_osf1 ;;
3124                         esac
3125                         ;;
3126                 unixware) osname=svr5
3127                         osvers="$4"
3128                         ;;
3129                 uts)    osname=uts
3130                         osvers="$3"
3131                         ;;
3132                 vos) osvers="$3"
3133                         ;;
3134                 $2) case "$osname" in
3135                         *isc*) ;;
3136                         *freebsd*) ;;
3137                         svr*)
3138                                 : svr4.x or possibly later
3139                                 case "svr$3" in 
3140                                 ${osname}*)
3141                                         osname=svr$3
3142                                         osvers=$4
3143                                         ;;
3144                                 esac
3145                                 case "$osname" in
3146                                 svr4.0)
3147                                         : Check for ESIX
3148                                         if test -f /stand/boot ; then
3149                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3150                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3151                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3152                                                         if test -n "$isesix"; then
3153                                                                 osname=esix4
3154                                                         fi
3155                                                 fi
3156                                         fi
3157                                         ;;
3158                                 esac
3159                                 ;;
3160                         *)      if test -f /etc/systemid; then
3161                                         osname=sco
3162                                         set `echo $3 | $sed 's/\./ /g'` $4
3163                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3164                                                 osvers=$1.$2.$3
3165                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3166                                                 osvers=$1.$2
3167                                         elif $test -f $src/hints/sco_$1.sh; then
3168                                                 osvers=$1
3169                                         fi
3170                                 else
3171                                         case "$osname" in
3172                                         '') : Still unknown.  Probably a generic Sys V.
3173                                                 osname="sysv"
3174                                                 osvers="$3"
3175                                                 ;;
3176                                         esac
3177                                 fi
3178                                 ;;
3179                         esac
3180                         ;;
3181                 *)      case "$osname" in
3182                         '') : Still unknown.  Probably a generic BSD.
3183                                 osname="$1"
3184                                 osvers="$3"
3185                                 ;;
3186                         esac
3187                         ;;
3188                 esac
3189         else
3190                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3191                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3192                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3193                                 osname=news_os
3194                         fi
3195                         $rm -f UU/kernel.what
3196                 elif test -d c:/.; then
3197                         set X $myuname
3198                         osname=os2
3199                         osvers="$5"
3200                 fi
3201         fi
3202         
3203         case "$targetarch" in
3204         '') ;;
3205         *)  hostarch=$osname
3206             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3207             osvers=''
3208             ;;
3209         esac
3210
3211         : Now look for a hint file osname_osvers, unless one has been
3212         : specified already.
3213         case "$hintfile" in
3214         ''|' ')
3215                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3216                 : Also try without trailing minor version numbers.
3217                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3218                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3219                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3220                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3221                 case "$file" in
3222                 '') dflt=none ;;
3223                 *)  case "$osvers" in
3224                         '') dflt=$file
3225                                 ;;
3226                         *)  if $test -f $src/hints/$file.sh ; then
3227                                         dflt=$file
3228                                 elif $test -f $src/hints/$xfile.sh ; then
3229                                         dflt=$xfile
3230                                 elif $test -f $src/hints/$xxfile.sh ; then
3231                                         dflt=$xxfile
3232                                 elif $test -f $src/hints/$xxxfile.sh ; then
3233                                         dflt=$xxxfile
3234                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3235                                         dflt=$xxxxfile
3236                                 elif $test -f "$src/hints/${osname}.sh" ; then
3237                                         dflt="${osname}"
3238                                 else
3239                                         dflt=none
3240                                 fi
3241                                 ;;
3242                         esac
3243                         ;;
3244                 esac
3245                 if $test -f Policy.sh ; then
3246                         case "$dflt" in
3247                         *Policy*) ;;
3248                         none) dflt="Policy" ;;
3249                         *) dflt="Policy $dflt" ;;
3250                         esac
3251                 fi
3252                 ;;
3253         *)
3254                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3255                 ;;
3256         esac
3257
3258         if $test -f Policy.sh ; then
3259                 $cat <<EOM
3260
3261 There's also a Policy hint file available, which should make the
3262 site-specific (policy) questions easier to answer.
3263 EOM
3264
3265         fi
3266
3267         $cat <<EOM
3268
3269 You may give one or more space-separated answers, or "none" if appropriate.
3270 A well-behaved OS will have no hints, so answering "none" or just "Policy"
3271 is a good thing.  DO NOT give a wrong version or a wrong OS.
3272
3273 EOM
3274
3275         rp="Which of these apply, if any?"
3276         . UU/myread
3277         tans=$ans
3278         for file in $tans; do
3279                 if $test X$file = XPolicy -a -f Policy.sh; then
3280                         . Policy.sh
3281                         $cat Policy.sh >> UU/config.sh
3282                 elif $test -f $src/hints/$file.sh; then
3283                         . $src/hints/$file.sh
3284                         $cat $src/hints/$file.sh >> UU/config.sh
3285                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3286                         : nothing
3287                 else
3288                         : Give one chance to correct a possible typo.
3289                         echo "$file.sh does not exist"
3290                         dflt=$file
3291                         rp="hint to use instead?"
3292                         . UU/myread
3293                         for file in $ans; do
3294                                 if $test -f "$src/hints/$file.sh"; then
3295                                         . $src/hints/$file.sh
3296                                         $cat $src/hints/$file.sh >> UU/config.sh
3297                                 elif $test X$ans = X -o X$ans = Xnone ; then
3298                                         : nothing
3299                                 else
3300                                         echo "$file.sh does not exist -- ignored."
3301                                 fi
3302                         done
3303                 fi
3304         done
3305
3306         hint=recommended
3307         : Remember our hint file for later.
3308         if $test -f "$src/hints/$file.sh" ; then
3309                 hintfile="$file"
3310         else
3311                 hintfile=''
3312         fi
3313 fi
3314 cd UU
3315 ;;
3316 *)
3317         echo " "
3318         echo "Fetching default answers from $config_sh..." >&4
3319         tmp_n="$n"
3320         tmp_c="$c"
3321         cd ..
3322         cp $config_sh config.sh 2>/dev/null
3323         chmod +w config.sh
3324         . ./config.sh
3325         cd UU
3326         cp ../config.sh .
3327         n="$tmp_n"
3328         c="$tmp_c"
3329         hint=previous
3330         ;;
3331 esac
3332 test "$override" && . ./optdef.sh
3333
3334 : Restore computed paths
3335 for file in $loclist $trylist; do
3336         eval $file="\$_$file"
3337 done
3338
3339 cat << EOM
3340
3341 Configure uses the operating system name and version to set some defaults.
3342 The default value is probably right if the name rings a bell. Otherwise,
3343 since spelling matters for me, either accept the default or answer "none"
3344 to leave it blank.
3345
3346 EOM
3347 case "$osname" in
3348         ''|' ')
3349                 case "$hintfile" in
3350                 ''|' '|none) dflt=none ;;
3351                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3352                 esac
3353                 ;;
3354         *) dflt="$osname" ;;
3355 esac
3356 rp="Operating system name?"
3357 . ./myread
3358 case "$ans" in
3359 none)  osname='' ;;
3360 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3361 esac
3362 echo " "
3363 case "$osvers" in
3364         ''|' ')
3365                 case "$hintfile" in
3366                 ''|' '|none) dflt=none ;;
3367                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3368                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3369                         case "$dflt" in
3370                         ''|' ') dflt=none ;;
3371                         esac
3372                         ;;
3373                 esac
3374                 ;;
3375         *) dflt="$osvers" ;;
3376 esac
3377 rp="Operating system version?"
3378 . ./myread
3379 case "$ans" in
3380 none)  osvers='' ;;
3381 *) osvers="$ans" ;;
3382 esac
3383
3384
3385 . ./posthint.sh
3386
3387 : who configured the system
3388 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3389 cf_by=`(logname) 2>/dev/null`
3390 case "$cf_by" in
3391 "")
3392         cf_by=`(whoami) 2>/dev/null`
3393         case "$cf_by" in
3394         "") cf_by=unknown ;;
3395         esac ;;
3396 esac
3397
3398 : set up the script used to warn in case of inconsistency
3399 cat <<EOS >whoa
3400 $startsh
3401 EOS
3402 cat <<'EOSC' >>whoa
3403 dflt=y
3404 echo " "
3405 echo "*** WHOA THERE!!! ***" >&4
3406 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
3407 rp="    Keep the $hint value?"
3408 . ./myread
3409 case "$ans" in
3410 y) td=$was; tu=$was;;
3411 esac
3412 EOSC
3413
3414 : function used to set $1 to $val
3415 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3416 case "$val$was" in
3417 $define$undef) . ./whoa; eval "$var=\$td";;
3418 $undef$define) . ./whoa; eval "$var=\$tu";;
3419 *) eval "$var=$val";;
3420 esac'
3421
3422 case "$usethreads" in
3423 $define|true|[yY]*)     dflt='y';;
3424 *) dflt='n';;
3425 esac
3426 cat <<EOM
3427
3428 Perl can be built to take advantage of threads on some systems.
3429 To do so, Configure can be run with -Dusethreads.
3430
3431 Note that threading is a highly experimental feature, and
3432 some known race conditions still remain.  If you choose to try
3433 it, be very sure to not actually deploy it for production
3434 purposes.  README.threads has more details, and is required
3435 reading if you enable threads.
3436
3437 If this doesn't make any sense to you, just accept the default '$dflt'.
3438 EOM
3439 rp='Build a threading Perl?'
3440 . ./myread
3441 case "$ans" in
3442 y|Y)    val="$define" ;;
3443 *)      val="$undef" ;;
3444 esac
3445 set usethreads
3446 eval $setvar
3447
3448 case "$usethreads" in
3449 $define)
3450         $cat <<EOM
3451
3452 As of release 5.6, Perl has two different threading implementations,
3453 an interpreter-based version (ithreads) with one interpreter per
3454 thread, and the 5.005 version (5005threads).  Both implementations
3455 are considered experimental, but since 5.8 ithreads somewhat less so.
3456 The 5005threads is effectively unmaintained.
3457
3458 EOM
3459         : Default to ithreads unless overridden on command line or with
3460         : old config.sh
3461         dflt='y'
3462         case "$use5005threads" in
3463                 $define|true|[yY]*) dflt='n';;
3464         esac
3465         case "$useithreads" in
3466                 $undef|false|[nN]*) dflt='n';;
3467         esac
3468         rp='Use interpreter-based ithreads?'
3469         . ./myread
3470         case "$ans" in
3471         y|Y)    val="$define" ;;
3472         *)      val="$undef" ;;
3473         esac
3474         set useithreads
3475         eval $setvar
3476         : Now set use5005threads to the opposite value.
3477         case "$useithreads" in
3478         $define) val="$undef" ;;
3479         *) val="$define" ;;
3480         esac
3481         set use5005threads
3482         eval $setvar
3483         ;;
3484 *)
3485         useithreads="$undef"
3486         use5005threads="$undef"
3487         ;;
3488 esac
3489
3490 case "$useithreads$use5005threads" in
3491 "$define$define")
3492         $cat >&4 <<EOM
3493
3494 You cannot have both the ithreads and the 5.005 threads enabled
3495 at the same time.  Disabling the 5.005 threads since they are
3496 much less stable than the ithreads.
3497
3498 EOM
3499         use5005threads="$undef"
3500         ;;
3501 esac
3502
3503 case "$d_oldpthreads" in
3504 '')     : Configure tests would be welcome here.  For now, assume undef.
3505         val="$undef" ;;
3506 *)      val="$d_oldpthreads" ;;
3507 esac
3508 set d_oldpthreads
3509 eval $setvar
3510
3511
3512 case "$usethreads" in
3513 "$define"|true|[yY]*)
3514 : Look for a hint-file generated 'call-back-unit'.  If the
3515 : user has specified that a threading perl is to be built,
3516 : we may need to set or change some other defaults.
3517         if $test -f usethreads.cbu; then
3518                 echo "Your platform has some specific hints for threaded builds, using them..."
3519                 . ./usethreads.cbu
3520         else
3521                 $cat <<EOM
3522 (Your platform doesn't have any specific hints for threaded builds.
3523  Assuming POSIX threads, then.)
3524 EOM
3525         fi
3526         ;;
3527 esac
3528
3529 cat <<EOM
3530
3531 Perl can be built so that multiple Perl interpreters can coexist
3532 within the same Perl executable.
3533 EOM
3534
3535 case "$useithreads" in
3536 $define)
3537         cat <<EOM
3538 This multiple interpreter support is required for interpreter-based threads.
3539 EOM
3540         val="$define"
3541         ;;
3542 *)      case "$usemultiplicity" in
3543         $define|true|[yY]*)     dflt='y';;
3544         *) dflt='n';;
3545         esac
3546         echo " "
3547         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
3548         rp='Build Perl for multiplicity?'
3549         . ./myread
3550         case "$ans" in
3551         y|Y)    val="$define" ;;
3552         *)      val="$undef" ;;
3553         esac
3554         ;;
3555 esac
3556 set usemultiplicity
3557 eval $setvar
3558
3559
3560 case "$usemorebits" in
3561 "$define"|true|[yY]*)
3562         use64bitint="$define"
3563         uselongdouble="$define"
3564         usemorebits="$define"
3565         ;;
3566 *)      usemorebits="$undef"
3567         ;;
3568 esac
3569
3570 : make some quick guesses about what we are up against
3571 echo " "
3572 $echo $n "Hmm...  $c"
3573 echo exit 1 >bsd
3574 echo exit 1 >usg
3575 echo exit 1 >v7
3576 echo exit 1 >osf1
3577 echo exit 1 >eunice
3578 echo exit 1 >xenix
3579 echo exit 1 >venix
3580 echo exit 1 >os2
3581 d_bsd="$undef"
3582 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3583 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3584 then
3585         echo "Looks kind of like an OSF/1 system, but we'll see..."
3586         echo exit 0 >osf1
3587 elif test `echo abc | $tr a-z A-Z` = Abc ; then
3588         xxx=`./loc addbib blurfl $pth`
3589         if $test -f $xxx; then
3590         echo "Looks kind of like a USG system with BSD features, but we'll see..."
3591                 echo exit 0 >bsd
3592                 echo exit 0 >usg
3593         else
3594                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3595                         echo "Looks kind of like an extended USG system, but we'll see..."
3596                 else
3597                         echo "Looks kind of like a USG system, but we'll see..."
3598                 fi
3599                 echo exit 0 >usg
3600         fi
3601 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3602         echo "Looks kind of like a BSD system, but we'll see..."
3603         d_bsd="$define"
3604         echo exit 0 >bsd
3605 else
3606         echo "Looks kind of like a Version 7 system, but we'll see..."
3607         echo exit 0 >v7
3608 fi
3609 case "$eunicefix" in
3610 *unixtovms*)
3611         $cat <<'EOI'
3612 There is, however, a strange, musty smell in the air that reminds me of
3613 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3614 EOI
3615         echo exit 0 >eunice
3616         d_eunice="$define"
3617 : it so happens the Eunice I know will not run shell scripts in Unix format
3618         ;;
3619 *)
3620         echo " "
3621         echo "Congratulations.  You aren't running Eunice."
3622         d_eunice="$undef"
3623         ;;
3624 esac
3625 : Detect OS2.  The p_ variable is set above in the Head.U unit.
3626 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
3627 : semicolon as a patch separator
3628 case "$p_" in
3629 :) ;;
3630 *)
3631         $cat <<'EOI'
3632 I have the feeling something is not exactly right, however...don't tell me...
3633 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3634 (Or you may be running DOS with DJGPP.)
3635 EOI
3636         echo exit 0 >os2
3637         ;;
3638 esac
3639 if test -f /xenix; then
3640         echo "Actually, this looks more like a XENIX system..."
3641         echo exit 0 >xenix
3642         d_xenix="$define"
3643 else
3644         echo " "
3645         echo "It's not Xenix..."
3646         d_xenix="$undef"
3647 fi
3648 chmod +x xenix
3649 $eunicefix xenix
3650 if test -f /venix; then
3651         echo "Actually, this looks more like a VENIX system..."
3652         echo exit 0 >venix
3653 else
3654         echo " "
3655         if ./xenix; then
3656                 : null
3657         else
3658                 echo "Nor is it Venix..."
3659         fi
3660 fi
3661 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3662 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3663 $rm -f foo
3664
3665 case "$cc" in
3666 '') dflt=cc;;
3667 *) dflt="$cc";;
3668 esac
3669 rp="Use which C compiler?"
3670 . ./myread
3671 cc="$ans"
3672
3673 : See if they have not cc but they do have gcc
3674 . ./trygcc
3675 : Look for a hint-file generated 'call-back-unit'.  Now that the
3676 : user has specified the compiler, we may need to set or change some
3677 : other defaults.
3678 if $test -f cc.cbu; then
3679     . ./cc.cbu
3680 fi
3681 . ./checkcc
3682
3683 echo " "
3684 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3685 $cat >try.c <<EOM
3686 #include <stdio.h>
3687 int main() {
3688 #ifdef __GNUC__
3689 #ifdef __VERSION__
3690         printf("%s\n", __VERSION__);
3691 #else
3692         printf("%s\n", "1");
3693 #endif
3694 #endif
3695         exit(0);
3696 }
3697 EOM
3698 if $cc -o try $ccflags $ldflags try.c; then
3699         gccversion=`$run ./try`
3700         case "$gccversion" in
3701         '') echo "You are not using GNU cc." ;;
3702         *)  echo "You are using GNU cc $gccversion."
3703             ccname=gcc  
3704             ;;
3705         esac
3706 else
3707         echo " "
3708         echo "*** WHOA THERE!!! ***" >&4
3709         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3710         case "$knowitall" in
3711         '')
3712         echo "    You'd better start hunting for one and let me know about it." >&4
3713                 exit 1
3714                 ;;
3715         esac
3716 fi
3717 $rm -f try try.*
3718 case "$gccversion" in
3719 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3720 esac
3721 case "$gccversion" in
3722 '') gccosandvers='' ;;
3723 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
3724    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
3725    gccshortvers=''
3726    case "$gccosandvers" in
3727    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
3728    $osname$osvers) ;; # looking good
3729    $osname*) cat <<EOM >&4
3730
3731 *** WHOA THERE!!! ***
3732
3733     Your gcc has not been compiled for the exact release of
3734     your operating system ($gccosandvers versus $osname$osvers).
3735
3736     In general it is a good idea to keep gcc synchronized with
3737     the operating system because otherwise serious problems
3738     may ensue when trying to compile software, like Perl.
3739
3740     I'm trying to be optimistic here, though, and will continue.
3741     If later during the configuration and build icky compilation
3742     problems appear (headerfile conflicts being the most common
3743     manifestation), I suggest reinstalling the gcc to match
3744     your operating system release.
3745
3746 EOM
3747       ;;
3748    *) gccosandvers='' ;; # failed to parse, better be silent
3749    esac
3750    ;;
3751 esac
3752 case "$ccname" in
3753 '') ccname="$cc" ;;
3754 esac
3755
3756
3757 : decide how portable to be.  Allow command line overrides.
3758 case "$d_portable" in
3759 "$undef") ;;
3760 *)      d_portable="$define" ;;
3761 esac
3762
3763 : set up shell script to do ~ expansion
3764 cat >filexp <<EOSS
3765 $startsh
3766 : expand filename
3767 case "\$1" in
3768  ~/*|~)
3769         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3770         ;;
3771  ~*)
3772         if $test -f /bin/csh; then
3773                 /bin/csh -f -c "glob \$1"
3774                 failed=\$?
3775                 echo ""
3776                 exit \$failed
3777         else
3778                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3779                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3780                 if $test ! -d "\$dir"; then
3781                         me=\`basename \$0\`
3782                         echo "\$me: can't locate home directory for: \$name" >&2
3783                         exit 1
3784                 fi
3785                 case "\$1" in
3786                 */*)
3787                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3788                         ;;
3789                 *)
3790                         echo \$dir
3791                         ;;
3792                 esac
3793         fi
3794         ;;
3795 *)
3796         echo \$1
3797         ;;
3798 esac
3799 EOSS
3800 chmod +x filexp
3801 $eunicefix filexp
3802
3803 : now set up to get a file name
3804 cat <<EOS >getfile
3805 $startsh
3806 EOS
3807 cat <<'EOSC' >>getfile
3808 tilde=''
3809 fullpath=''
3810 already=''
3811 skip=''
3812 none_ok=''
3813 exp_file=''
3814 nopath_ok=''
3815 orig_rp="$rp"
3816 orig_dflt="$dflt"
3817 case "$gfpth" in
3818 '') gfpth='.' ;;
3819 esac
3820
3821 case "$fn" in
3822 *\(*)
3823         expr $fn : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
3824         fn=`echo $fn | sed 's/(.*)//'`
3825         ;;
3826 esac
3827
3828 case "$fn" in
3829 *:*)
3830         loc_file=`expr $fn : '.*:\(.*\)'`
3831         fn=`expr $fn : '\(.*\):.*'`
3832         ;;
3833 esac
3834
3835 case "$fn" in
3836 *~*) tilde=true;;
3837 esac
3838 case "$fn" in
3839 */*) fullpath=true;;
3840 esac
3841 case "$fn" in
3842 *+*) skip=true;;
3843 esac
3844 case "$fn" in
3845 *n*) none_ok=true;;
3846 esac
3847 case "$fn" in
3848 *e*) exp_file=true;;
3849 esac
3850 case "$fn" in
3851 *p*) nopath_ok=true;;
3852 esac
3853
3854 case "$fn" in
3855 *f*) type='File';;
3856 *d*) type='Directory';;
3857 *l*) type='Locate';;
3858 esac
3859
3860 what="$type"
3861 case "$what" in
3862 Locate) what='File';;
3863 esac
3864
3865 case "$exp_file" in
3866 '')
3867         case "$d_portable" in
3868         "$define") ;;
3869         *) exp_file=true;;
3870         esac
3871         ;;
3872 esac
3873
3874 cd ..
3875 while test "$type"; do
3876         redo=''
3877         rp="$orig_rp"
3878         dflt="$orig_dflt"
3879         case "$tilde" in
3880         true) rp="$rp (~name ok)";;
3881         esac
3882         . UU/myread
3883         if test -f UU/getfile.ok && \
3884                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
3885         then
3886                 value="$ans"
3887                 ansexp="$ans"
3888                 break
3889         fi
3890         case "$ans" in
3891         none)
3892                 value=''
3893                 ansexp=''
3894                 case "$none_ok" in
3895                 true) type='';;
3896                 esac
3897                 ;;
3898         *)
3899                 case "$tilde" in
3900                 '') value="$ans"
3901                         ansexp="$ans";;
3902                 *)
3903                         value=`UU/filexp $ans`
3904                         case $? in
3905                         0)
3906                                 if test "$ans" != "$value"; then
3907                                         echo "(That expands to $value on this system.)"
3908                                 fi
3909                                 ;;
3910                         *) value="$ans";;
3911                         esac
3912                         ansexp="$value"
3913                         case "$exp_file" in
3914                         '') value="$ans";;
3915                         esac
3916                         ;;
3917                 esac
3918                 case "$fullpath" in
3919                 true)
3920                         case "$ansexp" in
3921                         /*) value="$ansexp" ;;
3922                         [a-zA-Z]:/*) value="$ansexp" ;;
3923                         *)
3924                                 redo=true
3925                                 case "$already" in
3926                                 true)
3927                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
3928                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
3929                                         ;;
3930                                 *)
3931                                 echo "Please give a full path name, starting with slash." >&4
3932                                         case "$tilde" in
3933                                         true)
3934                                 echo "Note that using ~name is ok provided it expands well." >&4
3935                                                 already=true
3936                                                 ;;
3937                                         esac
3938                                 esac
3939                                 ;;
3940                         esac
3941                         ;;
3942                 esac
3943                 case "$redo" in
3944                 '')
3945                         case "$type" in
3946                         File)
3947                                 for fp in $gfpth; do
3948                                         if test "X$fp" = X.; then
3949                                             pf="$ansexp"
3950                                         else    
3951                                             pf="$fp/$ansexp"
3952                                         fi
3953                                         if test -f "$pf"; then
3954                                                 type=''
3955                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
3956                                         then
3957                                                 echo "($value is not a plain file, but that's ok.)"
3958                                                 type=''
3959                                         fi
3960                                         if test X"$type" = X; then
3961                                             value="$pf"
3962                                             break
3963                                         fi
3964                                 done
3965                                 ;;
3966                         Directory)
3967                                 for fp in $gfpth; do
3968                                         if test "X$fp" = X.; then
3969                                             dir="$ans"
3970                                             direxp="$ansexp"
3971                                         else    
3972                                             dir="$fp/$ansexp"
3973                                             direxp="$fp/$ansexp"
3974                                         fi
3975                                         if test -d "$direxp"; then
3976                                                 type=''
3977                                                 value="$dir"
3978                                                 break
3979                                         fi
3980                                 done
3981                                 ;;
3982                         Locate)
3983                                 if test -d "$ansexp"; then
3984                                         echo "(Looking for $loc_file in directory $value.)"
3985                                         value="$value/$loc_file"
3986                                         ansexp="$ansexp/$loc_file"
3987                                 fi
3988                                 if test -f "$ansexp"; then
3989                                         type=''
3990                                 fi
3991                                 case "$nopath_ok" in
3992                                 true)   case "$value" in
3993                                         */*) ;;
3994                                         *)      echo "Assuming $value will be in people's path."
3995                                                 type=''
3996                                                 ;;
3997                                         esac
3998                                         ;;
3999                                 esac
4000                                 ;;
4001                         esac
4002
4003                         case "$skip" in
4004                         true) type='';
4005                         esac
4006
4007                         case "$type" in
4008                         '') ;;
4009                         *)
4010                                 if test "$fastread" = yes; then
4011                                         dflt=y
4012                                 else
4013                                         dflt=n
4014                                 fi
4015                                 rp="$what $value doesn't exist.  Use that name anyway?"
4016                                 . UU/myread
4017                                 dflt=''
4018                                 case "$ans" in
4019                                 y*) type='';;
4020                                 *) echo " ";;
4021                                 esac
4022                                 ;;
4023                         esac
4024                         ;;
4025                 esac
4026                 ;;
4027         esac
4028 done
4029 cd UU
4030 ans="$value"
4031 rp="$orig_rp"
4032 dflt="$orig_dflt"
4033 rm -f getfile.ok
4034 test "X$gfpthkeep" != Xy && gfpth=""
4035 EOSC
4036
4037 : What should the include directory be ?
4038 echo " "
4039 $echo $n "Hmm...  $c"
4040 dflt='/usr/include'
4041 incpath=''
4042 mips_type=''
4043 if $test -f /bin/mips && /bin/mips; then
4044         echo "Looks like a MIPS system..."
4045         $cat >usr.c <<'EOCP'
4046 #ifdef SYSTYPE_BSD43
4047 /bsd43
4048 #endif
4049 EOCP
4050         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4051                 dflt='/bsd43/usr/include'
4052                 incpath='/bsd43'
4053                 mips_type='BSD 4.3'
4054         else
4055                 mips_type='System V'
4056         fi
4057         $rm -f usr.c usr.out
4058         echo "and you're compiling with the $mips_type compiler and libraries."
4059         xxx_prompt=y
4060         echo "exit 0" >mips
4061 else
4062         echo "Doesn't look like a MIPS system."
4063         xxx_prompt=n
4064         echo "exit 1" >mips
4065 fi
4066 chmod +x mips
4067 $eunicefix mips
4068 case "$usrinc" in
4069 '') ;;
4070 *) dflt="$usrinc";;
4071 esac
4072 case "$xxx_prompt" in
4073 y)      fn=d/
4074         echo " "
4075         rp='Where are the include files you want to use?'
4076         . ./getfile
4077         usrinc="$ans"
4078         ;;
4079 *)      usrinc="$dflt"
4080         ;;
4081 esac
4082
4083 : see how we invoke the C preprocessor
4084 echo " "
4085 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4086 cat <<'EOT' >testcpp.c
4087 #define ABC abc
4088 #define XYZ xyz
4089 ABC.XYZ
4090 EOT
4091 cd ..
4092 if test ! -f cppstdin; then
4093         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4094                 # AIX cc -E doesn't show the absolute headerfile
4095                 # locations but we'll cheat by using the -M flag.
4096                 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
4097         else
4098                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4099         fi
4100 else
4101         echo "Keeping your $hint cppstdin wrapper."
4102 fi
4103 chmod 755 cppstdin
4104 wrapper=`pwd`/cppstdin
4105 ok='false'
4106 cd UU
4107
4108 if $test "X$cppstdin" != "X" && \
4109         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4110         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4111 then
4112         echo "You used to use $cppstdin $cppminus so we'll use that again."
4113         case "$cpprun" in
4114         '') echo "But let's see if we can live without a wrapper..." ;;
4115         *)
4116                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4117                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4118                 then
4119                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4120                         ok='true'
4121                 else
4122                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4123                 fi
4124                 ;;
4125         esac
4126 else
4127         case "$cppstdin" in
4128         '') ;;
4129         *)
4130                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4131                 ;;
4132         esac
4133 fi
4134
4135 if $ok; then
4136         : nothing
4137 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4138         $cc -E <testcpp.c >testcpp.out 2>&1; \
4139         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4140         echo "Yup, it does."
4141         x_cpp="$cc -E"
4142         x_minus='';
4143 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4144         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4145         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4146         echo "Yup, it does."
4147         x_cpp="$cc -E"
4148         x_minus='-';
4149 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4150         $cc -P <testcpp.c >testcpp.out 2>&1; \
4151         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4152         echo "Yipee, that works!"
4153         x_cpp="$cc -P"
4154         x_minus='';
4155 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4156         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4157         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4158         echo "At long last!"
4159         x_cpp="$cc -P"
4160         x_minus='-';
4161 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4162         $cpp <testcpp.c >testcpp.out 2>&1; \
4163         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4164         echo "It works!"
4165         x_cpp="$cpp"
4166         x_minus='';
4167 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4168         $cpp - <testcpp.c >testcpp.out 2>&1; \
4169         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4170         echo "Hooray, it works!  I was beginning to wonder."
4171         x_cpp="$cpp"
4172         x_minus='-';
4173 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4174         $wrapper <testcpp.c >testcpp.out 2>&1; \
4175         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4176         x_cpp="$wrapper"
4177         x_minus=''
4178         echo "Eureka!"
4179 else
4180         dflt=''
4181         rp="No dice.  I can't find a C preprocessor.  Name one:"
4182         . ./myread
4183         x_cpp="$ans"
4184         x_minus=''
4185         $x_cpp <testcpp.c >testcpp.out 2>&1
4186         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4187                 echo "OK, that will do." >&4
4188         else
4189 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4190                 exit 1
4191         fi
4192 fi
4193
4194 case "$ok" in
4195 false)
4196         cppstdin="$x_cpp"
4197         cppminus="$x_minus"
4198         cpprun="$x_cpp"
4199         cpplast="$x_minus"
4200         set X $x_cpp
4201         shift
4202         case "$1" in
4203         "$cpp")
4204                 echo "Perhaps can we force $cc -E using a wrapper..."
4205                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4206                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4207                 then
4208                         echo "Yup, we can."
4209                         cppstdin="$wrapper"
4210                         cppminus='';
4211                 else
4212                         echo "Nope, we'll have to live without it..."
4213                 fi
4214                 ;;
4215         esac
4216         case "$cpprun" in
4217         "$wrapper")
4218                 cpprun=''
4219                 cpplast=''
4220                 ;;
4221         esac
4222         ;;
4223 esac
4224
4225 case "$cppstdin" in
4226 "$wrapper"|'cppstdin') ;;
4227 *) $rm -f $wrapper;;
4228 esac
4229 $rm -f testcpp.c testcpp.out
4230
4231 : Set private lib path
4232 case "$plibpth" in
4233 '') if ./mips; then
4234                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4235         fi;;
4236 esac
4237 case "$libpth" in
4238 ' ') dlist='';;
4239 '') dlist="$loclibpth $plibpth $glibpth";;
4240 *) dlist="$libpth";;
4241 esac
4242
4243 : Now check and see which directories actually exist, avoiding duplicates
4244 libpth=''
4245 for xxx in $dlist
4246 do
4247     if $test -d $xxx; then
4248                 case " $libpth " in
4249                 *" $xxx "*) ;;
4250                 *) libpth="$libpth $xxx";;
4251                 esac
4252     fi
4253 done
4254 $cat <<'EOM'
4255
4256 Some systems have incompatible or broken versions of libraries.  Among
4257 the directories listed in the question below, please remove any you
4258 know not to be holding relevant libraries, and add any that are needed.
4259 Say "none" for none.
4260
4261 EOM
4262 case "$libpth" in
4263 '') dflt='none';;
4264 *)
4265         set X $libpth
4266         shift
4267         dflt=${1+"$@"}
4268         ;;
4269 esac
4270 rp="Directories to use for library searches?"
4271 . ./myread
4272 case "$ans" in
4273 none) libpth=' ';;
4274 *) libpth="$ans";;
4275 esac
4276
4277 : compute shared library extension
4278 case "$so" in
4279 '')
4280         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4281                 dflt='sl'
4282         else
4283                 dflt='so'
4284         fi
4285         ;;
4286 *) dflt="$so";;
4287 esac
4288 $cat <<EOM
4289
4290 On some systems, shared libraries may be available.  Answer 'none' if
4291 you want to suppress searching of shared libraries for the remainder
4292 of this configuration.
4293
4294 EOM
4295 rp='What is the file extension used for shared libraries?'
4296 . ./myread
4297 so="$ans"
4298
4299 : Define several unixisms.
4300 : Hints files or command line option can be used to override them.
4301 : The convoluted testing is in case hints files set either the old
4302 : or the new name.
4303 case "$_exe" in
4304 '')     case "$exe_ext" in
4305         '')     ;;
4306         *)      _exe="$exe_ext" ;;
4307         esac
4308         ;;
4309 esac
4310 case "$_a" in
4311 '')     case "$lib_ext" in
4312     '') _a='.a';;
4313         *)      _a="$lib_ext" ;;
4314         esac
4315         ;;
4316 esac
4317 case "$_o" in
4318 '') case "$obj_ext" in
4319         '')     _o='.o';;
4320         *)      _o="$obj_ext";;
4321         esac
4322         ;;
4323 esac
4324 case "$p_" in
4325 '') case "$path_sep" in
4326         '')     p_=':';;
4327         *)      p_="$path_sep";;
4328         esac
4329         ;;
4330 esac
4331 exe_ext=$_exe
4332 lib_ext=$_a
4333 obj_ext=$_o
4334 path_sep=$p_
4335
4336 : Which makefile gets called first.  This is used by make depend.
4337 case "$firstmakefile" in
4338 '') firstmakefile='makefile';;
4339 esac
4340
4341 case "$usesocks" in
4342 $define|true|[yY]*)     dflt='y';;
4343 *) dflt='n';;
4344 esac
4345 cat <<EOM
4346
4347 Perl can be built to use the SOCKS proxy protocol library.  To do so,
4348 Configure must be run with -Dusesocks.  If you use SOCKS you also need
4349 to use the PerlIO abstraction layer, this will be implicitly selected.
4350
4351 If this doesn't make any sense to you, just accept the default '$dflt'.
4352 EOM
4353 rp='Build Perl for SOCKS?'
4354 . ./myread
4355 case "$ans" in
4356 y|Y)    val="$define" ;;     
4357 *)      val="$undef" ;;
4358 esac
4359 set usesocks
4360 eval $setvar
4361
4362 case "$usesocks" in
4363 $define|true|[yY]*) useperlio="$define";;
4364 esac
4365
4366 : Looking for optional libraries
4367 echo " "
4368 echo "Checking for optional libraries..." >&4
4369 case "$libs" in
4370 ' '|'') dflt='';;
4371 *) dflt="$libs";;
4372 esac
4373 case "$libswanted" in
4374 '') libswanted='c_s';;
4375 esac
4376 case "$usesocks" in
4377 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4378 esac
4379 libsfound=''
4380 libsfiles=''
4381 libsdirs=''
4382 libspath=''
4383 for thisdir in $libpth $xlibpth; do
4384   test -d $thisdir && libspath="$libspath $thisdir"
4385 done
4386 for thislib in $libswanted; do
4387         for thisdir in $libspath; do
4388             xxx=''
4389             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4390                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4391                 $test -f "$xxx" && eval $libscheck
4392                 $test -f "$xxx" && libstyle=shared
4393             fi
4394             if test ! -f "$xxx"; then
4395                 xxx=$thisdir/lib$thislib.$so
4396                 $test -f "$xxx" && eval $libscheck
4397                 $test -f "$xxx" && libstyle=shared
4398             fi  
4399             if test ! -f "$xxx"; then
4400                 xxx=$thisdir/lib$thislib$_a
4401                 $test -f "$xxx" && eval $libscheck
4402                 $test -f "$xxx" && libstyle=static
4403             fi
4404             if test ! -f "$xxx"; then
4405                 xxx=$thisdir/$thislib$_a
4406                 $test -f "$xxx" && eval $libscheck
4407                 $test -f "$xxx" && libstyle=static
4408             fi
4409             if test ! -f "$xxx"; then
4410                 xxx=$thisdir/lib${thislib}_s$_a
4411                 $test -f "$xxx" && eval $libscheck
4412                 $test -f "$xxx" && libstyle=static
4413                 $test -f "$xxx" && thislib=${thislib}_s
4414             fi
4415             if test ! -f "$xxx"; then
4416                 xxx=$thisdir/Slib$thislib$_a
4417                 $test -f "$xxx" && eval $libscheck
4418                 $test -f "$xxx" && libstyle=static
4419             fi
4420             if $test -f "$xxx"; then
4421                 case "$libstyle" in
4422                 shared) echo "Found -l$thislib (shared)." ;;
4423                 static) echo "Found -l$thislib." ;;
4424                 *)      echo "Found -l$thislib ($libstyle)." ;;
4425                 esac
4426                 case " $dflt " in
4427                 *"-l$thislib "*);;
4428                 *) dflt="$dflt -l$thislib"
4429                    libsfound="$libsfound $xxx"
4430                    yyy=`basename $xxx`
4431                    libsfiles="$libsfiles $yyy"
4432                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4433                    case " $libsdirs " in
4434                    *" $yyy "*) ;;
4435                    *) libsdirs="$libsdirs $yyy" ;;
4436                    esac
4437                    ;;
4438                 esac
4439                 break
4440             fi  
4441         done
4442         if $test ! -f "$xxx"; then
4443             echo "No -l$thislib."
4444         fi
4445 done
4446 set X $dflt
4447 shift
4448 dflt="$*"
4449 case "$libs" in
4450 '') dflt="$dflt";;
4451 *) dflt="$libs";;
4452 esac
4453 case "$dflt" in
4454 ' '|'') dflt='none';;
4455 esac
4456
4457 $cat <<EOM
4458
4459 In order to compile $package on your machine, a number of libraries
4460 are usually needed.  Include any other special libraries here as well.
4461 Say "none" for none.  The default list is almost always right.
4462 EOM
4463
4464 echo " "
4465 rp="What libraries to use?"
4466 . ./myread
4467 case "$ans" in
4468 none) libs=' ';;
4469 *) libs="$ans";;
4470 esac
4471
4472 : determine optimization, if desired, or use for debug flag also
4473 case "$optimize" in
4474 ' '|$undef) dflt='none';;
4475 '') dflt='-O';;
4476 *) dflt="$optimize";;
4477 esac
4478 $cat <<EOH
4479
4480 By default, $package compiles with the -O flag to use the optimizer.
4481 Alternately, you might want to use the symbolic debugger, which uses
4482 the -g flag (on traditional Unix systems).  Either flag can be
4483 specified here.  To use neither flag, specify the word "none".
4484
4485 EOH
4486 rp="What optimizer/debugger flag should be used?"
4487 . ./myread
4488 optimize="$ans"
4489 case "$optimize" in
4490 'none') optimize=" ";;
4491 esac
4492
4493 dflt=''
4494 : We will not override a previous value, but we might want to
4495 : augment a hint file
4496 case "$hint" in
4497 default|recommended)
4498         case "$gccversion" in
4499         1*) dflt='-fpcc-struct-return' ;;
4500         esac
4501         case "$optimize" in
4502         *-g*) dflt="$dflt -DDEBUGGING";;
4503         esac
4504         case "$gccversion" in
4505         2*) if test -d /etc/conf/kconfig.d &&
4506                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
4507                 then
4508                         dflt="$dflt -posix"
4509                 fi
4510                 ;;
4511         esac
4512         case "$gccversion" in
4513         1*) ;;
4514         2.[0-8]*) ;;
4515         ?*)     echo " "
4516                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
4517                 echo 'int main(void) { return 0; }' > gcctest.c
4518                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
4519                         echo "Yes, it does." 2>&1
4520                         case "$ccflags" in
4521                         *strict-aliasing*) 
4522                                 echo "Leaving current flags $ccflags alone." 2>&1
4523                                 ;;
4524                         *) dflt="$dflt -fno-strict-aliasing" ;;
4525                         esac
4526                 else
4527                         echo "Nope, it doesn't, but that's ok." 2>&1
4528                 fi
4529                 ;;
4530         esac
4531         ;;
4532 esac
4533
4534 case "$mips_type" in
4535 *BSD*|'') inclwanted="$locincpth $usrinc";;
4536 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
4537 esac
4538 for thisincl in $inclwanted; do
4539         if $test -d $thisincl; then
4540                 if $test x$thisincl != x$usrinc; then
4541                         case "$dflt" in
4542                         *" -I$thisincl "*);;
4543                         *) dflt="$dflt -I$thisincl ";;
4544                         esac
4545                 fi
4546         fi
4547 done
4548
4549 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
4550         xxx=true;
4551 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
4552         xxx=true;
4553 else
4554         xxx=false;
4555 fi;
4556 if $xxx; then
4557         case "$dflt" in
4558         *$2*);;
4559         *) dflt="$dflt -D$2";;
4560         esac;
4561 fi'
4562
4563 set signal.h LANGUAGE_C; eval $inctest
4564
4565 case "$usesocks" in
4566 $define)
4567         ccflags="$ccflags -DSOCKS"
4568         ;;
4569 esac
4570
4571 case "$hint" in
4572 default|recommended) dflt="$ccflags $dflt" ;;
4573 *) dflt="$ccflags";;
4574 esac
4575
4576 case "$dflt" in
4577 ''|' ') dflt=none;;
4578 esac
4579
4580 $cat <<EOH
4581
4582 Your C compiler may want other flags.  For this question you should include
4583 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4584 but you should NOT include libraries or ld flags like -lwhatever.  If you
4585 want $package to honor its debug switch, you should include -DDEBUGGING here.
4586 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4587
4588 To use no flags, specify the word "none".
4589
4590 EOH
4591 set X $dflt
4592 shift
4593 dflt=${1+"$@"}
4594 rp="Any additional cc flags?"
4595 . ./myread
4596 case "$ans" in
4597 none) ccflags='';;
4598 *) ccflags="$ans";;
4599 esac
4600
4601 : the following weeds options from ccflags that are of no interest to cpp
4602 case "$cppflags" in
4603 '') cppflags="$ccflags" ;;
4604 *)  cppflags="$cppflags $ccflags" ;;
4605 esac
4606 case "$gccversion" in
4607 1*) cppflags="$cppflags -D__GNUC__"
4608 esac
4609 case "$mips_type" in
4610 '');;
4611 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4612 esac
4613 case "$cppflags" in
4614 '');;
4615 *)
4616         echo " "
4617         echo "Let me guess what the preprocessor flags are..." >&4
4618         set X $cppflags
4619         shift
4620         cppflags=''
4621         $cat >cpp.c <<'EOM'
4622 #define BLURFL foo
4623
4624 BLURFL xx LFRULB
4625 EOM
4626         previous=''
4627         for flag in $*
4628         do
4629                 case "$flag" in
4630                 -*) ftry="$flag";;
4631                 *) ftry="$previous $flag";;
4632                 esac
4633                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4634                         >cpp1.out 2>/dev/null && \
4635                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4636                         >cpp2.out 2>/dev/null && \
4637                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4638                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4639                 then
4640                         cppflags="$cppflags $ftry"
4641                         previous=''
4642                 else
4643                         previous="$flag"
4644                 fi
4645         done
4646         set X $cppflags
4647         shift
4648         cppflags=${1+"$@"}
4649         case "$cppflags" in
4650         *-*)  echo "They appear to be: $cppflags";;
4651         esac
4652         $rm -f cpp.c cpp?.out
4653         ;;
4654 esac
4655
4656 : flags used in final linking phase
4657 case "$ldflags" in
4658 '') if ./venix; then
4659                 dflt='-i -z'
4660         else
4661                 dflt=''
4662         fi
4663         case "$ccflags" in
4664         *-posix*) dflt="$dflt -posix" ;;
4665         esac
4666         ;;
4667 *) dflt="$ldflags";;
4668 esac
4669
4670 : Try to guess additional flags to pick up local libraries.
4671 for thislibdir in $libpth; do
4672         case " $loclibpth " in
4673         *" $thislibdir "*)
4674                 case "$dflt " in 
4675                 *"-L$thislibdir "*) ;;
4676                 *)  dflt="$dflt -L$thislibdir" ;;
4677                 esac
4678                 ;;
4679         esac
4680 done
4681
4682 case "$dflt" in
4683 '') dflt='none' ;;
4684 esac
4685
4686 $cat <<EOH
4687
4688 Your C linker may need flags.  For this question you should
4689 include -L/whatever and any other flags used by the C linker, but you
4690 should NOT include libraries like -lwhatever.
4691
4692 Make sure you include the appropriate -L/path flags if your C linker
4693 does not normally search all of the directories you specified above,
4694 namely
4695         $libpth
4696 To use no flags, specify the word "none".
4697
4698 EOH
4699
4700 rp="Any additional ld flags (NOT including libraries)?"
4701 . ./myread
4702 case "$ans" in
4703 none) ldflags='';;
4704 *) ldflags="$ans";;
4705 esac
4706 rmlist="$rmlist pdp11"
4707
4708 : coherency check
4709 echo " "
4710 echo "Checking your choice of C compiler and flags for coherency..." >&4
4711 $cat > try.c <<'EOF'
4712 #include <stdio.h>
4713 int main() { printf("Ok\n"); exit(0); }
4714 EOF
4715 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
4716 shift
4717 $cat >try.msg <<'EOM'
4718 I've tried to compile and run the following simple program:
4719
4720 EOM
4721 $cat try.c >> try.msg
4722
4723 $cat >> try.msg <<EOM
4724
4725 I used the command:
4726
4727         $*
4728         $run ./try
4729
4730 and I got the following output:
4731
4732 EOM
4733 dflt=y
4734 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
4735         if $sh -c "$run ./try" >>try.msg 2>&1; then
4736                 xxx=`$run ./try`
4737                 case "$xxx" in
4738                 "Ok") dflt=n ;;
4739                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4740                         case " $libs " in
4741                         *" -lsfio "*)
4742                                 cat >> try.msg <<'EOQS'
4743 If $libs contains -lsfio, and sfio is mis-configured, then it
4744 sometimes (apparently) runs and exits with a 0 status, but with no
4745 output!  It may have to do with sfio's use of _exit vs. exit.
4746
4747 EOQS
4748                                 rp="You have a big problem.  Shall I abort Configure"
4749                                 dflt=y
4750                                 ;;
4751                         esac
4752                         ;;
4753                 esac
4754         else
4755                 echo "The program compiled OK, but exited with status $?." >>try.msg
4756                 rp="You have a problem.  Shall I abort Configure"
4757                 dflt=y
4758         fi
4759 else
4760         echo "I can't compile the test program." >>try.msg
4761         rp="You have a BIG problem.  Shall I abort Configure"
4762         dflt=y
4763 fi
4764 case "$dflt" in
4765 y)
4766         $cat try.msg >&4
4767         case "$knowitall" in
4768         '')
4769                 echo "(The supplied flags or libraries might be incorrect.)"
4770                 ;;
4771         *) dflt=n;;
4772         esac
4773         echo " "
4774         . ./myread
4775         case "$ans" in
4776         n*|N*) ;;
4777         *)      echo "Ok.  Stopping Configure." >&4
4778                 exit 1
4779                 ;;
4780         esac
4781         ;;
4782 n) echo "OK, that should do.";;
4783 esac
4784 $rm -f try try.* core
4785
4786 : define a shorthand compile call
4787 compile='
4788 mc_file=$1;
4789 shift;
4790 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
4791 : define a shorthand compile call for compilations that should be ok.
4792 compile_ok='
4793 mc_file=$1;
4794 shift;
4795 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
4796
4797 : check for lengths of integral types
4798 echo " "
4799 case "$intsize" in
4800 '')
4801         echo "Checking to see how big your integers are..." >&4
4802         $cat >try.c <<'EOCP'
4803 #include <stdio.h>
4804 int main()
4805 {
4806         printf("intsize=%d;\n", (int)sizeof(int));
4807         printf("longsize=%d;\n", (int)sizeof(long));
4808         printf("shortsize=%d;\n", (int)sizeof(short));
4809         exit(0);
4810 }
4811 EOCP
4812         set try
4813         if eval $compile_ok && $run ./try > /dev/null; then
4814                 eval `$run ./try`
4815                 echo "Your integers are $intsize bytes long."
4816                 echo "Your long integers are $longsize bytes long."
4817                 echo "Your short integers are $shortsize bytes long."
4818         else
4819                 $cat >&4 <<EOM
4820 !
4821 Help! I can't compile and run the intsize test program: please enlighten me!
4822 (This is probably a misconfiguration in your system or libraries, and
4823 you really ought to fix it.  Still, I'll try anyway.)
4824 !
4825 EOM
4826                 dflt=4
4827                 rp="What is the size of an integer (in bytes)?"
4828                 . ./myread
4829                 intsize="$ans"
4830                 dflt=$intsize
4831                 rp="What is the size of a long integer (in bytes)?"
4832                 . ./myread
4833                 longsize="$ans"
4834                 dflt=2
4835                 rp="What is the size of a short integer (in bytes)?"
4836                 . ./myread
4837                 shortsize="$ans"
4838         fi
4839         ;;
4840 esac
4841 $rm -f try try.*
4842
4843 : check for void type
4844 echo " "
4845 echo "Checking to see how well your C compiler groks the void type..." >&4
4846 case "$voidflags" in
4847 '')
4848         $cat >try.c <<'EOCP'
4849 #if TRY & 1
4850 void sub() {
4851 #else
4852 sub() {
4853 #endif
4854         extern void moo();      /* function returning void */
4855         void (*goo)();          /* ptr to func returning void */
4856 #if TRY & 8
4857         void *hue;              /* generic ptr */
4858 #endif
4859 #if TRY & 2
4860         void (*foo[10])();
4861 #endif
4862
4863 #if TRY & 4
4864         if(goo == moo) {
4865                 exit(0);
4866         }
4867 #endif
4868         exit(0);
4869 }
4870 int main() { sub(); }
4871 EOCP
4872         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
4873                 voidflags=$defvoidused
4874         echo "Good.  It appears to support void to the level $package wants.">&4
4875                 if $contains warning .out >/dev/null 2>&1; then
4876                         echo "However, you might get some warnings that look like this:"
4877                         $cat .out
4878                 fi
4879         else
4880 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
4881                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
4882                         echo "It supports 1..."
4883                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
4884                                 echo "It also supports 2..."
4885                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
4886                                         voidflags=7
4887                                         echo "And it supports 4 but not 8 definitely."
4888                                 else
4889                                         echo "It doesn't support 4..."
4890                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
4891                                                 voidflags=11
4892                                                 echo "But it supports 8."
4893                                         else
4894                                                 voidflags=3
4895                                                 echo "Neither does it support 8."
4896                                         fi
4897                                 fi
4898                         else
4899                                 echo "It does not support 2..."
4900                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
4901                                         voidflags=13
4902                                         echo "But it supports 4 and 8."
4903                                 else
4904                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
4905                                                 voidflags=5
4906                                                 echo "And it supports 4 but has not heard about 8."
4907                                         else
4908                                                 echo "However it supports 8 but not 4."
4909                                         fi
4910                                 fi
4911                         fi
4912                 else
4913                         echo "There is no support at all for void."
4914                         voidflags=0
4915                 fi
4916         fi
4917 esac
4918 case "$voidflags" in
4919 "$defvoidused") ;;
4920 *)      $cat >&4 <<'EOM'
4921   Support flag bits are:
4922     1: basic void declarations.
4923     2: arrays of pointers to functions returning void.
4924     4: operations between pointers to and addresses of void functions.
4925     8: generic void pointers.
4926 EOM
4927         dflt="$voidflags";
4928         rp="Your void support flags add up to what?"
4929         . ./myread
4930         voidflags="$ans"
4931         ;;
4932 esac
4933 $rm -f try.* .out
4934
4935 : check for length of pointer
4936 echo " "
4937 case "$ptrsize" in
4938 '')
4939         echo "Checking to see how big your pointers are..." >&4
4940         if test "$voidflags" -gt 7; then
4941                 echo '#define VOID_PTR char *' > try.c
4942         else
4943                 echo '#define VOID_PTR void *' > try.c
4944         fi
4945         $cat >>try.c <<'EOCP'
4946 #include <stdio.h>
4947 int main()
4948 {
4949     printf("%d\n", (int)sizeof(VOID_PTR));
4950     exit(0);
4951 }
4952 EOCP
4953         set try
4954         if eval $compile_ok; then
4955                 ptrsize=`$run ./try`
4956                 echo "Your pointers are $ptrsize bytes long."
4957         else
4958                 dflt='4'
4959                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
4960                 rp="What is the size of a pointer (in bytes)?"
4961                 . ./myread
4962                 ptrsize="$ans"
4963         fi
4964         ;;
4965 esac
4966 $rm -f try.c try
4967
4968 : check for long long
4969 echo " "
4970 echo "Checking to see if you have long long..." >&4
4971 echo 'int main() { long long x = 7; return 0; }' > try.c
4972 set try
4973 if eval $compile; then
4974         val="$define"
4975         echo "You have long long."
4976 else
4977         val="$undef"
4978         echo "You do not have long long."
4979 fi
4980 $rm try.*
4981 set d_longlong
4982 eval $setvar
4983
4984 : check for length of long long
4985 case "${d_longlong}${longlongsize}" in
4986 $define)
4987         echo " "
4988         echo "Checking to see how big your long longs are..." >&4
4989         $cat >try.c <<'EOCP'
4990 #include <stdio.h>
4991 int main()
4992 {
4993     printf("%d\n", (int)sizeof(long long));
4994     return(0);
4995 }
4996 EOCP
4997         set try
4998         if eval $compile_ok; then
4999                 longlongsize=`$run ./try`
5000                 echo "Your long longs are $longlongsize bytes long."
5001         else
5002                 dflt='8'
5003                 echo " "
5004                 echo "(I can't seem to compile the test program.  Guessing...)"
5005                 rp="What is the size of a long long (in bytes)?"
5006                 . ./myread
5007                 longlongsize="$ans"
5008         fi
5009         if $test "X$longsize" = "X$longlongsize"; then
5010                 echo "(That isn't any different from an ordinary long.)"
5011         fi      
5012         ;;
5013 esac
5014 $rm -f try.* try
5015
5016 : determine filename position in cpp output
5017 echo " "
5018 echo "Computing filename position in cpp output for #include directives..." >&4
5019 case "$osname" in
5020 vos) testaccess=-e ;;
5021 *)   testaccess=-r ;;
5022 esac
5023 echo '#include <stdio.h>' > foo.c
5024 $cat >fieldn <<EOF
5025 $startsh
5026 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5027 $grep '^[       ]*#.*stdio\.h' | \
5028 while read cline; do
5029         pos=1
5030         set \$cline
5031         while $test \$# -gt 0; do
5032                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5033                         echo "\$pos"
5034                         exit 0
5035                 fi
5036                 shift
5037                 pos=\`expr \$pos + 1\`
5038         done
5039 done
5040 EOF
5041 chmod +x fieldn
5042 fieldn=`./fieldn`
5043 $rm -f foo.c fieldn
5044 case $fieldn in
5045 '') pos='???';;
5046 1) pos=first;;
5047 2) pos=second;;
5048 3) pos=third;;
5049 *) pos="${fieldn}th";;
5050 esac
5051 echo "Your cpp writes the filename in the $pos field of the line."
5052
5053 case "$osname" in
5054 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5055 *)   cppfilter='' ;;
5056 esac
5057 : locate header file
5058 $cat >findhdr <<EOF
5059 $startsh
5060 wanted=\$1
5061 name=''
5062 for usrincdir in $usrinc
5063 do
5064         if test -f \$usrincdir/\$wanted; then
5065                 echo "\$usrincdir/\$wanted"
5066                 exit 0
5067         fi
5068 done
5069 awkprg='{ print \$$fieldn }'
5070 echo "#include <\$wanted>" > foo\$\$.c
5071 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5072 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5073 while read cline; do
5074         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5075         case "\$name" in
5076         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5077         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5078         *) exit 2;;
5079         esac;
5080 done;
5081 #
5082 # status = 0: grep returned 0 lines, case statement not executed
5083 # status = 1: headerfile found
5084 # status = 2: while loop executed, no headerfile found
5085 #
5086 status=\$?
5087 $rm -f foo\$\$.c;
5088 if test \$status -eq 1; then
5089         exit 0;
5090 fi
5091 exit 1
5092 EOF
5093 chmod +x findhdr
5094
5095 : define an alternate in-header-list? function
5096 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5097 cont=true; xxf="echo \"<\$1> found.\" >&4";
5098 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5099 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5100 esac;
5101 case $# in 4) instead=instead;; *) instead="at last";; esac;
5102 while $test "$cont"; do
5103         xxx=`./findhdr $1`
5104         var=$2; eval "was=\$$2";
5105         if $test "$xxx" && $test -r "$xxx";
5106         then eval $xxf;
5107         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5108                 cont="";
5109         else eval $xxnf;
5110         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5111         set $yyy; shift; shift; yyy=$@;
5112         case $# in 0) cont="";;
5113         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5114                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5115         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5116                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5117         esac;
5118 done;
5119 while $test "$yyy";
5120 do set $yyy; var=$2; eval "was=\$$2";
5121         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5122         set $yyy; shift; shift; yyy=$@;
5123 done'
5124
5125 : see if inttypes.h is available
5126 : we want a real compile instead of Inhdr because some systems
5127 : have an inttypes.h which includes non-existent headers
5128 echo " "
5129 $cat >try.c <<EOCP
5130 #include <inttypes.h>
5131 int main() {
5132         static int32_t foo32 = 0x12345678;
5133 }
5134 EOCP
5135 set try
5136 if eval $compile; then
5137         echo "<inttypes.h> found." >&4
5138         val="$define"
5139 else
5140         echo "<inttypes.h> NOT found." >&4
5141         val="$undef"
5142 fi
5143 $rm -f try.c try
5144 set i_inttypes
5145 eval $setvar
5146
5147 : check for int64_t
5148 echo " "
5149 echo "Checking to see if you have int64_t..." >&4
5150 $cat >try.c <<EOCP
5151 #include <sys/types.h>
5152 #$i_inttypes I_INTTYPES
5153 #ifdef I_INTTYPES
5154 #include <inttypes.h>
5155 #endif
5156 int main() { int64_t x = 7; }
5157 EOCP
5158 set try
5159 if eval $compile; then
5160         val="$define"
5161         echo "You have int64_t."
5162 else
5163         val="$undef"
5164         echo "You do not have int64_t."
5165 fi
5166 $rm -f try try.*
5167 set d_int64_t
5168 eval $setvar
5169
5170
5171 echo " "
5172 echo "Checking which 64-bit integer type we could use..." >&4
5173
5174 case "$intsize" in
5175 8) val=int
5176    set quadtype
5177    eval $setvar
5178    val='"unsigned int"'
5179    set uquadtype
5180    eval $setvar
5181    quadkind=1
5182    ;;
5183 *) case "$longsize" in
5184    8) val=long
5185       set quadtype
5186       eval $setvar
5187       val='"unsigned long"'
5188       set uquadtype
5189       eval $setvar
5190       quadkind=2
5191       ;;
5192    *) case "$d_longlong:$longlongsize" in
5193       define:8)
5194         val='"long long"'
5195         set quadtype
5196         eval $setvar
5197         val='"unsigned long long"'
5198         set uquadtype
5199         eval $setvar
5200         quadkind=3
5201         ;;
5202       *) case "$d_int64_t" in
5203          define)
5204            val=int64_t
5205            set quadtype
5206            eval $setvar
5207            val=uint64_t
5208            set uquadtype
5209            eval $setvar
5210            quadkind=4
5211            ;;
5212          esac
5213          ;;
5214       esac
5215       ;;
5216    esac
5217    ;;
5218 esac
5219
5220 case "$quadtype" in
5221 '')     echo "Alas, no 64-bit integer types in sight." >&4
5222         d_quad="$undef"
5223         ;;
5224 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5225         d_quad="$define"
5226         ;;
5227 esac
5228
5229
5230 case "$uselonglong" in
5231 "$define"|true|[yY]*)
5232         cat <<EOM >&4
5233
5234 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5235 EOM
5236         use64bitint="$define"
5237         ;;
5238 esac                          
5239 case "$use64bits" in
5240 "$define"|true|[yY]*)
5241         cat <<EOM >&4
5242
5243 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5244 EOM
5245         use64bitint="$define"
5246         ;;
5247 esac                          
5248 case "$use64bitints" in
5249 "$define"|true|[yY]*)
5250         cat <<EOM >&4
5251
5252 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5253 EOM
5254         use64bitint="$define"
5255         ;;
5256 esac                          
5257 case "$use64bitsint" in
5258 "$define"|true|[yY]*)
5259         cat <<EOM >&4
5260
5261 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5262 EOM
5263         use64bitint="$define"
5264         ;;
5265 esac                          
5266 case "$uselonglongs" in
5267 "$define"|true|[yY]*)
5268         cat <<EOM >&4
5269
5270 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5271 EOM
5272         use64bitint="$define"
5273         ;;
5274 esac                          
5275 case "$use64bitsall" in
5276 "$define"|true|[yY]*)
5277         cat <<EOM >&4
5278
5279 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5280 EOM
5281         use64bitall="$define"
5282         ;;
5283 esac                          
5284
5285 case "$ccflags" in
5286 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5287 esac
5288 case "$use64bitall" in
5289 "$define"|true|[yY]*) use64bitint="$define" ;;
5290 esac
5291
5292 case "$longsize" in
5293 8) cat <<EOM
5294
5295 You have natively 64-bit long integers.
5296 EOM
5297    val="$define"
5298    ;;
5299 *) case "$use64bitint" in
5300    "$define"|true|[yY]*) dflt='y';;
5301    *) dflt='n';;
5302    esac
5303    case "$d_quad" in
5304    "$define") ;;
5305    *) dflt='n' ;;
5306    esac
5307    cat <<EOM
5308
5309 Perl can be built to take advantage of 64-bit integer types
5310 on some systems.  To do so, Configure can be run with -Duse64bitint.
5311 Choosing this option will most probably introduce binary incompatibilities.
5312
5313 If this doesn't make any sense to you, just accept the default '$dflt'.
5314 (The default has been chosen based on your configuration.)
5315 EOM
5316    rp='Try to use 64-bit integers, if available?'
5317    . ./myread
5318    case "$ans" in
5319    [yY]*) val="$define" ;;
5320    *)     val="$undef"  ;;
5321    esac
5322    ;;
5323 esac
5324 set use64bitint
5325 eval $setvar
5326
5327 case "$use64bitall" in
5328 "$define"|true|[yY]*) dflt='y' ;;
5329 *) case "$longsize" in
5330    8) dflt='y' ;;
5331    *) dflt='n' ;;
5332    esac
5333    ;;
5334 esac    
5335 cat <<EOM
5336
5337 You may also choose to try maximal 64-bitness.  It means using as much
5338 64-bitness as possible on the platform.  This in turn means even more
5339 binary incompatibilities.  On the other hand, your platform may not
5340 have any more 64-bitness available than what you already have chosen.
5341
5342 If this doesn't make any sense to you, just accept the default '$dflt'.
5343 (The default has been chosen based on your configuration.)
5344 EOM
5345 rp='Try to use maximal 64-bit support, if available?'
5346 . ./myread
5347 case "$ans" in
5348 [yY]*) val="$define" ;;
5349 *)     val="$undef"  ;;
5350 esac
5351 set use64bitall
5352 eval $setvar
5353 case "$use64bitall" in
5354 "$define")
5355         case "$use64bitint" in
5356         "$undef")
5357                 cat <<EOM
5358
5359 Since you have chosen a maximally 64-bit build, I'm also turning on
5360 the use of 64-bit integers.
5361 EOM
5362                 use64bitint="$define" ;;
5363         esac
5364         ;;
5365 esac
5366
5367 case "$use64bitall" in
5368 "$define"|true|[yY]*)
5369         case "$ptrsize" in
5370         4)      cat <<EOM >&4
5371
5372 *** You have chosen a maximally 64-bit build, but your pointers
5373 *** are only 4 bytes wide, disabling maximal 64-bitness.
5374
5375 EOM
5376                 use64bitall="$undef"
5377                 case "$use64bitint" in
5378                 "$define"|true|[yY]*) ;;
5379                 *)      cat <<EOM >&4
5380
5381 *** Downgrading from maximal 64-bitness to using 64-bit integers.
5382
5383 EOM
5384                         use64bitint="$define"
5385                         ;;
5386                 esac
5387                 ;;
5388         esac
5389         ;;
5390 esac
5391
5392 case "$use64bitint" in
5393 "$define"|true|[yY]*)
5394 : Look for a hint-file generated 'call-back-unit'.  If the
5395 : user has specified that a 64-bit perl is to be built,
5396 : we may need to set or change some other defaults.
5397         if $test -f use64bitint.cbu; then
5398                 echo "Your platform has some specific hints for 64-bit integers, using them..."
5399                 . ./use64bitint.cbu
5400         fi
5401         case "$longsize" in
5402         4) case "$archname64" in
5403            '') archname64=64int ;;
5404            esac
5405            ;;
5406         esac
5407         ;;
5408 esac
5409
5410 case "$use64bitall" in
5411 "$define"|true|[yY]*)
5412 : Look for a hint-file generated 'call-back-unit'.  If the
5413 : user has specified that a maximally 64-bit perl is to be built,
5414 : we may need to set or change some other defaults.
5415         if $test -f use64bitall.cbu; then
5416                 echo "Your platform has some specific hints for 64-bit builds, using them..."
5417                 . ./use64bitall.cbu
5418         fi
5419         case "$longsize" in
5420         4) case "$archname64" in
5421            ''|64int) archname64=64all ;;
5422            esac
5423            ;;
5424         esac
5425         ;;
5426 esac
5427
5428 echo " "
5429 echo "Checking for GNU C Library..." >&4
5430 cat >try.c <<EOM
5431 #include <stdio.h>
5432 int main()
5433 {
5434 #ifdef __GLIBC__
5435     exit(0);
5436 #else
5437     exit(1);
5438 #endif
5439 }
5440 EOM
5441 set try
5442 if eval $compile_ok && $run ./try; then
5443         val="$define"
5444         echo "You are using the GNU C Library"
5445 else
5446         val="$undef"
5447         echo "You are not using the GNU C Library"
5448 fi
5449 $rm -f try try.*
5450 set d_gnulibc
5451 eval $setvar
5452
5453 : see if nm is to be used to determine whether a symbol is defined or not
5454 case "$usenm" in
5455 '')
5456         dflt=''
5457         case "$d_gnulibc" in
5458         "$define")
5459                 echo " "
5460                 echo "nm probably won't work on the GNU C Library." >&4
5461                 dflt=n
5462                 ;;
5463         esac
5464         case "$dflt" in
5465         '') 
5466                 if $test "$osname" = aix -a ! -f /lib/syscalls.exp; then
5467                         echo " "
5468                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
5469                         echo "'nm' won't be sufficient on this sytem." >&4
5470                         dflt=n
5471                 fi
5472                 ;;
5473         esac
5474         case "$dflt" in
5475         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
5476                 if $test $dflt -gt 20; then
5477                         dflt=y
5478                 else
5479                         dflt=n
5480                 fi
5481                 ;;
5482         esac
5483         ;;
5484 *)
5485         case "$usenm" in
5486         true|$define) dflt=y;;
5487         *) dflt=n;;
5488         esac
5489         ;;
5490 esac
5491 $cat <<EOM
5492
5493 I can use $nm to extract the symbols from your C libraries. This
5494 is a time consuming task which may generate huge output on the disk (up
5495 to 3 megabytes) but that should make the symbols extraction faster. The
5496 alternative is to skip the 'nm' extraction part and to compile a small
5497 test program instead to determine whether each symbol is present. If
5498 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
5499 this may be the best solution.
5500
5501 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
5502
5503 EOM
5504 rp="Shall I use $nm to extract C symbols from the libraries?"
5505 . ./myread
5506 case "$ans" in
5507 [Nn]*) usenm=false;;
5508 *) usenm=true;;
5509 esac
5510
5511 runnm=$usenm
5512 case "$reuseval" in
5513 true) runnm=false;;
5514 esac
5515
5516 : nm options which may be necessary
5517 case "$nm_opt" in
5518 '') if $test -f /mach_boot; then
5519                 nm_opt=''       # Mach
5520         elif $test -d /usr/ccs/lib; then
5521                 nm_opt='-p'     # Solaris (and SunOS?)
5522         elif $test -f /dgux; then
5523                 nm_opt='-p'     # DG-UX
5524         elif $test -f /lib64/rld; then
5525                 nm_opt='-p'     # 64-bit Irix
5526         else
5527                 nm_opt=''
5528         fi;;
5529 esac
5530
5531 : nm options which may be necessary for shared libraries but illegal
5532 : for archive libraries.  Thank you, Linux.
5533 case "$nm_so_opt" in
5534 '')     case "$myuname" in
5535         *linux*)
5536                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
5537                         nm_so_opt='--dynamic'
5538                 fi
5539                 ;;
5540         esac
5541         ;;
5542 esac
5543
5544 case "$runnm" in
5545 true)
5546 : get list of predefined functions in a handy place
5547 echo " "
5548 case "$libc" in
5549 '') libc=unknown
5550         case "$libs" in
5551         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
5552         esac
5553         ;;
5554 esac
5555 case "$libs" in
5556 '') ;;
5557 *)  for thislib in $libs; do
5558         case "$thislib" in
5559         -lc|-lc_s)
5560                 : Handle C library specially below.
5561                 ;;
5562         -l*)
5563                 thislib=`echo $thislib | $sed -e 's/^-l//'`
5564                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
5565                         :
5566                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
5567                         :
5568                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
5569                         :
5570                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
5571                         :
5572                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
5573                         :
5574                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
5575                         :
5576                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
5577                         :
5578                 else
5579                         try=''
5580                 fi
5581                 libnames="$libnames $try"
5582                 ;;
5583         *) libnames="$libnames $thislib" ;;
5584         esac
5585         done
5586         ;;
5587 esac
5588 xxx=normal
5589 case "$libc" in
5590 unknown)
5591         set /lib/libc.$so
5592         for xxx in $libpth; do
5593                 $test -r $1 || set $xxx/libc.$so
5594                 : The messy sed command sorts on library version numbers.
5595                 $test -r $1 || \
5596                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
5597                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
5598                                 h
5599                                 s/[0-9][0-9]*/0000&/g
5600                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
5601                                 G
5602                                 s/\n/ /' | \
5603                          $sort | $sed -e 's/^.* //'`
5604                 eval set \$$#
5605         done
5606         $test -r $1 || set /usr/ccs/lib/libc.$so
5607         $test -r $1 || set /lib/libsys_s$_a
5608         ;;
5609 *)
5610         set blurfl
5611         ;;
5612 esac
5613 if $test -r "$1"; then
5614         echo "Your (shared) C library seems to be in $1."
5615         libc="$1"
5616 elif $test -r /lib/libc && $test -r /lib/clib; then
5617         echo "Your C library seems to be in both /lib/clib and /lib/libc."
5618         xxx=apollo
5619         libc='/lib/clib /lib/libc'
5620         if $test -r /lib/syslib; then
5621                 echo "(Your math library is in /lib/syslib.)"
5622                 libc="$libc /lib/syslib"
5623         fi
5624 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
5625         echo "Your C library seems to be in $libc, as you said before."
5626 elif $test -r $incpath/usr/lib/libc$_a; then
5627         libc=$incpath/usr/lib/libc$_a;
5628         echo "Your C library seems to be in $libc.  That's fine."
5629 elif $test -r /lib/libc$_a; then
5630         libc=/lib/libc$_a;
5631         echo "Your C library seems to be in $libc.  You're normal."
5632 else
5633         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
5634                 :
5635         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
5636                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
5637         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
5638                 :
5639         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
5640                 :
5641         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
5642                 :
5643         else
5644                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
5645         fi
5646         if $test -r "$tans"; then
5647                 echo "Your C library seems to be in $tans, of all places."
5648                 libc=$tans
5649         else
5650                 libc='blurfl'
5651         fi
5652 fi
5653 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
5654         dflt="$libc"
5655         cat <<EOM
5656
5657 If the guess above is wrong (which it might be if you're using a strange
5658 compiler, or your machine supports multiple models), you can override it here.
5659
5660 EOM
5661 else
5662         dflt=''
5663         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
5664         cat >&4 <<EOM
5665 I can't seem to find your C library.  I've looked in the following places:
5666
5667 EOM
5668         $sed 's/^/      /' libpath
5669         cat <<EOM
5670
5671 None of these seems to contain your C library. I need to get its name...
5672
5673 EOM
5674 fi
5675 fn=f
5676 rp='Where is your C library?'
5677 . ./getfile
5678 libc="$ans"
5679
5680 echo " "
5681 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
5682 set X `cat libnames`
5683 shift
5684 xxx=files
5685 case $# in 1) xxx=file; esac
5686 echo "Extracting names from the following $xxx for later perusal:" >&4
5687 echo " "
5688 $sed 's/^/      /' libnames >&4
5689 echo " "
5690 $echo $n "This may take a while...$c" >&4
5691
5692 for file in $*; do
5693         case $file in
5694         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
5695         *) $nm $nm_opt $file 2>/dev/null;;
5696         esac
5697 done >libc.tmp
5698
5699 $echo $n ".$c"
5700 $grep fprintf libc.tmp > libc.ptf
5701 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
5702 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
5703 xxx='[ADTSIW]'
5704 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *_[_.]*//p' -e 's/^.* $xxx  *//p'";\
5705         eval $xscan;\
5706         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5707                 eval $xrun
5708 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
5709         eval $xscan;\
5710         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5711                 eval $xrun
5712 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
5713         eval $xscan;\
5714         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5715                 eval $xrun
5716 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
5717         eval $xscan;\
5718         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5719                 eval $xrun
5720 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
5721         eval $xscan;\
5722         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5723                 eval $xrun
5724 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
5725         eval $xscan;\
5726         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5727                 eval $xrun
5728 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
5729                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\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' -e 's/^.*|FUNC |WEAK .*|//p'";\
5734         eval $xscan;\
5735         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5736                 eval $xrun
5737 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
5738         eval $xscan;\
5739         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5740                 eval $xrun
5741 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
5742         eval $xscan;\
5743         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5744                 eval $xrun
5745 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
5746         eval $xscan;\
5747         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5748                 eval $xrun
5749 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
5750         eval $xscan;\
5751         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5752                 eval $xrun
5753 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
5754         eval $xscan;\
5755         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5756                 eval $xrun
5757 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
5758         eval $xscan;\
5759         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5760                 eval $xrun
5761 else
5762         $nm -p $* 2>/dev/null >libc.tmp
5763         $grep fprintf libc.tmp > libc.ptf
5764         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
5765                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
5766         then
5767                 nm_opt='-p'
5768                 eval $xrun
5769         else
5770                 echo " "
5771                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
5772                 com=''
5773                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
5774                         for thisname in $libnames $libc; do
5775                                 $ar t $thisname >>libc.tmp
5776                         done
5777                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
5778                         echo "Ok." >&4
5779                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
5780                         # Repeat libc to extract forwarders to DLL entries too
5781                         for thisname in $libnames $libc; do
5782                                 $ar tv $thisname >>libc.tmp
5783                                 # Revision 50 of EMX has bug in $ar.
5784                                 # it will not extract forwarders to DLL entries
5785                                 # Use emximp which will extract exactly them.
5786                                 emximp -o tmp.imp $thisname \
5787                                     2>/dev/null && \
5788                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
5789                                     < tmp.imp >>libc.tmp
5790                                 $rm tmp.imp
5791                         done
5792                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
5793                         echo "Ok." >&4
5794                 else
5795                         echo "$ar didn't seem to work right." >&4
5796                         echo "Maybe this is a Cray...trying bld instead..." >&4
5797                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
5798                         then
5799                                 for thisname in $libnames; do
5800                                         bld t $libnames | \
5801                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
5802                                         $ar t $thisname >>libc.tmp
5803                                 done
5804                                 echo "Ok." >&4
5805                         else
5806                                 echo "That didn't work either.  Giving up." >&4
5807                                 exit 1
5808                         fi
5809                 fi
5810         fi
5811 fi
5812 nm_extract="$com"
5813 if $test -f /lib/syscalls.exp; then
5814         echo " "
5815         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
5816         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
5817 fi
5818 ;;
5819 esac
5820 $rm -f libnames libpath
5821
5822 : is a C symbol defined?
5823 csym='tlook=$1;
5824 case "$3" in
5825 -v) tf=libc.tmp; tc=""; tdc="";;
5826 -a) tf=libc.tmp; tc="[0]"; tdc="[]";;
5827 *) tlook="^$1\$"; tf=libc.list; tc="()"; tdc="()";;
5828 esac;
5829 tx=yes;
5830 case "$reuseval-$4" in
5831 true-) ;;
5832 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
5833 esac;
5834 case "$tx" in
5835 yes)
5836         case "$runnm" in
5837         true)
5838                 if $contains $tlook $tf >/dev/null 2>&1;
5839                 then tval=true;
5840                 else tval=false;
5841                 fi;;
5842         *)
5843                 echo "int main() { extern short $1$tdc; printf(\"%hd\", $1$tc); }" > t.c;
5844                 if $cc -o t $optimize $ccflags $ldflags t.c $libs >/dev/null 2>&1;
5845                 then tval=true;
5846                 else tval=false;
5847                 fi;
5848                 $rm -f t t.c;;
5849         esac;;
5850 *)
5851         case "$tval" in
5852         $define) tval=true;;
5853         *) tval=false;;
5854         esac;;
5855 esac;
5856 eval "$2=$tval"'
5857
5858 : define an is-in-libc? function
5859 inlibc='echo " "; td=$define; tu=$undef;
5860 sym=$1; var=$2; eval "was=\$$2";
5861 tx=yes;
5862 case "$reuseval$was" in
5863 true) ;;
5864 true*) tx=no;;
5865 esac;
5866 case "$tx" in
5867 yes)
5868         set $sym tres -f;
5869         eval $csym;
5870         case "$tres" in
5871         true)
5872                 echo "$sym() found." >&4;
5873                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
5874         *)
5875                 echo "$sym() NOT found." >&4;
5876                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
5877         esac;;
5878 *)
5879         case "$was" in
5880         $define) echo "$sym() found." >&4;;
5881         *) echo "$sym() NOT found." >&4;;
5882         esac;;
5883 esac'
5884
5885 : see if sqrtl exists
5886 set sqrtl d_sqrtl
5887 eval $inlibc
5888
5889 : check for length of double
5890 echo " "
5891 case "$doublesize" in
5892 '')
5893         echo "Checking to see how big your double precision numbers are..." >&4
5894         $cat >try.c <<'EOCP'
5895 #include <stdio.h>
5896 int main()
5897 {
5898     printf("%d\n", (int)sizeof(double));
5899     exit(0);
5900 }
5901 EOCP
5902         set try
5903         if eval $compile_ok; then
5904                 doublesize=`$run ./try`
5905                 echo "Your double is $doublesize bytes long."
5906         else
5907                 dflt='8'
5908                 echo "(I can't seem to compile the test program.  Guessing...)"
5909                 rp="What is the size of a double precision number (in bytes)?"
5910                 . ./myread
5911                 doublesize="$ans"
5912         fi
5913         ;;
5914 esac
5915 $rm -f try.c try
5916
5917 : check for long doubles
5918 echo " "
5919 echo "Checking to see if you have long double..." >&4
5920 echo 'int main() { long double x = 7.0; }' > try.c
5921 set try
5922 if eval $compile; then
5923         val="$define"
5924         echo "You have long double."
5925 else
5926         val="$undef"
5927         echo "You do not have long double."
5928 fi
5929 $rm try.*
5930 set d_longdbl
5931 eval $setvar
5932
5933 : check for length of long double
5934 case "${d_longdbl}${longdblsize}" in
5935 $define)
5936         echo " "
5937         echo "Checking to see how big your long doubles are..." >&4
5938         $cat >try.c <<'EOCP'
5939 #include <stdio.h>
5940 int main()
5941 {
5942         printf("%d\n", sizeof(long double));
5943 }
5944 EOCP
5945         set try
5946         set try
5947         if eval $compile; then
5948                 longdblsize=`$run ./try`
5949                 echo "Your long doubles are $longdblsize bytes long."
5950         else
5951                 dflt='8'
5952                 echo " "
5953                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
5954                 rp="What is the size of a long double (in bytes)?"
5955                 . ./myread
5956                 longdblsize="$ans"
5957         fi
5958         if $test "X$doublesize" = "X$longdblsize"; then
5959                 echo "(That isn't any different from an ordinary double.)"
5960         fi      
5961         ;;
5962 esac
5963 $rm -f try.* try
5964
5965 echo " "
5966
5967 if $test X"$d_longdbl" = X"$define"; then
5968
5969 echo "Checking how to print long doubles..." >&4
5970
5971 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
5972         $cat >try.c <<'EOCP'
5973 #include <sys/types.h>
5974 #include <stdio.h>
5975 int main() {
5976   double d = 123.456;
5977   printf("%.3f\n", d);
5978 }
5979 EOCP
5980         set try
5981         if eval $compile; then
5982                 yyy=`$run ./try`
5983                 case "$yyy" in
5984                 123.456)
5985                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
5986                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
5987                         echo "We will use %f."
5988                         ;;
5989                 esac
5990         fi
5991 fi
5992
5993 if $test X"$sPRIfldbl" = X; then
5994         $cat >try.c <<'EOCP'
5995 #include <sys/types.h>
5996 #include <stdio.h>
5997 int main() {
5998   long double d = 123.456;
5999   printf("%.3Lf\n", d);
6000 }
6001 EOCP
6002         set try
6003         if eval $compile; then
6004                 yyy=`$run ./try`
6005                 case "$yyy" in
6006                 123.456)
6007                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
6008                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
6009                         echo "We will use %Lf."
6010                         ;;
6011                 esac
6012         fi
6013 fi
6014
6015 if $test X"$sPRIfldbl" = X; then
6016         $cat >try.c <<'EOCP'
6017 #include <sys/types.h>
6018 #include <stdio.h>
6019 int main() {
6020   long double d = 123.456;
6021   printf("%.3llf\n", d);
6022 }
6023 EOCP
6024         set try
6025         if eval $compile; then
6026                 yyy=`$run ./try`
6027                 case "$yyy" in
6028                 123.456)
6029                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
6030                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
6031                         echo "We will use %llf."
6032                         ;;
6033                 esac
6034         fi
6035 fi
6036
6037 if $test X"$sPRIfldbl" = X; then
6038         $cat >try.c <<'EOCP'
6039 #include <sys/types.h>
6040 #include <stdio.h>
6041 int main() {
6042   long double d = 123.456;
6043   printf("%.3lf\n", d);
6044 }
6045 EOCP
6046         set try
6047         if eval $compile; then
6048                 yyy=`$run ./try`
6049                 case "$yyy" in
6050                 123.456)
6051                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
6052                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
6053                         echo "We will use %lf."
6054                         ;;
6055                 esac
6056         fi
6057 fi
6058
6059 if $test X"$sPRIfldbl" = X; then
6060         echo "Cannot figure out how to print long doubles." >&4
6061 else
6062         sSCNfldbl=$sPRIfldbl    # expect consistency
6063 fi
6064
6065 $rm -f try try.*
6066
6067 fi # d_longdbl
6068
6069 case "$sPRIfldbl" in
6070 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
6071         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
6072         d_SCNfldbl="$undef";
6073         ;;
6074 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
6075         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
6076         d_SCNfldbl="$define";
6077         ;;
6078 esac
6079
6080 : see if modfl exists
6081 set modfl d_modfl
6082 eval $inlibc
6083
6084 d_modfl_pow32_bug="$undef"
6085
6086 case "$d_longdbl$d_modfl" in
6087 $define$define)
6088         $cat <<EOM
6089 Checking to see whether your modfl() is okay for large values...
6090 EOM
6091 $cat >try.c <<EOCP
6092 #include <math.h> 
6093 #include <stdio.h>
6094 int main() {
6095     long double nv = 4294967303.15;
6096     long double v, w;
6097     v = modfl(nv, &w);         
6098 #ifdef __GLIBC__
6099     printf("glibc");
6100 #endif
6101     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
6102     return 0;
6103 }
6104 EOCP
6105         case "$osname:$gccversion" in
6106         aix:)   saveccflags="$ccflags"
6107                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
6108         esac
6109         set try
6110         if eval $compile; then
6111                 foo=`$run ./try`
6112                 case "$foo" in
6113                 *" 4294967303.150000 1.150000 4294967302.000000")
6114                         echo >&4 "Your modfl() is broken for large values."
6115                         d_modfl_pow32_bug="$define"
6116                         case "$foo" in
6117                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
6118                         ;;
6119                         esac
6120                         ;;
6121                 *" 4294967303.150000 0.150000 4294967303.000000")
6122                         echo >&4 "Your modfl() seems okay for large values."
6123                         ;;
6124                 *)      echo >&4 "I don't understand your modfl() at all."
6125                         d_modfl="$undef"
6126                         ;;
6127                 esac
6128                 $rm -f try.* try core core.try.*
6129         else
6130                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
6131                 d_modfl="$undef"
6132         fi
6133         case "$osname:$gccversion" in
6134         aix:)   ccflags="$saveccflags" ;; # restore
6135         esac
6136         ;;
6137 esac
6138
6139 case "$ccflags" in
6140 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
6141 esac
6142
6143 case "$uselongdouble" in
6144 $define|true|[yY]*)     dflt='y';;
6145 *) dflt='n';;
6146 esac
6147 cat <<EOM
6148
6149 Perl can be built to take advantage of long doubles which
6150 (if available) may give more accuracy and range for floating point numbers.
6151
6152 If this doesn't make any sense to you, just accept the default '$dflt'.
6153 EOM
6154 rp='Try to use long doubles if available?'
6155 . ./myread
6156 case "$ans" in
6157 y|Y)    val="$define"   ;;
6158 *)      val="$undef"    ;;
6159 esac
6160 set uselongdouble
6161 eval $setvar
6162
6163 case "$uselongdouble" in
6164 true|[yY]*) uselongdouble="$define" ;;
6165 esac
6166
6167 case "$uselongdouble" in
6168 $define)
6169 : Look for a hint-file generated 'call-back-unit'.  If the
6170 : user has specified that long doubles should be used,
6171 : we may need to set or change some other defaults.
6172         if $test -f uselongdouble.cbu; then
6173                 echo "Your platform has some specific hints for long doubles, using them..."
6174                 . ./uselongdouble.cbu
6175         else
6176                 $cat <<EOM
6177 (Your platform doesn't have any specific hints for long doubles.)
6178 EOM
6179         fi
6180         ;;
6181 esac
6182
6183 message=X
6184 case "$uselongdouble:$d_sqrtl:$d_modfl" in
6185 $define:$define:$define)
6186         : You have both
6187         ;;
6188 $define:$define:$undef)
6189         message="I could not find modfl"
6190         ;;
6191 $define:$undef:$define)
6192         message="I could not find sqrtl"
6193         ;;
6194 $define:$undef:$undef)
6195         message="I found neither sqrtl nor modfl"
6196         ;;
6197 esac
6198
6199 if $test "$message" != X; then
6200         $cat <<EOM >&4
6201
6202 *** You requested the use of long doubles but you do not seem to have
6203 *** the mathematic functions for long doubles.
6204 *** ($message)
6205 *** I'm disabling the use of long doubles.
6206
6207 EOM
6208
6209         uselongdouble=$undef
6210 fi
6211
6212 case "$useperlio" in
6213 $define|true|[yY]*|'')  dflt='y';;
6214 *) dflt='n';;
6215 esac
6216 cat <<EOM
6217
6218 Previous version of $package used the standard IO mechanisms as
6219 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
6220 alternate IO mechanisms via the PerlIO abstraction layer, but the
6221 stdio mechanism is still available if needed.  The abstraction layer
6222 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
6223 Using PerlIO with sfio may cause problems with some extension modules.
6224
6225 If this doesn't make any sense to you, just accept the default '$dflt'.
6226 EOM
6227 rp='Use the PerlIO abstraction layer?'
6228 . ./myread
6229 case "$ans" in
6230 y|Y) 
6231         val="$define"
6232         ;;
6233 *)      
6234         echo "Ok, doing things the stdio way."
6235         val="$undef"
6236         ;;
6237 esac
6238 set useperlio
6239 eval $setvar 
6240
6241 case "$usesocks" in
6242 $define|true|[yY]*)
6243         case "$useperlio" in
6244         $define|true|[yY]*) ;;
6245         *)      cat >&4 <<EOM
6246
6247 You are using the SOCKS proxy protocol library which means that you
6248 should also use the PerlIO layer.  You may be headed for trouble.
6249
6250 EOM
6251                 ;;
6252         esac
6253         ;;
6254 esac
6255
6256         
6257 : determine the architecture name
6258 echo " "
6259 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
6260         tarch=`arch`"-$osname"
6261 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
6262         if uname -m > tmparch 2>&1 ; then
6263                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
6264                         -e 's/$/'"-$osname/" tmparch`
6265         else
6266                 tarch="$osname"
6267         fi
6268         $rm -f tmparch
6269 else
6270         tarch="$osname"
6271 fi
6272 case "$myarchname" in
6273 ''|"$tarch") ;;
6274 *)
6275         echo "(Your architecture name used to be $myarchname.)"
6276         archname=''
6277         ;;
6278 esac
6279 case "$targetarch" in
6280 '') ;;
6281 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
6282 esac
6283 myarchname="$tarch"
6284 case "$archname" in
6285 '') dflt="$tarch";;
6286 *) dflt="$archname";;
6287 esac
6288 rp='What is your architecture name'
6289 . ./myread
6290 archname="$ans"
6291 case "$usethreads" in
6292 $define)
6293         echo "Threads selected." >&4
6294         case "$archname" in
6295         *-thread*) echo "...and architecture name already has -thread." >&4
6296                 ;;
6297         *)      archname="$archname-thread"
6298                 echo "...setting architecture name to $archname." >&4
6299                 ;;
6300         esac
6301         ;;
6302 esac
6303 case "$usemultiplicity" in
6304 $define)
6305         echo "Multiplicity selected." >&4
6306         case "$archname" in
6307         *-multi*) echo "...and architecture name already has -multi." >&4
6308                 ;;
6309         *)      archname="$archname-multi"
6310                 echo "...setting architecture name to $archname." >&4
6311                 ;;
6312         esac
6313         ;;
6314 esac
6315 case "$use64bitint$use64bitall" in
6316 *"$define"*)
6317         case "$archname64" in
6318         '')
6319                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
6320                 ;;
6321         *)
6322                 case "$use64bitint" in
6323                 "$define") echo "64 bit integers selected." >&4 ;;
6324                 esac
6325                 case "$use64bitall" in
6326                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
6327                 esac
6328                 case "$archname" in
6329                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
6330                         ;;
6331                 *)      archname="$archname-$archname64"
6332                         echo "...setting architecture name to $archname." >&4
6333                         ;;
6334                 esac
6335                 ;;
6336         esac
6337 esac
6338 case "$uselongdouble" in
6339 $define)
6340         echo "Long doubles selected." >&4
6341         case "$longdblsize" in
6342         $doublesize)
6343                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
6344                 ;;
6345         *)
6346                 case "$archname" in
6347                 *-ld*) echo "...and architecture name already has -ld." >&4
6348                         ;;
6349                 *)      archname="$archname-ld"
6350                         echo "...setting architecture name to $archname." >&4
6351                         ;;
6352                 esac
6353                 ;;
6354         esac
6355         ;;
6356 esac
6357 case "$useperlio" in
6358 $define)
6359         echo "Perlio selected." >&4
6360         ;;
6361 *)
6362         echo "Perlio not selected, using stdio." >&4
6363         case "$archname" in
6364         *-stdio*) echo "...and architecture name already has -stdio." >&4
6365                 ;;
6366         *)      archname="$archname-stdio"
6367                 echo "...setting architecture name to $archname." >&4
6368                 ;;
6369         esac
6370         ;;
6371 esac
6372
6373 : determine root of directory hierarchy where package will be installed.
6374 case "$prefix" in
6375 '')
6376         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
6377         ;;
6378 *)
6379         dflt="$prefix"
6380         ;;
6381 esac
6382 $cat <<EOM
6383
6384 By default, $package will be installed in $dflt/bin, manual pages
6385 under $dflt/man, etc..., i.e. with $dflt as prefix for all
6386 installation directories. Typically this is something like /usr/local.
6387 If you wish to have binaries under /usr/bin but other parts of the
6388 installation under /usr/local, that's ok: you will be prompted
6389 separately for each of the installation directories, the prefix being
6390 only used to set the defaults.
6391
6392 EOM
6393 fn=d~
6394 rp='Installation prefix to use?'
6395 . ./getfile
6396 oldprefix=''
6397 case "$prefix" in
6398 '') ;;
6399 *)
6400         case "$ans" in
6401         "$prefix") ;;
6402         *) oldprefix="$prefix";;
6403         esac
6404         ;;
6405 esac
6406 prefix="$ans"
6407 prefixexp="$ansexp"
6408
6409 case "$afsroot" in
6410 '')     afsroot=/afs ;;
6411 *)      afsroot=$afsroot ;;
6412 esac
6413
6414 : is AFS running?
6415 echo " "
6416 case "$afs" in
6417 $define|true)   afs=true ;;
6418 $undef|false)   afs=false ;;
6419 *)      if test -d $afsroot; then
6420                 afs=true
6421         else
6422                 afs=false
6423         fi
6424         ;;
6425 esac
6426 if $afs; then
6427         echo "AFS may be running... I'll be extra cautious then..." >&4
6428 else
6429         echo "AFS does not seem to be running..." >&4
6430 fi
6431
6432 : determine installation prefix for where package is to be installed.
6433 if $afs; then 
6434 $cat <<EOM
6435
6436 Since you are running AFS, I need to distinguish the directory in which
6437 files will reside from the directory in which they are installed (and from
6438 which they are presumably copied to the former directory by occult means).
6439
6440 EOM
6441         case "$installprefix" in
6442         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
6443         *) dflt="$installprefix";;
6444         esac
6445 else
6446 $cat <<EOM
6447
6448 In some special cases, particularly when building $package for distribution,
6449 it is convenient to distinguish between the directory in which files should 
6450 be installed from the directory ($prefix) in which they 
6451 will eventually reside.  For most users, these two directories are the same.
6452
6453 EOM
6454         case "$installprefix" in
6455         '') dflt=$prefix ;;
6456         *) dflt=$installprefix;;
6457         esac
6458 fi
6459 fn=d~
6460 rp='What installation prefix should I use for installing files?'
6461 . ./getfile
6462 installprefix="$ans"
6463 installprefixexp="$ansexp"
6464
6465 : set the prefixit variable, to compute a suitable default value
6466 prefixit='case "$3" in
6467 ""|none)
6468         case "$oldprefix" in
6469         "") eval "$1=\"\$$2\"";;
6470         *)
6471                 case "$3" in
6472                 "") eval "$1=";;
6473                 none)
6474                         eval "tp=\"\$$2\"";
6475                         case "$tp" in
6476                         ""|" ") eval "$1=\"\$$2\"";;
6477                         *) eval "$1=";;
6478                         esac;;
6479                 esac;;
6480         esac;;
6481 *)
6482         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
6483         case "$tp" in
6484         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
6485         /*-$oldprefix/*|\~*-$oldprefix/*)
6486                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
6487         *) eval "$1=\"\$$2\"";;
6488         esac;;
6489 esac'
6490
6491 : get the patchlevel
6492 echo " "
6493 echo "Getting the current patchlevel..." >&4
6494 if $test -r $rsrc/patchlevel.h;then
6495         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
6496         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
6497         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
6498         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
6499         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
6500         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
6501        perl_patchlevel=`grep ',"DEVEL[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
6502 else
6503         revision=0
6504         patchlevel=0
6505         subversion=0
6506         api_revision=0
6507         api_version=0
6508         api_subversion=0
6509         perl_patchlevel=0
6510         $echo "(You do not have patchlevel.h.  Eek.)"
6511 fi
6512 if $test -r $rsrc/.patch ; then  
6513         if $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
6514                 perl_patchlevel=`cat $rsrc/.patch`
6515         fi
6516 fi
6517 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
6518 version_patchlevel_string="version $patchlevel subversion $subversion"
6519 case "$perl_patchlevel" in
6520 0|'') ;;
6521 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
6522 esac
6523
6524 $echo "(You have $package $version_patchlevel_string.)"
6525
6526 case "$osname" in
6527 dos|vms)
6528         : XXX Should be a Configure test for double-dots in filenames.
6529         version=`echo $revision $patchlevel $subversion | \
6530                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
6531         api_versionstring=`echo $api_revision $api_version $api_subversion | \
6532                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
6533         ;;
6534 *)
6535         version=`echo $revision $patchlevel $subversion | \
6536                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
6537         api_versionstring=`echo $api_revision $api_version $api_subversion | \
6538                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
6539         ;;
6540 esac
6541 : Special case the 5.005_xx maintenance series, which used 5.005
6542 : without any subversion label as a subdirectory in $sitelib
6543 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
6544         api_versionstring='5.005'
6545 fi
6546
6547 : determine installation style
6548 : For now, try to deduce it from prefix unless it is already set.
6549 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
6550 case "$installstyle" in
6551 '')     case "$prefix" in
6552                 *perl*) dflt='lib';;
6553                 *) dflt='lib/perl5' ;;
6554         esac
6555         ;;
6556 *)      dflt="$installstyle" ;;
6557 esac
6558 : Probably not worth prompting for this since we prompt for all
6559 : the directories individually, and the prompt would be too long and
6560 : confusing anyway.
6561 installstyle=$dflt
6562
6563 : determine where private library files go
6564 : Usual default is /usr/local/lib/perl5/$version.
6565 : Also allow things like /opt/perl/lib/$version, since 
6566 : /opt/perl/lib/perl5... would be redundant.
6567 : The default "style" setting is made in installstyle.U
6568 case "$installstyle" in
6569 *lib/perl5*) set dflt privlib lib/$package/$version ;;
6570 *)       set dflt privlib lib/$version ;;
6571 esac
6572 eval $prefixit
6573 $cat <<EOM
6574
6575 There are some auxiliary files for $package that need to be put into a
6576 private library directory that is accessible by everyone.
6577
6578 EOM
6579 fn=d~+
6580 rp='Pathname where the private library files will reside?'
6581 . ./getfile
6582 privlib="$ans"
6583 privlibexp="$ansexp"
6584 : Change installation prefix, if necessary.
6585 if $test X"$prefix" != X"$installprefix"; then
6586         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
6587 else
6588         installprivlib="$privlibexp"
6589 fi
6590
6591 : set the prefixup variable, to restore leading tilda escape
6592 prefixup='case "$prefixexp" in
6593 "$prefix") ;;
6594 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
6595 esac'
6596
6597 : determine where public architecture dependent libraries go
6598 set archlib archlib
6599 eval $prefixit
6600 : privlib default is /usr/local/lib/$package/$version
6601 : archlib default is /usr/local/lib/$package/$version/$archname
6602 : privlib may have an optional trailing /share.
6603 tdflt=`echo $privlib | $sed 's,/share$,,'`
6604 tdflt=$tdflt/$archname
6605 case "$archlib" in
6606 '')     dflt=$tdflt
6607         ;;
6608 *)      dflt="$archlib"
6609     ;;
6610 esac
6611 $cat <<EOM
6612
6613 $spackage contains architecture-dependent library files.  If you are
6614 sharing libraries in a heterogeneous environment, you might store
6615 these files in a separate location.  Otherwise, you can just include
6616 them with the rest of the public library files.
6617
6618 EOM
6619 fn=d+~
6620 rp='Where do you want to put the public architecture-dependent libraries?'
6621 . ./getfile
6622 archlib="$ans"
6623 archlibexp="$ansexp"
6624 if $test X"$archlib" = X"$privlib"; then
6625         d_archlib="$undef"
6626 else
6627         d_archlib="$define"
6628 fi
6629 : Change installation prefix, if necessary.
6630 if $test X"$prefix" != X"$installprefix"; then
6631         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
6632 else
6633         installarchlib="$archlibexp"
6634 fi
6635
6636
6637 : Binary compatibility with 5.005 is not possible for builds
6638 : with advanced features
6639 case "$usethreads$usemultiplicity" in
6640 *define*)
6641         bincompat5005="$undef"
6642         d_bincompat5005="$undef"
6643         ;;
6644 *)      $cat <<EOM
6645
6646 This version of Perl can be compiled for binary compatibility with 5.005.
6647 If you decide to do so, you will be able to continue using most of the
6648 extensions that were compiled for Perl 5.005.
6649
6650 EOM
6651         case "$bincompat5005$d_bincompat5005" in
6652         *"$undef"*) dflt=n ;;
6653         *) dflt=y ;;
6654         esac
6655         rp='Binary compatibility with Perl 5.005?'
6656         . ./myread
6657         case "$ans" in
6658         y*) val="$define" ;;
6659         *)  val="$undef" ;;
6660         esac
6661         set d_bincompat5005
6662         eval $setvar
6663         case "$d_bincompat5005" in
6664         "$define")
6665                 bincompat5005="$define"
6666                 ;;
6667         *)      bincompat5005="$undef"
6668                 d_bincompat5005="$undef"
6669                 ;;
6670         esac
6671         ;;
6672 esac
6673
6674
6675 : see if setuid scripts can be secure
6676 $cat <<EOM
6677
6678 Some kernels have a bug that prevents setuid #! scripts from being
6679 secure.  Some sites have disabled setuid #! scripts because of this.
6680
6681 First let's decide if your kernel supports secure setuid #! scripts.
6682 (If setuid #! scripts would be secure but have been disabled anyway,
6683 don't say that they are secure if asked.)
6684
6685 EOM
6686
6687 val="$undef"
6688 if $test -d /dev/fd; then
6689         echo "#!$ls" >reflect
6690         chmod +x,u+s reflect
6691         ./reflect >flect 2>&1
6692         if $contains "/dev/fd" flect >/dev/null; then
6693                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
6694                 val="$define"
6695         else
6696                 $cat <<EOM
6697 If you are not sure if they are secure, I can check but I'll need a
6698 username and password different from the one you are using right now.
6699 If you don't have such a username or don't want me to test, simply
6700 enter 'none'.
6701
6702 EOM
6703                 rp='Other username to test security of setuid scripts with?'
6704                 dflt='none'
6705                 . ./myread
6706                 case "$ans" in
6707                 n|none)
6708                         case "$d_suidsafe" in
6709                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
6710                                 dflt=n;;
6711                         "$undef")
6712                                 echo "Well, the $hint value is *not* secure." >&4
6713                                 dflt=n;;
6714                         *)      echo "Well, the $hint value *is* secure." >&4
6715                                 dflt=y;;
6716                         esac
6717                         ;;
6718                 *)
6719                         $rm -f reflect flect
6720                         echo "#!$ls" >reflect
6721                         chmod +x,u+s reflect
6722                         echo >flect
6723                         chmod a+w flect
6724                         echo '"su" will (probably) prompt you for '"$ans's password."
6725                         su $ans -c './reflect >flect'
6726                         if $contains "/dev/fd" flect >/dev/null; then
6727                                 echo "Okay, it looks like setuid scripts are secure." >&4
6728                                 dflt=y
6729                         else
6730                                 echo "I don't think setuid scripts are secure." >&4
6731                                 dflt=n
6732                         fi
6733                         ;;
6734                 esac
6735                 rp='Does your kernel have *secure* setuid scripts?'
6736                 . ./myread
6737                 case "$ans" in
6738                 [yY]*)  val="$define";;
6739                 *)      val="$undef";;
6740                 esac
6741         fi
6742 else
6743         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6744         echo "(That's for file descriptors, not floppy disks.)"
6745         val="$undef"
6746 fi
6747 set d_suidsafe
6748 eval $setvar
6749
6750 $rm -f reflect flect
6751
6752 : now see if they want to do setuid emulation
6753 echo " "
6754 val="$undef"
6755 case "$d_suidsafe" in
6756 "$define")
6757         val="$undef"
6758         echo "No need to emulate SUID scripts since they are secure here." >&4
6759         ;;
6760 *)
6761         $cat <<EOM
6762 Some systems have disabled setuid scripts, especially systems where
6763 setuid scripts cannot be secure.  On systems where setuid scripts have
6764 been disabled, the setuid/setgid bits on scripts are currently
6765 useless.  It is possible for $package to detect those bits and emulate
6766 setuid/setgid in a secure fashion.  This emulation will only work if
6767 setuid scripts have been disabled in your kernel.
6768
6769 EOM
6770         case "$d_dosuid" in
6771         "$define") dflt=y ;;
6772         *) dflt=n ;;
6773         esac
6774         rp="Do you want to do setuid/setgid emulation?"
6775         . ./myread
6776         case "$ans" in
6777         [yY]*)  val="$define";;
6778         *)      val="$undef";;
6779         esac
6780         ;;
6781 esac
6782 set d_dosuid
6783 eval $setvar
6784
6785 : see if this is a malloc.h system
6786 set malloc.h i_malloc
6787 eval $inhdr
6788
6789 : see if stdlib is available
6790 set stdlib.h i_stdlib
6791 eval $inhdr
6792
6793 : determine which malloc to compile in
6794 echo " "
6795 case "$usemymalloc" in
6796 [yY]*|true|$define)     dflt='y' ;;
6797 [nN]*|false|$undef)     dflt='n' ;;
6798 *)      case "$ptrsize" in
6799         4) dflt='y' ;;
6800         *) dflt='n' ;;
6801         esac
6802         ;;
6803 esac
6804 rp="Do you wish to attempt to use the malloc that comes with $package?"
6805 . ./myread
6806 usemymalloc="$ans"
6807 case "$ans" in
6808 y*|true)
6809         usemymalloc='y'
6810         mallocsrc='malloc.c'
6811         mallocobj="malloc$_o"
6812         d_mymalloc="$define"
6813         case "$libs" in
6814         *-lmalloc*)
6815                 : Remove malloc from list of libraries to use
6816                 echo "Removing unneeded -lmalloc from library list" >&4
6817                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6818                 shift
6819                 libs="$*"
6820                 echo "libs = $libs" >&4
6821                 ;;
6822         esac
6823         ;;
6824 *)
6825         usemymalloc='n'
6826         mallocsrc=''
6827         mallocobj=''
6828         d_mymalloc="$undef"
6829         ;;
6830 esac
6831
6832 : compute the return types of malloc and free
6833 echo " "
6834 $cat >malloc.c <<END
6835 #$i_malloc I_MALLOC
6836 #$i_stdlib I_STDLIB
6837 #include <stdio.h>
6838 #include <sys/types.h>
6839 #ifdef I_MALLOC
6840 #include <malloc.h>
6841 #endif
6842 #ifdef I_STDLIB
6843 #include <stdlib.h>
6844 #endif
6845 #ifdef TRY_MALLOC
6846 void *malloc();
6847 #endif
6848 #ifdef TRY_FREE
6849 void free();
6850 #endif
6851 END
6852 case "$malloctype" in
6853 '')
6854         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6855                 malloctype='void *'
6856         else
6857                 malloctype='char *'
6858         fi
6859         ;;
6860 esac
6861 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6862
6863 case "$freetype" in
6864 '')
6865         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6866                 freetype='void'
6867         else
6868                 freetype='int'
6869         fi
6870         ;;
6871 esac
6872 echo "Your system uses $freetype free(), it would seem." >&4
6873 $rm -f malloc.[co]
6874 $cat <<EOM
6875
6876 After $package is installed, you may wish to install various
6877 add-on modules and utilities.  Typically, these add-ons will
6878 be installed under $prefix with the rest
6879 of this package.  However, you may wish to install such add-ons
6880 elsewhere under a different prefix.
6881
6882 If you do not wish to put everything under a single prefix, that's
6883 ok.  You will be prompted for the individual locations; this siteprefix
6884 is only used to suggest the defaults.
6885
6886 The default should be fine for most people.
6887
6888 EOM
6889 fn=d~+
6890 rp='Installation prefix to use for add-on modules and utilities?'
6891 : XXX Here might be another good place for an installstyle setting.
6892 case "$siteprefix" in
6893 '') dflt=$prefix ;;
6894 *)  dflt=$siteprefix ;;
6895 esac
6896 . ./getfile
6897 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6898 oldsiteprefix=''
6899 case "$siteprefix" in
6900 '') ;;
6901 *)      case "$ans" in
6902         "$prefix") ;;
6903         *) oldsiteprefix="$prefix";;
6904         esac
6905         ;;
6906 esac
6907 siteprefix="$ans"
6908 siteprefixexp="$ansexp"
6909
6910 : determine where site specific libraries go.
6911 : Usual default is /usr/local/lib/perl5/site_perl/$version
6912 : The default "style" setting is made in installstyle.U
6913 : XXX No longer works with Prefixit stuff.
6914 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6915 case "$sitelib" in
6916 '') case "$installstyle" in
6917         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6918         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6919         esac
6920         ;;
6921 *)      dflt="$sitelib"
6922         ;;
6923 esac
6924 $cat <<EOM
6925
6926 The installation process will create a directory for
6927 site-specific extensions and modules.  Most users find it convenient
6928 to place all site-specific files in this directory rather than in the
6929 main distribution directory.
6930
6931 EOM
6932 fn=d~+
6933 rp='Pathname for the site-specific library files?'
6934 . ./getfile
6935 sitelib="$ans"
6936 sitelibexp="$ansexp"
6937 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6938 : Change installation prefix, if necessary.
6939 if $test X"$prefix" != X"$installprefix"; then
6940         installsitelib=`echo $sitelibexp | $sed "s#^$prefix#$installprefix#"`
6941 else
6942         installsitelib="$sitelibexp"
6943 fi
6944
6945 : determine where site specific architecture-dependent libraries go.
6946 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6947 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6948 : sitelib may have an optional trailing /share.
6949 case "$sitearch" in
6950 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6951         dflt="$dflt/$archname"
6952         ;;
6953 *)      dflt="$sitearch"
6954         ;;
6955 esac
6956 set sitearch sitearch none
6957 eval $prefixit
6958 $cat <<EOM
6959
6960 The installation process will also create a directory for
6961 architecture-dependent site-specific extensions and modules.
6962
6963 EOM
6964 fn=d~+
6965 rp='Pathname for the site-specific architecture-dependent library files?'
6966 . ./getfile
6967 sitearch="$ans"
6968 sitearchexp="$ansexp"
6969 : Change installation prefix, if necessary.
6970 if $test X"$prefix" != X"$installprefix"; then
6971         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
6972 else
6973         installsitearch="$sitearchexp"
6974 fi
6975
6976 $cat <<EOM
6977
6978 The installation process will also create a directory for
6979 vendor-supplied add-ons.  Vendors who supply perl with their system
6980 may find it convenient to place all vendor-supplied files in this
6981 directory rather than in the main distribution directory.  This will
6982 ease upgrades between binary-compatible maintenance versions of perl.
6983
6984 Of course you may also use these directories in whatever way you see
6985 fit.  For example, you might use them to access modules shared over a
6986 company-wide network.
6987
6988 The default answer should be fine for most people.
6989 This causes further questions about vendor add-ons to be skipped
6990 and no vendor-specific directories will be configured for perl.
6991
6992 EOM
6993 rp='Do you want to configure vendor-specific add-on directories?'
6994 case "$usevendorprefix" in
6995 define|true|[yY]*) dflt=y ;;
6996 *)      : User may have set vendorprefix directly on Configure command line.
6997         case "$vendorprefix" in
6998         ''|' ') dflt=n ;;
6999         *)      dflt=y ;;
7000         esac
7001         ;;
7002 esac
7003 . ./myread
7004 case "$ans" in
7005 [yY]*)  fn=d~+
7006         rp='Installation prefix to use for vendor-supplied add-ons?'
7007         case "$vendorprefix" in
7008         '') dflt='' ;;
7009         *)  dflt=$vendorprefix ;;
7010         esac
7011         . ./getfile
7012         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
7013         oldvendorprefix=''
7014         case "$vendorprefix" in
7015         '') ;;
7016         *)      case "$ans" in
7017                 "$prefix") ;;
7018                 *) oldvendorprefix="$prefix";;
7019                 esac
7020                 ;;
7021         esac
7022         usevendorprefix="$define"
7023         vendorprefix="$ans"
7024         vendorprefixexp="$ansexp"
7025         ;;
7026 *)      usevendorprefix="$undef"
7027         vendorprefix=''
7028         vendorprefixexp=''
7029         ;;
7030 esac
7031
7032 case "$vendorprefix" in
7033 '')     d_vendorlib="$undef"
7034         vendorlib=''
7035         vendorlibexp=''
7036         ;;
7037 *)      d_vendorlib="$define"
7038         : determine where vendor-supplied modules go.
7039         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
7040         case "$vendorlib" in
7041         '')
7042                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
7043                 case "$installstyle" in
7044                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
7045                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
7046                 esac
7047                 ;;
7048         *)      dflt="$vendorlib"
7049                 ;;
7050         esac
7051         fn=d~+
7052         rp='Pathname for the vendor-supplied library files?'
7053         . ./getfile
7054         vendorlib="$ans"
7055         vendorlibexp="$ansexp"
7056         ;;
7057 esac
7058 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
7059 : Change installation prefix, if necessary.
7060 if $test X"$prefix" != X"$installprefix"; then
7061         installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
7062 else
7063         installvendorlib="$vendorlibexp"
7064 fi
7065
7066 case "$vendorprefix" in
7067 '')     d_vendorarch="$undef"
7068         vendorarch=''
7069         vendorarchexp=''
7070         ;;
7071 *)      d_vendorarch="$define"
7072         : determine where vendor-supplied architecture-dependent libraries go.
7073         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
7074         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
7075         : vendorlib may have an optional trailing /share.
7076         case "$vendorarch" in
7077         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
7078                 dflt="$dflt/$archname"
7079                 ;;
7080         *)      dflt="$vendorarch" ;;
7081         esac
7082         fn=d~+
7083         rp='Pathname for vendor-supplied architecture-dependent files?'
7084         . ./getfile
7085         vendorarch="$ans"
7086         vendorarchexp="$ansexp"
7087         ;;
7088 esac
7089 : Change installation prefix, if necessary.
7090 if $test X"$prefix" != X"$installprefix"; then
7091         installvendorarch=`echo $vendorarchexp | sed "s#^$prefix#$installprefix#"`
7092 else
7093         installvendorarch="$vendorarchexp"
7094 fi
7095
7096 : Final catch-all directories to search
7097 $cat <<EOM
7098
7099 Lastly, you can have perl look in other directories for extensions and
7100 modules in addition to those already specified.
7101 These directories will be searched after 
7102         $sitearch 
7103         $sitelib 
7104 EOM
7105 test X"$vendorlib" != "X" && echo '     ' $vendorlib
7106 test X"$vendorarch" != "X" && echo '    ' $vendorarch
7107 echo ' '
7108 case "$otherlibdirs" in
7109 ''|' ') dflt='none' ;;
7110 *)      dflt="$otherlibdirs" ;;
7111 esac
7112 $cat <<EOM
7113 Enter a colon-separated set of extra paths to include in perl's @INC
7114 search path, or enter 'none' for no extra paths.
7115
7116 EOM
7117
7118 rp='Colon-separated list of additional directories for perl to search?'
7119 . ./myread
7120 case "$ans" in
7121 ' '|''|none)    otherlibdirs=' ' ;;     
7122 *)      otherlibdirs="$ans" ;;
7123 esac
7124 case "$otherlibdirs" in
7125 ' ') val=$undef ;;
7126 *)      val=$define ;;
7127 esac
7128 set d_perl_otherlibdirs
7129 eval $setvar
7130
7131 : Cruising for prototypes
7132 echo " "
7133 echo "Checking out function prototypes..." >&4
7134 $cat >prototype.c <<'EOCP'
7135 int main(int argc, char *argv[]) {
7136         exit(0);}
7137 EOCP
7138 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
7139         echo "Your C compiler appears to support function prototypes."
7140         val="$define"
7141 else
7142         echo "Your C compiler doesn't seem to understand function prototypes."
7143         val="$undef"
7144 fi
7145 set prototype
7146 eval $setvar
7147 $rm -f prototype*
7148
7149 case "$prototype" in
7150 "$define") ;;
7151 *)      ansi2knr='ansi2knr'
7152         echo " "
7153         cat <<EOM >&4
7154
7155 $me:  FATAL ERROR:
7156 This version of $package can only be compiled by a compiler that 
7157 understands function prototypes.  Unfortunately, your C compiler 
7158         $cc $ccflags
7159 doesn't seem to understand them.  Sorry about that.
7160
7161 If GNU cc is available for your system, perhaps you could try that instead.  
7162
7163 Eventually, we hope to support building Perl with pre-ANSI compilers.
7164 If you would like to help in that effort, please contact <perlbug@perl.org>.
7165
7166 Aborting Configure now.
7167 EOM
7168         exit 2
7169         ;;
7170 esac
7171
7172 : determine where public executables go
7173 echo " "
7174 set dflt bin bin
7175 eval $prefixit
7176 fn=d~
7177 rp='Pathname where the public executables will reside?'
7178 . ./getfile
7179 if $test "X$ansexp" != "X$binexp"; then
7180         installbin=''
7181 fi
7182 bin="$ans"
7183 binexp="$ansexp"
7184 : Change installation prefix, if necessary.
7185 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
7186 if $test X"$prefix" != X"$installprefix"; then
7187         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
7188 else
7189         installbin="$binexp"
7190 fi
7191
7192 echo " "
7193 case "$extras" in
7194 '') dflt='n';;
7195 *) dflt='y';;
7196 esac
7197 cat <<EOM
7198 Perl can be built with extra modules or bundles of modules which
7199 will be fetched from the CPAN and installed alongside Perl.
7200
7201 Notice that you will need access to the CPAN; either via the Internet,
7202 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
7203 be asked later to configure the CPAN.pm module which will in turn do
7204 the installation of the rest of the extra modules or bundles.)
7205
7206 Notice also that if the modules require any external software such as
7207 libraries and headers (the libz library and the zlib.h header for the
7208 Compress::Zlib module, for example) you MUST have any such software
7209 already installed, this configuration process will NOT install such
7210 things for you.
7211
7212 If this doesn't make any sense to you, just accept the default '$dflt'.
7213 EOM
7214 rp='Install any extra modules (y or n)?'
7215 . ./myread
7216 case "$ans" in
7217 y|Y)
7218         cat <<EOM
7219
7220 Please list any extra modules or bundles to be installed from CPAN,
7221 with spaces between the names.  The names can be in any format the
7222 'install' command of CPAN.pm will understand.  (Answer 'none',
7223 without the quotes, to install no extra modules or bundles.)
7224 EOM
7225         rp='Extras?'
7226         dflt="$extras"
7227         . ./myread
7228         extras="$ans"
7229 esac
7230 case "$extras" in
7231 ''|'none')
7232         val=''
7233         $rm -f ../extras.lst
7234         ;;
7235 *)      echo "(Saving the list of extras for later...)"
7236         echo "$extras" > ../extras.lst
7237         val="'$extras'"
7238         ;;
7239 esac
7240 set extras
7241 eval $setvar
7242 echo " "
7243
7244 : Find perl5.005 or later.
7245 echo "Looking for a previously installed perl5.005 or later... "
7246 case "$perl5" in
7247 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
7248                 : Check if this perl is recent and can load a simple module
7249                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
7250                         perl5=$tdir/perl
7251                         break;
7252                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
7253                         perl5=$tdir/perl5
7254                         break;
7255                 fi
7256         done
7257         ;;
7258 *)      perl5="$perl5"
7259         ;;
7260 esac
7261 case "$perl5" in
7262 '')     echo "None found.  That's ok.";;
7263 *)      echo "Using $perl5." ;;
7264 esac
7265
7266 : Determine list of previous versions to include in @INC
7267 $cat > getverlist <<EOPL
7268 #!$perl5 -w
7269 use File::Basename;
7270 \$api_versionstring = "$api_versionstring";
7271 \$version = "$version";
7272 \$stem = "$sitelib_stem";
7273 \$archname = "$archname";
7274 EOPL
7275         $cat >> getverlist <<'EOPL'
7276 # Can't have leading @ because metaconfig interprets it as a command!
7277 ;@inc_version_list=();
7278 # XXX Redo to do opendir/readdir? 
7279 if (-d $stem) {
7280     chdir($stem);
7281     ;@candidates = glob("5.*");
7282 }
7283 else {
7284     ;@candidates = ();
7285 }
7286
7287 # XXX ToDo:  These comparisons must be reworked when two-digit
7288 # subversions come along, so that 5.7.10 compares as greater than
7289 # 5.7.3!  By that time, hope that 5.6.x is sufficiently
7290 # widespread that we can use the built-in version vectors rather
7291 # than reinventing them here.  For 5.6.0, however, we must
7292 # assume this script will likely be run by 5.005_0x.  --AD 1/2000.
7293 foreach $d (@candidates) {
7294     if ($d lt $version) {
7295         if ($d ge $api_versionstring) {
7296             unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
7297         }
7298         elsif ($d ge "5.005") {
7299             unshift(@inc_version_list, grep { -d } $d);
7300         }
7301     }
7302     else {
7303         # Skip newer version.  I.e. don't look in
7304         # 5.7.0 if we're installing 5.6.1.
7305     }
7306 }
7307
7308 if (@inc_version_list) {
7309     print join(' ', @inc_version_list);
7310 }
7311 else {
7312     # Blank space to preserve value for next Configure run.
7313     print " ";
7314 }
7315 EOPL
7316 chmod +x getverlist
7317 case "$inc_version_list" in
7318 '')     if test -x "$perl5$exe_ext"; then
7319                 dflt=`$perl5 getverlist`
7320         else
7321                 dflt='none'
7322         fi
7323         ;;
7324 $undef) dflt='none' ;;
7325 *)  eval dflt=\"$inc_version_list\" ;;
7326 esac
7327 case "$dflt" in
7328 ''|' ') dflt=none ;;
7329 esac
7330 case "$dflt" in
7331 5.005) case "$bincompat5005" in
7332        $define|true|[yY]*) ;;
7333        *) dflt=none ;;
7334        esac
7335        ;;
7336 esac
7337 $cat <<'EOM'
7338
7339 In order to ease the process of upgrading, this version of perl 
7340 can be configured to use modules built and installed with earlier 
7341 versions of perl that were installed under $prefix.  Specify here
7342 the list of earlier versions that this version of perl should check.
7343 If Configure detected no earlier versions of perl installed under
7344 $prefix, then the list will be empty.  Answer 'none' to tell perl
7345 to not search earlier versions.
7346
7347 The default should almost always be sensible, so if you're not sure,
7348 just accept the default.
7349 EOM
7350
7351 rp='List of earlier versions to include in @INC?'
7352 . ./myread
7353 case "$ans" in
7354 [Nn]one|''|' ') inc_version_list=' ' ;;
7355 *) inc_version_list="$ans" ;;
7356 esac
7357 case "$inc_version_list" in
7358 ''|' ') 
7359         inc_version_list_init='0';;
7360 *)      inc_version_list_init=`echo $inc_version_list |
7361                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
7362         ;;
7363 esac
7364 $rm -f getverlist
7365
7366 : determine whether to install perl also as /usr/bin/perl
7367
7368 echo " "
7369 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
7370         $cat <<EOM
7371 Many scripts expect perl to be installed as /usr/bin/perl.
7372 I can install the perl you are about to compile also as /usr/bin/perl
7373 (in addition to $installbin/perl).
7374 EOM
7375         case "$installusrbinperl" in
7376         "$undef"|[nN]*) dflt='n';;
7377         *)              dflt='y';;
7378         esac
7379         rp="Do you want to install perl as /usr/bin/perl?"
7380         . ./myread
7381         case "$ans" in
7382         [yY]*)  val="$define";;
7383         *)      val="$undef" ;;
7384         esac
7385 else
7386         val="$undef"
7387 fi
7388 set installusrbinperl
7389 eval $setvar
7390
7391 : see if dld is available
7392 set dld.h i_dld
7393 eval $inhdr
7394
7395 : see if dlopen exists
7396 xxx_runnm="$runnm"
7397 runnm=false
7398 set dlopen d_dlopen
7399 eval $inlibc
7400 runnm="$xxx_runnm"
7401
7402 : determine which dynamic loading, if any, to compile in
7403 echo " "
7404 dldir="ext/DynaLoader"
7405 case "$usedl" in
7406 $define|y|true)
7407         dflt='y'
7408         usedl="$define"
7409         ;;
7410 $undef|n|false)
7411         dflt='n'
7412         usedl="$undef"
7413         ;;
7414 *) 
7415         dflt='n'
7416         case "$d_dlopen" in
7417             $define) dflt='y' ;;
7418         esac
7419         case "$i_dld" in
7420             $define) dflt='y' ;;
7421         esac
7422         : Does a dl_xxx.xs file exist for this operating system
7423         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7424         ;;
7425 esac
7426 rp="Do you wish to use dynamic loading?"
7427 . ./myread
7428 usedl="$ans"
7429 case "$ans" in
7430 y*) usedl="$define"
7431         case "$dlsrc" in
7432         '')
7433                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7434                         dflt="$dldir/dl_${osname}.xs"
7435                 elif $test "$d_dlopen" = "$define" ; then
7436                         dflt="$dldir/dl_dlopen.xs"
7437                 elif $test "$i_dld" = "$define" ; then
7438                         dflt="$dldir/dl_dld.xs"
7439                 else
7440                         dflt=''
7441                 fi
7442                 ;;
7443         *)      dflt="$dldir/$dlsrc"
7444                 ;;
7445         esac
7446     echo "The following dynamic loading files are available:"
7447         : Can not go over to $dldir because getfile has path hard-coded in.
7448         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7449         rp="Source file to use for dynamic loading"
7450         fn="fne"
7451         gfpth="$src"
7452         . ./getfile
7453         usedl="$define"
7454         : emulate basename
7455         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7456
7457         $cat << EOM
7458
7459 Some systems may require passing special flags to $cc -c to
7460 compile modules that will be used to create a shared library.
7461 To use no flags, say "none".
7462
7463 EOM
7464     case "$cccdlflags" in
7465     '') case "$gccversion" in
7466                 '') case "$osname" in
7467                         hpux)   dflt='+z' ;;
7468                         next)   dflt='none' ;;
7469                         irix*)  dflt='-KPIC' ;;
7470                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7471                         sunos)  dflt='-pic' ;;
7472                         *)      dflt='none' ;;
7473                     esac
7474                         ;;
7475                 *)  case "$osname" in
7476                         darwin) dflt='none' ;;
7477                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7478                         *)      dflt='-fpic' ;;
7479                     esac ;;
7480             esac ;;
7481         ' ') dflt='none' ;;
7482     *)  dflt="$cccdlflags" ;;
7483     esac
7484     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7485     . ./myread
7486     case "$ans" in
7487     none) cccdlflags=' ' ;;
7488     *) cccdlflags="$ans" ;;
7489     esac
7490
7491     cat << EOM
7492
7493 Some systems use ld to create libraries that can be dynamically loaded,
7494 while other systems (such as those using ELF) use $cc.
7495
7496 EOM
7497         case "$ld" in
7498         '')     $cat >try.c <<'EOM'
7499 /* Test for whether ELF binaries are produced */
7500 #include <fcntl.h>
7501 #include <stdlib.h>
7502 int main() {
7503         char b[4];
7504         int i = open("a.out",O_RDONLY);
7505         if(i == -1) 
7506                 exit(1); /* fail */
7507         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7508                 exit(0); /* succeed (yes, it's ELF) */
7509         else
7510                 exit(1); /* fail */
7511 }
7512 EOM
7513                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7514                         cat <<EOM
7515 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7516 EOM
7517                         dflt="$cc"
7518                 else
7519                         echo "I'll use ld to build dynamic libraries."
7520                         dflt='ld'
7521                 fi
7522                 rm -f try.c a.out
7523                 ;;
7524         *)      dflt="$ld"
7525                 ;;
7526         esac
7527
7528     rp="What command should be used to create dynamic libraries?"
7529     . ./myread
7530         ld="$ans"
7531
7532     cat << EOM
7533
7534 Some systems may require passing special flags to $ld to create a
7535 library that can be dynamically loaded.  If your ld flags include
7536 -L/other/path options to locate libraries outside your loader's normal
7537 search path, you may need to specify those -L options here as well.  To
7538 use no flags, say "none".
7539
7540 EOM
7541     case "$lddlflags" in
7542     '') case "$osname" in
7543                         beos) dflt='-nostart' ;;
7544                         hpux) dflt='-b';
7545                               case "$gccversion" in
7546                               '') dflt="$dflt +vnocompatwarnings" ;;
7547                               esac
7548                               ;;        
7549                         linux|irix*)    dflt='-shared' ;;
7550                         next)  dflt='none' ;;
7551                         solaris) dflt='-G' ;;
7552                         sunos) dflt='-assert nodefinitions' ;;
7553                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7554                 *)     dflt='none' ;;
7555                         esac
7556                         ;;
7557     *) dflt="$lddlflags" ;;
7558     esac
7559
7560         : Try to guess additional flags to pick up local libraries.
7561         : Be careful not to append to a plain 'none'
7562         case "$dflt" in
7563         none) dflt='' ;;
7564         esac
7565         for thisflag in $ldflags; do
7566                 case "$thisflag" in
7567                 -L*|-R*|-Wl,-R*)
7568                         case " $dflt " in
7569                         *" $thisflag "*) ;;
7570                         *) dflt="$dflt $thisflag" ;;
7571                         esac
7572                         ;;
7573                 esac
7574         done
7575
7576         case "$dflt" in
7577         ''|' ') dflt='none' ;;
7578         esac
7579
7580     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7581     . ./myread
7582     case "$ans" in
7583     none) lddlflags=' ' ;;
7584     *) lddlflags="$ans" ;;
7585     esac
7586
7587         cat <<EOM
7588
7589 Some systems may require passing special flags to $cc to indicate that
7590 the resulting executable will use dynamic linking.  To use no flags,
7591 say "none".
7592
7593 EOM
7594     case "$ccdlflags" in
7595     '') case "$osname" in
7596                 hpux)   dflt='-Wl,-E' ;;
7597                 linux)  dflt='-rdynamic' ;;
7598                 next)   dflt='none' ;;
7599                 sunos)  dflt='none' ;;
7600                 *)      dflt='none' ;;
7601             esac ;;
7602     ' ')  dflt='none' ;;
7603     *)  dflt="$ccdlflags" ;;
7604     esac
7605     rp="Any special flags to pass to $cc to use dynamic linking?"
7606     . ./myread
7607     case "$ans" in
7608     none) ccdlflags=' ' ;;
7609     *) ccdlflags="$ans" ;;
7610     esac
7611     ;;
7612 *)  usedl="$undef"
7613         ld='ld'
7614     dlsrc='dl_none.xs'
7615     lddlflags=''
7616     ccdlflags=''
7617     ;;
7618 esac
7619
7620 also=''
7621 case "$usedl" in
7622 $undef)
7623         # No dynamic loading being used, so don't bother even to prompt.
7624         useshrplib='false'
7625         ;;
7626 *)      case "$useshrplib" in
7627         '')     case "$osname" in
7628                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7629                         dflt=y
7630                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7631                         ;;
7632                 next*)
7633                         case "$osvers" in
7634                         4*)     dflt=y
7635                                 also='Building a shared libperl is needed for MAB support.'
7636                                 ;;
7637                         *)      dflt=n
7638                                 ;;
7639                         esac
7640                         ;;
7641                 *)      dflt=n
7642                         ;;
7643                 esac
7644                 ;;
7645         $define|true|[Yy]*)
7646                 dflt=y
7647                 ;;
7648         *)      dflt=n
7649                 ;;
7650         esac
7651         $cat << EOM
7652
7653 The perl executable is normally obtained by linking perlmain.c with
7654 libperl${_a}, any static extensions (usually just DynaLoader), and
7655 any other libraries needed on this system (such as -lm, etc.).  Since
7656 your system supports dynamic loading, it is probably possible to build
7657 a shared libperl.$so.  If you will have more than one executable linked
7658 to libperl.$so, this will significantly reduce the size of each
7659 executable, but it may have a noticeable affect on performance.  The
7660 default is probably sensible for your system.
7661 $also
7662
7663 EOM
7664         rp="Build a shared libperl.$so (y/n)"
7665         . ./myread
7666         case "$ans" in
7667         true|$define|[Yy]*)
7668                 useshrplib='true'  ;;
7669         *)      useshrplib='false' ;;
7670         esac
7671         ;;
7672 esac
7673
7674 case "$useshrplib" in
7675 true)
7676         case "$libperl" in
7677         '')
7678                 # Figure out a good name for libperl.so.  Since it gets stored in
7679                 # a version-specific architecture-dependent library, the version
7680                 # number isn't really that important, except for making cc/ld happy.
7681                 #
7682                 # A name such as libperl.so.3.1
7683                 majmin="libperl.$so.$patchlevel.$subversion"
7684                 # A name such as libperl.so.301
7685                 majonly=`echo $patchlevel $subversion |
7686                         $awk '{printf "%d%02d", $1, $2}'`
7687                 majonly=libperl.$so.$majonly
7688                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7689                 # rely on figuring it out from the naming of libc.
7690                 case "${osname}${osvers}" in
7691                 next4*)
7692                         dflt=libperl.5.$so
7693                         # XXX How handle the --version stuff for MAB?
7694                         ;;
7695                 linux*)  # ld won't link with a bare -lperl otherwise.
7696                         dflt=libperl.$so
7697                         ;;
7698                 cygwin*) # ld links against an importlib
7699                         dflt=libperl$lib_ext
7700                         ;;
7701                 *)      # Try to guess based on whether libc has major.minor.
7702                         case "$libc" in
7703                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7704                         *libc.$so.[0-9]*) dflt=$majonly ;;
7705                         *)      dflt=libperl.$so ;;
7706                         esac
7707                         ;;
7708                 esac
7709                 ;;
7710         *)      dflt=$libperl
7711                 ;;
7712         esac
7713         cat << EOM
7714
7715 I need to select a good name for the shared libperl.  If your system uses
7716 library names with major and minor numbers, then you might want something
7717 like $majmin.  Alternatively, if your system uses a single version
7718 number for shared libraries, then you might want to use $majonly.
7719 Or, your system might be quite happy with a simple libperl.$so.
7720
7721 Since the shared libperl will get installed into a version-specific
7722 architecture-dependent directory, the version number of the shared perl
7723 library probably isn't important, so the default should be o.k.
7724
7725 EOM
7726         rp='What name do you want to give to the shared libperl?'
7727         . ./myread
7728         libperl=$ans
7729         echo "Ok, I'll use $libperl"
7730         ;;
7731 *)
7732         libperl="libperl${_a}"
7733         ;;
7734 esac
7735
7736 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
7737 case "$shrpdir" in
7738 '') ;;
7739 *)      $cat >&4 <<EOM
7740 WARNING:  Use of the shrpdir variable for the installation location of
7741 the shared $libperl is not supported.  It was never documented and
7742 will not work in this version.  Let me (perlbug@perl.org)
7743 know of any problems this may cause.
7744
7745 EOM
7746         case "$shrpdir" in
7747         "$archlibexp/CORE")
7748                 $cat >&4 <<EOM
7749 But your current setting of $shrpdir is
7750 the default anyway, so it's harmless.
7751 EOM
7752                 ;;
7753         *)
7754                 $cat >&4 <<EOM
7755 Further, your current attempted setting of $shrpdir
7756 conflicts with the value of $archlibexp/CORE
7757 that installperl will use.
7758 EOM
7759                 ;;
7760         esac
7761         ;;
7762 esac
7763
7764 # How will the perl executable find the installed shared $libperl?
7765 # Add $xxx to ccdlflags.
7766 # If we can't figure out a command-line option, use $shrpenv to
7767 # set env LD_RUN_PATH.  The main perl makefile uses this.
7768 shrpdir=$archlibexp/CORE
7769 xxx=''
7770 tmp_shrpenv=''
7771 if "$useshrplib"; then
7772     case "$osname" in 
7773         aix)
7774                 # We'll set it in Makefile.SH...
7775                 ;;
7776         solaris)
7777                 xxx="-R $shrpdir"
7778                 ;;
7779         freebsd|netbsd)
7780                 xxx="-Wl,-R$shrpdir"
7781                 ;;
7782         bsdos|linux|irix*|dec_osf)
7783                 xxx="-Wl,-rpath,$shrpdir"
7784                 ;;
7785         next)
7786                 # next doesn't like the default...
7787                 ;;
7788         beos)
7789                 # beos doesn't like the default, either.
7790                 ;;
7791         hpux*)
7792                 # hpux doesn't like the default, either.
7793                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7794                 ;;
7795         *)
7796                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7797                 ;;
7798         esac
7799         case "$xxx" in
7800         '') ;;
7801         *)      
7802                 # Only add $xxx if it isn't already in ccdlflags.
7803                 case " $ccdlflags " in
7804                 *" $xxx "*)     ;;
7805                 *)      ccdlflags="$ccdlflags $xxx"
7806                         cat <<EOM >&4
7807
7808 Adding $xxx to the flags
7809 passed to $ld so that the perl executable will find the 
7810 installed shared $libperl.
7811
7812 EOM
7813                         ;;
7814                 esac
7815                 ;;
7816         esac
7817 fi
7818 # Fix ccdlflags in AIX for building external extensions.
7819 # (For building Perl itself bare -bE:perl.exp is needed,
7820 #  Makefile.SH takes care of this.)
7821 case "$osname" in
7822 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7823 esac
7824 # Respect a hint or command-line value.
7825 case "$shrpenv" in
7826 '') shrpenv="$tmp_shrpenv" ;;
7827 esac
7828 case "$ldlibpthname" in
7829 '')     ldlibpthname=LD_LIBRARY_PATH ;;
7830 none)   ldlibpthname='' ;;
7831 esac
7832
7833 : determine where manual pages are on this system
7834 echo " "
7835 case "$sysman" in
7836 '') 
7837         syspath='/usr/share/man/man1 /usr/man/man1'
7838         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7839         syspath="$syspath /usr/man/u_man/man1"
7840         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7841         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7842         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7843         sysman=`./loc . /usr/man/man1 $syspath`
7844         ;;
7845 esac
7846 if $test -d "$sysman"; then
7847         echo "System manual is in $sysman." >&4
7848 else
7849         echo "Could not find manual pages in source form." >&4
7850 fi
7851
7852 : determine where manual pages go
7853 set man1dir man1dir none
7854 eval $prefixit
7855 $cat <<EOM
7856
7857 $spackage has manual pages available in source form.
7858 EOM
7859 case "$nroff" in
7860 nroff)
7861         echo "However, you don't have nroff, so they're probably useless to you."
7862         case "$man1dir" in
7863         '') man1dir="none";;
7864         esac;;
7865 esac
7866 echo "If you don't want the manual sources installed, answer 'none'."
7867 case "$man1dir" in
7868 ' ') dflt=none
7869         ;;
7870 '')
7871         lookpath="$prefixexp/share/man/man1"
7872         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
7873         lookpath="$lookpath $prefixexp/man/p_man/man1"
7874         lookpath="$lookpath $prefixexp/man/u_man/man1"
7875         lookpath="$lookpath $prefixexp/man/man.1"
7876         case "$sysman" in
7877         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
7878         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
7879         esac
7880         set dflt
7881         eval $prefixup
7882         ;;
7883 *)  dflt="$man1dir"
7884         ;;
7885 esac
7886 echo " "
7887 fn=dn+~
7888 rp="Where do the main $spackage manual pages (source) go?"
7889 . ./getfile
7890 if $test "X$man1direxp" != "X$ansexp"; then
7891         installman1dir=''
7892 fi
7893 man1dir="$ans"
7894 man1direxp="$ansexp"
7895 case "$man1dir" in
7896 '')     man1dir=' '
7897         installman1dir='';;
7898 esac
7899
7900 : Change installation prefix, if necessary.
7901 if $test X"$prefix" != X"$installprefix"; then
7902         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
7903 else
7904         installman1dir="$man1direxp"
7905 fi
7906
7907 : What suffix to use on installed man pages
7908
7909 case "$man1dir" in
7910 ' ')
7911         man1ext='0'
7912         ;;
7913 *)
7914         rp="What suffix should be used for the main $spackage man pages?"
7915         case "$man1ext" in
7916         '')     case "$man1dir" in
7917                 *1)  dflt=1 ;;
7918                 *1p) dflt=1p ;;
7919                 *1pm) dflt=1pm ;;
7920                 *l) dflt=l;;
7921                 *n) dflt=n;;
7922                 *o) dflt=o;;
7923                 *p) dflt=p;;
7924                 *C) dflt=C;;
7925                 *L) dflt=L;;
7926                 *L1) dflt=L1;;
7927                 *) dflt=1;;
7928                 esac
7929                 ;;
7930         *)      dflt="$man1ext";;
7931         esac
7932         . ./myread
7933         man1ext="$ans"
7934         ;;
7935 esac
7936
7937 : see if we can have long filenames
7938 echo " "
7939 first=123456789abcdef
7940 $rm -f $first
7941 if (echo hi >$first) 2>/dev/null; then
7942         if $test -f 123456789abcde; then
7943                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
7944                 val="$undef"
7945         else
7946                 echo 'You can have filenames longer than 14 characters.'>&4
7947                 val="$define"
7948         fi
7949 else
7950         $cat <<'EOM'
7951 You can't have filenames longer than 14 chars.
7952 You can't even think about them!
7953 EOM
7954         val="$undef"
7955 fi 
7956 set d_flexfnam
7957 eval $setvar
7958 $rm -rf 123456789abcde*
7959
7960 : determine where library module manual pages go
7961 set man3dir man3dir none
7962 eval $prefixit
7963 $cat <<EOM
7964
7965 $spackage has manual pages for many of the library modules.
7966 EOM
7967
7968 case "$nroff" in
7969 nroff)
7970         $cat <<'EOM'
7971 However, you don't have nroff, so they're probably useless to you.
7972 EOM
7973         case "$man3dir" in
7974         '') man3dir="none";;
7975         esac;;
7976 esac
7977
7978 case "$d_flexfnam" in
7979 undef)
7980         $cat <<'EOM'
7981 However, your system can't handle the long file names like File::Basename.3. 
7982 EOM
7983         case "$man3dir" in
7984         '') man3dir="none";;
7985         esac;;
7986 esac
7987
7988 echo "If you don't want the manual sources installed, answer 'none'."
7989 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
7990 case "$man3dir" in
7991 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
7992         if $test -d "$privlib/man/man3"; then
7993                 cat <<EOM >&4
7994
7995 WARNING:  Previous versions of perl installed man3 pages into
7996 $privlib/man/man3.  This version will suggest a 
7997 new default of $dflt.  
7998 EOM
7999                 tdflt=$dflt
8000                 dflt='n'
8001                 rp='Do you wish to preserve the old behavior?(y/n)'
8002                 . ./myread
8003                 case "$ans" in
8004                 y*) dflt="$privlib/man/man3" ;;
8005                 *)  dflt=$tdflt ;;
8006                 esac
8007     fi
8008         ;;
8009 *)      dflt="$man3dir" ;;
8010 esac
8011 case "$dflt" in
8012 ' ') dflt=none ;;
8013 esac
8014 echo " "
8015 fn=dn+~
8016 rp="Where do the $package library man pages (source) go?"
8017 . ./getfile
8018 man3dir="$ans"
8019 man3direxp="$ansexp"
8020 case "$man3dir" in
8021 '')     man3dir=' '
8022         installman3dir='';;
8023 esac
8024
8025 : Change installation prefix, if necessary.
8026 if $test X"$prefix" != X"$installprefix"; then
8027         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
8028 else
8029         installman3dir="$man3direxp"
8030 fi
8031
8032 : What suffix to use on installed man pages
8033 case "$man3dir" in
8034 ' ')
8035         man3ext='0'
8036         ;;
8037 *)
8038         rp="What suffix should be used for the $package library man pages?"
8039         case "$man3ext" in
8040         '')     case "$man3dir" in
8041                 *3)  dflt=3 ;;
8042                 *3p) dflt=3p ;;
8043                 *3pm) dflt=3pm ;;
8044                 *l) dflt=l;;
8045                 *n) dflt=n;;
8046                 *o) dflt=o;;
8047                 *p) dflt=p;;
8048                 *C) dflt=C;;
8049                 *L) dflt=L;;
8050                 *L3) dflt=L3;;
8051                 *) dflt=3;;
8052                 esac
8053                 ;;
8054         *)      dflt="$man3ext";;
8055         esac
8056         . ./myread
8057         man3ext="$ans"
8058         ;;
8059 esac
8060
8061 : see if we have to deal with yellow pages, now NIS.
8062 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8063         if $test -f /usr/etc/nibindd; then
8064                 echo " "
8065                 echo "I'm fairly confident you're on a NeXT."
8066                 echo " "
8067                 rp='Do you get the hosts file via NetInfo?'
8068                 dflt=y
8069                 case "$hostcat" in
8070                 nidump*) ;;
8071                 '') ;;
8072                 *) dflt=n;;
8073                 esac
8074                 . ./myread
8075                 case "$ans" in
8076                 y*) hostcat='nidump hosts .';;
8077                 *)      case "$hostcat" in
8078                         nidump*) hostcat='';;
8079                         esac
8080                         ;;
8081                 esac
8082         fi
8083         case "$hostcat" in
8084         nidump*) ;;
8085         *)
8086                 case "$hostcat" in
8087                 *ypcat*) dflt=y;;
8088                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8089                                 dflt=y
8090                         else
8091                                 dflt=n
8092                         fi;;
8093                 *) dflt=n;;
8094                 esac
8095                 echo " "
8096                 rp='Are you getting the hosts file via yellow pages?'
8097                 . ./myread
8098                 case "$ans" in
8099                 y*) hostcat='ypcat hosts';;
8100                 *) hostcat='cat /etc/hosts';;
8101                 esac
8102                 ;;
8103         esac
8104 fi
8105 case "$hostcat" in
8106 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8107 esac
8108 case "$groupcat" in
8109 '') test -f /etc/group && groupcat='cat /etc/group';;
8110 esac
8111 case "$passcat" in
8112 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8113 esac
8114
8115 : now get the host name
8116 echo " "
8117 echo "Figuring out host name..." >&4
8118 case "$myhostname" in
8119 '') cont=true
8120         echo 'Maybe "hostname" will work...'
8121         if tans=`sh -c hostname 2>&1` ; then
8122                 myhostname=$tans
8123                 phostname=hostname
8124                 cont=''
8125         fi
8126         ;;
8127 *) cont='';;
8128 esac
8129 if $test "$cont"; then
8130         if ./xenix; then
8131                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8132                 if tans=`cat /etc/systemid 2>&1` ; then
8133                         myhostname=$tans
8134                         phostname='cat /etc/systemid'
8135                         echo "Whadyaknow.  Xenix always was a bit strange..."
8136                         cont=''
8137                 fi
8138         elif $test -r /etc/systemid; then
8139                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8140         fi
8141 fi
8142 if $test "$cont"; then
8143         echo 'No, maybe "uuname -l" will work...'
8144         if tans=`sh -c 'uuname -l' 2>&1` ; then
8145                 myhostname=$tans
8146                 phostname='uuname -l'
8147         else
8148                 echo 'Strange.  Maybe "uname -n" will work...'
8149                 if tans=`sh -c 'uname -n' 2>&1` ; then
8150                         myhostname=$tans
8151                         phostname='uname -n'
8152                 else
8153                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8154                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8155                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8156                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8157                         else
8158                                 case "$myhostname" in
8159                                 '') echo "Does this machine have an identity crisis or something?"
8160                                         phostname='';;
8161                                 *)
8162                                         echo "Well, you said $myhostname before..."
8163                                         phostname='echo $myhostname';;
8164                                 esac
8165                         fi
8166                 fi
8167         fi
8168 fi
8169 case "$myhostname" in
8170 '') myhostname=noname ;;
8171 esac
8172 : you do not want to know about this
8173 set $myhostname
8174 myhostname=$1
8175
8176 : verify guess
8177 if $test "$myhostname" ; then
8178         dflt=y
8179         rp='Your host name appears to be "'$myhostname'".'" Right?"
8180         . ./myread
8181         case "$ans" in
8182         y*) ;;
8183         *) myhostname='';;
8184         esac
8185 fi
8186
8187 : bad guess or no guess
8188 while $test "X$myhostname" = X ; do
8189         dflt=''
8190         rp="Please type the (one word) name of your host:"
8191         . ./myread
8192         myhostname="$ans"
8193 done
8194
8195 : translate upper to lower if necessary
8196 case "$myhostname" in
8197 *[A-Z]*)
8198         echo "(Normalizing case in your host name)"
8199         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8200         ;;
8201 esac
8202
8203 case "$myhostname" in
8204 *.*)
8205         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8206         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8207         echo "(Trimming domain name from host name--host name is now $myhostname)"
8208         ;;
8209 *) case "$mydomain" in
8210         '')
8211                 {
8212                         test "X$hostcat" = "Xypcat hosts" &&
8213                         ypmatch "$myhostname" hosts 2>/dev/null |\
8214                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8215                         $test -s hosts
8216                 } || {
8217                         test "X$hostcat" != "X" &&
8218                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8219                                         /[       ]$myhostname[  . ]/p" > hosts
8220                 }
8221                 tmp_re="[       . ]"
8222                 if $test -f hosts; then
8223                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8224                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8225                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8226                                 hosts | $sort | $uniq | \
8227                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8228                         case `$echo X$dflt` in
8229                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8230                                 dflt=.
8231                                 ;;
8232                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8233                                 ;;
8234                         esac
8235                 else
8236                         echo "(I cannot locate a hosts database anywhere)"
8237                         dflt=.
8238                 fi
8239                 case "$dflt" in
8240                 .)
8241                         tans=`./loc resolv.conf X /etc /usr/etc`
8242                         if $test -f "$tans"; then
8243                                 echo "(Attempting domain name extraction from $tans)"
8244                                 dflt=.`$sed -n -e 's/   / /g' \
8245                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8246                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8247                                 case "$dflt" in
8248                                 .) dflt=.`$sed -n -e 's/        / /g' \
8249                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8250                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8251                                         ;;
8252                                 esac
8253                         fi
8254                         ;;
8255                 esac
8256                 case "$dflt" in
8257                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8258                         dflt=.`sh -c domainname 2>/dev/null`
8259                         case "$dflt" in
8260                         '') dflt='.';;
8261                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8262                         esac
8263                         ;;
8264                 esac
8265                 case "$dflt$osname" in
8266                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8267                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8268                         ;;
8269                 esac
8270                 case "$dflt" in
8271                 .) echo "(Lost all hope -- silly guess then)"
8272                         dflt='.nonet'
8273                         ;;
8274                 esac
8275                 $rm -f hosts
8276                 ;;
8277         *) dflt="$mydomain";;
8278         esac;;
8279 esac
8280 echo " "
8281 rp="What is your domain name?"
8282 . ./myread
8283 tans="$ans"
8284 case "$ans" in
8285 '') ;;
8286 .*) ;;
8287 *) tans=".$tans";;
8288 esac
8289 mydomain="$tans"
8290
8291 : translate upper to lower if necessary
8292 case "$mydomain" in
8293 *[A-Z]*)
8294         echo "(Normalizing case in your domain name)"
8295         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8296         ;;
8297 esac
8298
8299 : a little sanity check here
8300 case "$phostname" in
8301 '') ;;
8302 *)
8303         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8304         $myhostname$mydomain|$myhostname) ;;
8305         *)
8306                 case "$phostname" in
8307                 sed*)
8308                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8309                         ;;
8310                 *)
8311                         echo "(That doesn't agree with your $phostname command, by the way.)"
8312                         ;;
8313                 esac
8314         ;;
8315         esac
8316         ;;
8317 esac
8318
8319 $cat <<EOM
8320
8321 I need to get your e-mail address in Internet format if possible, i.e.
8322 something like user@host.domain. Please answer accurately since I have
8323 no easy means to double check it. The default value provided below
8324 is most probably close to reality but may not be valid from outside
8325 your organization...
8326
8327 EOM
8328 cont=x
8329 while test "$cont"; do
8330         case "$cf_email" in
8331         '') dflt="$cf_by@$myhostname$mydomain";;
8332         *) dflt="$cf_email";;
8333         esac
8334         rp='What is your e-mail address?'
8335         . ./myread
8336         cf_email="$ans"
8337         case "$cf_email" in
8338         *@*.*) cont='' ;;
8339         *)
8340                 rp='Address does not look like an Internet one.  Use it anyway?'
8341                 case "$fastread" in
8342                 yes) dflt=y ;;
8343                 *) dflt=n ;;
8344                 esac
8345                 . ./myread
8346                 case "$ans" in
8347                 y*) cont='' ;;
8348                 *) echo " " ;;
8349                 esac
8350                 ;;
8351         esac
8352 done
8353
8354 $cat <<EOM
8355
8356 If you or somebody else will be maintaining perl at your site, please
8357 fill in the correct e-mail address here so that they may be contacted
8358 if necessary. Currently, the "perlbug" program included with perl
8359 will send mail to this address in addition to perlbug@perl.org. You may
8360 enter "none" for no administrator.
8361
8362 EOM
8363 case "$perladmin" in
8364 '') dflt="$cf_email";;
8365 *) dflt="$perladmin";;
8366 esac
8367 rp='Perl administrator e-mail address'
8368 . ./myread
8369 perladmin="$ans"
8370
8371 : determine whether to only install version-specific parts.
8372 echo " "
8373 $cat <<EOM
8374 Do you want to install only the version-specific parts of the perl
8375 distribution?  Usually you do *not* want to do this.
8376 EOM
8377 case "$versiononly" in
8378 "$define"|[Yy]*|true) dflt='y' ;;
8379 *) dflt='n';
8380 esac
8381 rp="Do you want to install only the version-specific parts of perl?"
8382 . ./myread
8383 case "$ans" in
8384 [yY]*)  val="$define";;
8385 *)      val="$undef" ;;
8386 esac
8387 set versiononly
8388 eval $setvar
8389
8390 case "$versiononly" in
8391 "$define") inc_version_list=''
8392            inc_version_list_init=0
8393            ;;
8394 esac
8395
8396 : figure out how to guarantee perl startup
8397 case "$startperl" in
8398 '')
8399         case "$sharpbang" in
8400         *!)
8401                 $cat <<EOH
8402
8403 I can use the #! construct to start perl on your system. This will
8404 make startup of perl scripts faster, but may cause problems if you
8405 want to share those scripts and perl is not in a standard place
8406 ($binexp/perl) on all your platforms. The alternative is to force
8407 a shell by starting the script with a single ':' character.
8408
8409 EOH
8410                 case "$versiononly" in
8411                 "$define")      dflt="$binexp/perl$version";;  
8412                 *)              dflt="$binexp/perl";;
8413                 esac
8414                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8415                 . ./myread
8416                 case "$ans" in
8417                 none)   startperl=": # use perl";;
8418                 *)      startperl="#!$ans"
8419                         if $test 30 -lt `echo "$ans" | wc -c`; then
8420                                 $cat >&4 <<EOM
8421
8422 WARNING:  Some systems limit the #! command to 32 characters.
8423 If you experience difficulty running Perl scripts with #!, try
8424 installing Perl in a directory with a shorter pathname.
8425
8426 EOM
8427                         fi ;;
8428                 esac
8429                 ;;
8430         *) startperl=": # use perl"
8431                 ;;
8432         esac
8433         ;;
8434 esac
8435 echo "I'll use $startperl to start perl scripts."
8436
8437 : figure best path for perl in scripts
8438 case "$perlpath" in
8439 '')
8440         case "$versiononly" in
8441         "$define")      perlpath="$binexp/perl$version";;
8442         *)              perlpath="$binexp/perl";;
8443         esac
8444         case "$startperl" in
8445         *!*) ;;
8446         *)
8447                 $cat <<EOH
8448
8449 I will use the "eval 'exec'" idiom to start Perl on your system.
8450 I can use the full path of your Perl binary for this purpose, but
8451 doing so may cause problems if you want to share those scripts and
8452 Perl is not always in a standard place ($binexp/perl).
8453
8454 EOH
8455                 dflt="$binexp/perl"
8456                 rp="What path shall I use in \"eval 'exec'\"?"
8457                 . ./myread
8458                 perlpath="$ans"
8459                 ;;
8460         esac
8461         ;;
8462 esac
8463 case "$startperl" in
8464 *!*)    ;;
8465 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8466 esac
8467
8468 : determine where public executable scripts go
8469 set scriptdir scriptdir
8470 eval $prefixit
8471 case "$scriptdir" in
8472 '')
8473         dflt="$bin"
8474         : guess some guesses
8475         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8476         $test -d /usr/share/bin     && dflt=/usr/share/bin
8477         $test -d /usr/local/script  && dflt=/usr/local/script
8478         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8479         $test -d $prefixexp/script  && dflt=$prefixexp/script
8480         set dflt
8481         eval $prefixup
8482         ;;
8483 *)  dflt="$scriptdir"
8484         ;;
8485 esac
8486 $cat <<EOM
8487  
8488 Some installations have a separate directory just for executable scripts so
8489 that they can mount it across multiple architectures but keep the scripts in
8490 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8491 Or you might just lump your scripts in with all your other executables.
8492  
8493 EOM
8494 fn=d~
8495 rp='Where do you keep publicly executable scripts?'
8496 . ./getfile
8497 if $test "X$ansexp" != "X$scriptdirexp"; then
8498         installscript=''
8499 fi
8500 scriptdir="$ans"
8501 scriptdirexp="$ansexp"
8502 : Change installation prefix, if necessary.
8503 if $test X"$prefix" != X"$installprefix"; then
8504         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
8505 else
8506         installscript="$scriptdirexp"
8507 fi
8508
8509 : determine where add-on public executables go
8510 case "$sitebin" in
8511 '')     dflt=$siteprefix/bin ;;
8512 *)      dflt=$sitebin ;;
8513 esac
8514 fn=d~
8515 rp='Pathname where the add-on public executables should be installed?'
8516 . ./getfile
8517 sitebin="$ans"
8518 sitebinexp="$ansexp"
8519 : Change installation prefix, if necessary.
8520 if $test X"$prefix" != X"$installprefix"; then
8521         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
8522 else
8523         installsitebin="$sitebinexp"
8524 fi
8525
8526 : define an is-a-typedef? function
8527 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8528 case "$inclist" in
8529 "") inclist="sys/types.h";;
8530 esac;
8531 eval "varval=\$$var";
8532 case "$varval" in
8533 "")
8534         $rm -f temp.c;
8535         for inc in $inclist; do
8536                 echo "#include <$inc>" >>temp.c;
8537         done;
8538         echo "#ifdef $type" >> temp.c;
8539         echo "printf(\"We have $type\");" >> temp.c;
8540         echo "#endif" >> temp.c;
8541         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8542         if $contains $type temp.E >/dev/null 2>&1; then
8543                 eval "$var=\$type";
8544         else
8545                 eval "$var=\$def";
8546         fi;
8547         $rm -f temp.?;;
8548 *) eval "$var=\$varval";;
8549 esac'
8550
8551 : define an is-a-typedef? function that prompts if the type is not available.
8552 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8553 case "$inclist" in
8554 "") inclist="sys/types.h";;
8555 esac;
8556 eval "varval=\$$var";
8557 case "$varval" in
8558 "")
8559         $rm -f temp.c;
8560         for inc in $inclist; do
8561                 echo "#include <$inc>" >>temp.c;
8562         done;
8563         echo "#ifdef $type" >> temp.c;
8564         echo "printf(\"We have $type\");" >> temp.c;
8565         echo "#endif" >> temp.c;
8566         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8567         echo " " ;
8568         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8569         if $contains $type temp.E >/dev/null 2>&1; then
8570                 echo "$type found." >&4;
8571                 eval "$var=\$type";
8572         else
8573                 echo "$type NOT found." >&4;
8574                 dflt="$def";
8575                 . ./myread ;
8576                 eval "$var=\$ans";
8577         fi;
8578         $rm -f temp.?;;
8579 *) eval "$var=\$varval";;
8580 esac'
8581
8582 : see what type lseek is declared as in the kernel
8583 rp="What is the type used for lseek's offset on this system?"
8584 set off_t lseektype long stdio.h sys/types.h
8585 eval $typedef_ask
8586
8587 echo " "
8588 echo "Checking to see how big your file offsets are..." >&4
8589 $cat >try.c <<EOCP
8590 #include <sys/types.h>
8591 #include <stdio.h>
8592 int main()
8593 {
8594     printf("%d\n", (int)sizeof($lseektype));
8595     return(0); 
8596 }
8597 EOCP
8598 set try
8599 if eval $compile_ok; then
8600         lseeksize=`$run ./try`
8601         echo "Your file offsets are $lseeksize bytes long."
8602 else
8603         dflt=$longsize
8604         echo " "
8605         echo "(I can't seem to compile the test program.  Guessing...)"
8606         rp="What is the size of your file offsets (in bytes)?"
8607         . ./myread
8608         lseeksize="$ans"
8609 fi
8610 $rm -f try.c try
8611
8612 : see what type file positions are declared as in the library
8613 rp="What is the type for file position used by fsetpos()?"
8614 set fpos_t fpostype long stdio.h sys/types.h
8615 eval $typedef_ask
8616
8617 echo " "
8618 case "$fpostype" in
8619 *_t) zzz="$fpostype"    ;;
8620 *)   zzz="fpos_t"       ;;
8621 esac
8622 echo "Checking the size of $zzz..." >&4 
8623 cat > try.c <<EOCP
8624 #include <sys/types.h>
8625 #include <stdio.h>
8626 int main() {
8627     printf("%d\n", (int)sizeof($fpostype));
8628     exit(0);
8629 }
8630 EOCP
8631 set try
8632 if eval $compile_ok; then
8633         yyy=`$run ./try`
8634         case "$yyy" in
8635         '')     fpossize=4
8636                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8637                 ;;
8638         *)      fpossize=$yyy
8639                 echo "Your $zzz is $fpossize bytes long."
8640                 ;;
8641         esac
8642 else
8643         dflt="$longsize"
8644         echo " " >&4
8645         echo "(I can't compile the test program.  Guessing...)" >&4
8646         rp="What is the size of your file positions (in bytes)?"
8647         . ./myread
8648         fpossize="$ans"
8649 fi
8650
8651
8652
8653 # Backward compatibility (uselfs is deprecated).
8654 case "$uselfs" in
8655 "$define"|true|[yY]*)
8656         cat <<EOM >&4
8657
8658 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
8659 EOM
8660         uselargefiles="$define"
8661         ;;
8662 esac                          
8663
8664 case "$lseeksize:$fpossize" in
8665 8:8) cat <<EOM
8666
8667 You can have files larger than 2 gigabytes.
8668 EOM
8669    val="$define" ;;
8670 *)    case "$uselargefiles" in
8671    "$undef"|false|[nN]*) dflt='n' ;;
8672    *)   dflt='y' ;;
8673    esac
8674    cat <<EOM
8675
8676 Perl can be built to understand large files (files larger than 2 gigabytes)
8677 on some systems.  To do so, Configure can be run with -Duselargefiles.
8678
8679 If this doesn't make any sense to you, just accept the default '$dflt'.
8680 EOM
8681    rp='Try to understand large files, if available?'
8682    . ./myread
8683    case "$ans" in
8684    y|Y)         val="$define" ;;
8685    *)           val="$undef"  ;;
8686    esac
8687    ;;
8688 esac
8689 set uselargefiles
8690 eval $setvar
8691 case "$uselargefiles" in
8692 "$define")
8693 : Look for a hint-file generated 'call-back-unit'.  If the
8694 : user has specified that a large files perl is to be built,
8695 : we may need to set or change some other defaults.
8696         if $test -f uselargefiles.cbu; then
8697                 echo "Your platform has some specific hints for large file builds, using them..."
8698                 . ./uselargefiles.cbu
8699                 echo " "
8700                 echo "Rechecking to see how big your file offsets are..." >&4
8701                 $cat >try.c <<EOCP
8702 #include <sys/types.h>
8703 #include <stdio.h>
8704 int main()
8705 {
8706     printf("%d\n", (int)sizeof($lseektype));
8707     return(0); 
8708 }
8709 EOCP
8710                 set try
8711                 if eval $compile_ok; then
8712                         lseeksize=`$run ./try`
8713                         $echo "Your file offsets are now $lseeksize bytes long."
8714                 else
8715                         dflt="$lseeksize"
8716                         echo " "
8717                         echo "(I can't seem to compile the test program.  Guessing...)"
8718                         rp="What is the size of your file offsets (in bytes)?"
8719                         . ./myread
8720                         lseeksize="$ans"
8721                 fi
8722                 case "$fpostype" in
8723                 *_t) zzz="$fpostype"    ;;
8724                 *)   zzz="fpos_t"       ;;
8725                 esac
8726                 $echo $n "Rechecking the size of $zzz...$c" >&4 
8727                 $cat > try.c <<EOCP
8728 #include <sys/types.h>
8729 #include <stdio.h>
8730 int main() {
8731     printf("%d\n", (int)sizeof($fpostype));
8732     exit(0);
8733 }
8734 EOCP
8735                 set try
8736                 if eval $compile_ok; then
8737                         yyy=`$run ./try`
8738                         dflt="$lseeksize"
8739                         case "$yyy" in
8740                         '')     echo " "
8741                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8742                                 ;;
8743                         *)      fpossize=$yyy
8744                                 echo " $fpossize bytes." >&4
8745                                 ;;
8746                         esac
8747                 else
8748                         dflt="$fpossize"
8749                         echo " "
8750                         echo "(I can't compile the test program.  Guessing...)" >&4
8751                         rp="What is the size of your file positions (in bytes)?"
8752                         . ./myread
8753                         fpossize="$ans"
8754                 fi
8755                 $rm -f try.c try
8756         fi
8757         ;;
8758 esac
8759
8760 case "$vendorprefix" in
8761 '')     d_vendorbin="$undef"
8762         vendorbin=''
8763         vendorbinexp=''
8764         ;;
8765 *)      d_vendorbin="$define"
8766         : determine where vendor-supplied executables go.
8767         case "$vendorbin" in
8768         '') dflt=$vendorprefix/bin ;;
8769         *)      dflt="$vendorbin" ;;
8770         esac
8771         fn=d~+
8772         rp='Pathname for the vendor-supplied executables directory?'
8773         . ./getfile
8774         vendorbin="$ans"
8775         vendorbinexp="$ansexp"
8776         ;;
8777 esac
8778 : Change installation prefix, if necessary.
8779 if $test X"$prefix" != X"$installprefix"; then
8780         installvendorbin=`echo $vendorbinexp | $sed "s#^$prefix#$installprefix#"`
8781 else
8782         installvendorbin="$vendorbinexp"
8783 fi
8784
8785 : see if qgcvt exists
8786 set qgcvt d_qgcvt
8787 eval $inlibc
8788
8789 : Check how to convert floats to strings.
8790
8791 if test "X$d_Gconvert" = X; then
8792
8793 echo " "
8794 echo "Checking for an efficient way to convert floats to strings."
8795 echo " " > try.c
8796 case "$uselongdouble" in
8797 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
8798 esac
8799 case "$d_longdbl" in
8800 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
8801 esac
8802 case "$d_PRIgldbl" in
8803 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
8804 esac
8805 $cat >>try.c <<EOP
8806 #ifdef TRY_gconvert
8807 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
8808 char *myname = "gconvert";
8809 #endif
8810 #ifdef TRY_gcvt
8811 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
8812 char *myname = "gcvt";
8813 #endif
8814 #ifdef TRY_qgcvt
8815 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
8816 char *myname = "qgcvt";
8817 #define DOUBLETYPE long double
8818 #endif
8819 #ifdef TRY_sprintf
8820 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
8821 #ifdef HAS_PRIgldbl
8822 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
8823 #else
8824 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
8825 #endif
8826 #else
8827 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
8828 #endif
8829 char *myname = "sprintf";
8830 #endif
8831
8832 #ifndef DOUBLETYPE
8833 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
8834 #define DOUBLETYPE long double
8835 #else
8836 #define DOUBLETYPE double
8837 #endif
8838 #endif
8839
8840 #include <stdio.h>
8841
8842 #define I_STDLIB $i_stdlib
8843 #ifdef I_STDLIB
8844 #include <stdlib.h>
8845 #endif
8846
8847 int
8848 checkit(expect, got)
8849 char *expect;
8850 char *got;
8851 {
8852     if (strcmp(expect, got)) {
8853                 printf("%s oddity:  Expected %s, got %s\n",
8854                         myname, expect, got);
8855                 exit(1);
8856         }
8857 }
8858
8859 int main()
8860
8861         char buf[64]; 
8862         buf[63] = '\0';
8863
8864         /* This must be 1st test on (which?) platform */
8865         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
8866         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
8867         checkit("0.1", buf);
8868
8869         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
8870         checkit("0.01", buf);
8871
8872         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
8873         checkit("0.001", buf);
8874
8875         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
8876         checkit("0.0001", buf);
8877
8878         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
8879         if (strlen(buf) > 5)
8880             checkit("9e-005", buf); /* for Microsoft ?? */
8881         else
8882             checkit("9e-05", buf);
8883
8884         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
8885         checkit("1", buf);
8886
8887         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
8888         checkit("1.1", buf);
8889
8890         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
8891         checkit("1.01", buf);
8892
8893         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
8894         checkit("1.001", buf);
8895
8896         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
8897         checkit("1.0001", buf);
8898
8899         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
8900         checkit("1.00001", buf);
8901
8902         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
8903         checkit("1.000001", buf);
8904
8905         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
8906         checkit("0", buf);
8907
8908         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
8909         checkit("-1", buf);
8910
8911         /* Some Linux gcvt's give 1.e+5 here. */
8912         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
8913         checkit("100000", buf);
8914         
8915         /* Some Linux gcvt's give -1.e+5 here. */
8916         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
8917         checkit("-100000", buf);
8918
8919         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
8920         checkit("123.456", buf);
8921
8922         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
8923         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
8924         /* 34 should be enough to scare even long double
8925          * places into using the e notation. */
8926         if (strlen(buf) > 5)
8927             checkit("1e+034", buf); /* for Microsoft */
8928         else
8929             checkit("1e+34", buf);
8930
8931         /* For Perl, if you add additional tests here, also add them to
8932          * t/base/num.t for benefit of platforms not using Configure or
8933          * overriding d_Gconvert */
8934
8935         exit(0);
8936 }
8937 EOP
8938 : first add preferred functions to our list
8939 xxx_list=""
8940 for xxx_convert in $gconvert_preference; do
8941     case $xxx_convert in
8942     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
8943     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
8944     esac 
8945 done
8946 : then add any others
8947 for xxx_convert in gconvert gcvt sprintf; do
8948     case "$xxx_list" in
8949     *$xxx_convert*) ;;
8950     *) xxx_list="$xxx_list $xxx_convert" ;;
8951     esac 
8952 done
8953
8954 case "$d_longdbl$uselongdouble" in
8955 "$define$define")
8956     : again, add prefered functions to our list first
8957     xxx_ld_list=""
8958     for xxx_convert in $gconvert_ld_preference; do
8959         case $xxx_convert in
8960         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
8961         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
8962         esac
8963     done
8964     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
8965     for xxx_convert in qgcvt sprintf $xxx_list; do
8966         case "$xxx_ld_list" in
8967         $xxx_convert*|*" $xxx_convert"*) ;;
8968         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
8969         esac
8970     done
8971     : if sprintf cannot do long doubles, move it to the end
8972     if test "$d_PRIgldbl" != "$define"; then
8973         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
8974     fi
8975     : if no qgcvt, remove it
8976     if test "$d_qgcvt" != "$define"; then
8977         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
8978     fi
8979     : use the ld_list
8980     xxx_list="$xxx_ld_list"
8981     ;;
8982 esac
8983
8984 for xxx_convert in $xxx_list; do
8985         echo "Trying $xxx_convert..."
8986         $rm -f try try$_o
8987         set try -DTRY_$xxx_convert
8988         if eval $compile; then
8989                 echo "$xxx_convert() found." >&4
8990                 if $run ./try; then
8991                         echo "I'll use $xxx_convert to convert floats into a string." >&4
8992                         break;
8993                 else
8994                         echo "...But $xxx_convert didn't work as I expected."
8995                         xxx_convert=''
8996                 fi
8997         else
8998                 echo "$xxx_convert NOT found." >&4
8999         fi
9000 done
9001
9002 if test X$xxx_convert = X; then
9003     echo "*** WHOA THERE!!! ***" >&4
9004     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9005     xxx_convert=sprintf
9006 fi
9007
9008 case "$xxx_convert" in
9009 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9010 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9011 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9012 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9013    "$define$define$define")
9014       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9015    "$define$define$undef")
9016       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9017    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9018    esac
9019    ;;  
9020 esac
9021
9022 fi
9023
9024 : see if _fwalk exists
9025 set fwalk d__fwalk
9026 eval $inlibc
9027
9028 : Initialize h_fcntl
9029 h_fcntl=false
9030
9031 : Initialize h_sysfile
9032 h_sysfile=false
9033
9034 : access call always available on UNIX
9035 set access d_access
9036 eval $inlibc
9037
9038 : locate the flags for 'access()'
9039 case "$d_access" in
9040 "$define")
9041         echo " "
9042         $cat >access.c <<'EOCP'
9043 #include <sys/types.h>
9044 #ifdef I_FCNTL
9045 #include <fcntl.h>
9046 #endif
9047 #ifdef I_SYS_FILE
9048 #include <sys/file.h>
9049 #endif
9050 #ifdef I_UNISTD
9051 #include <unistd.h>
9052 #endif
9053 int main() {
9054         exit(R_OK);
9055 }
9056 EOCP
9057         : check sys/file.h first, no particular reason here
9058         if $test `./findhdr sys/file.h` && \
9059                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9060                 h_sysfile=true;
9061                 echo "<sys/file.h> defines the *_OK access constants." >&4
9062         elif $test `./findhdr fcntl.h` && \
9063                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9064                 h_fcntl=true;
9065                 echo "<fcntl.h> defines the *_OK access constants." >&4
9066         elif $test `./findhdr unistd.h` && \
9067                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9068                 echo "<unistd.h> defines the *_OK access constants." >&4
9069         else
9070                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9071         fi
9072         ;;
9073 esac
9074 $rm -f access*
9075
9076 : see if accessx exists
9077 set accessx d_accessx
9078 eval $inlibc
9079
9080 : see if alarm exists
9081 set alarm d_alarm
9082 eval $inlibc
9083
9084 : define a fucntion to check prototypes
9085 $cat > protochk <<EOSH
9086 $startsh
9087 cc="$cc"
9088 optimize="$optimize"
9089 ccflags="$ccflags"
9090 prototype="$prototype"
9091 define="$define"
9092 rm=$rm
9093 EOSH
9094
9095 $cat >> protochk <<'EOSH'
9096
9097 $rm -f try.c
9098 foo="$1"
9099 shift
9100 while test $# -ge 2; do
9101         case "$1" in
9102                 $define) echo "#include <$2>" >> try.c ;;
9103                 literal) echo "$2" >> try.c ;;
9104         esac
9105     shift 2
9106 done
9107 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9108 cat >> try.c <<'EOCP'
9109 #ifdef CAN_PROTOTYPE
9110 #define _(args) args
9111 #else
9112 #define _(args) ()
9113 #endif
9114 EOCP
9115 echo "$foo" >> try.c
9116 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9117 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9118 status=$?
9119 $rm -f try.[co]
9120 exit $status
9121 EOSH
9122 chmod +x protochk
9123 $eunicefix protochk
9124
9125 hasproto='varname=$1; func=$2; shift; shift;
9126 while $test $# -ge 2; do
9127         case "$1" in
9128         $define) echo "#include <$2>";;
9129         esac ;
9130     shift 2;
9131 done > try.c;
9132 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9133 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9134         echo "$func() prototype found.";
9135         val="$define";
9136 else
9137         echo "$func() prototype NOT found.";
9138         val="$undef";
9139 fi;
9140 set $varname;
9141 eval $setvar;
9142 $rm -f try.c tryout.c'
9143
9144 : see if sys/types.h has to be included
9145 set sys/types.h i_systypes
9146 eval $inhdr
9147
9148 : see if sys/select.h has to be included
9149 set sys/select.h i_sysselct
9150 eval $inhdr
9151
9152 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9153 while $test $# -ge 2; do
9154         case "$1" in
9155         $define) echo "#include <$2>";;
9156         esac ;
9157     shift 2;
9158 done > try.c;
9159 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9160 set try;
9161 if eval $compile; then
9162         val="$define";
9163 else
9164         val="$undef";
9165 fi;
9166 set $varname;
9167 eval $setvar;
9168 $rm -f try.c try.o'
9169
9170 : see if we should include time.h, sys/time.h, or both
9171 echo " "
9172 if test "X$timeincl" = X; then
9173         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9174         $echo $n "I'm now running the test program...$c"
9175         $cat >try.c <<'EOCP'
9176 #include <sys/types.h>
9177 #ifdef I_TIME
9178 #include <time.h>
9179 #endif
9180 #ifdef I_SYSTIME
9181 #ifdef SYSTIMEKERNEL
9182 #define KERNEL
9183 #endif
9184 #include <sys/time.h>
9185 #endif
9186 #ifdef I_SYSSELECT
9187 #include <sys/select.h>
9188 #endif
9189 int main()
9190 {
9191         struct tm foo;
9192 #ifdef S_TIMEVAL
9193         struct timeval bar;
9194 #endif
9195 #ifdef S_TIMEZONE
9196         struct timezone tzp;
9197 #endif
9198         if (foo.tm_sec == foo.tm_sec)
9199                 exit(0);
9200 #ifdef S_TIMEVAL
9201         if (bar.tv_sec == bar.tv_sec)
9202                 exit(0);
9203 #endif
9204         exit(1);
9205 }
9206 EOCP
9207         flags=''
9208         for s_timezone in '-DS_TIMEZONE' ''; do
9209         sysselect=''
9210         for s_timeval in '-DS_TIMEVAL' ''; do
9211         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9212         for i_time in '' '-DI_TIME'; do
9213         for i_systime in '-DI_SYSTIME' ''; do
9214                 case "$flags" in
9215                 '') $echo $n ".$c"
9216                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9217                         if eval $compile; then
9218                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9219                                 shift
9220                                 flags="$*"
9221                                 echo " "
9222                                 $echo $n "Succeeded with $flags$c"
9223                         fi
9224                         ;;
9225                 esac
9226         done
9227         done
9228         done
9229         done
9230         done
9231         timeincl=''
9232         echo " "
9233         case "$flags" in
9234         *SYSTIMEKERNEL*) i_systimek="$define"
9235                 timeincl=`./findhdr sys/time.h`
9236                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9237         *) i_systimek="$undef";;
9238         esac
9239         case "$flags" in
9240         *I_TIME*) i_time="$define"
9241                 timeincl=`./findhdr time.h`" $timeincl"
9242                 echo "We'll include <time.h>." >&4;;
9243         *) i_time="$undef";;
9244         esac
9245         case "$flags" in
9246         *I_SYSTIME*) i_systime="$define"
9247                 timeincl=`./findhdr sys/time.h`" $timeincl"
9248                 echo "We'll include <sys/time.h>." >&4;;
9249         *) i_systime="$undef";;
9250         esac
9251         $rm -f try.c try
9252 fi
9253 : see if struct tm knows about tm_zone
9254 case "$i_systime$i_time" in
9255 *$define*) 
9256         echo " "
9257         echo "Checking to see if your struct tm has tm_zone field..." >&4
9258         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9259         eval $hasfield
9260         ;;
9261 *)      val="$undef"
9262         set d_tm_tm_zone
9263         eval $setvar
9264         ;;
9265 esac
9266 case "$d_tm_tm_zone" in
9267 "$define")      echo "Yes, it does."   ;;
9268 *)              echo "No, it doesn't." ;;
9269 esac
9270 : see if struct tm knows about tm_gmtoff
9271 case "$i_systime$i_time" in
9272 *$define*) 
9273         echo " "
9274         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9275         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9276         eval $hasfield
9277         ;;
9278 *)      val="$undef"
9279         set d_tm_tm_gmtoff
9280         eval $setvar
9281         ;;
9282 esac
9283 case "$d_tm_tm_gmtoff" in
9284 "$define")      echo "Yes, it does."   ;;
9285 *)              echo "No, it doesn't." ;;
9286 esac
9287
9288 : see if asctime_r exists
9289 set asctime_r d_asctime_r
9290 eval $inlibc
9291 case "$d_asctime_r" in
9292 "$define")
9293         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
9294         case "time" in
9295         time)
9296                 hdrs="$hdrs $i_systime sys/time.h"
9297                 ;;
9298         esac
9299         case "$d_asctime_r_proto:$usethreads" in
9300         ":define")      d_asctime_r_proto=define
9301                 set d_asctime_r_proto asctime_r $hdrs
9302                 eval $hasproto ;;
9303         *)      ;;
9304         esac
9305         case "$d_asctime_r_proto" in
9306         define)
9307         case "$asctime_r_proto" in
9308         ''|0) try='char* asctime_r(const struct tm*, char*);'
9309         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9310         esac
9311         case "$asctime_r_proto" in
9312         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9313         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9314         esac
9315         case "$asctime_r_proto" in
9316         ''|0) try='int asctime_r(const struct tm*, char*);'
9317         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9318         esac
9319         case "$asctime_r_proto" in
9320         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9321         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9322         esac
9323         case "$asctime_r_proto" in
9324         ''|0)   d_asctime_r=undef
9325                 asctime_r_proto=0
9326                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9327         * )     case "$asctime_r_proto" in
9328                 REENTRANT_PROTO*) ;;
9329                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9330                 esac
9331                 echo "Prototype: $try" ;;
9332         esac
9333         ;;
9334         *)      case "$usethreads" in
9335                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9336                 esac
9337                 d_asctime_r=undef
9338                 asctime_r_proto=0
9339                 ;;
9340         esac
9341         ;;
9342 *)      asctime_r_proto=0
9343         ;;
9344 esac
9345
9346 : see if atolf exists
9347 set atolf d_atolf
9348 eval $inlibc
9349
9350 : see if atoll exists
9351 set atoll d_atoll
9352 eval $inlibc
9353
9354 : Look for GNU-cc style attribute checking
9355 echo " "
9356 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9357 $cat >attrib.c <<'EOCP'
9358 #include <stdio.h>
9359 void croak (char* pat,...) __attribute__((format(printf,1,2),noreturn));
9360 EOCP
9361 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9362         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9363                 echo "Your C compiler doesn't fully support __attribute__."
9364                 val="$undef"
9365         else
9366                 echo "Your C compiler supports __attribute__."
9367                 val="$define"
9368         fi
9369 else
9370         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9371         val="$undef"
9372 fi
9373 set d_attribut
9374 eval $setvar
9375 $rm -f attrib*
9376
9377 : see if bcmp exists
9378 set bcmp d_bcmp
9379 eval $inlibc
9380
9381 : see if bcopy exists
9382 set bcopy d_bcopy
9383 eval $inlibc
9384
9385 : see if this is a unistd.h system
9386 set unistd.h i_unistd
9387 eval $inhdr
9388
9389 : see if getpgrp exists
9390 set getpgrp d_getpgrp
9391 eval $inlibc
9392
9393 case "$d_getpgrp" in
9394 "$define")
9395         echo " "
9396         echo "Checking to see which flavor of getpgrp is in use..."
9397         $cat >try.c <<EOP
9398 #$i_unistd I_UNISTD
9399 #include <sys/types.h>
9400 #ifdef I_UNISTD
9401 #  include <unistd.h>
9402 #endif
9403 int main()
9404 {
9405         if (getuid() == 0) {
9406                 printf("(I see you are running Configure as super-user...)\n");
9407                 setuid(1);
9408         }
9409 #ifdef TRY_BSD_PGRP
9410         if (getpgrp(1) == 0)
9411                 exit(0);
9412 #else
9413         if (getpgrp() > 0)
9414                 exit(0);
9415 #endif
9416         exit(1);
9417 }
9418 EOP
9419         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9420                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9421                 val="$define"
9422         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9423                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9424                 val="$undef"
9425         else
9426                 echo "I can't seem to compile and run the test program."
9427                 if ./usg; then
9428                         xxx="a USG one, i.e. you use getpgrp()."
9429                 else
9430                         # SVR4 systems can appear rather BSD-ish.
9431                         case "$i_unistd" in
9432                         $undef)
9433                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9434                                 val="$define"
9435                                 ;;
9436                         $define)
9437                                 xxx="probably a USG one, i.e. you use getpgrp()."
9438                                 val="$undef"
9439                                 ;;
9440                         esac
9441                 fi
9442                 echo "Assuming your getpgrp is $xxx" >&4
9443         fi
9444         ;;
9445 *) val="$undef";;
9446 esac
9447 set d_bsdgetpgrp
9448 eval $setvar
9449 $rm -f try try.*
9450
9451 : see if setpgrp exists
9452 set setpgrp d_setpgrp
9453 eval $inlibc
9454
9455 case "$d_setpgrp" in
9456 "$define")
9457         echo " "
9458         echo "Checking to see which flavor of setpgrp is in use..."
9459         $cat >try.c <<EOP
9460 #$i_unistd I_UNISTD
9461 #include <sys/types.h>
9462 #ifdef I_UNISTD
9463 #  include <unistd.h>
9464 #endif
9465 int main()
9466 {
9467         if (getuid() == 0) {
9468                 printf("(I see you are running Configure as super-user...)\n");
9469                 setuid(1);
9470         }
9471 #ifdef TRY_BSD_PGRP
9472         if (-1 == setpgrp(1, 1))
9473                 exit(0);
9474 #else
9475         if (setpgrp() != -1)
9476                 exit(0);
9477 #endif
9478         exit(1);
9479 }
9480 EOP
9481         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9482                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
9483                 val="$define"
9484         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9485                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
9486                 val="$undef"
9487         else
9488                 echo "(I can't seem to compile and run the test program.)"
9489                 if ./usg; then
9490                         xxx="a USG one, i.e. you use setpgrp()."
9491                 else
9492                         # SVR4 systems can appear rather BSD-ish.
9493                         case "$i_unistd" in
9494                         $undef)
9495                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
9496                                 val="$define"
9497                                 ;;
9498                         $define)
9499                                 xxx="probably a USG one, i.e. you use setpgrp()."
9500                                 val="$undef"
9501                                 ;;
9502                         esac
9503                 fi
9504                 echo "Assuming your setpgrp is $xxx" >&4
9505         fi
9506         ;;
9507 *) val="$undef";;
9508 esac
9509 set d_bsdsetpgrp
9510 eval $setvar
9511 $rm -f try try.*
9512 : see if bzero exists
9513 set bzero d_bzero
9514 eval $inlibc
9515
9516 : see if signal is declared as pointer to function returning int or void
9517 echo " "
9518 xxx=`./findhdr signal.h`
9519 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
9520 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
9521         echo "You have int (*signal())() instead of void." >&4
9522         val="$undef"
9523 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
9524         echo "You have void (*signal())()." >&4
9525         val="$define"
9526 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
9527         echo "You have int (*signal())() instead of void." >&4
9528         val="$undef"
9529 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
9530         echo "You have void (*signal())()." >&4
9531         val="$define"
9532 else
9533         case "$d_voidsig" in
9534         '')
9535         echo "I can't determine whether signal handler returns void or int..." >&4
9536                 dflt=void
9537                 rp="What type does your signal handler return?"
9538                 . ./myread
9539                 case "$ans" in
9540                 v*) val="$define";;
9541                 *) val="$undef";;
9542                 esac;;
9543         "$define")
9544                 echo "As you already told me, signal handler returns void." >&4
9545                 val="$define"
9546                 ;;
9547         *)      echo "As you already told me, signal handler returns int." >&4
9548                 val="$undef"
9549                 ;;
9550         esac
9551 fi
9552 set d_voidsig
9553 eval $setvar
9554 case "$d_voidsig" in
9555 "$define") signal_t="void";;
9556 *) signal_t="int";;
9557 esac
9558 $rm -f $$.tmp
9559
9560 : check for ability to cast large floats to 32-bit ints.
9561 echo " "
9562 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
9563 if $test "$intsize" -ge 4; then
9564         xxx=int
9565 else
9566         xxx=long
9567 fi
9568 $cat >try.c <<EOCP
9569 #include <stdio.h>
9570 #include <sys/types.h>
9571 #include <signal.h>
9572 $signal_t blech(s) int s; { exit(3); }
9573 int main()
9574 {
9575         $xxx i32;
9576         double f, g;
9577         int result = 0;
9578         char str[16];
9579         signal(SIGFPE, blech);
9580
9581         /* Don't let compiler optimize the test away.  Store the number 
9582            in a writable string for gcc to pass to sscanf under HP/UX.
9583         */
9584         sprintf(str, "2147483647");
9585         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
9586         g = 10 * f;
9587         i32  = ($xxx) g;
9588
9589         /* x86 processors will probably give 0x8000 0000, which is a
9590        sign change.  We don't want that.  We want to mimic SPARC
9591            behavior here, which is to preserve the sign and give
9592            back 0x7fff ffff.
9593         */
9594         if (i32 != ($xxx) f)
9595                 result |= 1;
9596         exit(result);
9597 }
9598 EOCP
9599 set try
9600 if eval $compile_ok; then
9601         $run ./try
9602         yyy=$?
9603 else
9604         echo "(I can't seem to compile the test program--assuming it can't)"
9605         yyy=1
9606 fi
9607 case "$yyy" in
9608 0)      val="$define"
9609         echo "Yup, it can."
9610         ;;
9611 *)      val="$undef"
9612         echo "Nope, it can't."
9613         ;;
9614 esac
9615 set d_casti32
9616 eval $setvar
9617 $rm -f try try.*
9618
9619 : check for ability to cast negative floats to unsigned
9620 echo " "
9621 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
9622 $cat >try.c <<EOCP
9623 #include <stdio.h>
9624 #include <sys/types.h>
9625 #include <signal.h>
9626 $signal_t blech(s) int s; { exit(7); }
9627 $signal_t blech_in_list(s) int s; { exit(4); }
9628 unsigned long dummy_long(p) unsigned long p; { return p; }
9629 unsigned int dummy_int(p) unsigned int p; { return p; }
9630 unsigned short dummy_short(p) unsigned short p; { return p; }
9631 int main()
9632 {
9633         double f;
9634         unsigned long along;
9635         unsigned int aint;
9636         unsigned short ashort;
9637         int result = 0;
9638         char str[16];
9639         
9640         /* Frustrate gcc-2.7.2's optimizer which failed this test with
9641            a direct f = -123. assignment.  gcc-2.8.0 reportedly
9642            optimized the whole file away
9643         */
9644         /* Store the number in a writable string for gcc to pass to 
9645            sscanf under HP/UX.
9646         */
9647         sprintf(str, "-123");
9648         sscanf(str, "%lf", &f);  /* f = -123.; */
9649
9650         signal(SIGFPE, blech);
9651         along = (unsigned long)f;
9652         aint = (unsigned int)f;
9653         ashort = (unsigned short)f;
9654         if (along != (unsigned long)-123)
9655                 result |= 1;
9656         if (aint != (unsigned int)-123)
9657                 result |= 1;
9658         if (ashort != (unsigned short)-123)
9659                 result |= 1;
9660         sprintf(str, "1073741824.");
9661         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
9662         f = f + f;
9663         along = 0;
9664         along = (unsigned long)f;
9665         if (along != 0x80000000)
9666                 result |= 2;
9667         f -= 1.;
9668         along = 0;
9669         along = (unsigned long)f;
9670         if (along != 0x7fffffff)
9671                 result |= 1;
9672         f += 2.;
9673         along = 0;
9674         along = (unsigned long)f;
9675         if (along != 0x80000001)
9676                 result |= 2;
9677         if (result)
9678                 exit(result);
9679         signal(SIGFPE, blech_in_list);
9680         sprintf(str, "123.");
9681         sscanf(str, "%lf", &f);  /* f = 123.; */
9682         along = dummy_long((unsigned long)f);
9683         aint = dummy_int((unsigned int)f);
9684         ashort = dummy_short((unsigned short)f);
9685         if (along != (unsigned long)123)
9686                 result |= 4;
9687         if (aint != (unsigned int)123)
9688                 result |= 4;
9689         if (ashort != (unsigned short)123)
9690                 result |= 4;
9691         exit(result);
9692
9693 }
9694 EOCP
9695 set try
9696 if eval $compile_ok; then
9697         $run ./try
9698         castflags=$?
9699 else
9700         echo "(I can't seem to compile the test program--assuming it can't)"
9701         castflags=7
9702 fi
9703 case "$castflags" in
9704 0)      val="$define"
9705         echo "Yup, it can."
9706         ;;
9707 *)      val="$undef"
9708         echo "Nope, it can't."
9709         ;;
9710 esac
9711 set d_castneg
9712 eval $setvar
9713 $rm -f try.*
9714
9715 : see if vprintf exists
9716 echo " "
9717 if set vprintf val -f d_vprintf; eval $csym; $val; then
9718         echo 'vprintf() found.' >&4
9719         val="$define"
9720         $cat >try.c <<'EOF'
9721 #include <varargs.h>
9722
9723 int main() { xxx("foo"); }
9724
9725 xxx(va_alist)
9726 va_dcl
9727 {
9728         va_list args;
9729         char buf[10];
9730
9731         va_start(args);
9732         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
9733 }
9734 EOF
9735         set try
9736         if eval $compile && $run ./try; then
9737                 echo "Your vsprintf() returns (int)." >&4
9738                 val2="$undef"
9739         else
9740                 echo "Your vsprintf() returns (char*)." >&4
9741                 val2="$define"
9742         fi
9743 else
9744         echo 'vprintf() NOT found.' >&4
9745                 val="$undef"
9746                 val2="$undef"
9747 fi
9748 $rm -f try try.*
9749 set d_vprintf
9750 eval $setvar
9751 val=$val2
9752 set d_charvspr
9753 eval $setvar
9754
9755 : see if chown exists
9756 set chown d_chown
9757 eval $inlibc
9758
9759 : see if chroot exists
9760 set chroot d_chroot
9761 eval $inlibc
9762
9763 : see if chsize exists
9764 set chsize d_chsize
9765 eval $inlibc
9766
9767 : see if class exists
9768 set class d_class
9769 eval $inlibc
9770
9771 hasstruct='varname=$1; struct=$2; shift; shift;
9772 while $test $# -ge 2; do
9773         case "$1" in
9774         $define) echo "#include <$2>";;
9775         esac ;
9776     shift 2;
9777 done > try.c;
9778 echo "int main () { struct $struct foo; }" >> try.c;
9779 set try;
9780 if eval $compile; then
9781         val="$define";
9782 else
9783         val="$undef";
9784 fi;
9785 set $varname;
9786 eval $setvar;
9787 $rm -f try.c try.o'
9788
9789 socketlib=''
9790 sockethdr=''
9791 : see whether socket exists
9792 echo " "
9793 $echo $n "Hmm... $c" >&4
9794 if set socket val -f d_socket; eval $csym; $val; then
9795         echo "Looks like you have Berkeley networking support." >&4
9796         d_socket="$define"
9797         if set setsockopt val -f; eval $csym; $val; then
9798                 d_oldsock="$undef"
9799         else
9800                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
9801                 d_oldsock="$define"
9802         fi
9803 else
9804         if $contains socklib libc.list >/dev/null 2>&1; then
9805                 echo "Looks like you have Berkeley networking support." >&4
9806                 d_socket="$define"
9807                 : we will have to assume that it supports the 4.2 BSD interface
9808                 d_oldsock="$undef"
9809         else
9810                 echo "You don't have Berkeley networking in libc$_a..." >&4
9811                 if test "X$d_socket" = "X$define"; then
9812                    echo "...but you seem to believe that you have sockets." >&4
9813                 else
9814                         for net in net socket
9815                         do
9816                                 if test -f /usr/lib/lib$net$_a; then
9817                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
9818                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
9819                                         if $contains socket libc.list >/dev/null 2>&1; then
9820                                                 d_socket="$define"
9821                                                 socketlib="-l$net"
9822                                                 case "$net" in
9823                                                 net)
9824                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
9825                                                         sockethdr="-I/usr/netinclude"
9826                                                         ;;
9827                                                 esac
9828                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
9829                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
9830                                                         d_oldsock="$undef"
9831                                                 else
9832                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
9833                                                         d_oldsock="$define"
9834                                                 fi
9835                                                 break
9836                                         fi
9837                                 fi
9838                         done
9839                         if test "X$d_socket" != "X$define"; then
9840                            echo "or anywhere else I see." >&4
9841                            d_socket="$undef"
9842                            d_oldsock="$undef"
9843                         fi
9844                 fi
9845         fi
9846 fi
9847
9848 : see if socketpair exists
9849 set socketpair d_sockpair
9850 eval $inlibc
9851
9852
9853 echo " "
9854 echo "Checking the availability of certain socket constants..." >&4
9855 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
9856         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
9857         $cat >try.c <<EOF
9858 #include <sys/types.h>
9859 #include <sys/socket.h>
9860 int main() {
9861     int i = $ENUM;
9862 }
9863 EOF
9864         val="$undef"
9865         set try; if eval $compile; then
9866                 val="$define"
9867         fi
9868         set d_${enum}; eval $setvar
9869         $rm -f try.c try
9870 done
9871
9872 : see if this is a sys/uio.h system
9873 set sys/uio.h i_sysuio
9874 eval $inhdr
9875
9876
9877 echo " "
9878 echo "Checking to see if your system supports struct cmsghdr..." >&4
9879 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
9880 eval $hasstruct
9881 case "$d_cmsghdr_s" in
9882 "$define")      echo "Yes, it does."   ;;
9883 *)              echo "No, it doesn't." ;;
9884 esac
9885
9886
9887 : check for const keyword
9888 echo " "
9889 echo 'Checking to see if your C compiler knows about "const"...' >&4
9890 $cat >const.c <<'EOCP'
9891 typedef struct spug { int drokk; } spug;
9892 int main()
9893 {
9894         const char *foo;
9895         const spug y;
9896 }
9897 EOCP
9898 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
9899         val="$define"
9900         echo "Yup, it does."
9901 else
9902         val="$undef"
9903         echo "Nope, it doesn't."
9904 fi
9905 set d_const
9906 eval $setvar
9907
9908 : see if crypt exists
9909 echo " "
9910 set crypt d_crypt
9911 eval $inlibc
9912 case "$d_crypt" in
9913 $define) cryptlib='' ;;
9914 *)      if set crypt val -f d_crypt; eval $csym; $val; then
9915                 echo 'crypt() found.' >&4
9916                 val="$define"
9917                 cryptlib=''
9918         else
9919                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
9920                 if $test -z "$cryptlib"; then
9921                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
9922                 else
9923                         cryptlib=-lcrypt
9924                 fi
9925                 if $test -z "$cryptlib"; then
9926                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
9927                 else
9928                         cryptlib=-lcrypt
9929                 fi
9930                 if $test -z "$cryptlib"; then
9931                         cryptlib=`./loc libcrypt$_a "" $libpth`
9932                 else
9933                         cryptlib=-lcrypt
9934                 fi
9935                 if $test -z "$cryptlib"; then
9936                         echo 'crypt() NOT found.' >&4
9937                         val="$undef"
9938                 else
9939                         val="$define"
9940                 fi
9941         fi
9942         set d_crypt
9943         eval $setvar
9944         ;;
9945 esac
9946
9947 : see if this is a crypt.h system
9948 set crypt.h i_crypt
9949 eval $inhdr
9950
9951 : see if crypt_r exists
9952 set crypt_r d_crypt_r
9953 eval $inlibc
9954 case "$d_crypt_r" in
9955 "$define")
9956         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
9957         case "crypt" in
9958         time)
9959                 hdrs="$hdrs $i_systime sys/time.h"
9960                 ;;
9961         esac
9962         case "$d_crypt_r_proto:$usethreads" in
9963         ":define")      d_crypt_r_proto=define
9964                 set d_crypt_r_proto crypt_r $hdrs
9965                 eval $hasproto ;;
9966         *)      ;;
9967         esac
9968         case "$d_crypt_r_proto" in
9969         define)
9970         case "$crypt_r_proto" in
9971         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
9972         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
9973         esac
9974         case "$crypt_r_proto" in
9975         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
9976         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
9977         esac
9978         case "$crypt_r_proto" in
9979         ''|0)   d_crypt_r=undef
9980                 crypt_r_proto=0
9981                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
9982         * )     case "$crypt_r_proto" in
9983                 REENTRANT_PROTO*) ;;
9984                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
9985                 esac
9986                 echo "Prototype: $try" ;;
9987         esac
9988         ;;
9989         *)      case "$usethreads" in
9990                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
9991                 esac
9992                 d_crypt_r=undef
9993                 crypt_r_proto=0
9994                 ;;
9995         esac
9996         ;;
9997 *)      crypt_r_proto=0
9998         ;;
9999 esac
10000
10001 : get csh whereabouts
10002 case "$csh" in
10003 'csh') val="$undef" ;;
10004 *) val="$define" ;;
10005 esac
10006 set d_csh
10007 eval $setvar
10008 : Respect a hint or command line value for full_csh.
10009 case "$full_csh" in
10010 '') full_csh=$csh ;;
10011 esac
10012
10013 : see if ctermid_r exists
10014 set ctermid_r d_ctermid_r
10015 eval $inlibc
10016 case "$d_ctermid_r" in
10017 "$define")
10018         hdrs="$i_systypes sys/types.h define stdio.h "
10019         case "stdio" in
10020         time)
10021                 hdrs="$hdrs $i_systime sys/time.h"
10022                 ;;
10023         esac
10024         case "$d_ctermid_r_proto:$usethreads" in
10025         ":define")      d_ctermid_r_proto=define
10026                 set d_ctermid_r_proto ctermid_r $hdrs
10027                 eval $hasproto ;;
10028         *)      ;;
10029         esac
10030         case "$d_ctermid_r_proto" in
10031         define)
10032         case "$ctermid_r_proto" in
10033         ''|0) try='char* ctermid_r(char*);'
10034         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10035         esac
10036         case "$ctermid_r_proto" in
10037         ''|0)   d_ctermid_r=undef
10038                 ctermid_r_proto=0
10039                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10040         * )     case "$ctermid_r_proto" in
10041                 REENTRANT_PROTO*) ;;
10042                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10043                 esac
10044                 echo "Prototype: $try" ;;
10045         esac
10046         ;;
10047         *)      case "$usethreads" in
10048                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10049                 esac
10050                 d_ctermid_r=undef
10051                 ctermid_r_proto=0
10052                 ;;
10053         esac
10054         ;;
10055 *)      ctermid_r_proto=0
10056         ;;
10057 esac
10058
10059 : see if ctime_r exists
10060 set ctime_r d_ctime_r
10061 eval $inlibc
10062 case "$d_ctime_r" in
10063 "$define")
10064         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
10065         case "time" in
10066         time)
10067                 hdrs="$hdrs $i_systime sys/time.h"
10068                 ;;
10069         esac
10070         case "$d_ctime_r_proto:$usethreads" in
10071         ":define")      d_ctime_r_proto=define
10072                 set d_ctime_r_proto ctime_r $hdrs
10073                 eval $hasproto ;;
10074         *)      ;;
10075         esac
10076         case "$d_ctime_r_proto" in
10077         define)
10078         case "$ctime_r_proto" in
10079         ''|0) try='char* ctime_r(const time_t*, char*);'
10080         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10081         esac
10082         case "$ctime_r_proto" in
10083         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10084         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10085         esac
10086         case "$ctime_r_proto" in
10087         ''|0) try='int ctime_r(const time_t*, char*);'
10088         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10089         esac
10090         case "$ctime_r_proto" in
10091         ''|0) try='int ctime_r(const time_t*, char*, int);'
10092         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10093         esac
10094         case "$ctime_r_proto" in
10095         ''|0)   d_ctime_r=undef
10096                 ctime_r_proto=0
10097                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10098         * )     case "$ctime_r_proto" in
10099                 REENTRANT_PROTO*) ;;
10100                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10101                 esac
10102                 echo "Prototype: $try" ;;
10103         esac
10104         ;;
10105         *)      case "$usethreads" in
10106                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10107                 esac
10108                 d_ctime_r=undef
10109                 ctime_r_proto=0
10110                 ;;
10111         esac
10112         ;;
10113 *)      ctime_r_proto=0
10114         ;;
10115 esac
10116
10117 : see if cuserid exists
10118 set cuserid d_cuserid
10119 eval $inlibc
10120
10121 : see if this is a limits.h system
10122 set limits.h i_limits
10123 eval $inhdr
10124
10125 : see if this is a float.h system
10126 set float.h i_float
10127 eval $inhdr
10128
10129 : See if number of significant digits in a double precision number is known
10130 echo " "
10131 $cat >dbl_dig.c <<EOM
10132 #$i_limits I_LIMITS
10133 #$i_float I_FLOAT
10134 #ifdef I_LIMITS
10135 #include <limits.h>
10136 #endif
10137 #ifdef I_FLOAT
10138 #include <float.h>
10139 #endif
10140 #ifdef DBL_DIG
10141 printf("Contains DBL_DIG");
10142 #endif
10143 EOM
10144 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10145 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10146         echo "DBL_DIG found." >&4
10147         val="$define"
10148 else
10149         echo "DBL_DIG NOT found." >&4
10150         val="$undef"
10151 fi
10152 $rm -f dbl_dig.?
10153 set d_dbl_dig
10154 eval $setvar
10155
10156 : see if dbm.h is available
10157 : see if dbmclose exists
10158 set dbmclose d_dbmclose
10159 eval $inlibc
10160
10161 case "$d_dbmclose" in
10162 $define)
10163         set dbm.h i_dbm
10164         eval $inhdr
10165         case "$i_dbm" in
10166         $define)
10167                 val="$undef"
10168                 set i_rpcsvcdbm
10169                 eval $setvar
10170                 ;;
10171         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10172                 eval $inhdr
10173                 ;;
10174         esac
10175         ;;
10176 *)      echo "We won't be including <dbm.h>"
10177         val="$undef"
10178         set i_dbm
10179         eval $setvar
10180         val="$undef"
10181         set i_rpcsvcdbm
10182         eval $setvar
10183         ;;
10184 esac
10185
10186 : see if prototype for dbminit is available
10187 echo " "
10188 set d_dbminitproto dbminit $i_dbm dbm.h
10189 eval $hasproto
10190
10191 : see if difftime exists
10192 set difftime d_difftime
10193 eval $inlibc
10194
10195 : see if this is a dirent system
10196 echo " "
10197 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10198         val="$define"
10199         echo "<dirent.h> found." >&4
10200 else
10201         val="$undef"
10202         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10203                 echo "<sys/dir.h> found." >&4
10204                 echo " "
10205         else
10206                 xinc=`./findhdr sys/ndir.h`
10207         fi
10208         echo "<dirent.h> NOT found." >&4
10209 fi
10210 set i_dirent
10211 eval $setvar
10212
10213 : Look for type of directory structure.
10214 echo " "
10215 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10216
10217 case "$direntrytype" in
10218 ''|' ')
10219         case "$i_dirent" in
10220         $define) guess1='struct dirent' ;;
10221         *) guess1='struct direct'  ;;
10222         esac
10223         ;;
10224 *)      guess1="$direntrytype"
10225         ;;
10226 esac
10227
10228 case "$guess1" in
10229 'struct dirent') guess2='struct direct' ;;
10230 *) guess2='struct dirent' ;;
10231 esac
10232                 
10233 if $contains "$guess1" try.c >/dev/null 2>&1; then
10234         direntrytype="$guess1"
10235         echo "Your directory entries are $direntrytype." >&4
10236 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10237         direntrytype="$guess2"
10238         echo "Your directory entries seem to be $direntrytype." >&4
10239 else
10240         echo "I don't recognize your system's directory entries." >&4
10241         rp="What type is used for directory entries on this system?"
10242         dflt="$guess1"
10243         . ./myread
10244         direntrytype="$ans"
10245 fi
10246 $rm -f try.c
10247
10248
10249 : see if the directory entry stores field length
10250 echo " "
10251 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10252 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10253         echo "Good, your directory entry keeps length information in d_namlen." >&4
10254         val="$define"
10255 else
10256         echo "Your directory entry does not know about the d_namlen field." >&4
10257         val="$undef"
10258 fi
10259 set d_dirnamlen
10260 eval $setvar
10261 $rm -f try.c
10262
10263 : see if this is an sysdir system
10264 set sys/dir.h i_sysdir
10265 eval $inhdr
10266
10267 : see if this is an sysndir system
10268 set sys/ndir.h i_sysndir
10269 eval $inhdr
10270
10271 : Look for dirfd
10272 echo " "
10273 $cat >dirfd.c <<EOM
10274 #include <stdio.h>
10275 #$i_dirent I_DIRENT             /**/
10276 #$i_sysdir I_SYS_DIR            /**/
10277 #$i_sysndir I_SYS_NDIR          /**/
10278 #$i_systypes I_SYS_TYPES        /**/
10279 #if defined(I_SYS_TYPES)
10280 #include <sys/types.h>
10281 #endif
10282 #if defined(I_DIRENT)
10283 #include <dirent.h>
10284 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10285 #include <sys/dir.h>
10286 #endif
10287 #else
10288 #ifdef I_SYS_NDIR
10289 #include <sys/ndir.h>
10290 #else
10291 #ifdef I_SYS_DIR
10292 #ifdef hp9000s500
10293 #include <ndir.h>       /* may be wrong in the future */
10294 #else
10295 #include <sys/dir.h>
10296 #endif
10297 #endif
10298 #endif
10299 #endif 
10300 int main() {
10301         DIR *dirp = opendir(".");
10302         if (dirfd(dirp) >= 0)
10303                 exit(0);
10304         else
10305                 exit(1);
10306 }
10307 EOM
10308 set dirfd
10309 if eval $compile; then
10310         val="$define"
10311 fi
10312 case "$val" in
10313 $define)        echo "dirfd() found." >&4       ;;
10314 *)              echo "dirfd() NOT found." >&4   ;;
10315 esac
10316 set d_dirfd
10317 eval $setvar
10318 $rm -f dirfd*
10319
10320 : see if dlerror exists
10321 xxx_runnm="$runnm"
10322 runnm=false
10323 set dlerror d_dlerror
10324 eval $inlibc
10325 runnm="$xxx_runnm"
10326
10327 : see if dlfcn is available
10328 set dlfcn.h i_dlfcn
10329 eval $inhdr
10330
10331 case "$usedl" in
10332 $define|y|true)
10333         $cat << EOM
10334
10335 On a few systems, the dynamically loaded modules that perl generates and uses
10336 will need a different extension than shared libs. The default will probably
10337 be appropriate.
10338
10339 EOM
10340         case "$dlext" in
10341         '')     dflt="$so" ;;
10342         *)      dflt="$dlext" ;;
10343         esac
10344         rp='What is the extension of dynamically loaded modules'
10345         . ./myread
10346         dlext="$ans"
10347         ;;
10348 *)
10349         dlext="none"
10350         ;;
10351 esac
10352
10353 : Check if dlsym need a leading underscore
10354 echo " "
10355 val="$undef"
10356
10357 case "$dlsrc" in
10358 dl_dlopen.xs)
10359         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10360         $cat >dyna.c <<'EOM'
10361 fred () { }
10362 EOM
10363
10364 $cat >fred.c<<EOM
10365
10366 #include <stdio.h>
10367 #$i_dlfcn I_DLFCN
10368 #ifdef I_DLFCN
10369 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10370 #else
10371 #include <sys/types.h>
10372 #include <nlist.h>
10373 #include <link.h>
10374 #endif
10375
10376 extern int fred() ;
10377
10378 int main()
10379 {
10380     void * handle ;
10381     void * symbol ;
10382 #ifndef RTLD_LAZY
10383     int mode = 1 ;
10384 #else
10385     int mode = RTLD_LAZY ;
10386 #endif
10387     handle = dlopen("./dyna.$dlext", mode) ;
10388     if (handle == NULL) {
10389         printf ("1\n") ;
10390         fflush (stdout) ;
10391         exit(0);
10392     }
10393     symbol = dlsym(handle, "fred") ;
10394     if (symbol == NULL) {
10395         /* try putting a leading underscore */
10396         symbol = dlsym(handle, "_fred") ;
10397         if (symbol == NULL) {
10398             printf ("2\n") ;
10399             fflush (stdout) ;
10400             exit(0);
10401         }
10402         printf ("3\n") ;
10403     }
10404     else
10405         printf ("4\n") ;
10406     fflush (stdout) ;
10407     exit(0);
10408 }
10409 EOM
10410         : Call the object file tmp-dyna.o in case dlext=o.
10411         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10412                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10413                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10414                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10415                 xxx=`$run ./fred`
10416                 case $xxx in
10417                 1)      echo "Test program failed using dlopen." >&4
10418                         echo "Perhaps you should not use dynamic loading." >&4;;
10419                 2)      echo "Test program failed using dlsym." >&4
10420                         echo "Perhaps you should not use dynamic loading." >&4;;
10421                 3)      echo "dlsym needs a leading underscore" >&4
10422                         val="$define" ;;
10423                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10424                 esac
10425         else
10426                 echo "I can't compile and run the test program." >&4
10427                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10428         fi
10429         ;;
10430 esac
10431                 
10432 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10433
10434 set d_dlsymun
10435 eval $setvar
10436
10437 : see if drand48_r exists
10438 set drand48_r d_drand48_r
10439 eval $inlibc
10440 case "$d_drand48_r" in
10441 "$define")
10442         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10443         case "stdlib" in
10444         time)
10445                 hdrs="$hdrs $i_systime sys/time.h"
10446                 ;;
10447         esac
10448         case "$d_drand48_r_proto:$usethreads" in
10449         ":define")      d_drand48_r_proto=define
10450                 set d_drand48_r_proto drand48_r $hdrs
10451                 eval $hasproto ;;
10452         *)      ;;
10453         esac
10454         case "$d_drand48_r_proto" in
10455         define)
10456         case "$drand48_r_proto" in
10457         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10458         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10459         esac
10460         case "$drand48_r_proto" in
10461         ''|0)   d_drand48_r=undef
10462                 drand48_r_proto=0
10463                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10464         * )     case "$drand48_r_proto" in
10465                 REENTRANT_PROTO*) ;;
10466                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10467                 esac
10468                 echo "Prototype: $try" ;;
10469         esac
10470         ;;
10471         *)      case "$usethreads" in
10472                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10473                 esac
10474                 d_drand48_r=undef
10475                 drand48_r_proto=0
10476                 ;;
10477         esac
10478         ;;
10479 *)      drand48_r_proto=0
10480         ;;
10481 esac
10482
10483 : see if prototype for drand48 is available
10484 echo " "
10485 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
10486 eval $hasproto
10487
10488 : see if dup2 exists
10489 set dup2 d_dup2
10490 eval $inlibc
10491
10492 : see if eaccess exists
10493 set eaccess d_eaccess
10494 eval $inlibc
10495
10496 : see if endgrent exists
10497 set endgrent d_endgrent
10498 eval $inlibc
10499
10500 : see if this is an grp system
10501 set grp.h i_grp
10502 eval $inhdr
10503
10504 case "$i_grp" in
10505 $define)
10506         xxx=`./findhdr grp.h`
10507         $cppstdin $cppflags $cppminus < $xxx >$$.h
10508
10509         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
10510                 val="$define"
10511         else
10512                 val="$undef"
10513         fi
10514         set d_grpasswd
10515         eval $setvar
10516
10517         $rm -f $$.h
10518         ;;
10519 *)
10520         val="$undef";
10521         set d_grpasswd; eval $setvar
10522         ;;
10523 esac
10524
10525 : see if endgrent_r exists
10526 set endgrent_r d_endgrent_r
10527 eval $inlibc
10528 case "$d_endgrent_r" in
10529 "$define")
10530         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
10531         case "grp" in
10532         time)
10533                 hdrs="$hdrs $i_systime sys/time.h"
10534                 ;;
10535         esac
10536         case "$d_endgrent_r_proto:$usethreads" in
10537         ":define")      d_endgrent_r_proto=define
10538                 set d_endgrent_r_proto endgrent_r $hdrs
10539                 eval $hasproto ;;
10540         *)      ;;
10541         esac
10542         case "$d_endgrent_r_proto" in
10543         define)
10544         case "$endgrent_r_proto" in
10545         ''|0) try='int endgrent_r(FILE**);'
10546         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
10547         esac
10548         case "$endgrent_r_proto" in
10549         ''|0) try='void endgrent_r(FILE**);'
10550         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
10551         esac
10552         case "$endgrent_r_proto" in
10553         ''|0)   d_endgrent_r=undef
10554                 endgrent_r_proto=0
10555                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
10556         * )     case "$endgrent_r_proto" in
10557                 REENTRANT_PROTO*) ;;
10558                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
10559                 esac
10560                 echo "Prototype: $try" ;;
10561         esac
10562         ;;
10563         *)      case "$usethreads" in
10564                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
10565                 esac
10566                 d_endgrent_r=undef
10567                 endgrent_r_proto=0
10568                 ;;
10569         esac
10570         ;;
10571 *)      endgrent_r_proto=0
10572         ;;
10573 esac
10574
10575 : see if endhostent exists
10576 set endhostent d_endhent
10577 eval $inlibc
10578
10579 : see if this is a netdb.h system
10580 set netdb.h i_netdb
10581 eval $inhdr
10582
10583 : see if endhostent_r exists
10584 set endhostent_r d_endhostent_r
10585 eval $inlibc
10586 case "$d_endhostent_r" in
10587 "$define")
10588         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10589         case "netdb" in
10590         time)
10591                 hdrs="$hdrs $i_systime sys/time.h"
10592                 ;;
10593         esac
10594         case "$d_endhostent_r_proto:$usethreads" in
10595         ":define")      d_endhostent_r_proto=define
10596                 set d_endhostent_r_proto endhostent_r $hdrs
10597                 eval $hasproto ;;
10598         *)      ;;
10599         esac
10600         case "$d_endhostent_r_proto" in
10601         define)
10602         case "$endhostent_r_proto" in
10603         ''|0) try='int endhostent_r(struct hostent_data*);'
10604         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
10605         esac
10606         case "$endhostent_r_proto" in
10607         ''|0) try='void endhostent_r(struct hostent_data*);'
10608         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
10609         esac
10610         case "$endhostent_r_proto" in
10611         ''|0)   d_endhostent_r=undef
10612                 endhostent_r_proto=0
10613                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
10614         * )     case "$endhostent_r_proto" in
10615                 REENTRANT_PROTO*) ;;
10616                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
10617                 esac
10618                 echo "Prototype: $try" ;;
10619         esac
10620         ;;
10621         *)      case "$usethreads" in
10622                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
10623                 esac
10624                 d_endhostent_r=undef
10625                 endhostent_r_proto=0
10626                 ;;
10627         esac
10628         ;;
10629 *)      endhostent_r_proto=0
10630         ;;
10631 esac
10632
10633 : see if endnetent exists
10634 set endnetent d_endnent
10635 eval $inlibc
10636
10637 : see if endnetent_r exists
10638 set endnetent_r d_endnetent_r
10639 eval $inlibc
10640 case "$d_endnetent_r" in
10641 "$define")
10642         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10643         case "netdb" in
10644         time)
10645                 hdrs="$hdrs $i_systime sys/time.h"
10646                 ;;
10647         esac
10648         case "$d_endnetent_r_proto:$usethreads" in
10649         ":define")      d_endnetent_r_proto=define
10650                 set d_endnetent_r_proto endnetent_r $hdrs
10651                 eval $hasproto ;;
10652         *)      ;;
10653         esac
10654         case "$d_endnetent_r_proto" in
10655         define)
10656         case "$endnetent_r_proto" in
10657         ''|0) try='int endnetent_r(struct netent_data*);'
10658         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
10659         esac
10660         case "$endnetent_r_proto" in
10661         ''|0) try='void endnetent_r(struct netent_data*);'
10662         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
10663         esac
10664         case "$endnetent_r_proto" in
10665         ''|0)   d_endnetent_r=undef
10666                 endnetent_r_proto=0
10667                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
10668         * )     case "$endnetent_r_proto" in
10669                 REENTRANT_PROTO*) ;;
10670                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
10671                 esac
10672                 echo "Prototype: $try" ;;
10673         esac
10674         ;;
10675         *)      case "$usethreads" in
10676                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
10677                 esac
10678                 d_endnetent_r=undef
10679                 endnetent_r_proto=0
10680                 ;;
10681         esac
10682         ;;
10683 *)      endnetent_r_proto=0
10684         ;;
10685 esac
10686
10687 : see if endprotoent exists
10688 set endprotoent d_endpent
10689 eval $inlibc
10690
10691 : see if endprotoent_r exists
10692 set endprotoent_r d_endprotoent_r
10693 eval $inlibc
10694 case "$d_endprotoent_r" in
10695 "$define")
10696         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10697         case "netdb" in
10698         time)
10699                 hdrs="$hdrs $i_systime sys/time.h"
10700                 ;;
10701         esac
10702         case "$d_endprotoent_r_proto:$usethreads" in
10703         ":define")      d_endprotoent_r_proto=define
10704                 set d_endprotoent_r_proto endprotoent_r $hdrs
10705                 eval $hasproto ;;
10706         *)      ;;
10707         esac
10708         case "$d_endprotoent_r_proto" in
10709         define)
10710         case "$endprotoent_r_proto" in
10711         ''|0) try='int endprotoent_r(struct protoent_data*);'
10712         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
10713         esac
10714         case "$endprotoent_r_proto" in
10715         ''|0) try='void endprotoent_r(struct protoent_data*);'
10716         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
10717         esac
10718         case "$endprotoent_r_proto" in
10719         ''|0)   d_endprotoent_r=undef
10720                 endprotoent_r_proto=0
10721                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
10722         * )     case "$endprotoent_r_proto" in
10723                 REENTRANT_PROTO*) ;;
10724                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
10725                 esac
10726                 echo "Prototype: $try" ;;
10727         esac
10728         ;;
10729         *)      case "$usethreads" in
10730                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
10731                 esac
10732                 d_endprotoent_r=undef
10733                 endprotoent_r_proto=0
10734                 ;;
10735         esac
10736         ;;
10737 *)      endprotoent_r_proto=0
10738         ;;
10739 esac
10740
10741 : see if endpwent exists
10742 set endpwent d_endpwent
10743 eval $inlibc
10744
10745 : see if this is a pwd.h system
10746 set pwd.h i_pwd
10747 eval $inhdr
10748
10749 case "$i_pwd" in
10750 $define)
10751         xxx=`./findhdr pwd.h`
10752         $cppstdin $cppflags $cppminus < $xxx >$$.h
10753
10754         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
10755                 val="$define"
10756         else
10757                 val="$undef"
10758         fi
10759         set d_pwquota
10760         eval $setvar
10761
10762         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
10763                 val="$define"
10764         else
10765                 val="$undef"
10766         fi
10767         set d_pwage
10768         eval $setvar
10769
10770         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
10771                 val="$define"
10772         else
10773                 val="$undef"
10774         fi
10775         set d_pwchange
10776         eval $setvar
10777
10778         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
10779                 val="$define"
10780         else
10781                 val="$undef"
10782         fi
10783         set d_pwclass
10784         eval $setvar
10785
10786         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
10787                 val="$define"
10788         else
10789                 val="$undef"
10790         fi
10791         set d_pwexpire
10792         eval $setvar
10793
10794         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
10795                 val="$define"
10796         else
10797                 val="$undef"
10798         fi
10799         set d_pwcomment
10800         eval $setvar
10801
10802         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
10803                 val="$define"
10804         else
10805                 val="$undef"
10806         fi
10807         set d_pwgecos
10808         eval $setvar
10809
10810         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
10811                 val="$define"
10812         else
10813                 val="$undef"
10814         fi
10815         set d_pwpasswd
10816         eval $setvar
10817
10818         $rm -f $$.h
10819         ;;
10820 *)
10821         val="$undef"; 
10822         set d_pwquota; eval $setvar
10823         set d_pwage; eval $setvar
10824         set d_pwchange; eval $setvar
10825         set d_pwclass; eval $setvar
10826         set d_pwexpire; eval $setvar
10827         set d_pwcomment; eval $setvar
10828         set d_pwgecos; eval $setvar
10829         set d_pwpasswd; eval $setvar
10830         ;;
10831 esac
10832
10833 : see if endpwent_r exists
10834 set endpwent_r d_endpwent_r
10835 eval $inlibc
10836 case "$d_endpwent_r" in
10837 "$define")
10838         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
10839         case "pwd" in
10840         time)
10841                 hdrs="$hdrs $i_systime sys/time.h"
10842                 ;;
10843         esac
10844         case "$d_endpwent_r_proto:$usethreads" in
10845         ":define")      d_endpwent_r_proto=define
10846                 set d_endpwent_r_proto endpwent_r $hdrs
10847                 eval $hasproto ;;
10848         *)      ;;
10849         esac
10850         case "$d_endpwent_r_proto" in
10851         define)
10852         case "$endpwent_r_proto" in
10853         ''|0) try='int endpwent_r(FILE**);'
10854         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
10855         esac
10856         case "$endpwent_r_proto" in
10857         ''|0) try='void endpwent_r(FILE**);'
10858         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
10859         esac
10860         case "$endpwent_r_proto" in
10861         ''|0)   d_endpwent_r=undef
10862                 endpwent_r_proto=0
10863                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
10864         * )     case "$endpwent_r_proto" in
10865                 REENTRANT_PROTO*) ;;
10866                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
10867                 esac
10868                 echo "Prototype: $try" ;;
10869         esac
10870         ;;
10871         *)      case "$usethreads" in
10872                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
10873                 esac
10874                 d_endpwent_r=undef
10875                 endpwent_r_proto=0
10876                 ;;
10877         esac
10878         ;;
10879 *)      endpwent_r_proto=0
10880         ;;
10881 esac
10882
10883 : see if endservent exists
10884 set endservent d_endsent
10885 eval $inlibc
10886
10887 : see if endservent_r exists
10888 set endservent_r d_endservent_r
10889 eval $inlibc
10890 case "$d_endservent_r" in
10891 "$define")
10892         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10893         case "netdb" in
10894         time)
10895                 hdrs="$hdrs $i_systime sys/time.h"
10896                 ;;
10897         esac
10898         case "$d_endservent_r_proto:$usethreads" in
10899         ":define")      d_endservent_r_proto=define
10900                 set d_endservent_r_proto endservent_r $hdrs
10901                 eval $hasproto ;;
10902         *)      ;;
10903         esac
10904         case "$d_endservent_r_proto" in
10905         define)
10906         case "$endservent_r_proto" in
10907         ''|0) try='int endservent_r(struct servent_data*);'
10908         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
10909         esac
10910         case "$endservent_r_proto" in
10911         ''|0) try='void endservent_r(struct servent_data*);'
10912         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
10913         esac
10914         case "$endservent_r_proto" in
10915         ''|0)   d_endservent_r=undef
10916                 endservent_r_proto=0
10917                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
10918         * )     case "$endservent_r_proto" in
10919                 REENTRANT_PROTO*) ;;
10920                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
10921                 esac
10922                 echo "Prototype: $try" ;;
10923         esac
10924         ;;
10925         *)      case "$usethreads" in
10926                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
10927                 esac
10928                 d_endservent_r=undef
10929                 endservent_r_proto=0
10930                 ;;
10931         esac
10932         ;;
10933 *)      endservent_r_proto=0
10934         ;;
10935 esac
10936
10937 : Locate the flags for 'open()'
10938 echo " "
10939 $cat >try.c <<'EOCP'
10940 #include <sys/types.h>
10941 #ifdef I_FCNTL
10942 #include <fcntl.h>
10943 #endif
10944 #ifdef I_SYS_FILE
10945 #include <sys/file.h>
10946 #endif
10947 int main() {
10948         if(O_RDONLY);
10949 #ifdef O_TRUNC
10950         exit(0);
10951 #else
10952         exit(1);
10953 #endif
10954 }
10955 EOCP
10956 : check sys/file.h first to get FREAD on Sun
10957 if $test `./findhdr sys/file.h` && \
10958                 set try -DI_SYS_FILE && eval $compile; then
10959         h_sysfile=true;
10960         echo "<sys/file.h> defines the O_* constants..." >&4
10961         if $run ./try; then
10962                 echo "and you have the 3 argument form of open()." >&4
10963                 val="$define"
10964         else
10965                 echo "but not the 3 argument form of open().  Oh, well." >&4
10966                 val="$undef"
10967         fi
10968 elif $test `./findhdr fcntl.h` && \
10969                 set try -DI_FCNTL && eval $compile; then
10970         h_fcntl=true;
10971         echo "<fcntl.h> defines the O_* constants..." >&4
10972         if $run ./try; then
10973                 echo "and you have the 3 argument form of open()." >&4
10974                 val="$define"
10975         else
10976                 echo "but not the 3 argument form of open().  Oh, well." >&4
10977                 val="$undef"
10978         fi
10979 else
10980         val="$undef"
10981         echo "I can't find the O_* constant definitions!  You got problems." >&4
10982 fi
10983 set d_open3
10984 eval $setvar
10985 $rm -f try try.*
10986
10987 : see which of string.h or strings.h is needed
10988 echo " "
10989 strings=`./findhdr string.h`
10990 if $test "$strings" && $test -r "$strings"; then
10991         echo "Using <string.h> instead of <strings.h>." >&4
10992         val="$define"
10993 else
10994         val="$undef"
10995         strings=`./findhdr strings.h`
10996         if $test "$strings" && $test -r "$strings"; then
10997                 echo "Using <strings.h> instead of <string.h>." >&4
10998         else
10999                 echo "No string header found -- You'll surely have problems." >&4
11000         fi
11001 fi
11002 set i_string
11003 eval $setvar
11004 case "$i_string" in
11005 "$undef") strings=`./findhdr strings.h`;;
11006 *)        strings=`./findhdr string.h`;;
11007 esac
11008
11009 : see if this is a sys/file.h system
11010 val=''
11011 set sys/file.h val
11012 eval $inhdr
11013
11014 : do we need to include sys/file.h ?
11015 case "$val" in
11016 "$define")
11017         echo " "
11018         if $h_sysfile; then
11019                 val="$define"
11020                 echo "We'll be including <sys/file.h>." >&4
11021         else
11022                 val="$undef"
11023                 echo "We won't be including <sys/file.h>." >&4
11024         fi
11025         ;;
11026 *)
11027         h_sysfile=false
11028         ;;
11029 esac
11030 set i_sysfile
11031 eval $setvar
11032
11033 : see if fcntl.h is there
11034 val=''
11035 set fcntl.h val
11036 eval $inhdr
11037
11038 : see if we can include fcntl.h
11039 case "$val" in
11040 "$define")
11041         echo " "
11042         if $h_fcntl; then
11043                 val="$define"
11044                 echo "We'll be including <fcntl.h>." >&4
11045         else
11046                 val="$undef"
11047                 if $h_sysfile; then
11048         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11049                 else
11050                         echo "We won't be including <fcntl.h>." >&4
11051                 fi
11052         fi
11053         ;;
11054 *)
11055         h_fcntl=false
11056         val="$undef"
11057         ;;
11058 esac
11059 set i_fcntl
11060 eval $setvar
11061
11062 : check for non-blocking I/O stuff
11063 case "$h_sysfile" in
11064 true) echo "#include <sys/file.h>" > head.c;;
11065 *)
11066        case "$h_fcntl" in
11067        true) echo "#include <fcntl.h>" > head.c;;
11068        *) echo "#include <sys/fcntl.h>" > head.c;;
11069        esac
11070        ;;
11071 esac
11072 echo " "
11073 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11074 case "$o_nonblock" in
11075 '')
11076         $cat head.c > try.c
11077         $cat >>try.c <<EOCP
11078 #include <stdio.h>
11079 #include <stdlib.h>
11080 #$i_fcntl I_FCNTL
11081 #ifdef I_FCNTL
11082 #include <fcntl.h>
11083 #endif
11084 int main() {
11085 #ifdef O_NONBLOCK
11086         printf("O_NONBLOCK\n");
11087         exit(0);
11088 #endif
11089 #ifdef O_NDELAY
11090         printf("O_NDELAY\n");
11091         exit(0);
11092 #endif
11093 #ifdef FNDELAY
11094         printf("FNDELAY\n");
11095         exit(0);
11096 #endif
11097         exit(0);
11098 }
11099 EOCP
11100         set try
11101         if eval $compile_ok; then
11102                 o_nonblock=`$run ./try`
11103                 case "$o_nonblock" in
11104                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11105                 *) echo "Seems like we can use $o_nonblock.";;
11106                 esac
11107         else
11108                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11109         fi
11110         ;;
11111 *) echo "Using $hint value $o_nonblock.";;
11112 esac
11113 $rm -f try try.* .out core
11114
11115 echo " "
11116 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11117 case "$eagain" in
11118 '')
11119         $cat head.c > try.c
11120         $cat >>try.c <<EOCP
11121 #include <errno.h>
11122 #include <sys/types.h>
11123 #include <signal.h>
11124 #include <stdio.h> 
11125 #include <stdlib.h> 
11126 #$i_fcntl I_FCNTL
11127 #ifdef I_FCNTL
11128 #include <fcntl.h>
11129 #endif
11130 #define MY_O_NONBLOCK $o_nonblock
11131 #ifndef errno  /* XXX need better Configure test */
11132 extern int errno;
11133 #endif
11134 #$i_unistd I_UNISTD
11135 #ifdef I_UNISTD
11136 #include <unistd.h>
11137 #endif
11138 #$i_string I_STRING
11139 #ifdef I_STRING
11140 #include <string.h>
11141 #else
11142 #include <strings.h>
11143 #endif
11144 $signal_t blech(x) int x; { exit(3); }
11145 EOCP
11146         $cat >> try.c <<'EOCP'
11147 int main()
11148 {
11149         int pd[2];
11150         int pu[2];
11151         char buf[1];
11152         char string[100];
11153
11154         pipe(pd);       /* Down: child -> parent */
11155         pipe(pu);       /* Up: parent -> child */
11156         if (0 != fork()) {
11157                 int ret;
11158                 close(pd[1]);   /* Parent reads from pd[0] */
11159                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11160 #ifdef F_SETFL
11161                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11162                         exit(1);
11163 #else
11164                 exit(4);
11165 #endif
11166                 signal(SIGALRM, blech);
11167                 alarm(5);
11168                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11169                         exit(2);
11170                 sprintf(string, "%d\n", ret);
11171                 write(2, string, strlen(string));
11172                 alarm(0);
11173 #ifdef EAGAIN
11174                 if (errno == EAGAIN) {
11175                         printf("EAGAIN\n");
11176                         goto ok;
11177                 }
11178 #endif
11179 #ifdef EWOULDBLOCK
11180                 if (errno == EWOULDBLOCK)
11181                         printf("EWOULDBLOCK\n");
11182 #endif
11183         ok:
11184                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11185                 sleep(2);                               /* Give it time to close our pipe */
11186                 alarm(5);
11187                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11188                 alarm(0);
11189                 sprintf(string, "%d\n", ret);
11190                 write(4, string, strlen(string));
11191                 exit(0);
11192         }
11193
11194         close(pd[0]);                   /* We write to pd[1] */
11195         close(pu[1]);                   /* We read from pu[0] */
11196         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11197         close(pd[1]);                   /* Pipe pd is now fully closed! */
11198         exit(0);                                /* Bye bye, thank you for playing! */
11199 }
11200 EOCP
11201         set try
11202         if eval $compile_ok; then
11203                 echo "$startsh" >mtry
11204                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11205                 chmod +x mtry
11206                 ./mtry >/dev/null 2>&1
11207                 case $? in
11208                 0) eagain=`$cat try.out`;;
11209                 1) echo "Could not perform non-blocking setting!";;
11210                 2) echo "I did a successful read() for something that was not there!";;
11211                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11212                 4) echo "Could not find F_SETFL!";;
11213                 *) echo "Something terribly wrong happened during testing.";;
11214                 esac
11215                 rd_nodata=`$cat try.ret`
11216                 echo "A read() system call with no data present returns $rd_nodata."
11217                 case "$rd_nodata" in
11218                 0|-1) ;;
11219                 *)
11220                         echo "(That's peculiar, fixing that to be -1.)"
11221                         rd_nodata=-1
11222                         ;;
11223                 esac
11224                 case "$eagain" in
11225                 '')
11226                         echo "Forcing errno EAGAIN on read() with no data available."
11227                         eagain=EAGAIN
11228                         ;;
11229                 *)
11230                         echo "Your read() sets errno to $eagain when no data is available."
11231                         ;;
11232                 esac
11233                 status=`$cat try.err`
11234                 case "$status" in
11235                 0) echo "And it correctly returns 0 to signal EOF.";;
11236                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11237                 *) echo "However, your read() returns '$status' on EOF??";;
11238                 esac
11239                 val="$define"
11240                 if test "$status" = "$rd_nodata"; then
11241                         echo "WARNING: you can't distinguish between EOF and no data!"
11242                         val="$undef"
11243                 fi
11244         else
11245                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11246                 eagain=EAGAIN
11247         fi
11248         set d_eofnblk
11249         eval $setvar
11250         ;;
11251 *)
11252         echo "Using $hint value $eagain."
11253         echo "Your read() returns $rd_nodata when no data is present."
11254         case "$d_eofnblk" in
11255         "$define") echo "And you can see EOF because read() returns 0.";;
11256         "$undef") echo "But you can't see EOF status from read() returned value.";;
11257         *)
11258                 echo "(Assuming you can't see EOF status from read anyway.)"
11259                 d_eofnblk=$undef
11260                 ;;
11261         esac
11262         ;;
11263 esac
11264 $rm -f try try.* .out core head.c mtry
11265
11266 : see if fchdir exists
11267 set fchdir d_fchdir
11268 eval $inlibc
11269
11270 : see if fchmod exists
11271 set fchmod d_fchmod
11272 eval $inlibc
11273
11274 : see if fchown exists
11275 set fchown d_fchown
11276 eval $inlibc
11277
11278 : see if this is an fcntl system
11279 set fcntl d_fcntl
11280 eval $inlibc
11281
11282 echo " "
11283 : See if fcntl-based locking works.
11284 $cat >try.c <<EOCP
11285 #include <stdlib.h>
11286 #include <unistd.h>
11287 #include <fcntl.h>
11288 #include <signal.h>
11289 $signal_t blech(x) int x; { exit(3); }
11290 int main() {
11291 #if defined(F_SETLK) && defined(F_SETLKW)
11292      struct flock flock;
11293      int retval, fd;
11294      fd = open("try.c", O_RDONLY);
11295      flock.l_type = F_RDLCK;
11296      flock.l_whence = SEEK_SET;
11297      flock.l_start = flock.l_len = 0;
11298      signal(SIGALRM, blech);
11299      alarm(10);
11300      retval = fcntl(fd, F_SETLK, &flock);
11301      close(fd);
11302      (retval < 0 ? exit(2) : exit(0));
11303 #else
11304      exit(2);
11305 #endif
11306 }
11307 EOCP
11308 echo "Checking if fcntl-based file locking works... "
11309 case "$d_fcntl" in
11310 "$define")
11311         set try
11312         if eval $compile_ok; then
11313                 if $run ./try; then
11314                         echo "Yes, it seems to work."
11315                         val="$define"
11316                 else
11317                         echo "Nope, it didn't work."
11318                         val="$undef"
11319                         case "$?" in
11320                         3) $cat >&4 <<EOM
11321 ***
11322 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
11323 *** This is (almost) impossible.
11324 *** If your NFS lock daemons are not feeling well, something like
11325 *** this may happen, please investigate.  Cannot continue, aborting.
11326 ***
11327 EOM
11328                                 exit 1
11329                                 ;;
11330                         esac
11331                 fi
11332         else
11333                 echo "I'm unable to compile the test program, so I'll assume not."
11334                 val="$undef"
11335         fi
11336         ;;
11337 *) val="$undef";
11338         echo "Nope, since you don't even have fcntl()."
11339         ;;
11340 esac
11341 set d_fcntl_can_lock
11342 eval $setvar
11343 $rm -f try*
11344
11345
11346 : check for fd_set items
11347 $cat <<EOM
11348
11349 Checking to see how well your C compiler handles fd_set and friends ...
11350 EOM
11351 $cat >try.c <<EOCP
11352 #$i_systime I_SYS_TIME
11353 #$i_sysselct I_SYS_SELECT
11354 #$d_socket HAS_SOCKET
11355 #include <sys/types.h>
11356 #ifdef HAS_SOCKET
11357 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
11358 #endif
11359 #ifdef I_SYS_TIME
11360 #include <sys/time.h>
11361 #endif
11362 #ifdef I_SYS_SELECT
11363 #include <sys/select.h>
11364 #endif
11365 int main() {
11366         fd_set fds;
11367
11368 #ifdef TRYBITS
11369         if(fds.fds_bits);
11370 #endif
11371
11372 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
11373         exit(0);
11374 #else
11375         exit(1);
11376 #endif
11377 }
11378 EOCP
11379 set try -DTRYBITS
11380 if eval $compile; then
11381         d_fds_bits="$define"
11382         d_fd_set="$define"
11383         echo "Well, your system knows about the normal fd_set typedef..." >&4
11384         if $run ./try; then
11385                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
11386                 d_fd_macros="$define"
11387         else
11388                 $cat >&4 <<'EOM'
11389 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
11390 EOM
11391                 d_fd_macros="$undef"
11392         fi
11393 else
11394         $cat <<'EOM'
11395 Hmm, your compiler has some difficulty with fd_set.  Checking further...
11396 EOM
11397         set try
11398         if eval $compile; then
11399                 d_fds_bits="$undef"
11400                 d_fd_set="$define"
11401                 echo "Well, your system has some sort of fd_set available..." >&4
11402                 if $run ./try; then
11403                         echo "and you have the normal fd_set macros." >&4
11404                         d_fd_macros="$define"
11405                 else
11406                         $cat <<'EOM'
11407 but not the normal fd_set macros!  Gross!  More work for me...
11408 EOM
11409                         d_fd_macros="$undef"
11410                 fi
11411         else
11412         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
11413                 d_fd_set="$undef"
11414                 d_fds_bits="$undef"
11415                 d_fd_macros="$undef"
11416         fi
11417 fi
11418 $rm -f try try.*
11419
11420 : see if fgetpos exists
11421 set fgetpos d_fgetpos
11422 eval $inlibc
11423
11424 : see if finite exists
11425 set finite d_finite
11426 eval $inlibc
11427
11428 : see if finitel exists
11429 set finitel d_finitel
11430 eval $inlibc
11431
11432 : see if flock exists
11433 set flock d_flock
11434 eval $inlibc
11435
11436 : see if prototype for flock is available
11437 echo " "
11438 set d_flockproto flock $i_sysfile sys/file.h
11439 eval $hasproto
11440
11441 : see if fork exists
11442 set fork d_fork
11443 eval $inlibc
11444
11445 : see if fp_class exists
11446 set fp_class d_fp_class
11447 eval $inlibc
11448
11449 : see if pathconf exists
11450 set pathconf d_pathconf
11451 eval $inlibc
11452
11453 : see if fpathconf exists
11454 set fpathconf d_fpathconf
11455 eval $inlibc
11456
11457 : see if fpclass exists
11458 set fpclass d_fpclass
11459 eval $inlibc
11460
11461 : see if fpclassify exists
11462 set fpclassify d_fpclassify
11463 eval $inlibc
11464
11465 : see if fpclassl exists
11466 set fpclassl d_fpclassl
11467 eval $inlibc
11468
11469
11470 : check for fpos64_t
11471 echo " "
11472 echo "Checking to see if you have fpos64_t..." >&4
11473 $cat >try.c <<EOCP
11474 #include <stdio.h>
11475 int main() { fpos64_t x = 7; }
11476 EOCP
11477 set try
11478 if eval $compile; then
11479         val="$define"
11480         echo "You have fpos64_t."
11481 else
11482         val="$undef"
11483         echo "You do not have fpos64_t."
11484         case "$fpossize" in
11485         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
11486         esac
11487 fi
11488 $rm -f try.* try
11489 set d_fpos64_t
11490 eval $setvar
11491
11492 : see if frexpl exists
11493 set frexpl d_frexpl
11494 eval $inlibc
11495
11496 : see if this is a sys/param system
11497 set sys/param.h i_sysparam
11498 eval $inhdr
11499
11500 : see if this is a sys/mount.h system
11501 set sys/mount.h i_sysmount
11502 eval $inhdr
11503
11504
11505 echo " "
11506 echo "Checking to see if your system supports struct fs_data..." >&4
11507 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
11508 eval $hasstruct
11509 case "$d_fs_data_s" in
11510 "$define")      echo "Yes, it does."   ;;
11511 *)              echo "No, it doesn't." ;;
11512 esac
11513
11514 : see if fseeko exists
11515 set fseeko d_fseeko
11516 eval $inlibc
11517 case "$longsize" in
11518 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
11519 esac
11520
11521 : see if fsetpos exists
11522 set fsetpos d_fsetpos
11523 eval $inlibc
11524
11525
11526 : see if fstatfs exists
11527 set fstatfs d_fstatfs
11528 eval $inlibc
11529
11530
11531 : see if statvfs exists
11532 set statvfs d_statvfs
11533 eval $inlibc
11534
11535 : see if fstatvfs exists
11536 set fstatvfs d_fstatvfs
11537 eval $inlibc
11538
11539
11540 : see if fsync exists
11541 set fsync d_fsync
11542 eval $inlibc
11543
11544 : see if ftello exists
11545 set ftello d_ftello
11546 eval $inlibc
11547 case "$longsize" in
11548 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
11549 esac
11550
11551 : see if getcwd exists
11552 set getcwd d_getcwd
11553 eval $inlibc
11554
11555 : see if getespwnam exists
11556 set getespwnam d_getespwnam
11557 eval $inlibc
11558
11559
11560 : see if getfsstat exists
11561 set getfsstat d_getfsstat
11562 eval $inlibc
11563
11564 : see if getgrent exists
11565 set getgrent d_getgrent
11566 eval $inlibc
11567
11568 : see if getgrent_r exists
11569 set getgrent_r d_getgrent_r
11570 eval $inlibc
11571 case "$d_getgrent_r" in
11572 "$define")
11573         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11574         case "grp" in
11575         time)
11576                 hdrs="$hdrs $i_systime sys/time.h"
11577                 ;;
11578         esac
11579         case "$d_getgrent_r_proto:$usethreads" in
11580         ":define")      d_getgrent_r_proto=define
11581                 set d_getgrent_r_proto getgrent_r $hdrs
11582                 eval $hasproto ;;
11583         *)      ;;
11584         esac
11585         case "$d_getgrent_r_proto" in
11586         define)
11587         case "$getgrent_r_proto" in
11588         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
11589         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
11590         esac
11591         case "$getgrent_r_proto" in
11592         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
11593         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
11594         esac
11595         case "$getgrent_r_proto" in
11596         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
11597         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
11598         esac
11599         case "$getgrent_r_proto" in
11600         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
11601         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
11602         esac
11603         case "$getgrent_r_proto" in
11604         ''|0) try='int getgrent_r(struct group*, char*, int);'
11605         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
11606         esac
11607         case "$getgrent_r_proto" in
11608         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
11609         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
11610         esac
11611         case "$getgrent_r_proto" in
11612         ''|0)   d_getgrent_r=undef
11613                 getgrent_r_proto=0
11614                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
11615         * )     case "$getgrent_r_proto" in
11616                 REENTRANT_PROTO*) ;;
11617                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
11618                 esac
11619                 echo "Prototype: $try" ;;
11620         esac
11621         ;;
11622         *)      case "$usethreads" in
11623                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
11624                 esac
11625                 d_getgrent_r=undef
11626                 getgrent_r_proto=0
11627                 ;;
11628         esac
11629         ;;
11630 *)      getgrent_r_proto=0
11631         ;;
11632 esac
11633
11634 : see if getgrgid_r exists
11635 set getgrgid_r d_getgrgid_r
11636 eval $inlibc
11637 case "$d_getgrgid_r" in
11638 "$define")
11639         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11640         case "grp" in
11641         time)
11642                 hdrs="$hdrs $i_systime sys/time.h"
11643                 ;;
11644         esac
11645         case "$d_getgrgid_r_proto:$usethreads" in
11646         ":define")      d_getgrgid_r_proto=define
11647                 set d_getgrgid_r_proto getgrgid_r $hdrs
11648                 eval $hasproto ;;
11649         *)      ;;
11650         esac
11651         case "$d_getgrgid_r_proto" in
11652         define)
11653         case "$getgrgid_r_proto" in
11654         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
11655         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
11656         esac
11657         case "$getgrgid_r_proto" in
11658         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
11659         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
11660         esac
11661         case "$getgrgid_r_proto" in
11662         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
11663         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
11664         esac
11665         case "$getgrgid_r_proto" in
11666         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
11667         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
11668         esac
11669         case "$getgrgid_r_proto" in
11670         ''|0)   d_getgrgid_r=undef
11671                 getgrgid_r_proto=0
11672                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
11673         * )     case "$getgrgid_r_proto" in
11674                 REENTRANT_PROTO*) ;;
11675                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
11676                 esac
11677                 echo "Prototype: $try" ;;
11678         esac
11679         ;;
11680         *)      case "$usethreads" in
11681                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
11682                 esac
11683                 d_getgrgid_r=undef
11684                 getgrgid_r_proto=0
11685                 ;;
11686         esac
11687         ;;
11688 *)      getgrgid_r_proto=0
11689         ;;
11690 esac
11691
11692 : see if getgrnam_r exists
11693 set getgrnam_r d_getgrnam_r
11694 eval $inlibc
11695 case "$d_getgrnam_r" in
11696 "$define")
11697         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11698         case "grp" in
11699         time)
11700                 hdrs="$hdrs $i_systime sys/time.h"
11701                 ;;
11702         esac
11703         case "$d_getgrnam_r_proto:$usethreads" in
11704         ":define")      d_getgrnam_r_proto=define
11705                 set d_getgrnam_r_proto getgrnam_r $hdrs
11706                 eval $hasproto ;;
11707         *)      ;;
11708         esac
11709         case "$d_getgrnam_r_proto" in
11710         define)
11711         case "$getgrnam_r_proto" in
11712         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
11713         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
11714         esac
11715         case "$getgrnam_r_proto" in
11716         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
11717         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
11718         esac
11719         case "$getgrnam_r_proto" in
11720         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
11721         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
11722         esac
11723         case "$getgrnam_r_proto" in
11724         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
11725         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
11726         esac
11727         case "$getgrnam_r_proto" in
11728         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
11729         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
11730         esac
11731         case "$getgrnam_r_proto" in
11732         ''|0)   d_getgrnam_r=undef
11733                 getgrnam_r_proto=0
11734                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
11735         * )     case "$getgrnam_r_proto" in
11736                 REENTRANT_PROTO*) ;;
11737                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
11738                 esac
11739                 echo "Prototype: $try" ;;
11740         esac
11741         ;;
11742         *)      case "$usethreads" in
11743                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
11744                 esac
11745                 d_getgrnam_r=undef
11746                 getgrnam_r_proto=0
11747                 ;;
11748         esac
11749         ;;
11750 *)      getgrnam_r_proto=0
11751         ;;
11752 esac
11753
11754 : see if gethostbyaddr exists
11755 set gethostbyaddr d_gethbyaddr
11756 eval $inlibc
11757
11758 : see if gethostbyname exists
11759 set gethostbyname d_gethbyname
11760 eval $inlibc
11761
11762 : see if gethostent exists
11763 set gethostent d_gethent
11764 eval $inlibc
11765
11766 : see how we will look up host name
11767 echo " "
11768 call=''
11769 if set gethostname val -f d_gethname; eval $csym; $val; then
11770         echo 'gethostname() found.' >&4
11771         d_gethname="$define"
11772         call=gethostname
11773 fi
11774 if set uname val -f d_uname; eval $csym; $val; then
11775         if ./xenix; then
11776                 $cat <<'EOM'
11777 uname() was found, but you're running xenix, and older versions of xenix
11778 have a broken uname(). If you don't really know whether your xenix is old
11779 enough to have a broken system call, use the default answer.
11780
11781 EOM
11782                 dflt=y
11783                 case "$d_uname" in
11784                 "$define") dflt=n;;
11785                 esac
11786                 rp='Is your uname() broken?'
11787                 . ./myread
11788                 case "$ans" in
11789                 n*) d_uname="$define"; call=uname;;
11790                 esac
11791         else
11792                 echo 'uname() found.' >&4
11793                 d_uname="$define"
11794                 case "$call" in
11795                 '') call=uname ;;
11796                 esac
11797         fi
11798 fi
11799 case "$d_gethname" in
11800 '') d_gethname="$undef";;
11801 esac
11802 case "$d_uname" in
11803 '') d_uname="$undef";;
11804 esac
11805 case "$d_uname$d_gethname" in
11806 *define*)
11807         dflt=n
11808         cat <<EOM
11809  
11810 Every now and then someone has a $call() that lies about the hostname
11811 but can't be fixed for political or economic reasons.  If you wish, I can
11812 pretend $call() isn't there and maybe compute hostname at run-time
11813 thanks to the '$phostname' command.
11814
11815 EOM
11816         rp="Shall I ignore $call() from now on?"
11817         . ./myread
11818         case "$ans" in
11819         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
11820         esac;;
11821 esac
11822 case "$phostname" in
11823 '') aphostname='';;
11824 *) case "$aphostname" in
11825         /*) ;;
11826         *) set X $phostname
11827                 shift
11828                 file=$1
11829                 shift
11830                 file=`./loc $file $file $pth`
11831                 aphostname=`echo $file $*`
11832                 ;;
11833         esac
11834         ;;
11835 esac
11836 case "$d_uname$d_gethname" in
11837 *define*) ;;
11838 *)
11839         case "$phostname" in
11840         '')
11841                 echo "There will be no way for $package to get your hostname." >&4;;
11842         *)
11843         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
11844                 ;;
11845         esac;;
11846 esac
11847 case "$d_phostname" in
11848 '') d_phostname="$undef";;
11849 esac
11850
11851 : see if gethostbyaddr_r exists
11852 set gethostbyaddr_r d_gethostbyaddr_r
11853 eval $inlibc
11854 case "$d_gethostbyaddr_r" in
11855 "$define")
11856         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11857         case "netdb" in
11858         time)
11859                 hdrs="$hdrs $i_systime sys/time.h"
11860                 ;;
11861         esac
11862         case "$d_gethostbyaddr_r_proto:$usethreads" in
11863         ":define")      d_gethostbyaddr_r_proto=define
11864                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
11865                 eval $hasproto ;;
11866         *)      ;;
11867         esac
11868         case "$d_gethostbyaddr_r_proto" in
11869         define)
11870         case "$gethostbyaddr_r_proto" in
11871         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
11872         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
11873         esac
11874         case "$gethostbyaddr_r_proto" in
11875         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
11876         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
11877         esac
11878         case "$gethostbyaddr_r_proto" in
11879         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
11880         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
11881         esac
11882         case "$gethostbyaddr_r_proto" in
11883         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
11884         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
11885         esac
11886         case "$gethostbyaddr_r_proto" in
11887         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
11888         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
11889         esac
11890         case "$gethostbyaddr_r_proto" in
11891         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
11892         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
11893         esac
11894         case "$gethostbyaddr_r_proto" in
11895         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
11896         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
11897         esac
11898         case "$gethostbyaddr_r_proto" in
11899         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
11900         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
11901         esac
11902         case "$gethostbyaddr_r_proto" in
11903         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
11904         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
11905         esac
11906         case "$gethostbyaddr_r_proto" in
11907         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
11908         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
11909         esac
11910         case "$gethostbyaddr_r_proto" in
11911         ''|0)   d_gethostbyaddr_r=undef
11912                 gethostbyaddr_r_proto=0
11913                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
11914         * )     case "$gethostbyaddr_r_proto" in
11915                 REENTRANT_PROTO*) ;;
11916                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
11917                 esac
11918                 echo "Prototype: $try" ;;
11919         esac
11920         ;;
11921         *)      case "$usethreads" in
11922                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
11923                 esac
11924                 d_gethostbyaddr_r=undef
11925                 gethostbyaddr_r_proto=0
11926                 ;;
11927         esac
11928         ;;
11929 *)      gethostbyaddr_r_proto=0
11930         ;;
11931 esac
11932
11933 : see if gethostbyname_r exists
11934 set gethostbyname_r d_gethostbyname_r
11935 eval $inlibc
11936 case "$d_gethostbyname_r" in
11937 "$define")
11938         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11939         case "netdb" in
11940         time)
11941                 hdrs="$hdrs $i_systime sys/time.h"
11942                 ;;
11943         esac
11944         case "$d_gethostbyname_r_proto:$usethreads" in
11945         ":define")      d_gethostbyname_r_proto=define
11946                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
11947                 eval $hasproto ;;
11948         *)      ;;
11949         esac
11950         case "$d_gethostbyname_r_proto" in
11951         define)
11952         case "$gethostbyname_r_proto" in
11953         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
11954         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
11955         esac
11956         case "$gethostbyname_r_proto" in
11957         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
11958         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
11959         esac
11960         case "$gethostbyname_r_proto" in
11961         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
11962         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
11963         esac
11964         case "$gethostbyname_r_proto" in
11965         ''|0)   d_gethostbyname_r=undef
11966                 gethostbyname_r_proto=0
11967                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
11968         * )     case "$gethostbyname_r_proto" in
11969                 REENTRANT_PROTO*) ;;
11970                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
11971                 esac
11972                 echo "Prototype: $try" ;;
11973         esac
11974         ;;
11975         *)      case "$usethreads" in
11976                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
11977                 esac
11978                 d_gethostbyname_r=undef
11979                 gethostbyname_r_proto=0
11980                 ;;
11981         esac
11982         ;;
11983 *)      gethostbyname_r_proto=0
11984         ;;
11985 esac
11986
11987 : see if gethostent_r exists
11988 set gethostent_r d_gethostent_r
11989 eval $inlibc
11990 case "$d_gethostent_r" in
11991 "$define")
11992         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11993         case "netdb" in
11994         time)
11995                 hdrs="$hdrs $i_systime sys/time.h"
11996                 ;;
11997         esac
11998         case "$d_gethostent_r_proto:$usethreads" in
11999         ":define")      d_gethostent_r_proto=define
12000                 set d_gethostent_r_proto gethostent_r $hdrs
12001                 eval $hasproto ;;
12002         *)      ;;
12003         esac
12004         case "$d_gethostent_r_proto" in
12005         define)
12006         case "$gethostent_r_proto" in
12007         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
12008         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
12009         esac
12010         case "$gethostent_r_proto" in
12011         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
12012         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
12013         esac
12014         case "$gethostent_r_proto" in
12015         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
12016         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
12017         esac
12018         case "$gethostent_r_proto" in
12019         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
12020         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
12021         esac
12022         case "$gethostent_r_proto" in
12023         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
12024         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
12025         esac
12026         case "$gethostent_r_proto" in
12027         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
12028         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
12029         esac
12030         case "$gethostent_r_proto" in
12031         ''|0)   d_gethostent_r=undef
12032                 gethostent_r_proto=0
12033                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
12034         * )     case "$gethostent_r_proto" in
12035                 REENTRANT_PROTO*) ;;
12036                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12037                 esac
12038                 echo "Prototype: $try" ;;
12039         esac
12040         ;;
12041         *)      case "$usethreads" in
12042                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12043                 esac
12044                 d_gethostent_r=undef
12045                 gethostent_r_proto=0
12046                 ;;
12047         esac
12048         ;;
12049 *)      gethostent_r_proto=0
12050         ;;
12051 esac
12052
12053 : see if prototypes for various gethostxxx netdb.h functions are available
12054 echo " "
12055 set d_gethostprotos gethostent $i_netdb netdb.h
12056 eval $hasproto
12057
12058 : see if getitimer exists
12059 set getitimer d_getitimer
12060 eval $inlibc
12061
12062 : see if getlogin exists
12063 set getlogin d_getlogin
12064 eval $inlibc
12065
12066 : see if getlogin_r exists
12067 set getlogin_r d_getlogin_r
12068 eval $inlibc
12069 case "$d_getlogin_r" in
12070 "$define")
12071         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12072         case "unistd" in
12073         time)
12074                 hdrs="$hdrs $i_systime sys/time.h"
12075                 ;;
12076         esac
12077         case "$d_getlogin_r_proto:$usethreads" in
12078         ":define")      d_getlogin_r_proto=define
12079                 set d_getlogin_r_proto getlogin_r $hdrs
12080                 eval $hasproto ;;
12081         *)      ;;
12082         esac
12083         case "$d_getlogin_r_proto" in
12084         define)
12085         case "$getlogin_r_proto" in
12086         ''|0) try='int getlogin_r(char*, size_t);'
12087         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12088         esac
12089         case "$getlogin_r_proto" in
12090         ''|0) try='int getlogin_r(char*, int);'
12091         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12092         esac
12093         case "$getlogin_r_proto" in
12094         ''|0) try='char* getlogin_r(char*, size_t);'
12095         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12096         esac
12097         case "$getlogin_r_proto" in
12098         ''|0) try='char* getlogin_r(char*, int);'
12099         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12100         esac
12101         case "$getlogin_r_proto" in
12102         ''|0)   d_getlogin_r=undef
12103                 getlogin_r_proto=0
12104                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12105         * )     case "$getlogin_r_proto" in
12106                 REENTRANT_PROTO*) ;;
12107                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12108                 esac
12109                 echo "Prototype: $try" ;;
12110         esac
12111         ;;
12112         *)      case "$usethreads" in
12113                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12114                 esac
12115                 d_getlogin_r=undef
12116                 getlogin_r_proto=0
12117                 ;;
12118         esac
12119         ;;
12120 *)      getlogin_r_proto=0
12121         ;;
12122 esac
12123
12124 : see if getmnt exists
12125 set getmnt d_getmnt
12126 eval $inlibc
12127
12128 : see if getmntent exists
12129 set getmntent d_getmntent
12130 eval $inlibc
12131
12132 : see if getnetbyaddr exists
12133 set getnetbyaddr d_getnbyaddr
12134 eval $inlibc
12135
12136 : see if getnetbyname exists
12137 set getnetbyname d_getnbyname
12138 eval $inlibc
12139
12140 : see if getnetent exists
12141 set getnetent d_getnent
12142 eval $inlibc
12143
12144 : see if getnetbyaddr_r exists
12145 set getnetbyaddr_r d_getnetbyaddr_r
12146 eval $inlibc
12147 case "$d_getnetbyaddr_r" in
12148 "$define")
12149         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12150         case "netdb" in
12151         time)
12152                 hdrs="$hdrs $i_systime sys/time.h"
12153                 ;;
12154         esac
12155         case "$d_getnetbyaddr_r_proto:$usethreads" in
12156         ":define")      d_getnetbyaddr_r_proto=define
12157                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12158                 eval $hasproto ;;
12159         *)      ;;
12160         esac
12161         case "$d_getnetbyaddr_r_proto" in
12162         define)
12163         case "$getnetbyaddr_r_proto" in
12164         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12165         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12166         esac
12167         case "$getnetbyaddr_r_proto" in
12168         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12169         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12170         esac
12171         case "$getnetbyaddr_r_proto" in
12172         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12173         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12174         esac
12175         case "$getnetbyaddr_r_proto" in
12176         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12177         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12178         esac
12179         case "$getnetbyaddr_r_proto" in
12180         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12181         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12182         esac
12183         case "$getnetbyaddr_r_proto" in
12184         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12185         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12186         esac
12187         case "$getnetbyaddr_r_proto" in
12188         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12189         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12190         esac
12191         case "$getnetbyaddr_r_proto" in
12192         ''|0)   d_getnetbyaddr_r=undef
12193                 getnetbyaddr_r_proto=0
12194                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12195         * )     case "$getnetbyaddr_r_proto" in
12196                 REENTRANT_PROTO*) ;;
12197                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12198                 esac
12199                 echo "Prototype: $try" ;;
12200         esac
12201         ;;
12202         *)      case "$usethreads" in
12203                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12204                 esac
12205                 d_getnetbyaddr_r=undef
12206                 getnetbyaddr_r_proto=0
12207                 ;;
12208         esac
12209         ;;
12210 *)      getnetbyaddr_r_proto=0
12211         ;;
12212 esac
12213
12214 : see if getnetbyname_r exists
12215 set getnetbyname_r d_getnetbyname_r
12216 eval $inlibc
12217 case "$d_getnetbyname_r" in
12218 "$define")
12219         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12220         case "netdb" in
12221         time)
12222                 hdrs="$hdrs $i_systime sys/time.h"
12223                 ;;
12224         esac
12225         case "$d_getnetbyname_r_proto:$usethreads" in
12226         ":define")      d_getnetbyname_r_proto=define
12227                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12228                 eval $hasproto ;;
12229         *)      ;;
12230         esac
12231         case "$d_getnetbyname_r_proto" in
12232         define)
12233         case "$getnetbyname_r_proto" in
12234         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12235         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12236         esac
12237         case "$getnetbyname_r_proto" in
12238         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12239         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12240         esac
12241         case "$getnetbyname_r_proto" in
12242         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
12243         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
12244         esac
12245         case "$getnetbyname_r_proto" in
12246         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
12247         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
12248         esac
12249         case "$getnetbyname_r_proto" in
12250         ''|0)   d_getnetbyname_r=undef
12251                 getnetbyname_r_proto=0
12252                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
12253         * )     case "$getnetbyname_r_proto" in
12254                 REENTRANT_PROTO*) ;;
12255                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
12256                 esac
12257                 echo "Prototype: $try" ;;
12258         esac
12259         ;;
12260         *)      case "$usethreads" in
12261                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
12262                 esac
12263                 d_getnetbyname_r=undef
12264                 getnetbyname_r_proto=0
12265                 ;;
12266         esac
12267         ;;
12268 *)      getnetbyname_r_proto=0
12269         ;;
12270 esac
12271
12272 : see if getnetent_r exists
12273 set getnetent_r d_getnetent_r
12274 eval $inlibc
12275 case "$d_getnetent_r" in
12276 "$define")
12277         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12278         case "netdb" in
12279         time)
12280                 hdrs="$hdrs $i_systime sys/time.h"
12281                 ;;
12282         esac
12283         case "$d_getnetent_r_proto:$usethreads" in
12284         ":define")      d_getnetent_r_proto=define
12285                 set d_getnetent_r_proto getnetent_r $hdrs
12286                 eval $hasproto ;;
12287         *)      ;;
12288         esac
12289         case "$d_getnetent_r_proto" in
12290         define)
12291         case "$getnetent_r_proto" in
12292         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
12293         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
12294         esac
12295         case "$getnetent_r_proto" in
12296         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
12297         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
12298         esac
12299         case "$getnetent_r_proto" in
12300         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
12301         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
12302         esac
12303         case "$getnetent_r_proto" in
12304         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
12305         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
12306         esac
12307         case "$getnetent_r_proto" in
12308         ''|0) try='int getnetent_r(struct netent*, char*, int);'
12309         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
12310         esac
12311         case "$getnetent_r_proto" in
12312         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
12313         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
12314         esac
12315         case "$getnetent_r_proto" in
12316         ''|0)   d_getnetent_r=undef
12317                 getnetent_r_proto=0
12318                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
12319         * )     case "$getnetent_r_proto" in
12320                 REENTRANT_PROTO*) ;;
12321                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
12322                 esac
12323                 echo "Prototype: $try" ;;
12324         esac
12325         ;;
12326         *)      case "$usethreads" in
12327                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
12328                 esac
12329                 d_getnetent_r=undef
12330                 getnetent_r_proto=0
12331                 ;;
12332         esac
12333         ;;
12334 *)      getnetent_r_proto=0
12335         ;;
12336 esac
12337
12338 : see if prototypes for various getnetxxx netdb.h functions are available
12339 echo " "
12340 set d_getnetprotos getnetent $i_netdb netdb.h
12341 eval $hasproto
12342
12343 : see if getpagesize exists
12344 set getpagesize d_getpagsz
12345 eval $inlibc
12346
12347
12348 : see if getprotobyname exists
12349 set getprotobyname d_getpbyname
12350 eval $inlibc
12351
12352 : see if getprotobynumber exists
12353 set getprotobynumber d_getpbynumber
12354 eval $inlibc
12355
12356 : see if getprotoent exists
12357 set getprotoent d_getpent
12358 eval $inlibc
12359
12360 : see if getpgid exists
12361 set getpgid d_getpgid
12362 eval $inlibc
12363
12364 : see if getpgrp2 exists
12365 set getpgrp2 d_getpgrp2
12366 eval $inlibc
12367
12368 : see if getppid exists
12369 set getppid d_getppid
12370 eval $inlibc
12371
12372 : see if getpriority exists
12373 set getpriority d_getprior
12374 eval $inlibc
12375
12376 : see if getprotobyname_r exists
12377 set getprotobyname_r d_getprotobyname_r
12378 eval $inlibc
12379 case "$d_getprotobyname_r" in
12380 "$define")
12381         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12382         case "netdb" in
12383         time)
12384                 hdrs="$hdrs $i_systime sys/time.h"
12385                 ;;
12386         esac
12387         case "$d_getprotobyname_r_proto:$usethreads" in
12388         ":define")      d_getprotobyname_r_proto=define
12389                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
12390                 eval $hasproto ;;
12391         *)      ;;
12392         esac
12393         case "$d_getprotobyname_r_proto" in
12394         define)
12395         case "$getprotobyname_r_proto" in
12396         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
12397         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
12398         esac
12399         case "$getprotobyname_r_proto" in
12400         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
12401         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
12402         esac
12403         case "$getprotobyname_r_proto" in
12404         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
12405         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
12406         esac
12407         case "$getprotobyname_r_proto" in
12408         ''|0)   d_getprotobyname_r=undef
12409                 getprotobyname_r_proto=0
12410                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
12411         * )     case "$getprotobyname_r_proto" in
12412                 REENTRANT_PROTO*) ;;
12413                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
12414                 esac
12415                 echo "Prototype: $try" ;;
12416         esac
12417         ;;
12418         *)      case "$usethreads" in
12419                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
12420                 esac
12421                 d_getprotobyname_r=undef
12422                 getprotobyname_r_proto=0
12423                 ;;
12424         esac
12425         ;;
12426 *)      getprotobyname_r_proto=0
12427         ;;
12428 esac
12429
12430 : see if getprotobynumber_r exists
12431 set getprotobynumber_r d_getprotobynumber_r
12432 eval $inlibc
12433 case "$d_getprotobynumber_r" in
12434 "$define")
12435         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12436         case "netdb" in
12437         time)
12438                 hdrs="$hdrs $i_systime sys/time.h"
12439                 ;;
12440         esac
12441         case "$d_getprotobynumber_r_proto:$usethreads" in
12442         ":define")      d_getprotobynumber_r_proto=define
12443                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
12444                 eval $hasproto ;;
12445         *)      ;;
12446         esac
12447         case "$d_getprotobynumber_r_proto" in
12448         define)
12449         case "$getprotobynumber_r_proto" in
12450         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
12451         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
12452         esac
12453         case "$getprotobynumber_r_proto" in
12454         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
12455         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
12456         esac
12457         case "$getprotobynumber_r_proto" in
12458         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
12459         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
12460         esac
12461         case "$getprotobynumber_r_proto" in
12462         ''|0)   d_getprotobynumber_r=undef
12463                 getprotobynumber_r_proto=0
12464                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
12465         * )     case "$getprotobynumber_r_proto" in
12466                 REENTRANT_PROTO*) ;;
12467                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
12468                 esac
12469                 echo "Prototype: $try" ;;
12470         esac
12471         ;;
12472         *)      case "$usethreads" in
12473                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
12474                 esac
12475                 d_getprotobynumber_r=undef
12476                 getprotobynumber_r_proto=0
12477                 ;;
12478         esac
12479         ;;
12480 *)      getprotobynumber_r_proto=0
12481         ;;
12482 esac
12483
12484 : see if getprotoent_r exists
12485 set getprotoent_r d_getprotoent_r
12486 eval $inlibc
12487 case "$d_getprotoent_r" in
12488 "$define")
12489         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12490         case "netdb" in
12491         time)
12492                 hdrs="$hdrs $i_systime sys/time.h"
12493                 ;;
12494         esac
12495         case "$d_getprotoent_r_proto:$usethreads" in
12496         ":define")      d_getprotoent_r_proto=define
12497                 set d_getprotoent_r_proto getprotoent_r $hdrs
12498                 eval $hasproto ;;
12499         *)      ;;
12500         esac
12501         case "$d_getprotoent_r_proto" in
12502         define)
12503         case "$getprotoent_r_proto" in
12504         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
12505         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
12506         esac
12507         case "$getprotoent_r_proto" in
12508         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
12509         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
12510         esac
12511         case "$getprotoent_r_proto" in
12512         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
12513         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
12514         esac
12515         case "$getprotoent_r_proto" in
12516         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
12517         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
12518         esac
12519         case "$getprotoent_r_proto" in
12520         ''|0)   d_getprotoent_r=undef
12521                 getprotoent_r_proto=0
12522                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
12523         * )     case "$getprotoent_r_proto" in
12524                 REENTRANT_PROTO*) ;;
12525                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
12526                 esac
12527                 echo "Prototype: $try" ;;
12528         esac
12529         ;;
12530         *)      case "$usethreads" in
12531                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
12532                 esac
12533                 d_getprotoent_r=undef
12534                 getprotoent_r_proto=0
12535                 ;;
12536         esac
12537         ;;
12538 *)      getprotoent_r_proto=0
12539         ;;
12540 esac
12541
12542 : see if prototypes for various getprotoxxx netdb.h functions are available
12543 echo " "
12544 set d_getprotoprotos getprotoent $i_netdb netdb.h
12545 eval $hasproto
12546
12547 : see if getprpwnam exists
12548 set getprpwnam d_getprpwnam
12549 eval $inlibc
12550
12551 : see if getpwent exists
12552 set getpwent d_getpwent
12553 eval $inlibc
12554
12555 : see if getpwent_r exists
12556 set getpwent_r d_getpwent_r
12557 eval $inlibc
12558 case "$d_getpwent_r" in
12559 "$define")
12560         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12561         case "pwd" in
12562         time)
12563                 hdrs="$hdrs $i_systime sys/time.h"
12564                 ;;
12565         esac
12566         case "$d_getpwent_r_proto:$usethreads" in
12567         ":define")      d_getpwent_r_proto=define
12568                 set d_getpwent_r_proto getpwent_r $hdrs
12569                 eval $hasproto ;;
12570         *)      ;;
12571         esac
12572         case "$d_getpwent_r_proto" in
12573         define)
12574         case "$getpwent_r_proto" in
12575         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
12576         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
12577         esac
12578         case "$getpwent_r_proto" in
12579         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
12580         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
12581         esac
12582         case "$getpwent_r_proto" in
12583         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
12584         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
12585         esac
12586         case "$getpwent_r_proto" in
12587         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
12588         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
12589         esac
12590         case "$getpwent_r_proto" in
12591         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
12592         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
12593         esac
12594         case "$getpwent_r_proto" in
12595         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
12596         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
12597         esac
12598         case "$getpwent_r_proto" in
12599         ''|0)   d_getpwent_r=undef
12600                 getpwent_r_proto=0
12601                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
12602         * )     case "$getpwent_r_proto" in
12603                 REENTRANT_PROTO*) ;;
12604                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
12605                 esac
12606                 echo "Prototype: $try" ;;
12607         esac
12608         ;;
12609         *)      case "$usethreads" in
12610                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
12611                 esac
12612                 d_getpwent_r=undef
12613                 getpwent_r_proto=0
12614                 ;;
12615         esac
12616         ;;
12617 *)      getpwent_r_proto=0
12618         ;;
12619 esac
12620
12621 : see if getpwnam_r exists
12622 set getpwnam_r d_getpwnam_r
12623 eval $inlibc
12624 case "$d_getpwnam_r" in
12625 "$define")
12626         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12627         case "pwd" in
12628         time)
12629                 hdrs="$hdrs $i_systime sys/time.h"
12630                 ;;
12631         esac
12632         case "$d_getpwnam_r_proto:$usethreads" in
12633         ":define")      d_getpwnam_r_proto=define
12634                 set d_getpwnam_r_proto getpwnam_r $hdrs
12635                 eval $hasproto ;;
12636         *)      ;;
12637         esac
12638         case "$d_getpwnam_r_proto" in
12639         define)
12640         case "$getpwnam_r_proto" in
12641         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
12642         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
12643         esac
12644         case "$getpwnam_r_proto" in
12645         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
12646         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
12647         esac
12648         case "$getpwnam_r_proto" in
12649         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
12650         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
12651         esac
12652         case "$getpwnam_r_proto" in
12653         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
12654         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
12655         esac
12656         case "$getpwnam_r_proto" in
12657         ''|0)   d_getpwnam_r=undef
12658                 getpwnam_r_proto=0
12659                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
12660         * )     case "$getpwnam_r_proto" in
12661                 REENTRANT_PROTO*) ;;
12662                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
12663                 esac
12664                 echo "Prototype: $try" ;;
12665         esac
12666         ;;
12667         *)      case "$usethreads" in
12668                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
12669                 esac
12670                 d_getpwnam_r=undef
12671                 getpwnam_r_proto=0
12672                 ;;
12673         esac
12674         ;;
12675 *)      getpwnam_r_proto=0
12676         ;;
12677 esac
12678
12679 : see if getpwuid_r exists
12680 set getpwuid_r d_getpwuid_r
12681 eval $inlibc
12682 case "$d_getpwuid_r" in
12683 "$define")
12684         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12685         case "pwd" in
12686         time)
12687                 hdrs="$hdrs $i_systime sys/time.h"
12688                 ;;
12689         esac
12690         case "$d_getpwuid_r_proto:$usethreads" in
12691         ":define")      d_getpwuid_r_proto=define
12692                 set d_getpwuid_r_proto getpwuid_r $hdrs
12693                 eval $hasproto ;;
12694         *)      ;;
12695         esac
12696         case "$d_getpwuid_r_proto" in
12697         define)
12698         case "$getpwuid_r_proto" in
12699         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
12700         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
12701         esac
12702         case "$getpwuid_r_proto" in
12703         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
12704         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
12705         esac
12706         case "$getpwuid_r_proto" in
12707         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
12708         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
12709         esac
12710         case "$getpwuid_r_proto" in
12711         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
12712         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
12713         esac
12714         case "$getpwuid_r_proto" in
12715         ''|0)   d_getpwuid_r=undef
12716                 getpwuid_r_proto=0
12717                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
12718         * )     case "$getpwuid_r_proto" in
12719                 REENTRANT_PROTO*) ;;
12720                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
12721                 esac
12722                 echo "Prototype: $try" ;;
12723         esac
12724         ;;
12725         *)      case "$usethreads" in
12726                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
12727                 esac
12728                 d_getpwuid_r=undef
12729                 getpwuid_r_proto=0
12730                 ;;
12731         esac
12732         ;;
12733 *)      getpwuid_r_proto=0
12734         ;;
12735 esac
12736
12737
12738 : see if getservbyname exists
12739 set getservbyname d_getsbyname
12740 eval $inlibc
12741
12742 : see if getservbyport exists
12743 set getservbyport d_getsbyport
12744 eval $inlibc
12745
12746 : see if getservent exists
12747 set getservent d_getsent
12748 eval $inlibc
12749
12750 : see if getservbyname_r exists
12751 set getservbyname_r d_getservbyname_r
12752 eval $inlibc
12753 case "$d_getservbyname_r" in
12754 "$define")
12755         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12756         case "netdb" in
12757         time)
12758                 hdrs="$hdrs $i_systime sys/time.h"
12759                 ;;
12760         esac
12761         case "$d_getservbyname_r_proto:$usethreads" in
12762         ":define")      d_getservbyname_r_proto=define
12763                 set d_getservbyname_r_proto getservbyname_r $hdrs
12764                 eval $hasproto ;;
12765         *)      ;;
12766         esac
12767         case "$d_getservbyname_r_proto" in
12768         define)
12769         case "$getservbyname_r_proto" in
12770         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
12771         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
12772         esac
12773         case "$getservbyname_r_proto" in
12774         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
12775         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
12776         esac
12777         case "$getservbyname_r_proto" in
12778         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
12779         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
12780         esac
12781         case "$getservbyname_r_proto" in
12782         ''|0)   d_getservbyname_r=undef
12783                 getservbyname_r_proto=0
12784                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
12785         * )     case "$getservbyname_r_proto" in
12786                 REENTRANT_PROTO*) ;;
12787                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
12788                 esac
12789                 echo "Prototype: $try" ;;
12790         esac
12791         ;;
12792         *)      case "$usethreads" in
12793                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
12794                 esac
12795                 d_getservbyname_r=undef
12796                 getservbyname_r_proto=0
12797                 ;;
12798         esac
12799         ;;
12800 *)      getservbyname_r_proto=0
12801         ;;
12802 esac
12803
12804 : see if getservbyport_r exists
12805 set getservbyport_r d_getservbyport_r
12806 eval $inlibc
12807 case "$d_getservbyport_r" in
12808 "$define")
12809         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12810         case "netdb" in
12811         time)
12812                 hdrs="$hdrs $i_systime sys/time.h"
12813                 ;;
12814         esac
12815         case "$d_getservbyport_r_proto:$usethreads" in
12816         ":define")      d_getservbyport_r_proto=define
12817                 set d_getservbyport_r_proto getservbyport_r $hdrs
12818                 eval $hasproto ;;
12819         *)      ;;
12820         esac
12821         case "$d_getservbyport_r_proto" in
12822         define)
12823         case "$getservbyport_r_proto" in
12824         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
12825         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
12826         esac
12827         case "$getservbyport_r_proto" in
12828         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
12829         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
12830         esac
12831         case "$getservbyport_r_proto" in
12832         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
12833         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
12834         esac
12835         case "$getservbyport_r_proto" in
12836         ''|0)   d_getservbyport_r=undef
12837                 getservbyport_r_proto=0
12838                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
12839         * )     case "$getservbyport_r_proto" in
12840                 REENTRANT_PROTO*) ;;
12841                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
12842                 esac
12843                 echo "Prototype: $try" ;;
12844         esac
12845         ;;
12846         *)      case "$usethreads" in
12847                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
12848                 esac
12849                 d_getservbyport_r=undef
12850                 getservbyport_r_proto=0
12851                 ;;
12852         esac
12853         ;;
12854 *)      getservbyport_r_proto=0
12855         ;;
12856 esac
12857
12858 : see if getservent_r exists
12859 set getservent_r d_getservent_r
12860 eval $inlibc
12861 case "$d_getservent_r" in
12862 "$define")
12863         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12864         case "netdb" in
12865         time)
12866                 hdrs="$hdrs $i_systime sys/time.h"
12867                 ;;
12868         esac
12869         case "$d_getservent_r_proto:$usethreads" in
12870         ":define")      d_getservent_r_proto=define
12871                 set d_getservent_r_proto getservent_r $hdrs
12872                 eval $hasproto ;;
12873         *)      ;;
12874         esac
12875         case "$d_getservent_r_proto" in
12876         define)
12877         case "$getservent_r_proto" in
12878         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
12879         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
12880         esac
12881         case "$getservent_r_proto" in
12882         ''|0) try='int getservent_r(struct servent*, char*, int);'
12883         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
12884         esac
12885         case "$getservent_r_proto" in
12886         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
12887         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
12888         esac
12889         case "$getservent_r_proto" in
12890         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
12891         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
12892         esac
12893         case "$getservent_r_proto" in
12894         ''|0)   d_getservent_r=undef
12895                 getservent_r_proto=0
12896                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
12897         * )     case "$getservent_r_proto" in
12898                 REENTRANT_PROTO*) ;;
12899                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
12900                 esac
12901                 echo "Prototype: $try" ;;
12902         esac
12903         ;;
12904         *)      case "$usethreads" in
12905                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
12906                 esac
12907                 d_getservent_r=undef
12908                 getservent_r_proto=0
12909                 ;;
12910         esac
12911         ;;
12912 *)      getservent_r_proto=0
12913         ;;
12914 esac
12915
12916 : see if prototypes for various getservxxx netdb.h functions are available
12917 echo " "
12918 set d_getservprotos getservent $i_netdb netdb.h
12919 eval $hasproto
12920
12921 : see if getspnam exists
12922 set getspnam d_getspnam
12923 eval $inlibc
12924
12925 : see if this is a shadow.h system
12926 set shadow.h i_shadow
12927 eval $inhdr
12928
12929 : see if getspnam_r exists
12930 set getspnam_r d_getspnam_r
12931 eval $inlibc
12932 case "$d_getspnam_r" in
12933 "$define")
12934         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
12935         case "shadow" in
12936         time)
12937                 hdrs="$hdrs $i_systime sys/time.h"
12938                 ;;
12939         esac
12940         case "$d_getspnam_r_proto:$usethreads" in
12941         ":define")      d_getspnam_r_proto=define
12942                 set d_getspnam_r_proto getspnam_r $hdrs
12943                 eval $hasproto ;;
12944         *)      ;;
12945         esac
12946         case "$d_getspnam_r_proto" in
12947         define)
12948         case "$getspnam_r_proto" in
12949         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
12950         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
12951         esac
12952         case "$getspnam_r_proto" in
12953         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
12954         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
12955         esac
12956         case "$getspnam_r_proto" in
12957         ''|0)   d_getspnam_r=undef
12958                 getspnam_r_proto=0
12959                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
12960         * )     case "$getspnam_r_proto" in
12961                 REENTRANT_PROTO*) ;;
12962                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
12963                 esac
12964                 echo "Prototype: $try" ;;
12965         esac
12966         ;;
12967         *)      case "$usethreads" in
12968                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
12969                 esac
12970                 d_getspnam_r=undef
12971                 getspnam_r_proto=0
12972                 ;;
12973         esac
12974         ;;
12975 *)      getspnam_r_proto=0
12976         ;;
12977 esac
12978
12979 : see if gettimeofday or ftime exists
12980 set gettimeofday d_gettimeod
12981 eval $inlibc
12982 case "$d_gettimeod" in
12983 "$undef")
12984         set ftime d_ftime 
12985         eval $inlibc
12986         ;;
12987 *)
12988         val="$undef"; set d_ftime; eval $setvar
12989         ;;
12990 esac
12991 case "$d_gettimeod$d_ftime" in
12992 "$undef$undef")
12993         echo " "
12994         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
12995         ;;
12996 esac
12997
12998 : see if gmtime_r exists
12999 set gmtime_r d_gmtime_r
13000 eval $inlibc
13001 case "$d_gmtime_r" in
13002 "$define")
13003         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
13004         case "time" in
13005         time)
13006                 hdrs="$hdrs $i_systime sys/time.h"
13007                 ;;
13008         esac
13009         case "$d_gmtime_r_proto:$usethreads" in
13010         ":define")      d_gmtime_r_proto=define
13011                 set d_gmtime_r_proto gmtime_r $hdrs
13012                 eval $hasproto ;;
13013         *)      ;;
13014         esac
13015         case "$d_gmtime_r_proto" in
13016         define)
13017         case "$gmtime_r_proto" in
13018         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13019         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13020         esac
13021         case "$gmtime_r_proto" in
13022         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13023         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13024         esac
13025         case "$gmtime_r_proto" in
13026         ''|0)   d_gmtime_r=undef
13027                 gmtime_r_proto=0
13028                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13029         * )     case "$gmtime_r_proto" in
13030                 REENTRANT_PROTO*) ;;
13031                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13032                 esac
13033                 echo "Prototype: $try" ;;
13034         esac
13035         ;;
13036         *)      case "$usethreads" in
13037                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13038                 esac
13039                 d_gmtime_r=undef
13040                 gmtime_r_proto=0
13041                 ;;
13042         esac
13043         ;;
13044 *)      gmtime_r_proto=0
13045         ;;
13046 esac
13047
13048 : see if hasmntopt exists
13049 set hasmntopt d_hasmntopt
13050 eval $inlibc
13051
13052 : see if this is a netinet/in.h or sys/in.h system
13053 set netinet/in.h i_niin sys/in.h i_sysin
13054 eval $inhdr
13055
13056 : see if arpa/inet.h has to be included
13057 set arpa/inet.h i_arpainet
13058 eval $inhdr
13059
13060 : see if htonl --and friends-- exists
13061 val=''
13062 set htonl val
13063 eval $inlibc
13064
13065 : Maybe they are macros.
13066 case "$val" in
13067 $undef)
13068         $cat >htonl.c <<EOM
13069 #include <stdio.h>
13070 #include <sys/types.h>
13071 #$i_niin I_NETINET_IN
13072 #$i_sysin I_SYS_IN
13073 #$i_arpainet I_ARPA_INET
13074 #ifdef I_NETINET_IN
13075 #include <netinet/in.h>
13076 #endif
13077 #ifdef I_SYS_IN
13078 #include <sys/in.h>
13079 #endif
13080 #ifdef I_ARPA_INET
13081 #include <arpa/inet.h>
13082 #endif
13083 #ifdef htonl
13084 printf("Defined as a macro.");
13085 #endif
13086 EOM
13087         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
13088         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
13089                 val="$define"
13090                 echo "But it seems to be defined as a macro." >&4
13091         fi
13092         $rm -f htonl.?
13093         ;;
13094 esac
13095 set d_htonl
13096 eval $setvar
13097
13098 : index or strchr
13099 echo " "
13100 if set index val -f; eval $csym; $val; then
13101         if set strchr val -f d_strchr; eval $csym; $val; then
13102                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
13103                         val="$define"
13104                         vali="$undef"
13105                         echo "strchr() found." >&4
13106                 else
13107                         val="$undef"
13108                         vali="$define"
13109                         echo "index() found." >&4
13110                 fi
13111         else
13112                 val="$undef"
13113                 vali="$define"
13114                 echo "index() found." >&4
13115         fi
13116 else
13117         if set strchr val -f d_strchr; eval $csym; $val; then
13118                 val="$define"
13119                 vali="$undef"
13120                 echo "strchr() found." >&4
13121         else
13122                 echo "No index() or strchr() found!" >&4
13123                 val="$undef"
13124                 vali="$undef"
13125         fi
13126 fi
13127 set d_strchr; eval $setvar
13128 val="$vali"
13129 set d_index; eval $setvar
13130
13131 : check whether inet_aton exists
13132 set inet_aton d_inetaton
13133 eval $inlibc
13134
13135 : Look for isascii
13136 echo " "
13137 $cat >isascii.c <<'EOCP'
13138 #include <stdio.h>
13139 #include <ctype.h>
13140 int main() {
13141         int c = 'A';
13142         if (isascii(c))
13143                 exit(0);
13144         else
13145                 exit(1);
13146 }
13147 EOCP
13148 set isascii
13149 if eval $compile; then
13150         echo "isascii() found." >&4
13151         val="$define"
13152 else
13153         echo "isascii() NOT found." >&4
13154         val="$undef"
13155 fi
13156 set d_isascii
13157 eval $setvar
13158 $rm -f isascii*
13159
13160 : see if isfinite exists
13161 set isfinite d_isfinite
13162 eval $inlibc
13163
13164 : see if isinf exists
13165 set isinf d_isinf
13166 eval $inlibc
13167
13168 : see if isnan exists
13169 set isnan d_isnan
13170 eval $inlibc
13171
13172 : see if isnanl exists
13173 set isnanl d_isnanl
13174 eval $inlibc
13175
13176 : see if killpg exists
13177 set killpg d_killpg
13178 eval $inlibc
13179
13180 : see if lchown exists
13181 echo " "
13182 $cat > try.c <<'EOCP'
13183 /* System header to define __stub macros and hopefully few prototypes,
13184     which can conflict with char lchown(); below.  */
13185 #include <assert.h>
13186 /* Override any gcc2 internal prototype to avoid an error.  */
13187 /* We use char because int might match the return type of a gcc2
13188    builtin and then its argument prototype would still apply.  */
13189 char lchown();
13190 int main() {
13191     /*  The GNU C library defines this for functions which it implements
13192         to always fail with ENOSYS.  Some functions are actually named
13193         something starting with __ and the normal name is an alias.  */
13194 #if defined (__stub_lchown) || defined (__stub___lchown)
13195 choke me
13196 #else
13197 lchown();
13198 #endif
13199 ; return 0; }
13200 EOCP
13201 set try
13202 if eval $compile; then
13203     $echo "lchown() found." >&4
13204     val="$define"
13205 else
13206     $echo "lchown() NOT found." >&4
13207     val="$undef"
13208 fi
13209 set d_lchown
13210 eval $setvar
13211
13212 : See if number of significant digits in a double precision number is known
13213 echo " "
13214 $cat >ldbl_dig.c <<EOM
13215 #$i_limits I_LIMITS
13216 #$i_float I_FLOAT
13217 #ifdef I_LIMITS
13218 #include <limits.h>
13219 #endif
13220 #ifdef I_FLOAT
13221 #include <float.h>
13222 #endif
13223 #ifdef LDBL_DIG
13224 printf("Contains LDBL_DIG");
13225 #endif
13226 EOM
13227 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13228 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13229         echo "LDBL_DIG found." >&4
13230         val="$define"
13231 else
13232         echo "LDBL_DIG NOT found." >&4
13233         val="$undef"
13234 fi
13235 $rm -f ldbl_dig.?
13236 set d_ldbl_dig
13237 eval $setvar
13238
13239 : see if link exists
13240 set link d_link
13241 eval $inlibc
13242
13243 : see if localtime_r exists
13244 set localtime_r d_localtime_r
13245 eval $inlibc
13246 case "$d_localtime_r" in
13247 "$define")
13248         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h"
13249         case "time" in
13250         time)
13251                 hdrs="$hdrs $i_systime sys/time.h"
13252                 ;;
13253         esac
13254         case "$d_localtime_r_proto:$usethreads" in
13255         ":define")      d_localtime_r_proto=define
13256                 set d_localtime_r_proto localtime_r $hdrs
13257                 eval $hasproto ;;
13258         *)      ;;
13259         esac
13260         case "$d_localtime_r_proto" in
13261         define)
13262         case "$localtime_r_proto" in
13263         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13264         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13265         esac
13266         case "$localtime_r_proto" in
13267         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13268         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13269         esac
13270         case "$localtime_r_proto" in
13271         ''|0)   d_localtime_r=undef
13272                 localtime_r_proto=0
13273                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13274         * )     case "$localtime_r_proto" in
13275                 REENTRANT_PROTO*) ;;
13276                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13277                 esac
13278                 echo "Prototype: $try" ;;
13279         esac
13280         ;;
13281         *)      case "$usethreads" in
13282                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13283                 esac
13284                 d_localtime_r=undef
13285                 localtime_r_proto=0
13286                 ;;
13287         esac
13288         ;;
13289 *)      localtime_r_proto=0
13290         ;;
13291 esac
13292
13293 : see if localeconv exists
13294 set localeconv d_locconv
13295 eval $inlibc
13296
13297 : see if lockf exists
13298 set lockf d_lockf
13299 eval $inlibc
13300
13301 : see if prototype for lseek is available
13302 echo " "
13303 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
13304 eval $hasproto
13305
13306 : see if lstat exists
13307 set lstat d_lstat
13308 eval $inlibc
13309
13310 : see if madvise exists
13311 set madvise d_madvise
13312 eval $inlibc
13313
13314 : see if mblen exists
13315 set mblen d_mblen
13316 eval $inlibc
13317
13318 : see if mbstowcs exists
13319 set mbstowcs d_mbstowcs
13320 eval $inlibc
13321
13322 : see if mbtowc exists
13323 set mbtowc d_mbtowc
13324 eval $inlibc
13325
13326 : see if memchr exists
13327 set memchr d_memchr
13328 eval $inlibc
13329
13330 : see if memcmp exists
13331 set memcmp d_memcmp
13332 eval $inlibc
13333
13334 : see if memcpy exists
13335 set memcpy d_memcpy
13336 eval $inlibc
13337
13338 : see if memmove exists
13339 set memmove d_memmove
13340 eval $inlibc
13341
13342 : see if memset exists
13343 set memset d_memset
13344 eval $inlibc
13345
13346 : see if mkdir exists
13347 set mkdir d_mkdir
13348 eval $inlibc
13349
13350 : see if mkdtemp exists
13351 set mkdtemp d_mkdtemp
13352 eval $inlibc
13353
13354 : see if mkfifo exists
13355 set mkfifo d_mkfifo
13356 eval $inlibc
13357
13358 : see if mkstemp exists
13359 set mkstemp d_mkstemp
13360 eval $inlibc
13361
13362 : see if mkstemps exists
13363 set mkstemps d_mkstemps
13364 eval $inlibc
13365
13366 : see if mktime exists
13367 set mktime d_mktime
13368 eval $inlibc
13369
13370 : see if this is a sys/mman.h system
13371 set sys/mman.h i_sysmman
13372 eval $inhdr
13373
13374 : see if mmap exists
13375 set mmap d_mmap
13376 eval $inlibc
13377 : see what shmat returns
13378 : default to something harmless
13379 mmaptype='void *'
13380 case "$i_sysmman$d_mmap" in
13381 "$define$define")
13382         $cat >mmap.c <<'END'
13383 #include <sys/mman.h>
13384 void *mmap();
13385 END
13386         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
13387                 mmaptype='void *'
13388         else
13389                 mmaptype='caddr_t'
13390         fi
13391         echo "and it returns ($mmaptype)." >&4
13392         ;;
13393 esac
13394
13395
13396
13397 : see if mprotect exists
13398 set mprotect d_mprotect
13399 eval $inlibc
13400
13401 : see if msgctl exists
13402 set msgctl d_msgctl
13403 eval $inlibc
13404
13405 : see if msgget exists
13406 set msgget d_msgget
13407 eval $inlibc
13408
13409 : see if msgsnd exists
13410 set msgsnd d_msgsnd
13411 eval $inlibc
13412
13413 : see if msgrcv exists
13414 set msgrcv d_msgrcv
13415 eval $inlibc
13416
13417 : see how much of the 'msg*(2)' library is present.
13418 h_msg=true
13419 echo " "
13420 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
13421 *"$undef"*) h_msg=false;;
13422 esac
13423 case "$osname" in
13424 freebsd)
13425     case "`ipcs 2>&1`" in
13426     "SVID messages"*"not configured"*)
13427         echo "Your $osname does not have the msg*(2) configured." >&4
13428         h_msg=false
13429         val="$undef"
13430         set msgctl d_msgctl
13431         eval $setvar
13432         set msgget d_msgget
13433         eval $setvar
13434         set msgsnd d_msgsnd
13435         eval $setvar
13436         set msgrcv d_msgrcv
13437         eval $setvar
13438         ;;
13439     esac
13440     ;;
13441 esac
13442 : we could also check for sys/ipc.h ...
13443 if $h_msg && $test `./findhdr sys/msg.h`; then
13444         echo "You have the full msg*(2) library." >&4
13445         val="$define"
13446 else
13447         echo "You don't have the full msg*(2) library." >&4
13448         val="$undef"
13449 fi
13450 set d_msg
13451 eval $setvar
13452
13453
13454 echo " "
13455 echo "Checking to see if your system supports struct msghdr..." >&4
13456 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
13457 eval $hasstruct
13458 case "$d_msghdr_s" in
13459 "$define")      echo "Yes, it does."   ;;
13460 *)              echo "No, it doesn't." ;;
13461 esac
13462
13463
13464 : see if msync exists
13465 set msync d_msync
13466 eval $inlibc
13467
13468 : see if munmap exists
13469 set munmap d_munmap
13470 eval $inlibc
13471
13472 : see if nice exists
13473 set nice d_nice
13474 eval $inlibc
13475
13476 : see if this is a langinfo.h system
13477 set langinfo.h i_langinfo
13478 eval $inhdr
13479
13480 : see if nl_langinfo exists
13481 set nl_langinfo d_nl_langinfo
13482 eval $inlibc
13483
13484 : check for length of character
13485 echo " "
13486 case "$charsize" in
13487 '')
13488         echo "Checking to see how big your characters are (hey, you never know)..." >&4
13489         $cat >try.c <<'EOCP'
13490 #include <stdio.h>
13491 int main()
13492 {
13493     printf("%d\n", (int)sizeof(char));
13494     exit(0);
13495 }
13496 EOCP
13497         set try
13498         if eval $compile_ok; then
13499                 dflt=`$run ./try`
13500         else
13501                 dflt='1'
13502                 echo "(I can't seem to compile the test program.  Guessing...)"
13503         fi
13504         ;;
13505 *)
13506         dflt="$charsize"
13507         ;;
13508 esac
13509 rp="What is the size of a character (in bytes)?"
13510 . ./myread
13511 charsize="$ans"
13512 $rm -f try.c try
13513
13514 : check for volatile keyword
13515 echo " "
13516 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
13517 $cat >try.c <<'EOCP'
13518 int main()
13519 {
13520         typedef struct _goo_struct goo_struct;
13521         goo_struct * volatile goo = ((goo_struct *)0);
13522         struct _goo_struct {
13523                 long long_int;
13524                 int reg_int;
13525                 char char_var;
13526         };
13527         typedef unsigned short foo_t;
13528         char *volatile foo;
13529         volatile int bar;
13530         volatile foo_t blech;
13531         foo = foo;
13532 }
13533 EOCP
13534 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
13535         val="$define"
13536         echo "Yup, it does."
13537 else
13538         val="$undef"
13539         echo "Nope, it doesn't."
13540 fi
13541 set d_volatile
13542 eval $setvar
13543 $rm -f try.*
13544
13545
13546 echo " "
13547 $echo "Choosing the C types to be used for Perl's internal types..." >&4
13548
13549 case "$use64bitint:$d_quad:$quadtype" in
13550 define:define:?*)
13551         ivtype="$quadtype"
13552         uvtype="$uquadtype"
13553         ivsize=8
13554         uvsize=8
13555         ;;
13556 *)      ivtype="long"
13557         uvtype="unsigned long"
13558         ivsize=$longsize
13559         uvsize=$longsize
13560         ;;
13561 esac
13562
13563 case "$uselongdouble:$d_longdbl" in
13564 define:define)
13565         nvtype="long double"
13566         nvsize=$longdblsize
13567         ;;
13568 *)      nvtype=double
13569         nvsize=$doublesize
13570         ;;
13571 esac
13572
13573 $echo "(IV will be "$ivtype", $ivsize bytes)"
13574 $echo "(UV will be "$uvtype", $uvsize bytes)"
13575 $echo "(NV will be "$nvtype", $nvsize bytes)"
13576
13577 $cat >try.c <<EOCP
13578 #$i_inttypes I_INTTYPES
13579 #ifdef I_INTTYPES
13580 #include <inttypes.h>
13581 #endif
13582 #include <stdio.h>
13583 int main() {
13584 #ifdef INT8
13585    int8_t i =  INT8_MAX;
13586   uint8_t u = UINT8_MAX;
13587   printf("int8_t\n");
13588 #endif
13589 #ifdef INT16
13590    int16_t i =  INT16_MAX;
13591   uint16_t i = UINT16_MAX;
13592   printf("int16_t\n");
13593 #endif
13594 #ifdef INT32
13595    int32_t i =  INT32_MAX;
13596   uint32_t u = UINT32_MAX;
13597   printf("int32_t\n");
13598 #endif
13599 }
13600 EOCP
13601
13602 case "$i8type" in
13603 '')     case "$charsize" in
13604         1)      i8type=char
13605                 u8type="unsigned char"
13606                 i8size=$charsize
13607                 u8size=$charsize
13608                 ;;
13609         esac
13610         ;;
13611 esac
13612 case "$i8type" in
13613 '')     set try -DINT8
13614         if eval $compile; then
13615                 case "`$run ./try`" in
13616                 int8_t) i8type=int8_t
13617                         u8type=uint8_t
13618                         i8size=1
13619                         u8size=1
13620                         ;;
13621                 esac
13622         fi
13623         ;;
13624 esac
13625 case "$i8type" in
13626 '')     if $test $charsize -ge 1; then
13627                 i8type=char
13628                 u8type="unsigned char"
13629                 i8size=$charsize
13630                 u8size=$charsize
13631         fi
13632         ;;
13633 esac
13634
13635 case "$i16type" in
13636 '')     case "$shortsize" in
13637         2)      i16type=short
13638                 u16type="unsigned short"
13639                 i16size=$shortsize
13640                 u16size=$shortsize
13641                 ;;
13642         esac
13643         ;;
13644 esac
13645 case "$i16type" in
13646 '')     set try -DINT16
13647         if eval $compile; then
13648                 case "`$run ./try`" in
13649                 int16_t)
13650                         i16type=int16_t
13651                         u16type=uint16_t
13652                         i16size=2
13653                         u16size=2
13654                         ;;
13655                 esac
13656         fi
13657         ;;
13658 esac
13659 case "$i16type" in
13660 '')     if $test $shortsize -ge 2; then
13661                 i16type=short
13662                 u16type="unsigned short"
13663                 i16size=$shortsize
13664                 u16size=$shortsize
13665         fi
13666         ;;
13667 esac
13668
13669 case "$i32type" in
13670 '')     case "$longsize" in
13671         4)      i32type=long
13672                 u32type="unsigned long"
13673                 i32size=$longsize
13674                 u32size=$longsize
13675                 ;;
13676         *)      case "$intsize" in
13677                 4)      i32type=int
13678                         u32type="unsigned int"
13679                         i32size=$intsize
13680                         u32size=$intsize
13681                         ;;
13682                 esac
13683                 ;;
13684         esac
13685         ;;
13686 esac
13687 case "$i32type" in
13688 '')     set try -DINT32
13689         if eval $compile; then
13690                 case "`$run ./try`" in
13691                 int32_t)
13692                         i32type=int32_t
13693                         u32type=uint32_t
13694                         i32size=4
13695                         u32size=4
13696                         ;;
13697                 esac
13698         fi
13699         ;;
13700 esac
13701 case "$i32type" in
13702 '')     if $test $intsize -ge 4; then
13703                 i32type=int
13704                 u32type="unsigned int"
13705                 i32size=$intsize
13706                 u32size=$intsize
13707         fi
13708         ;;
13709 esac
13710
13711 case "$i64type" in
13712 '')     case "$d_quad:$quadtype" in
13713         define:?*)
13714                 i64type="$quadtype"
13715                 u64type="$uquadtype"
13716                 i64size=8
13717                 u64size=8
13718                 ;;
13719         esac
13720         ;;
13721 esac
13722
13723 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
13724 : volatile so that the compiler has to store it out to memory.
13725 if test X"$d_volatile" = X"$define"; then
13726         volatile=volatile
13727 fi
13728 $cat <<EOP >try.c
13729 #include <stdio.h>
13730 #include <sys/types.h>
13731 #include <signal.h>
13732 #ifdef SIGFPE
13733 $volatile int bletched = 0;
13734 $signal_t blech(s) int s; { bletched = 1; }
13735 #endif
13736 int main() {
13737     $uvtype u = 0;
13738     $nvtype d;
13739     int     n = 8 * $uvsize;
13740     int     i;
13741 #ifdef SIGFPE
13742     signal(SIGFPE, blech);
13743 #endif
13744
13745     for (i = 0; i < n; i++) {
13746       u = u << 1 | ($uvtype)1;
13747       d = ($nvtype)u;
13748       if (($uvtype)d != u)
13749         break;
13750       if (d <= 0)
13751         break;
13752       d = ($nvtype)(u - 1);
13753       if (($uvtype)d != (u - 1))
13754         break;
13755 #ifdef SIGFPE
13756       if (bletched) {
13757         break;
13758 #endif
13759       } 
13760     }
13761     printf("%d\n", ((i == n) ? -n : i));
13762     exit(0);
13763 }
13764 EOP
13765 set try
13766
13767 d_nv_preserves_uv="$undef"
13768 if eval $compile; then
13769         nv_preserves_uv_bits="`$run ./try`"
13770 fi
13771 case "$nv_preserves_uv_bits" in
13772 \-[1-9]*)       
13773         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
13774         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
13775         d_nv_preserves_uv="$define"
13776         ;;
13777 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
13778         d_nv_preserves_uv="$undef" ;;
13779 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
13780         nv_preserves_uv_bits="$undef" ;;
13781 esac
13782
13783 $rm -f try.* try
13784
13785
13786 : check for off64_t
13787 echo " "
13788 echo "Checking to see if you have off64_t..." >&4
13789 $cat >try.c <<EOCP
13790 #include <sys/types.h>
13791 #include <unistd.h>
13792 int main() { off64_t x = 7; }
13793 EOCP
13794 set try
13795 if eval $compile; then
13796         val="$define"
13797         echo "You have off64_t."
13798 else
13799         val="$undef"
13800         echo "You do not have off64_t."
13801         case "$lseeksize" in
13802         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
13803         esac
13804 fi
13805 $rm -f try.* try
13806 set d_off64_t
13807 eval $setvar
13808
13809 : see if POSIX threads are available
13810 set pthread.h i_pthread
13811 eval $inhdr
13812
13813
13814
13815
13816 : how to create joinable pthreads
13817 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
13818         echo " "
13819         echo "Checking what constant to use for creating joinable pthreads..." >&4 
13820         $cat >try.c <<'EOCP'
13821 #include <pthread.h>
13822 int main() {
13823     int detachstate = JOINABLE;
13824 }
13825 EOCP
13826         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
13827         if eval $compile; then
13828                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
13829                 val="$undef" # Yes, undef.
13830                 set d_old_pthread_create_joinable
13831                 eval $setvar
13832                 val=""
13833                 set old_pthread_create_joinable
13834                 eval $setvar
13835         else
13836                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
13837                 if eval $compile; then
13838                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
13839                         val="$define"
13840                         set d_old_pthread_create_joinable
13841                         eval $setvar
13842                         val=PTHREAD_CREATE_UNDETACHED
13843                         set old_pthread_create_joinable
13844                         eval $setvar
13845                 else            
13846                         set try -DJOINABLE=__UNDETACHED
13847                         if eval $compile; then
13848                                 echo "You seem to use __UNDETACHED." >&4
13849                                 val="$define"
13850                                 set d_old_pthread_create_joinable
13851                                 eval $setvar
13852                                 val=__UNDETACHED
13853                                 set old_pthread_create_joinable
13854                                 eval $setvar
13855                         else
13856                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
13857                                 val="$define"
13858                                 set d_old_pthread_create_joinable
13859                                 eval $setvar
13860                                 val=0
13861                                 set old_pthread_create_joinable
13862                                 eval $setvar
13863                         fi
13864                 fi
13865         fi
13866         $rm -f try try.*
13867 else
13868     d_old_pthread_create_joinable="$undef"
13869     old_pthread_create_joinable=""
13870 fi
13871
13872 : see if pause exists
13873 set pause d_pause
13874 eval $inlibc
13875
13876 : see if pipe exists
13877 set pipe d_pipe
13878 eval $inlibc
13879
13880 : see if poll exists
13881 set poll d_poll
13882 eval $inlibc
13883
13884 : see if readlink exists
13885 set readlink d_readlink
13886 eval $inlibc
13887
13888 echo " "
13889 procselfexe=''
13890 val="$undef"
13891 case "$d_readlink" in
13892 "$define")
13893         if $issymlink /proc/self/exe ; then
13894                 $ls -l /proc/self/exe > reflect
13895                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
13896                         echo "You have Linux-like /proc/self/exe."
13897                         procselfexe='"/proc/self/exe"'
13898                         val="$define"
13899                 fi
13900         fi
13901         if $issymlink /proc/curproc/file ; then
13902                 $ls -l /proc/curproc/file > reflect
13903                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
13904                         echo "You have BSD-like /proc/curproc/file."
13905                         procselfexe='"/proc/curproc/file"'
13906                         val="$define"
13907                 fi
13908         fi
13909         ;;
13910 esac
13911 $rm -f reflect
13912 set d_procselfexe
13913 eval $setvar
13914
13915 : see whether the pthread_atfork exists
13916 $cat >try.c <<EOP
13917 #include <pthread.h>
13918 #include <stdio.h>
13919 int main() {
13920 #ifdef  PTHREAD_ATFORK
13921         pthread_atfork(NULL,NULL,NULL);
13922 #endif
13923 }
13924 EOP
13925
13926 : see if pthread_atfork exists
13927 set try -DPTHREAD_ATFORK
13928 if eval $compile; then
13929     val="$define"
13930 else
13931     val="$undef"
13932 fi
13933 case "$usethreads" in
13934 $define)
13935         case "$val" in
13936         $define) echo 'pthread_atfork found.' >&4        ;;
13937         *)       echo 'pthread_atfork NOT found.' >&4    ;;
13938         esac
13939 esac
13940 set d_pthread_atfork
13941 eval $setvar
13942
13943
13944 : see whether the various POSIXish _yields exist
13945 $cat >try.c <<EOP
13946 #include <pthread.h>
13947 #include <stdio.h>
13948 int main() {
13949 #ifdef SCHED_YIELD
13950         sched_yield();
13951 #else
13952 #ifdef PTHREAD_YIELD
13953         pthread_yield();
13954 #else
13955 #ifdef PTHREAD_YIELD_NULL
13956         pthread_yield(NULL);
13957 #endif
13958 #endif
13959 #endif
13960 }
13961 EOP
13962 : see if sched_yield exists
13963 set try -DSCHED_YIELD
13964 if eval $compile; then
13965     val="$define"
13966     sched_yield='sched_yield()'
13967 else
13968     val="$undef"
13969 fi
13970 case "$usethreads" in
13971 $define)
13972         case "$val" in
13973         $define) echo 'sched_yield() found.' >&4        ;;
13974         *)       echo 'sched_yield() NOT found.' >&4    ;;
13975         esac
13976 esac
13977 set d_sched_yield
13978 eval $setvar
13979
13980 : see if pthread_yield exists
13981 set try -DPTHREAD_YIELD
13982 if eval $compile; then
13983     val="$define"
13984     case "$sched_yield" in
13985     '') sched_yield='pthread_yield()' ;;
13986     esac
13987 else
13988     set try -DPTHREAD_YIELD_NULL
13989     if eval $compile; then
13990         val="$define"
13991         case "$sched_yield" in
13992         '') sched_yield='pthread_yield(NULL)' ;;
13993         esac
13994     else
13995         val="$undef"
13996     fi
13997 fi
13998 case "$usethreads" in
13999 $define)
14000         case "$val" in
14001         $define) echo 'pthread_yield() found.' >&4      ;;
14002         *)       echo 'pthread_yield() NOT found.' >&4  ;;
14003         esac
14004         ;;
14005 esac
14006 set d_pthread_yield
14007 eval $setvar
14008
14009 case "$sched_yield" in
14010 '') sched_yield=undef ;;
14011 esac
14012
14013 $rm -f try try.*
14014
14015 : see if random_r exists
14016 set random_r d_random_r
14017 eval $inlibc
14018 case "$d_random_r" in
14019 "$define")
14020         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
14021         case "stdlib" in
14022         time)
14023                 hdrs="$hdrs $i_systime sys/time.h"
14024                 ;;
14025         esac
14026         case "$d_random_r_proto:$usethreads" in
14027         ":define")      d_random_r_proto=define
14028                 set d_random_r_proto random_r $hdrs
14029                 eval $hasproto ;;
14030         *)      ;;
14031         esac
14032         case "$d_random_r_proto" in
14033         define)
14034         case "$random_r_proto" in
14035         ''|0) try='int random_r(int*, struct random_data*);'
14036         ./protochk "extern $try" $hdrs && random_r_proto=I_TS ;;
14037         esac
14038         case "$random_r_proto" in
14039         ''|0)   d_random_r=undef
14040                 random_r_proto=0
14041                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
14042         * )     case "$random_r_proto" in
14043                 REENTRANT_PROTO*) ;;
14044                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
14045                 esac
14046                 echo "Prototype: $try" ;;
14047         esac
14048         ;;
14049         *)      case "$usethreads" in
14050                 define) echo "random_r has no prototype, not using it." >&4 ;;
14051                 esac
14052                 d_random_r=undef
14053                 random_r_proto=0
14054                 ;;
14055         esac
14056         ;;
14057 *)      random_r_proto=0
14058         ;;
14059 esac
14060
14061 : see if readdir and friends exist
14062 set readdir d_readdir
14063 eval $inlibc
14064 set seekdir d_seekdir
14065 eval $inlibc
14066 set telldir d_telldir
14067 eval $inlibc
14068 set rewinddir d_rewinddir
14069 eval $inlibc
14070
14071 : see if readdir64_r exists
14072 set readdir64_r d_readdir64_r
14073 eval $inlibc
14074 case "$d_readdir64_r" in
14075 "$define")
14076         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14077         case "dirent" in
14078         time)
14079                 hdrs="$hdrs $i_systime sys/time.h"
14080                 ;;
14081         esac
14082         case "$d_readdir64_r_proto:$usethreads" in
14083         ":define")      d_readdir64_r_proto=define
14084                 set d_readdir64_r_proto readdir64_r $hdrs
14085                 eval $hasproto ;;
14086         *)      ;;
14087         esac
14088         case "$d_readdir64_r_proto" in
14089         define)
14090         case "$readdir64_r_proto" in
14091         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
14092         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
14093         esac
14094         case "$readdir64_r_proto" in
14095         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
14096         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
14097         esac
14098         case "$readdir64_r_proto" in
14099         ''|0)   d_readdir64_r=undef
14100                 readdir64_r_proto=0
14101                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
14102         * )     case "$readdir64_r_proto" in
14103                 REENTRANT_PROTO*) ;;
14104                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
14105                 esac
14106                 echo "Prototype: $try" ;;
14107         esac
14108         ;;
14109         *)      case "$usethreads" in
14110                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
14111                 esac
14112                 d_readdir64_r=undef
14113                 readdir64_r_proto=0
14114                 ;;
14115         esac
14116         ;;
14117 *)      readdir64_r_proto=0
14118         ;;
14119 esac
14120
14121 : see if readdir_r exists
14122 set readdir_r d_readdir_r
14123 eval $inlibc
14124 case "$d_readdir_r" in
14125 "$define")
14126         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14127         case "dirent" in
14128         time)
14129                 hdrs="$hdrs $i_systime sys/time.h"
14130                 ;;
14131         esac
14132         case "$d_readdir_r_proto:$usethreads" in
14133         ":define")      d_readdir_r_proto=define
14134                 set d_readdir_r_proto readdir_r $hdrs
14135                 eval $hasproto ;;
14136         *)      ;;
14137         esac
14138         case "$d_readdir_r_proto" in
14139         define)
14140         case "$readdir_r_proto" in
14141         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14142         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14143         esac
14144         case "$readdir_r_proto" in
14145         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14146         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14147         esac
14148         case "$readdir_r_proto" in
14149         ''|0)   d_readdir_r=undef
14150                 readdir_r_proto=0
14151                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14152         * )     case "$readdir_r_proto" in
14153                 REENTRANT_PROTO*) ;;
14154                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14155                 esac
14156                 echo "Prototype: $try" ;;
14157         esac
14158         ;;
14159         *)      case "$usethreads" in
14160                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14161                 esac
14162                 d_readdir_r=undef
14163                 readdir_r_proto=0
14164                 ;;
14165         esac
14166         ;;
14167 *)      readdir_r_proto=0
14168         ;;
14169 esac
14170
14171 : see if readv exists
14172 set readv d_readv
14173 eval $inlibc
14174
14175 : see if recvmsg exists
14176 set recvmsg d_recvmsg
14177 eval $inlibc
14178
14179 : see if rename exists
14180 set rename d_rename
14181 eval $inlibc
14182
14183 : see if rmdir exists
14184 set rmdir d_rmdir
14185 eval $inlibc
14186
14187 : see if memory.h is available.
14188 val=''
14189 set memory.h val
14190 eval $inhdr
14191
14192 : See if it conflicts with string.h
14193 case "$val" in
14194 $define)
14195         case "$strings" in
14196         '') ;;
14197         *)
14198                 $cppstdin $cppflags $cppminus < $strings > mem.h
14199                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
14200                         echo " "
14201                         echo "We won't be including <memory.h>."
14202                         val="$undef"
14203                 fi
14204                 $rm -f mem.h
14205                 ;;
14206         esac
14207 esac
14208 set i_memory
14209 eval $setvar
14210
14211 : can bcopy handle overlapping blocks?
14212 echo " "
14213 val="$undef"
14214 case "$d_memmove" in
14215 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
14216 *)      case "$d_bcopy" in
14217         "$define")
14218                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
14219                 $cat >try.c <<EOCP
14220 #$i_memory I_MEMORY
14221 #$i_stdlib I_STDLIB
14222 #$i_string I_STRING
14223 #$i_unistd I_UNISTD
14224 EOCP
14225         $cat >>try.c <<'EOCP'
14226 #include <stdio.h>
14227 #ifdef I_MEMORY
14228 #  include <memory.h>
14229 #endif
14230 #ifdef I_STDLIB
14231 #  include <stdlib.h>
14232 #endif
14233 #ifdef I_STRING
14234 #  include <string.h>
14235 #else
14236 #  include <strings.h>
14237 #endif
14238 #ifdef I_UNISTD
14239 #  include <unistd.h>  /* Needed for NetBSD */
14240 #endif
14241 int main()
14242 {
14243 char buf[128], abc[128];
14244 char *b;
14245 int len;
14246 int off;
14247 int align;
14248
14249 /* Copy "abcde..." string to char abc[] so that gcc doesn't
14250    try to store the string in read-only memory. */
14251 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
14252
14253 for (align = 7; align >= 0; align--) {
14254         for (len = 36; len; len--) {
14255                 b = buf+align;
14256                 bcopy(abc, b, len);
14257                 for (off = 1; off <= len; off++) {
14258                         bcopy(b, b+off, len);
14259                         bcopy(b+off, b, len);
14260                         if (bcmp(b, abc, len))
14261                                 exit(1);
14262                 }
14263         }
14264 }
14265 exit(0);
14266 }
14267 EOCP
14268                 set try
14269                 if eval $compile_ok; then
14270                         if ./try 2>/dev/null; then
14271                                 echo "Yes, it can."
14272                                 val="$define"
14273                         else
14274                                 echo "It can't, sorry."
14275                         fi
14276                 else
14277                         echo "(I can't compile the test program, so we'll assume not...)"
14278                 fi
14279                 ;;
14280         esac
14281         $rm -f try.* try core
14282         ;;
14283 esac
14284 set d_safebcpy
14285 eval $setvar
14286
14287 : can memcpy handle overlapping blocks?
14288 echo " "
14289 val="$undef"
14290 case "$d_memmove" in
14291 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
14292 *)      case "$d_memcpy" in
14293         "$define")
14294                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
14295                 $cat >try.c <<EOCP
14296 #$i_memory I_MEMORY
14297 #$i_stdlib I_STDLIB
14298 #$i_string I_STRING
14299 #$i_unistd I_UNISTD
14300 EOCP
14301         $cat >>try.c <<'EOCP'
14302 #include <stdio.h>
14303 #ifdef I_MEMORY
14304 #  include <memory.h>
14305 #endif
14306 #ifdef I_STDLIB
14307 #  include <stdlib.h>
14308 #endif
14309 #ifdef I_STRING
14310 #  include <string.h>
14311 #else
14312 #  include <strings.h>
14313 #endif
14314 #ifdef I_UNISTD
14315 #  include <unistd.h>  /* Needed for NetBSD */
14316 #endif
14317 int main()
14318 {
14319 char buf[128], abc[128];
14320 char *b;
14321 int len;
14322 int off;
14323 int align;
14324
14325 /* Copy "abcde..." string to char abc[] so that gcc doesn't
14326    try to store the string in read-only memory. */
14327 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
14328
14329 for (align = 7; align >= 0; align--) {
14330         for (len = 36; len; len--) {
14331                 b = buf+align;
14332                 memcpy(b, abc, len);
14333                 for (off = 1; off <= len; off++) {
14334                         memcpy(b+off, b, len);
14335                         memcpy(b, b+off, len);
14336                         if (memcmp(b, abc, len))
14337                                 exit(1);
14338                 }
14339         }
14340 }
14341 exit(0);
14342 }
14343 EOCP
14344                 set try
14345                 if eval $compile_ok; then
14346                         if ./try 2>/dev/null; then
14347                                 echo "Yes, it can."
14348                                 val="$define"
14349                         else
14350                                 echo "It can't, sorry."
14351                         fi
14352                 else
14353                         echo "(I can't compile the test program, so we'll assume not...)"
14354                 fi
14355                 ;;
14356         esac
14357         $rm -f try.* try core
14358         ;;
14359 esac
14360 set d_safemcpy
14361 eval $setvar
14362
14363 : can memcmp be trusted to compare relative magnitude?
14364 val="$undef"
14365 case "$d_memcmp" in
14366 "$define")
14367         echo " "
14368         echo "Checking if your memcmp() can compare relative magnitude..." >&4
14369         $cat >try.c <<EOCP
14370 #$i_memory I_MEMORY
14371 #$i_stdlib I_STDLIB
14372 #$i_string I_STRING
14373 #$i_unistd I_UNISTD
14374 EOCP
14375         $cat >>try.c <<'EOCP'
14376 #include <stdio.h>
14377 #ifdef I_MEMORY
14378 #  include <memory.h>
14379 #endif
14380 #ifdef I_STDLIB
14381 #  include <stdlib.h>
14382 #endif
14383 #ifdef I_STRING
14384 #  include <string.h>
14385 #else
14386 #  include <strings.h>
14387 #endif
14388 #ifdef I_UNISTD
14389 #  include <unistd.h>  /* Needed for NetBSD */
14390 #endif
14391 int main()
14392 {
14393 char a = -1;
14394 char b = 0;
14395 if ((a < b) && memcmp(&a, &b, 1) < 0)
14396         exit(1);
14397 exit(0);
14398 }
14399 EOCP
14400         set try
14401         if eval $compile_ok; then
14402                 if $run ./try 2>/dev/null; then
14403                         echo "Yes, it can."
14404                         val="$define"
14405                 else
14406                         echo "No, it can't (it uses signed chars)."
14407                 fi
14408         else
14409                 echo "(I can't compile the test program, so we'll assume not...)"
14410         fi
14411         ;;
14412 esac
14413 $rm -f try.* try core
14414 set d_sanemcmp
14415 eval $setvar
14416
14417 : see if prototype for sbrk is available
14418 echo " "
14419 set d_sbrkproto sbrk $i_unistd unistd.h
14420 eval $hasproto
14421
14422 : see if select exists
14423 set select d_select
14424 eval $inlibc
14425
14426 : see if semctl exists
14427 set semctl d_semctl
14428 eval $inlibc
14429
14430 : see if semget exists
14431 set semget d_semget
14432 eval $inlibc
14433
14434 : see if semop exists
14435 set semop d_semop
14436 eval $inlibc
14437
14438 : see how much of the 'sem*(2)' library is present.
14439 h_sem=true
14440 echo " "
14441 case "$d_semctl$d_semget$d_semop" in
14442 *"$undef"*) h_sem=false;;
14443 esac
14444 case "$osname" in
14445 freebsd)
14446     case "`ipcs 2>&1`" in
14447     "SVID messages"*"not configured"*)
14448         echo "Your $osname does not have the sem*(2) configured." >&4
14449         h_sem=false
14450         val="$undef"
14451         set semctl d_semctl
14452         eval $setvar
14453         set semget d_semget
14454         eval $setvar
14455         set semop d_semop
14456         eval $setvar
14457         ;;
14458     esac
14459     ;;
14460 esac
14461 : we could also check for sys/ipc.h ...
14462 if $h_sem && $test `./findhdr sys/sem.h`; then
14463         echo "You have the full sem*(2) library." >&4
14464         val="$define"
14465 else
14466         echo "You don't have the full sem*(2) library." >&4
14467         val="$undef"
14468 fi
14469 set d_sem
14470 eval $setvar
14471
14472 : see whether sys/sem.h defines union semun
14473 echo " "
14474 $cat > try.c <<'END'
14475 #include <sys/types.h>
14476 #include <sys/ipc.h>
14477 #include <sys/sem.h>
14478 int main () { union semun semun; semun.buf = 0; }
14479 END
14480 set try
14481 if eval $compile; then
14482     echo "You have union semun in <sys/sem.h>." >&4
14483     val="$define"
14484 else
14485     echo "You do not have union semun in <sys/sem.h>." >&4
14486     val="$undef"
14487 fi
14488 $rm -f try try.c try.h
14489 set d_union_semun
14490 eval $setvar
14491
14492 : see how to do semctl IPC_STAT
14493 case "$d_sem" in
14494 $define)
14495     : see whether semctl IPC_STAT can use union semun
14496     echo " "
14497     $cat > try.h <<END
14498 #ifndef S_IRUSR
14499 #   ifdef S_IREAD
14500 #       define S_IRUSR S_IREAD
14501 #       define S_IWUSR S_IWRITE
14502 #       define S_IXUSR S_IEXEC
14503 #   else
14504 #       define S_IRUSR 0400
14505 #       define S_IWUSR 0200
14506 #       define S_IXUSR 0100
14507 #   endif
14508 #   define S_IRGRP (S_IRUSR>>3)
14509 #   define S_IWGRP (S_IWUSR>>3)
14510 #   define S_IXGRP (S_IXUSR>>3)
14511 #   define S_IROTH (S_IRUSR>>6)
14512 #   define S_IWOTH (S_IWUSR>>6)
14513 #   define S_IXOTH (S_IXUSR>>6)
14514 #endif
14515 #ifndef S_IRWXU
14516 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
14517 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
14518 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
14519 #endif
14520 END
14521
14522     $cat > try.c <<END
14523 #include <sys/types.h>
14524 #include <sys/ipc.h>
14525 #include <sys/sem.h>
14526 #include <sys/stat.h>
14527 #include <stdio.h>
14528 #include <errno.h>
14529 #include "try.h"
14530 #ifndef errno
14531 extern int errno;
14532 #endif
14533 #$d_union_semun HAS_UNION_SEMUN
14534 int main() {
14535     union semun
14536 #ifndef HAS_UNION_SEMUN
14537     {
14538         int val;
14539         struct semid_ds *buf;
14540         unsigned short *array;
14541     }
14542 #endif
14543     arg;
14544     int sem, st;
14545
14546 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
14547     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
14548     if (sem > -1) {
14549         struct semid_ds argbuf;
14550         arg.buf = &argbuf;
14551 #       ifdef IPC_STAT
14552         st = semctl(sem, 0, IPC_STAT, arg);
14553         if (st == 0)
14554             printf("semun\n");
14555         else
14556 #       endif /* IPC_STAT */
14557             printf("semctl IPC_STAT failed: errno = %d\n", errno);
14558 #       ifdef IPC_RMID
14559         if (semctl(sem, 0, IPC_RMID, arg) != 0)
14560 #       endif /* IPC_RMID */
14561             printf("semctl IPC_RMID failed: errno = %d\n", errno);
14562     } else
14563 #endif /* IPC_PRIVATE && ... */
14564         printf("semget failed: errno = %d\n", errno);
14565   return 0;
14566 }
14567 END
14568     val="$undef"
14569     set try
14570     if eval $compile; then
14571         xxx=`$run ./try`
14572         case "$xxx" in
14573         semun) val="$define" ;;
14574         esac
14575     fi
14576     $rm -f try try.c
14577     set d_semctl_semun
14578     eval $setvar
14579     case "$d_semctl_semun" in
14580     $define)
14581         echo "You can use union semun for semctl IPC_STAT." >&4
14582         also='also'
14583         ;;
14584     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
14585         also=''
14586         ;;
14587     esac
14588
14589     : see whether semctl IPC_STAT can use struct semid_ds pointer
14590     $cat > try.c <<'END'
14591 #include <sys/types.h>
14592 #include <sys/ipc.h>
14593 #include <sys/sem.h>
14594 #include <sys/stat.h>
14595 #include "try.h"
14596 #include <stdio.h>
14597 #include <errno.h>
14598 #ifndef errno
14599 extern int errno;
14600 #endif
14601 int main() {
14602     struct semid_ds arg;
14603     int sem, st;
14604
14605 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
14606     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
14607     if (sem > -1) {
14608 #       ifdef IPC_STAT
14609         st = semctl(sem, 0, IPC_STAT, &arg);
14610         if (st == 0)
14611             printf("semid_ds\n");
14612         else
14613 #       endif /* IPC_STAT */
14614             printf("semctl IPC_STAT failed: errno = %d\n", errno);
14615 #       ifdef IPC_RMID
14616         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
14617 #       endif /* IPC_RMID */
14618             printf("semctl IPC_RMID failed: errno = %d\n", errno);
14619     } else
14620 #endif /* IPC_PRIVATE && ... */
14621         printf("semget failed: errno = %d\n", errno);
14622
14623     return 0;
14624 }
14625 END
14626     val="$undef"
14627     set try
14628     if eval $compile; then
14629         xxx=`$run ./try`
14630         case "$xxx" in
14631         semid_ds) val="$define" ;;
14632         esac
14633     fi
14634     $rm -f try try.c
14635     set d_semctl_semid_ds
14636     eval $setvar
14637     case "$d_semctl_semid_ds" in
14638     $define)
14639         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
14640         ;;
14641     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
14642         ;;
14643     esac
14644     $rm -f try.h
14645     ;;
14646 *)  val="$undef"
14647
14648     # We do not have the full sem*(2) library, so assume we can not
14649     # use either.
14650
14651     set d_semctl_semun
14652     eval $setvar
14653
14654     set d_semctl_semid_ds
14655     eval $setvar
14656     ;;
14657 esac
14658
14659 : see if sendmsg exists
14660 set sendmsg d_sendmsg
14661 eval $inlibc
14662
14663 : see if setegid exists
14664 set setegid d_setegid
14665 eval $inlibc
14666
14667 : see if seteuid exists
14668 set seteuid d_seteuid
14669 eval $inlibc
14670
14671 : see if setgrent exists
14672 set setgrent d_setgrent
14673 eval $inlibc
14674
14675 : see if setgrent_r exists
14676 set setgrent_r d_setgrent_r
14677 eval $inlibc
14678 case "$d_setgrent_r" in
14679 "$define")
14680         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
14681         case "grp" in
14682         time)
14683                 hdrs="$hdrs $i_systime sys/time.h"
14684                 ;;
14685         esac
14686         case "$d_setgrent_r_proto:$usethreads" in
14687         ":define")      d_setgrent_r_proto=define
14688                 set d_setgrent_r_proto setgrent_r $hdrs
14689                 eval $hasproto ;;
14690         *)      ;;
14691         esac
14692         case "$d_setgrent_r_proto" in
14693         define)
14694         case "$setgrent_r_proto" in
14695         ''|0) try='int setgrent_r(FILE**);'
14696         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
14697         esac
14698         case "$setgrent_r_proto" in
14699         ''|0) try='void setgrent_r(FILE**);'
14700         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
14701         esac
14702         case "$setgrent_r_proto" in
14703         ''|0)   d_setgrent_r=undef
14704                 setgrent_r_proto=0
14705                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
14706         * )     case "$setgrent_r_proto" in
14707                 REENTRANT_PROTO*) ;;
14708                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
14709                 esac
14710                 echo "Prototype: $try" ;;
14711         esac
14712         ;;
14713         *)      case "$usethreads" in
14714                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
14715                 esac
14716                 d_setgrent_r=undef
14717                 setgrent_r_proto=0
14718                 ;;
14719         esac
14720         ;;
14721 *)      setgrent_r_proto=0
14722         ;;
14723 esac
14724
14725 : see if sethostent exists
14726 set sethostent d_sethent
14727 eval $inlibc
14728
14729 : see if sethostent_r exists
14730 set sethostent_r d_sethostent_r
14731 eval $inlibc
14732 case "$d_sethostent_r" in
14733 "$define")
14734         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14735         case "netdb" in
14736         time)
14737                 hdrs="$hdrs $i_systime sys/time.h"
14738                 ;;
14739         esac
14740         case "$d_sethostent_r_proto:$usethreads" in
14741         ":define")      d_sethostent_r_proto=define
14742                 set d_sethostent_r_proto sethostent_r $hdrs
14743                 eval $hasproto ;;
14744         *)      ;;
14745         esac
14746         case "$d_sethostent_r_proto" in
14747         define)
14748         case "$sethostent_r_proto" in
14749         ''|0) try='int sethostent_r(int, struct hostent_data*);'
14750         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
14751         esac
14752         case "$sethostent_r_proto" in
14753         ''|0) try='void sethostent_r(int, struct hostent_data*);'
14754         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
14755         esac
14756         case "$sethostent_r_proto" in
14757         ''|0)   d_sethostent_r=undef
14758                 sethostent_r_proto=0
14759                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
14760         * )     case "$sethostent_r_proto" in
14761                 REENTRANT_PROTO*) ;;
14762                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
14763                 esac
14764                 echo "Prototype: $try" ;;
14765         esac
14766         ;;
14767         *)      case "$usethreads" in
14768                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
14769                 esac
14770                 d_sethostent_r=undef
14771                 sethostent_r_proto=0
14772                 ;;
14773         esac
14774         ;;
14775 *)      sethostent_r_proto=0
14776         ;;
14777 esac
14778
14779 : see if setitimer exists
14780 set setitimer d_setitimer
14781 eval $inlibc
14782
14783 : see if setlinebuf exists
14784 set setlinebuf d_setlinebuf
14785 eval $inlibc
14786
14787 : see if setlocale exists
14788 set setlocale d_setlocale
14789 eval $inlibc
14790
14791 : see if locale.h is available
14792 set locale.h i_locale
14793 eval $inhdr
14794
14795 : see if setlocale_r exists
14796 set setlocale_r d_setlocale_r
14797 eval $inlibc
14798 case "$d_setlocale_r" in
14799 "$define")
14800         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
14801         case "locale" in
14802         time)
14803                 hdrs="$hdrs $i_systime sys/time.h"
14804                 ;;
14805         esac
14806         case "$d_setlocale_r_proto:$usethreads" in
14807         ":define")      d_setlocale_r_proto=define
14808                 set d_setlocale_r_proto setlocale_r $hdrs
14809                 eval $hasproto ;;
14810         *)      ;;
14811         esac
14812         case "$d_setlocale_r_proto" in
14813         define)
14814         case "$setlocale_r_proto" in
14815         ''|0) try='int setlocale_r(int, const char*, char*, int);'
14816         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
14817         esac
14818         case "$setlocale_r_proto" in
14819         ''|0)   d_setlocale_r=undef
14820                 setlocale_r_proto=0
14821                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
14822         * )     case "$setlocale_r_proto" in
14823                 REENTRANT_PROTO*) ;;
14824                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
14825                 esac
14826                 echo "Prototype: $try" ;;
14827         esac
14828         ;;
14829         *)      case "$usethreads" in
14830                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
14831                 esac
14832                 d_setlocale_r=undef
14833                 setlocale_r_proto=0
14834                 ;;
14835         esac
14836         ;;
14837 *)      setlocale_r_proto=0
14838         ;;
14839 esac
14840
14841 : see if setnetent exists
14842 set setnetent d_setnent
14843 eval $inlibc
14844
14845 : see if setnetent_r exists
14846 set setnetent_r d_setnetent_r
14847 eval $inlibc
14848 case "$d_setnetent_r" in
14849 "$define")
14850         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14851         case "netdb" in
14852         time)
14853                 hdrs="$hdrs $i_systime sys/time.h"
14854                 ;;
14855         esac
14856         case "$d_setnetent_r_proto:$usethreads" in
14857         ":define")      d_setnetent_r_proto=define
14858                 set d_setnetent_r_proto setnetent_r $hdrs
14859                 eval $hasproto ;;
14860         *)      ;;
14861         esac
14862         case "$d_setnetent_r_proto" in
14863         define)
14864         case "$setnetent_r_proto" in
14865         ''|0) try='int setnetent_r(int, struct netent_data*);'
14866         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
14867         esac
14868         case "$setnetent_r_proto" in
14869         ''|0) try='void setnetent_r(int, struct netent_data*);'
14870         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
14871         esac
14872         case "$setnetent_r_proto" in
14873         ''|0)   d_setnetent_r=undef
14874                 setnetent_r_proto=0
14875                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
14876         * )     case "$setnetent_r_proto" in
14877                 REENTRANT_PROTO*) ;;
14878                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
14879                 esac
14880                 echo "Prototype: $try" ;;
14881         esac
14882         ;;
14883         *)      case "$usethreads" in
14884                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
14885                 esac
14886                 d_setnetent_r=undef
14887                 setnetent_r_proto=0
14888                 ;;
14889         esac
14890         ;;
14891 *)      setnetent_r_proto=0
14892         ;;
14893 esac
14894
14895 : see if setprotoent exists
14896 set setprotoent d_setpent
14897 eval $inlibc
14898
14899 : see if setpgid exists
14900 set setpgid d_setpgid
14901 eval $inlibc
14902
14903 : see if setpgrp2 exists
14904 set setpgrp2 d_setpgrp2
14905 eval $inlibc
14906
14907 : see if setpriority exists
14908 set setpriority d_setprior
14909 eval $inlibc
14910
14911 : see if setproctitle exists
14912 set setproctitle d_setproctitle
14913 eval $inlibc
14914
14915 : see if setprotoent_r exists
14916 set setprotoent_r d_setprotoent_r
14917 eval $inlibc
14918 case "$d_setprotoent_r" in
14919 "$define")
14920         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14921         case "netdb" in
14922         time)
14923                 hdrs="$hdrs $i_systime sys/time.h"
14924                 ;;
14925         esac
14926         case "$d_setprotoent_r_proto:$usethreads" in
14927         ":define")      d_setprotoent_r_proto=define
14928                 set d_setprotoent_r_proto setprotoent_r $hdrs
14929                 eval $hasproto ;;
14930         *)      ;;
14931         esac
14932         case "$d_setprotoent_r_proto" in
14933         define)
14934         case "$setprotoent_r_proto" in
14935         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
14936         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
14937         esac
14938         case "$setprotoent_r_proto" in
14939         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
14940         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
14941         esac
14942         case "$setprotoent_r_proto" in
14943         ''|0)   d_setprotoent_r=undef
14944                 setprotoent_r_proto=0
14945                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
14946         * )     case "$setprotoent_r_proto" in
14947                 REENTRANT_PROTO*) ;;
14948                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
14949                 esac
14950                 echo "Prototype: $try" ;;
14951         esac
14952         ;;
14953         *)      case "$usethreads" in
14954                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
14955                 esac
14956                 d_setprotoent_r=undef
14957                 setprotoent_r_proto=0
14958                 ;;
14959         esac
14960         ;;
14961 *)      setprotoent_r_proto=0
14962         ;;
14963 esac
14964
14965 : see if setpwent exists
14966 set setpwent d_setpwent
14967 eval $inlibc
14968
14969 : see if setpwent_r exists
14970 set setpwent_r d_setpwent_r
14971 eval $inlibc
14972 case "$d_setpwent_r" in
14973 "$define")
14974         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
14975         case "pwd" in
14976         time)
14977                 hdrs="$hdrs $i_systime sys/time.h"
14978                 ;;
14979         esac
14980         case "$d_setpwent_r_proto:$usethreads" in
14981         ":define")      d_setpwent_r_proto=define
14982                 set d_setpwent_r_proto setpwent_r $hdrs
14983                 eval $hasproto ;;
14984         *)      ;;
14985         esac
14986         case "$d_setpwent_r_proto" in
14987         define)
14988         case "$setpwent_r_proto" in
14989         ''|0) try='int setpwent_r(FILE**);'
14990         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
14991         esac
14992         case "$setpwent_r_proto" in
14993         ''|0) try='void setpwent_r(FILE**);'
14994         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
14995         esac
14996         case "$setpwent_r_proto" in
14997         ''|0)   d_setpwent_r=undef
14998                 setpwent_r_proto=0
14999                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
15000         * )     case "$setpwent_r_proto" in
15001                 REENTRANT_PROTO*) ;;
15002                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
15003                 esac
15004                 echo "Prototype: $try" ;;
15005         esac
15006         ;;
15007         *)      case "$usethreads" in
15008                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
15009                 esac
15010                 d_setpwent_r=undef
15011                 setpwent_r_proto=0
15012                 ;;
15013         esac
15014         ;;
15015 *)      setpwent_r_proto=0
15016         ;;
15017 esac
15018
15019 : see if setregid exists
15020 set setregid d_setregid
15021 eval $inlibc
15022 set setresgid d_setresgid
15023 eval $inlibc
15024
15025 : see if setreuid exists
15026 set setreuid d_setreuid
15027 eval $inlibc
15028 set setresuid d_setresuid
15029 eval $inlibc
15030
15031 : see if setrgid exists
15032 set setrgid d_setrgid
15033 eval $inlibc
15034
15035 : see if setruid exists
15036 set setruid d_setruid
15037 eval $inlibc
15038
15039 : see if setservent exists
15040 set setservent d_setsent
15041 eval $inlibc
15042
15043 : see if setservent_r exists
15044 set setservent_r d_setservent_r
15045 eval $inlibc
15046 case "$d_setservent_r" in
15047 "$define")
15048         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15049         case "netdb" in
15050         time)
15051                 hdrs="$hdrs $i_systime sys/time.h"
15052                 ;;
15053         esac
15054         case "$d_setservent_r_proto:$usethreads" in
15055         ":define")      d_setservent_r_proto=define
15056                 set d_setservent_r_proto setservent_r $hdrs
15057                 eval $hasproto ;;
15058         *)      ;;
15059         esac
15060         case "$d_setservent_r_proto" in
15061         define)
15062         case "$setservent_r_proto" in
15063         ''|0) try='int setservent_r(int, struct servent_data*);'
15064         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
15065         esac
15066         case "$setservent_r_proto" in
15067         ''|0) try='void setservent_r(int, struct servent_data*);'
15068         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
15069         esac
15070         case "$setservent_r_proto" in
15071         ''|0)   d_setservent_r=undef
15072                 setservent_r_proto=0
15073                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
15074         * )     case "$setservent_r_proto" in
15075                 REENTRANT_PROTO*) ;;
15076                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
15077                 esac
15078                 echo "Prototype: $try" ;;
15079         esac
15080         ;;
15081         *)      case "$usethreads" in
15082                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
15083                 esac
15084                 d_setservent_r=undef
15085                 setservent_r_proto=0
15086                 ;;
15087         esac
15088         ;;
15089 *)      setservent_r_proto=0
15090         ;;
15091 esac
15092
15093 : see if setsid exists
15094 set setsid d_setsid
15095 eval $inlibc
15096
15097 : see if setvbuf exists
15098 set setvbuf d_setvbuf
15099 eval $inlibc
15100
15101 : see if sfio.h is available
15102 set sfio.h i_sfio
15103 eval $inhdr
15104
15105
15106 : see if sfio library is available
15107 case "$i_sfio" in
15108 $define)
15109         val=''
15110         set sfreserve val
15111         eval $inlibc
15112         ;;
15113 *)
15114         val="$undef"
15115         ;;
15116 esac
15117 : Ok, but do we want to use it.
15118 case "$val" in
15119 $define)
15120         case "$usesfio" in
15121         true|$define|[yY]*) dflt='y';;
15122         *) dflt='n';;
15123         esac
15124         echo "$package can use the sfio library, but it is experimental."
15125         case "$useperlio" in
15126         "$undef")
15127             echo "For sfio also the PerlIO abstraction layer is needed."
15128             echo "Earlier you said you wouldn't want that."
15129             ;;
15130         esac
15131         rp="You seem to have sfio available, do you want to try using it?"
15132         . ./myread
15133         case "$ans" in
15134         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
15135                 useperlio="$define"
15136                 val="$define"
15137                 ;;
15138         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
15139                 val="$undef"
15140                 ;;
15141         esac
15142         ;;
15143 *)      case "$usesfio" in
15144         true|$define|[yY]*)
15145                 echo "Sorry, cannot find sfio on this machine." >&4
15146                 echo "Ignoring your setting of usesfio=$usesfio." >&4
15147                 val="$undef"
15148                 ;;
15149         esac
15150         ;;
15151 esac
15152 set d_sfio
15153 eval $setvar
15154 case "$d_sfio" in
15155 $define) usesfio='true';;
15156 *) usesfio='false';;
15157 esac
15158 case "$d_sfio" in
15159 $define) ;;
15160 *)      : Remove sfio from list of libraries to use
15161         case "$libs" in
15162         *-lsfio*)
15163                 echo "Removing unneeded -lsfio from library list" >&4
15164                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
15165                 shift
15166                 libs="$*"
15167                 echo "libs = $libs" >&4
15168                 ;;
15169         esac
15170 ;;
15171 esac
15172
15173
15174 : see if shmctl exists
15175 set shmctl d_shmctl
15176 eval $inlibc
15177
15178 : see if shmget exists
15179 set shmget d_shmget
15180 eval $inlibc
15181
15182 : see if shmat exists
15183 set shmat d_shmat
15184 eval $inlibc
15185 : see what shmat returns
15186 case "$d_shmat" in
15187 "$define")
15188         $cat >shmat.c <<'END'
15189 #include <sys/shm.h>
15190 void *shmat();
15191 END
15192         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15193                 shmattype='void *'
15194         else
15195                 shmattype='char *'
15196         fi
15197         echo "and it returns ($shmattype)." >&4
15198         : see if a prototype for shmat is available
15199         xxx=`./findhdr sys/shm.h`
15200         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15201         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15202                 val="$define"
15203         else
15204                 val="$undef"
15205         fi
15206         $rm -f shmat.[co]
15207         ;;
15208 *)
15209         val="$undef"
15210         ;;
15211 esac
15212 set d_shmatprototype
15213 eval $setvar
15214
15215 : see if shmdt exists
15216 set shmdt d_shmdt
15217 eval $inlibc
15218
15219 : see how much of the 'shm*(2)' library is present.
15220 h_shm=true
15221 echo " "
15222 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
15223 *"$undef"*) h_shm=false;;
15224 esac
15225 case "$osname" in
15226 freebsd)
15227     case "`ipcs 2>&1`" in
15228     "SVID shared memory"*"not configured"*)
15229         echo "Your $osname does not have the shm*(2) configured." >&4
15230         h_shm=false
15231         val="$undef"
15232         set shmctl d_shmctl
15233         evat $setvar
15234         set shmget d_shmget
15235         evat $setvar
15236         set shmat d_shmat
15237         evat $setvar
15238         set shmdt d_shmdt
15239         evat $setvar
15240         ;;
15241     esac
15242     ;;
15243 esac
15244 : we could also check for sys/ipc.h ...
15245 if $h_shm && $test `./findhdr sys/shm.h`; then
15246         echo "You have the full shm*(2) library." >&4
15247         val="$define"
15248 else
15249         echo "You don't have the full shm*(2) library." >&4
15250         val="$undef"
15251 fi
15252 set d_shm
15253 eval $setvar
15254
15255 echo " "
15256 : see if we have sigaction
15257 if set sigaction val -f d_sigaction; eval $csym; $val; then
15258         echo 'sigaction() found.' >&4
15259         $cat > try.c <<'EOP'
15260 #include <stdio.h>
15261 #include <sys/types.h>
15262 #include <signal.h>
15263 int main()
15264 {
15265     struct sigaction act, oact;
15266     act.sa_flags = 0;
15267     oact.sa_handler = 0;
15268     /* so that act and oact are used */
15269     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
15270 }
15271 EOP
15272         set try
15273         if eval $compile_ok; then
15274                 val="$define"
15275         else
15276                 echo "But you don't seem to have a useable struct sigaction." >&4
15277                 val="$undef"
15278         fi
15279 else
15280         echo 'sigaction NOT found.' >&4
15281         val="$undef"
15282 fi
15283 set d_sigaction; eval $setvar
15284 $rm -f try try$_o try.c
15285
15286 : see if sigprocmask exists
15287 set sigprocmask d_sigprocmask
15288 eval $inlibc
15289
15290 : see if sigsetjmp exists
15291 echo " "
15292 case "$d_sigsetjmp" in
15293 '')
15294         $cat >try.c <<'EOP'
15295 #include <setjmp.h>
15296 sigjmp_buf env;
15297 int set = 1;
15298 int main()
15299 {
15300         if (sigsetjmp(env,1))
15301                 exit(set);
15302         set = 0;
15303         siglongjmp(env, 1);
15304         exit(1);
15305 }
15306 EOP
15307         set try
15308         if eval $compile; then
15309                 if $run ./try >/dev/null 2>&1; then
15310                         echo "POSIX sigsetjmp found." >&4
15311                         val="$define"
15312                 else
15313                         $cat >&4 <<EOM
15314 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
15315 I'll ignore them.
15316 EOM
15317                         val="$undef"
15318                 fi
15319         else
15320                 echo "sigsetjmp not found." >&4
15321                 val="$undef"
15322         fi
15323         ;;
15324 *) val="$d_sigsetjmp"
15325         case "$d_sigsetjmp" in
15326         $define) echo "POSIX sigsetjmp found." >&4;;
15327         $undef) echo "sigsetjmp not found." >&4;;
15328         esac
15329         ;;
15330 esac
15331 set d_sigsetjmp
15332 eval $setvar
15333 $rm -f try.c try
15334
15335 : see if sockatmark exists
15336 set sockatmark d_sockatmark
15337 eval $inlibc
15338
15339 : see if prototype for sockatmark is available
15340 echo " "
15341 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
15342 eval $hasproto
15343
15344 : see if socks5_init exists
15345 set socks5_init d_socks5_init
15346 eval $inlibc
15347
15348 : see if srand48_r exists
15349 set srand48_r d_srand48_r
15350 eval $inlibc
15351 case "$d_srand48_r" in
15352 "$define")
15353         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
15354         case "stdlib" in
15355         time)
15356                 hdrs="$hdrs $i_systime sys/time.h"
15357                 ;;
15358         esac
15359         case "$d_srand48_r_proto:$usethreads" in
15360         ":define")      d_srand48_r_proto=define
15361                 set d_srand48_r_proto srand48_r $hdrs
15362                 eval $hasproto ;;
15363         *)      ;;
15364         esac
15365         case "$d_srand48_r_proto" in
15366         define)
15367         case "$srand48_r_proto" in
15368         ''|0) try='int srand48_r(long, struct drand48_data*);'
15369         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
15370         esac
15371         case "$srand48_r_proto" in
15372         ''|0)   d_srand48_r=undef
15373                 srand48_r_proto=0
15374                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
15375         * )     case "$srand48_r_proto" in
15376                 REENTRANT_PROTO*) ;;
15377                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
15378                 esac
15379                 echo "Prototype: $try" ;;
15380         esac
15381         ;;
15382         *)      case "$usethreads" in
15383                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
15384                 esac
15385                 d_srand48_r=undef
15386                 srand48_r_proto=0
15387                 ;;
15388         esac
15389         ;;
15390 *)      srand48_r_proto=0
15391         ;;
15392 esac
15393
15394 : see if srandom_r exists
15395 set srandom_r d_srandom_r
15396 eval $inlibc
15397 case "$d_srandom_r" in
15398 "$define")
15399         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
15400         case "stdlib" in
15401         time)
15402                 hdrs="$hdrs $i_systime sys/time.h"
15403                 ;;
15404         esac
15405         case "$d_srandom_r_proto:$usethreads" in
15406         ":define")      d_srandom_r_proto=define
15407                 set d_srandom_r_proto srandom_r $hdrs
15408                 eval $hasproto ;;
15409         *)      ;;
15410         esac
15411         case "$d_srandom_r_proto" in
15412         define)
15413         case "$srandom_r_proto" in
15414         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
15415         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
15416         esac
15417         case "$srandom_r_proto" in
15418         ''|0)   d_srandom_r=undef
15419                 srandom_r_proto=0
15420                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
15421         * )     case "$srandom_r_proto" in
15422                 REENTRANT_PROTO*) ;;
15423                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
15424                 esac
15425                 echo "Prototype: $try" ;;
15426         esac
15427         ;;
15428         *)      case "$usethreads" in
15429                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
15430                 esac
15431                 d_srandom_r=undef
15432                 srandom_r_proto=0
15433                 ;;
15434         esac
15435         ;;
15436 *)      srandom_r_proto=0
15437         ;;
15438 esac
15439
15440 : see if prototype for setresgid is available
15441 echo " "
15442 set d_sresgproto setresgid $i_unistd unistd.h
15443 eval $hasproto
15444
15445 : see if prototype for setresuid is available
15446 echo " "
15447 set d_sresuproto setresuid $i_unistd unistd.h
15448 eval $hasproto
15449
15450 : see if sys/stat.h is available
15451 set sys/stat.h i_sysstat
15452 eval $inhdr
15453
15454
15455 : see if stat knows about block sizes
15456 echo " "
15457 echo "Checking to see if your struct stat has st_blocks field..." >&4
15458 set d_statblks stat st_blocks $i_sysstat sys/stat.h
15459 eval $hasfield
15460
15461
15462 : see if this is a sys/vfs.h system
15463 set sys/vfs.h i_sysvfs
15464 eval $inhdr
15465
15466
15467 : see if this is a sys/statfs.h system
15468 set sys/statfs.h i_sysstatfs
15469 eval $inhdr
15470
15471
15472 echo " "
15473 echo "Checking to see if your system supports struct statfs..." >&4
15474 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
15475 eval $hasstruct
15476 case "$d_statfs_s" in
15477 "$define")      echo "Yes, it does."   ;;
15478 *)              echo "No, it doesn't." ;;
15479 esac
15480
15481
15482
15483 : see if struct statfs knows about f_flags
15484 case "$d_statfs_s" in
15485 define) 
15486         echo " "
15487         echo "Checking to see if your struct statfs has f_flags field..." >&4
15488         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
15489         eval $hasfield
15490         ;;
15491 *)      val="$undef"
15492         set d_statfs_f_flags
15493         eval $setvar
15494         ;;
15495 esac
15496 case "$d_statfs_f_flags" in
15497 "$define")      echo "Yes, it does."   ;;
15498 *)              echo "No, it doesn't." ;;
15499 esac
15500
15501 : see if _ptr and _cnt from stdio act std
15502 echo " "
15503
15504 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
15505         echo "(Looks like you have stdio.h from BSD.)"
15506         case "$stdio_ptr" in
15507         '') stdio_ptr='((fp)->_p)'
15508                 ptr_lval=$define
15509                 ;;
15510         *)      ptr_lval=$d_stdio_ptr_lval;;
15511         esac
15512         case "$stdio_cnt" in
15513         '') stdio_cnt='((fp)->_r)'
15514                 cnt_lval=$define
15515                 ;;
15516         *)      cnt_lval=$d_stdio_cnt_lval;;
15517         esac
15518         case "$stdio_base" in
15519         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
15520         esac
15521         case "$stdio_bufsiz" in
15522         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
15523         esac
15524 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
15525         echo "(Looks like you have stdio.h from Linux.)"
15526         case "$stdio_ptr" in
15527         '') stdio_ptr='((fp)->_IO_read_ptr)'
15528                 ptr_lval=$define
15529                 ;;
15530         *)      ptr_lval=$d_stdio_ptr_lval;;
15531         esac
15532         case "$stdio_cnt" in
15533         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
15534                 cnt_lval=$undef
15535                 ;;
15536         *)      cnt_lval=$d_stdio_cnt_lval;;
15537         esac
15538         case "$stdio_base" in
15539         '') stdio_base='((fp)->_IO_read_base)';;
15540         esac
15541         case "$stdio_bufsiz" in
15542         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
15543         esac
15544 else
15545         case "$stdio_ptr" in
15546         '') stdio_ptr='((fp)->_ptr)'
15547                 ptr_lval=$define
15548                 ;;
15549         *)      ptr_lval=$d_stdio_ptr_lval;;
15550         esac
15551         case "$stdio_cnt" in
15552         '') stdio_cnt='((fp)->_cnt)'
15553                 cnt_lval=$define
15554                 ;;
15555         *)      cnt_lval=$d_stdio_cnt_lval;;
15556         esac
15557         case "$stdio_base" in
15558         '') stdio_base='((fp)->_base)';;
15559         esac
15560         case "$stdio_bufsiz" in
15561         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
15562         esac
15563 fi
15564
15565 : test whether _ptr and _cnt really work
15566 echo "Checking how std your stdio is..." >&4
15567 $cat >try.c <<EOP
15568 #include <stdio.h>
15569 #define FILE_ptr(fp)    $stdio_ptr
15570 #define FILE_cnt(fp)    $stdio_cnt
15571 int main() {
15572         FILE *fp = fopen("try.c", "r");
15573         char c = getc(fp);
15574         if (
15575                 18 <= FILE_cnt(fp) &&
15576                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
15577         )
15578                 exit(0);
15579         exit(1);
15580 }
15581 EOP
15582 val="$undef"
15583 set try
15584 if eval $compile && $to try.c; then
15585         if $run ./try; then
15586                 echo "Your stdio acts pretty std."
15587                 val="$define"
15588         else
15589                 echo "Your stdio isn't very std."
15590         fi
15591 else
15592         echo "Your stdio doesn't appear very std."
15593 fi
15594 $rm -f try.c try
15595 set d_stdstdio
15596 eval $setvar
15597
15598 : Can _ptr be used as an lvalue?
15599 case "$d_stdstdio$ptr_lval" in
15600 $define$define) val=$define ;;
15601 *) val=$undef ;;
15602 esac
15603 set d_stdio_ptr_lval
15604 eval $setvar
15605
15606 : Can _cnt be used as an lvalue?
15607 case "$d_stdstdio$cnt_lval" in
15608 $define$define) val=$define ;;
15609 *) val=$undef ;;
15610 esac
15611 set d_stdio_cnt_lval
15612 eval $setvar
15613
15614
15615 : test whether setting _ptr sets _cnt as a side effect
15616 d_stdio_ptr_lval_sets_cnt="$undef"
15617 d_stdio_ptr_lval_nochange_cnt="$undef"
15618 case "$d_stdio_ptr_lval$d_stdstdio" in
15619 $define$define)
15620         echo "Checking to see what happens if we set the stdio ptr..." >&4
15621 $cat >try.c <<EOP
15622 #include <stdio.h>
15623 /* Can we scream? */
15624 /* Eat dust sed :-) */
15625 /* In the buffer space, no one can hear you scream. */
15626 #define FILE_ptr(fp)    $stdio_ptr
15627 #define FILE_cnt(fp)    $stdio_cnt
15628 #include <sys/types.h>
15629 int main() {
15630         FILE *fp = fopen("try.c", "r");
15631         int c;
15632         char *ptr;
15633         size_t cnt;
15634         if (!fp) {
15635             puts("Fail even to read");
15636             exit(1);
15637         }
15638         c = getc(fp); /* Read away the first # */
15639         if (c == EOF) {
15640             puts("Fail even to read");
15641             exit(1);
15642         }
15643         if (!(
15644                 18 <= FILE_cnt(fp) &&
15645                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
15646         )) {
15647                 puts("Fail even to read");
15648                 exit (1);
15649         }
15650         ptr = (char*) FILE_ptr(fp);
15651         cnt = (size_t)FILE_cnt(fp);
15652
15653         FILE_ptr(fp) += 42;
15654
15655         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
15656                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
15657                 exit (1);
15658         }
15659         if (FILE_cnt(fp) <= 20) {
15660                 printf ("Fail (<20 chars to test)");
15661                 exit (1);
15662         }
15663         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
15664                 puts("Fail compare");
15665                 exit (1);
15666         }
15667         if (cnt == FILE_cnt(fp)) {
15668                 puts("Pass_unchanged");
15669                 exit (0);
15670         }       
15671         if (FILE_cnt(fp) == (cnt - 42)) {
15672                 puts("Pass_changed");
15673                 exit (0);
15674         }
15675         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
15676         return 1;
15677
15678 }
15679 EOP
15680         set try
15681         if eval $compile && $to try.c; then
15682                 case `$run ./try` in
15683                 Pass_changed)
15684                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
15685                         d_stdio_ptr_lval_sets_cnt="$define" ;;
15686                 Pass_unchanged)
15687                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
15688                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
15689                 Fail*)
15690                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
15691                 *)
15692                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
15693         esac
15694         else
15695                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
15696         fi
15697         $rm -f try.c try
15698         ;;
15699 esac
15700
15701 : see if _base is also standard
15702 val="$undef"
15703 case "$d_stdstdio" in
15704 $define)
15705         $cat >try.c <<EOP
15706 #include <stdio.h>
15707 #define FILE_base(fp)   $stdio_base
15708 #define FILE_bufsiz(fp) $stdio_bufsiz
15709 int main() {
15710         FILE *fp = fopen("try.c", "r");
15711         char c = getc(fp);
15712         if (
15713                 19 <= FILE_bufsiz(fp) &&
15714                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
15715         )
15716                 exit(0);
15717         exit(1);
15718 }
15719 EOP
15720         set try
15721         if eval $compile && $to try.c; then
15722                 if $run ./try; then
15723                         echo "And its _base field acts std."
15724                         val="$define"
15725                 else
15726                         echo "But its _base field isn't std."
15727                 fi
15728         else
15729                 echo "However, it seems to be lacking the _base field."
15730         fi
15731         $rm -f try.c try
15732         ;;
15733 esac
15734 set d_stdiobase
15735 eval $setvar
15736
15737 $cat >&4 <<EOM
15738 Checking how to access stdio streams by file descriptor number...
15739 EOM
15740 case "$stdio_stream_array" in
15741 '')     $cat >try.c <<EOCP
15742 #include <stdio.h>
15743 int main() {
15744   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
15745     printf("yes\n");
15746 }
15747 EOCP
15748         for s in _iob __iob __sF
15749         do
15750                 set try -DSTDIO_STREAM_ARRAY=$s
15751                 if eval $compile; then
15752                         case "`$run ./try`" in
15753                         yes)    stdio_stream_array=$s; break ;;
15754                         esac
15755                 fi
15756         done
15757         $rm -f try.* try$exe_ext
15758 esac
15759 case "$stdio_stream_array" in
15760 '')     $cat >&4 <<EOM
15761 I can't figure out how to access stdio streams by file descriptor number.
15762 EOM
15763         d_stdio_stream_array="$undef"
15764         ;;
15765 *)      $cat >&4 <<EOM
15766 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
15767 EOM
15768         d_stdio_stream_array="$define"
15769         ;;
15770 esac
15771
15772 : see if strcoll exists
15773 set strcoll d_strcoll
15774 eval $inlibc
15775
15776 : check for structure copying
15777 echo " "
15778 echo "Checking to see if your C compiler can copy structs..." >&4
15779 $cat >try.c <<'EOCP'
15780 int main()
15781 {
15782         struct blurfl {
15783                 int dyick;
15784         } foo, bar;
15785
15786         foo = bar;
15787 }
15788 EOCP
15789 if $cc -c try.c >/dev/null 2>&1 ; then
15790         val="$define"
15791         echo "Yup, it can."
15792 else
15793         val="$undef"
15794         echo "Nope, it can't."
15795 fi
15796 set d_strctcpy
15797 eval $setvar
15798 $rm -f try.*
15799
15800 : see if strerror and/or sys_errlist[] exist
15801 echo " "
15802 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
15803     if set strerror val -f d_strerror; eval $csym; $val; then
15804                 echo 'strerror() found.' >&4
15805                 d_strerror="$define"
15806                 d_strerrm='strerror(e)'
15807                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
15808                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
15809                         d_syserrlst="$define"
15810                 else
15811                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
15812                         d_syserrlst="$undef"
15813                 fi
15814     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
15815                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
15816                 echo 'strerror() found in string header.' >&4
15817                 d_strerror="$define"
15818                 d_strerrm='strerror(e)'
15819                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
15820                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
15821                                 d_syserrlst="$define"
15822                 else
15823                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
15824                         d_syserrlst="$undef"
15825                 fi
15826     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
15827                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
15828                 d_strerror="$undef"
15829                 d_syserrlst="$define"
15830                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
15831     else
15832                 echo 'strerror() and sys_errlist[] NOT found.' >&4
15833                 d_strerror="$undef"
15834                 d_syserrlst="$undef"
15835                 d_strerrm='"unknown"'
15836     fi
15837 fi
15838
15839 : see if strerror_r exists
15840 set strerror_r d_strerror_r
15841 eval $inlibc
15842 case "$d_strerror_r" in
15843 "$define")
15844         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
15845         case "string" in
15846         time)
15847                 hdrs="$hdrs $i_systime sys/time.h"
15848                 ;;
15849         esac
15850         case "$d_strerror_r_proto:$usethreads" in
15851         ":define")      d_strerror_r_proto=define
15852                 set d_strerror_r_proto strerror_r $hdrs
15853                 eval $hasproto ;;
15854         *)      ;;
15855         esac
15856         case "$d_strerror_r_proto" in
15857         define)
15858         case "$strerror_r_proto" in
15859         ''|0) try='int strerror_r(int, char*, size_t);'
15860         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
15861         esac
15862         case "$strerror_r_proto" in
15863         ''|0) try='int strerror_r(int, char*, int);'
15864         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
15865         esac
15866         case "$strerror_r_proto" in
15867         ''|0) try='char* strerror_r(int, char*, size_t);'
15868         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
15869         esac
15870         case "$strerror_r_proto" in
15871         ''|0)   d_strerror_r=undef
15872                 strerror_r_proto=0
15873                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
15874         * )     case "$strerror_r_proto" in
15875                 REENTRANT_PROTO*) ;;
15876                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
15877                 esac
15878                 echo "Prototype: $try" ;;
15879         esac
15880         ;;
15881         *)      case "$usethreads" in
15882                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
15883                 esac
15884                 d_strerror_r=undef
15885                 strerror_r_proto=0
15886                 ;;
15887         esac
15888         ;;
15889 *)      strerror_r_proto=0
15890         ;;
15891 esac
15892
15893 : see if strftime exists
15894 set strftime d_strftime
15895 eval $inlibc
15896
15897 : see if strtod exists
15898 set strtod d_strtod
15899 eval $inlibc
15900
15901 : see if strtol exists
15902 set strtol d_strtol
15903 eval $inlibc
15904
15905 : see if strtold exists
15906 set strtold d_strtold
15907 eval $inlibc
15908
15909 : see if strtoll exists
15910 set strtoll d_strtoll
15911 eval $inlibc
15912
15913 case "$d_longlong-$d_strtoll" in
15914 "$define-$define")
15915         $cat <<EOM
15916 Checking whether your strtoll() works okay...
15917 EOM
15918         $cat >try.c <<'EOCP'
15919 #include <errno.h>
15920 #ifdef __hpux
15921 #define strtoll __strtoll
15922 #endif
15923 #ifdef __EMX__
15924 #define strtoll _strtoll
15925 #endif
15926 #include <stdio.h>
15927 extern long long int strtoll(char *s, char **, int); 
15928 static int bad = 0;
15929 int check(char *s, long long ell, int een) {
15930         long long gll;
15931         errno = 0;
15932         gll = strtoll(s, 0, 10);
15933         if (!((gll == ell) && (errno == een)))
15934                 bad++;
15935 }
15936 int main() {
15937         check(" 1",                                      1LL, 0);
15938         check(" 0",                                      0LL, 0);
15939         check("-1",                                     -1LL, 0);
15940         check("-9223372036854775808", -9223372036854775808LL, 0);
15941         check("-9223372036854775808", -9223372036854775808LL, 0);
15942         check(" 9223372036854775807",  9223372036854775807LL, 0);
15943         check("-9223372036854775808", -9223372036854775808LL, 0);
15944         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
15945         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
15946         if (!bad)
15947                 printf("ok\n");
15948 }
15949 EOCP
15950         set try
15951         if eval $compile; then
15952                 yyy=`$run ./try`
15953                 case "$yyy" in
15954                 ok) echo "Your strtoll() seems to be working okay." ;;
15955                 *) cat <<EOM >&4
15956 Your strtoll() doesn't seem to be working okay.
15957 EOM
15958                    d_strtoll="$undef"
15959                    ;;
15960                 esac
15961         else
15962                 echo "(I can't seem to compile the test program--assuming it doesn't)"
15963                 d_strtoll="$undef"
15964         fi
15965         ;;
15966 esac
15967
15968 : see if strtoq exists
15969 set strtoq d_strtoq
15970 eval $inlibc
15971
15972 : see if strtoul exists
15973 set strtoul d_strtoul
15974 eval $inlibc
15975
15976 case "$d_strtoul" in
15977 "$define")
15978         $cat <<EOM
15979 Checking whether your strtoul() works okay...
15980 EOM
15981         $cat >try.c <<'EOCP'
15982 #include <errno.h>
15983 #include <stdio.h>
15984 extern unsigned long int strtoul(char *s, char **, int); 
15985 static int bad = 0;
15986 void check(char *s, unsigned long eul, int een) {
15987         unsigned long gul;
15988         errno = 0;
15989         gul = strtoul(s, 0, 10);
15990         if (!((gul == eul) && (errno == een)))
15991                 bad++;
15992 }
15993 int main() {
15994         check(" 1", 1L, 0);
15995         check(" 0", 0L, 0);
15996 EOCP
15997         case "$longsize" in
15998         8)
15999             $cat >>try.c <<'EOCP'
16000         check("18446744073709551615", 18446744073709551615UL, 0);
16001         check("18446744073709551616", 18446744073709551615UL, ERANGE);
16002 #if 0 /* strtoul() for /^-/ strings is undefined. */
16003         check("-1", 18446744073709551615UL, 0);
16004         check("-18446744073709551614", 2, 0);
16005         check("-18446744073709551615", 1, 0);
16006         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
16007         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
16008 #endif
16009 EOCP
16010                 ;;
16011         4)
16012                     $cat >>try.c <<'EOCP'
16013         check("4294967295", 4294967295UL, 0);
16014         check("4294967296", 4294967295UL, ERANGE);
16015 #if 0 /* strtoul() for /^-/ strings is undefined. */
16016         check("-1", 4294967295UL, 0);
16017         check("-4294967294", 2, 0);
16018         check("-4294967295", 1, 0);
16019         check("-4294967296", 4294967295UL, ERANGE);
16020         check("-4294967297", 4294967295UL, ERANGE);
16021 #endif
16022 EOCP
16023                 ;;
16024         *)
16025 : Should we write these tests to be more portable by sprintf-ing
16026 : ~0 and then manipulating that char string as input for strtol?
16027                 ;;
16028         esac
16029         $cat >>try.c <<'EOCP'
16030         if (!bad)
16031                 printf("ok\n");
16032         return 0;
16033 }
16034 EOCP
16035         set try
16036         if eval $compile; then
16037                 case "`$run ./try`" in
16038                 ok) echo "Your strtoul() seems to be working okay." ;;
16039                 *) cat <<EOM >&4
16040 Your strtoul() doesn't seem to be working okay.
16041 EOM
16042                    d_strtoul="$undef"
16043                    ;;
16044                 esac
16045         fi
16046         ;;
16047 esac
16048
16049 : see if strtoull exists
16050 set strtoull d_strtoull
16051 eval $inlibc
16052
16053 case "$d_longlong-$d_strtoull" in
16054 "$define-$define")
16055         $cat <<EOM
16056 Checking whether your strtoull() works okay...
16057 EOM
16058         $cat >try.c <<'EOCP'
16059 #include <errno.h>
16060 #ifdef __hpux
16061 #define strtoull __strtoull
16062 #endif
16063 #include <stdio.h>
16064 extern unsigned long long int strtoull(char *s, char **, int); 
16065 static int bad = 0;
16066 int check(char *s, long long eull, int een) {
16067         long long gull;
16068         errno = 0;
16069         gull = strtoull(s, 0, 10);
16070         if (!((gull == eull) && (errno == een)))
16071                 bad++;
16072 }
16073 int main() {
16074         check(" 1",                                        1LL, 0);
16075         check(" 0",                                        0LL, 0);
16076         check("18446744073709551615",  18446744073709551615ULL, 0);
16077         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16078 #if 0 /* strtoull() for /^-/ strings is undefined. */
16079         check("-1",                    18446744073709551615ULL, 0);
16080         check("-18446744073709551614",                     2LL, 0);
16081         check("-18446744073709551615",                     1LL, 0);
16082         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16083         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16084 #endif
16085         if (!bad)
16086                 printf("ok\n");
16087 }
16088 EOCP
16089         set try
16090         if eval $compile; then
16091                 case "`$run ./try`" in
16092                 ok) echo "Your strtoull() seems to be working okay." ;;
16093                 *) cat <<EOM >&4
16094 Your strtoull() doesn't seem to be working okay.
16095 EOM
16096                    d_strtoull="$undef"
16097                    ;;
16098                 esac
16099         fi
16100         ;;
16101 esac
16102
16103 : see if strtouq exists
16104 set strtouq d_strtouq
16105 eval $inlibc
16106
16107 case "$d_strtouq" in
16108 "$define")
16109         $cat <<EOM
16110 Checking whether your strtouq() works okay...
16111 EOM
16112         $cat >try.c <<'EOCP'
16113 #include <errno.h>
16114 #include <stdio.h>
16115 extern unsigned long long int strtouq(char *s, char **, int); 
16116 static int bad = 0;
16117 void check(char *s, unsigned long long eull, int een) {
16118         unsigned long long gull;
16119         errno = 0;
16120         gull = strtouq(s, 0, 10);
16121         if (!((gull == eull) && (errno == een)))
16122                 bad++;
16123 }
16124 int main() {
16125         check(" 1",                                        1LL, 0);
16126         check(" 0",                                        0LL, 0);
16127         check("18446744073709551615",  18446744073709551615ULL, 0);
16128         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16129 #if 0 /* strtouq() for /^-/ strings is undefined. */
16130         check("-1",                    18446744073709551615ULL, 0);
16131         check("-18446744073709551614",                     2LL, 0);
16132         check("-18446744073709551615",                     1LL, 0);
16133         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16134         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16135 #endif
16136         if (!bad)
16137                 printf("ok\n");
16138         return 0;
16139 }
16140 EOCP
16141         set try
16142         if eval $compile; then
16143                 case "`$run ./try`" in
16144                 ok) echo "Your strtouq() seems to be working okay." ;;
16145                 *) cat <<EOM >&4
16146 Your strtouq() doesn't seem to be working okay.
16147 EOM
16148                    d_strtouq="$undef"
16149                    ;;
16150                 esac
16151         fi
16152         ;;
16153 esac
16154
16155 : see if strxfrm exists
16156 set strxfrm d_strxfrm
16157 eval $inlibc
16158
16159 : see if symlink exists
16160 set symlink d_symlink
16161 eval $inlibc
16162
16163 : see if syscall exists
16164 set syscall d_syscall
16165 eval $inlibc
16166
16167 : see if prototype for syscall is available
16168 echo " "
16169 set d_syscallproto syscall $i_unistd unistd.h
16170 eval $hasproto
16171
16172 : see if sysconf exists
16173 set sysconf d_sysconf
16174 eval $inlibc
16175
16176 : see if system exists
16177 set system d_system
16178 eval $inlibc
16179
16180 : see if tcgetpgrp exists
16181 set tcgetpgrp d_tcgetpgrp
16182 eval $inlibc
16183
16184 : see if tcsetpgrp exists
16185 set tcsetpgrp d_tcsetpgrp
16186 eval $inlibc
16187
16188 : see if prototype for telldir is available
16189 echo " "
16190 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16191 eval $hasproto
16192
16193 : see if time exists
16194 echo " "
16195 if test "X$d_time" = X -o X"$timetype" = X; then
16196     if set time val -f d_time; eval $csym; $val; then
16197                 echo 'time() found.' >&4
16198                 val="$define"
16199                 rp="What is the type returned by time() on this system?"
16200                 set time_t timetype long stdio.h sys/types.h
16201                 eval $typedef_ask
16202     else
16203                 echo 'time() not found, hope that will do.' >&4
16204                 val="$undef"
16205                 timetype='int';
16206     fi
16207     set d_time
16208     eval $setvar
16209 fi
16210
16211 : see if this is a sys/times.h system
16212 set sys/times.h i_systimes
16213 eval $inhdr
16214
16215 : see if times exists
16216 echo " "
16217 if set times val -f d_times; eval $csym; $val; then
16218         echo 'times() found.' >&4
16219         d_times="$define"
16220         inc=''
16221         case "$i_systimes" in
16222         "$define") inc='sys/times.h';;
16223         esac
16224         rp="What is the type returned by times() on this system?"
16225         set clock_t clocktype long stdio.h sys/types.h $inc
16226         eval $typedef_ask
16227 else
16228         echo 'times() NOT found, hope that will do.' >&4
16229         d_times="$undef"
16230         clocktype='int'
16231 fi
16232
16233 : see if tmpnam_r exists
16234 set tmpnam_r d_tmpnam_r
16235 eval $inlibc
16236 case "$d_tmpnam_r" in
16237 "$define")
16238         hdrs="$i_systypes sys/types.h define stdio.h "
16239         case "stdio" in
16240         time)
16241                 hdrs="$hdrs $i_systime sys/time.h"
16242                 ;;
16243         esac
16244         case "$d_tmpnam_r_proto:$usethreads" in
16245         ":define")      d_tmpnam_r_proto=define
16246                 set d_tmpnam_r_proto tmpnam_r $hdrs
16247                 eval $hasproto ;;
16248         *)      ;;
16249         esac
16250         case "$d_tmpnam_r_proto" in
16251         define)
16252         case "$tmpnam_r_proto" in
16253         ''|0) try='char* tmpnam_r(char*);'
16254         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16255         esac
16256         case "$tmpnam_r_proto" in
16257         ''|0)   d_tmpnam_r=undef
16258                 tmpnam_r_proto=0
16259                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16260         * )     case "$tmpnam_r_proto" in
16261                 REENTRANT_PROTO*) ;;
16262                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16263                 esac
16264                 echo "Prototype: $try" ;;
16265         esac
16266         ;;
16267         *)      case "$usethreads" in
16268                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16269                 esac
16270                 d_tmpnam_r=undef
16271                 tmpnam_r_proto=0
16272                 ;;
16273         esac
16274         ;;
16275 *)      tmpnam_r_proto=0
16276         ;;
16277 esac
16278
16279 : see if truncate exists
16280 set truncate d_truncate
16281 eval $inlibc
16282
16283 : see if ttyname_r exists
16284 set ttyname_r d_ttyname_r
16285 eval $inlibc
16286 case "$d_ttyname_r" in
16287 "$define")
16288         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16289         case "unistd" in
16290         time)
16291                 hdrs="$hdrs $i_systime sys/time.h"
16292                 ;;
16293         esac
16294         case "$d_ttyname_r_proto:$usethreads" in
16295         ":define")      d_ttyname_r_proto=define
16296                 set d_ttyname_r_proto ttyname_r $hdrs
16297                 eval $hasproto ;;
16298         *)      ;;
16299         esac
16300         case "$d_ttyname_r_proto" in
16301         define)
16302         case "$ttyname_r_proto" in
16303         ''|0) try='int ttyname_r(int, char*, size_t);'
16304         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16305         esac
16306         case "$ttyname_r_proto" in
16307         ''|0) try='int ttyname_r(int, char*, int);'
16308         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16309         esac
16310         case "$ttyname_r_proto" in
16311         ''|0) try='char* ttyname_r(int, char*, int);'
16312         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16313         esac
16314         case "$ttyname_r_proto" in
16315         ''|0)   d_ttyname_r=undef
16316                 ttyname_r_proto=0
16317                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16318         * )     case "$ttyname_r_proto" in
16319                 REENTRANT_PROTO*) ;;
16320                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16321                 esac
16322                 echo "Prototype: $try" ;;
16323         esac
16324         ;;
16325         *)      case "$usethreads" in
16326                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16327                 esac
16328                 d_ttyname_r=undef
16329                 ttyname_r_proto=0
16330                 ;;
16331         esac
16332         ;;
16333 *)      ttyname_r_proto=0
16334         ;;
16335 esac
16336
16337 : see if tzname[] exists
16338 echo " "
16339 if set tzname val -a d_tzname; eval $csym; $val; then
16340         val="$define"
16341         echo 'tzname[] found.' >&4
16342 else
16343         val="$undef"
16344         echo 'tzname[] NOT found.' >&4
16345 fi
16346 set d_tzname
16347 eval $setvar
16348
16349 case "$osname" in
16350 next|rhapsody|darwin) multiarch="$define" ;;
16351 esac
16352 case "$multiarch" in
16353 ''|[nN]*) multiarch="$undef" ;;
16354 esac
16355
16356 : check for ordering of bytes in a long
16357 echo " "
16358 case "$usecrosscompile$multiarch" in
16359 *$define*)
16360         $cat <<EOM
16361 You seem to be either cross-compiling or doing a multiarchitecture build,
16362 skipping the byteorder check.
16363
16364 EOM
16365         byteorder='ffff'
16366         ;;
16367 *)
16368         case "$byteorder" in
16369         '')
16370                 $cat <<'EOM'
16371 In the following, larger digits indicate more significance.  A big-endian
16372 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16373 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16374 machines may have weird orders like 3412.  A Cray will report 87654321,
16375 an Alpha will report 12345678. If the test program works the default is
16376 probably right.
16377 I'm now running the test program...
16378 EOM
16379                 $cat >try.c <<'EOCP'
16380 #include <stdio.h>
16381 int main()
16382 {
16383         int i;
16384         union {
16385                 unsigned long l;
16386                 char c[sizeof(long)];
16387         } u;
16388
16389         if (sizeof(long) > 4)
16390                 u.l = (0x08070605L << 32) | 0x04030201L;
16391         else
16392                 u.l = 0x04030201L;
16393         for (i = 0; i < sizeof(long); i++)
16394                 printf("%c", u.c[i]+'0');
16395         printf("\n");
16396         exit(0);
16397 }
16398 EOCP
16399                 xxx_prompt=y
16400                 set try
16401                 if eval $compile && ./try > /dev/null; then
16402                         dflt=`$run ./try`
16403                         case "$dflt" in
16404                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16405                                 echo "(The test program ran ok.)"
16406                                 echo "byteorder=$dflt"
16407                                 xxx_prompt=n
16408                         ;;
16409                         ????|????????) echo "(The test program ran ok.)" ;;
16410                         *) echo "(The test program didn't run right for some reason.)" ;;
16411                         esac
16412                 else
16413                         dflt='4321'
16414                         cat <<'EOM'
16415 (I can't seem to compile the test program.  Guessing big-endian...)
16416 EOM
16417                 fi
16418                 case "$xxx_prompt" in
16419                 y)
16420                         rp="What is the order of bytes in a long?"
16421                         . ./myread
16422                         byteorder="$ans"
16423                         ;;
16424                 *)      byteorder=$dflt
16425                         ;;
16426                 esac
16427                 ;;
16428         esac
16429         $rm -f try.c try
16430         ;;
16431 esac
16432
16433
16434 $cat <<EOM
16435
16436 Checking to see whether you can access character data unalignedly...
16437 EOM
16438 case "$d_u32align" in
16439 '')   $cat >try.c <<EOCP
16440 #include <stdio.h>
16441 #define U32 $u32type
16442 #define BYTEORDER 0x$byteorder
16443 #define U8 $u8type
16444 #include <signal.h>
16445 #ifdef SIGBUS
16446 $signal_t bletch(s) int s; { exit(4); }
16447 #endif
16448 int main() {
16449 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
16450     U8 buf[8];
16451     U32 *up;
16452     int i;
16453
16454     if (sizeof(U32) != 4) {
16455         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
16456         exit(1);
16457     }
16458
16459     fflush(stdout);
16460
16461 #ifdef SIGBUS
16462     signal(SIGBUS, bletch);
16463 #endif
16464
16465     buf[0] = 0;
16466     buf[1] = 0;
16467     buf[2] = 0;
16468     buf[3] = 1;
16469     buf[5] = 0;
16470     buf[6] = 0;
16471     buf[7] = 0;
16472     buf[8] = 1;
16473
16474     for (i = 0; i < 4; i++) {
16475         up = (U32*)(buf + i);
16476         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
16477                (*up == 1 << (8*(3-i)))  /* little-endian */
16478               )
16479            )
16480         {
16481             printf("read failed (%x)\n", *up);
16482             exit(2);
16483         }
16484     }
16485
16486     /* write test */
16487     for (i = 0; i < 4; i++) {
16488         up = (U32*)(buf + i);
16489         *up = 0xBeef;
16490         if (*up != 0xBeef) {
16491             printf("write failed (%x)\n", *up);
16492             exit(3);
16493         }
16494     }
16495
16496     exit(0);
16497 #else
16498     printf("1\n");
16499     exit(1);
16500 #endif
16501     return 0;
16502 }
16503 EOCP
16504 set try
16505 if eval $compile_ok; then
16506         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
16507         $run ./try 2>&1 >/dev/null
16508         case "$?" in
16509         0)      cat >&4 <<EOM
16510 You can access character data pretty unalignedly.
16511 EOM
16512                 d_u32align="$undef"
16513                 ;;
16514         *)      cat >&4 <<EOM
16515 It seems that you must access character data in an aligned manner.
16516 EOM
16517                 d_u32align="$define"
16518                 ;;
16519         esac
16520 else
16521         rp='Can you access character data at unaligned addresses?'
16522         dflt='n'
16523         . ./myread
16524         case "$ans" in
16525         [yY]*)  d_u32align="$undef"  ;;
16526         *)      d_u32align="$define" ;;
16527         esac
16528 fi
16529 $rm -f core core.try.* try.core
16530 ;;
16531 esac
16532
16533 : see if ualarm exists
16534 set ualarm d_ualarm
16535 eval $inlibc
16536
16537 : see if umask exists
16538 set umask d_umask
16539 eval $inlibc
16540
16541 : see if unordered exists
16542 set unordered d_unordered
16543 eval $inlibc
16544
16545 : see if usleep exists
16546 set usleep d_usleep
16547 eval $inlibc
16548
16549 : see if prototype for usleep is available
16550 echo " "
16551 set d_usleepproto usleep $i_unistd unistd.h
16552 eval $hasproto
16553
16554 : see if ustat exists
16555 set ustat d_ustat
16556 eval $inlibc
16557
16558 : backward compatibility for d_hvfork
16559 if test X$d_hvfork != X; then
16560         d_vfork="$d_hvfork"
16561         d_hvfork=''
16562 fi
16563 : see if there is a vfork
16564 val=''
16565 set vfork val
16566 eval $inlibc
16567
16568 : Ok, but do we want to use it. vfork is reportedly unreliable in 
16569 : perl on Solaris 2.x, and probably elsewhere.
16570 case "$val" in
16571 $define)
16572         echo " "
16573         case "$usevfork" in
16574         false) dflt='n';;
16575         *) dflt='y';;
16576         esac
16577         cat <<'EOM'
16578  
16579 Perl can only use a vfork() that doesn't suffer from strict
16580 restrictions on calling functions or modifying global data in
16581 the child.  For example, glibc-2.1 contains such a vfork()
16582 that is unsuitable.  If your system provides a proper fork()
16583 call, chances are that you do NOT want perl to use vfork().
16584
16585 EOM
16586         rp="Do you still want to use vfork()?"
16587         . ./myread
16588         case "$ans" in
16589         y|Y) ;;
16590         *)
16591                 echo "Ok, we won't use vfork()."
16592                 val="$undef"
16593                 ;;
16594         esac
16595         ;;
16596 esac
16597 set d_vfork
16598 eval $setvar
16599 case "$d_vfork" in
16600 $define) usevfork='true';;
16601 *) usevfork='false';;
16602 esac
16603
16604 : see if closedir exists
16605 set closedir d_closedir
16606 eval $inlibc
16607
16608 case "$d_closedir" in
16609 "$define")
16610         echo " "
16611         echo "Checking whether closedir() returns a status..." >&4
16612         cat > try.c <<EOM
16613 #$i_dirent I_DIRENT             /**/
16614 #$i_sysdir I_SYS_DIR            /**/
16615 #$i_sysndir I_SYS_NDIR          /**/
16616 #$i_systypes I_SYS_TYPES        /**/
16617
16618 #if defined(I_SYS_TYPES)
16619 #include <sys/types.h>
16620 #endif
16621 #if defined(I_DIRENT)
16622 #include <dirent.h>
16623 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
16624 #include <sys/dir.h>
16625 #endif
16626 #else
16627 #ifdef I_SYS_NDIR
16628 #include <sys/ndir.h>
16629 #else
16630 #ifdef I_SYS_DIR
16631 #ifdef hp9000s500
16632 #include <ndir.h>       /* may be wrong in the future */
16633 #else
16634 #include <sys/dir.h>
16635 #endif
16636 #endif
16637 #endif
16638 #endif 
16639 int main() { return closedir(opendir(".")); }
16640 EOM
16641         set try
16642         if eval $compile_ok; then
16643                 if $run ./try > /dev/null 2>&1 ; then
16644                         echo "Yes, it does."
16645                         val="$undef"
16646                 else
16647                         echo "No, it doesn't."
16648                         val="$define"
16649                 fi
16650         else
16651                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16652                 val="$define"
16653         fi
16654         ;;
16655 *)
16656         val="$undef";
16657         ;;
16658 esac
16659 set d_void_closedir
16660 eval $setvar
16661 $rm -f try try.*
16662 : see if there is a wait4
16663 set wait4 d_wait4
16664 eval $inlibc
16665
16666 : see if waitpid exists
16667 set waitpid d_waitpid
16668 eval $inlibc
16669
16670 : see if wcstombs exists
16671 set wcstombs d_wcstombs
16672 eval $inlibc
16673
16674 : see if wctomb exists
16675 set wctomb d_wctomb
16676 eval $inlibc
16677
16678 : see if writev exists
16679 set writev d_writev
16680 eval $inlibc
16681
16682 : preserve RCS keywords in files with variable substitution, grrr
16683 Date='$Date'
16684 Id='$Id'
16685 Log='$Log'
16686 RCSfile='$RCSfile'
16687 Revision='$Revision'
16688
16689 : check for alignment requirements
16690 echo " "
16691 case "$usecrosscompile$multiarch" in
16692 *$define*)
16693         $cat <<EOM
16694 You seem to be either cross-compiling or doing a multiarchitecture build,
16695 skipping the memory alignment check.
16696
16697 EOM
16698         case "$alignbytes" in
16699         '') alignbytes=8 ;;
16700         esac
16701         ;;
16702 *)
16703         case "$alignbytes" in
16704         '') echo "Checking alignment constraints..." >&4
16705                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
16706                         $cat >try.c <<'EOCP'
16707 typedef long double NV;
16708 EOCP
16709                 else
16710                         $cat >try.c <<'EOCP'
16711 typedef double NV;
16712 EOCP
16713                 fi
16714                 $cat >>try.c <<'EOCP'
16715 #include <stdio.h>
16716 struct foobar {
16717         char foo;
16718         NV bar;
16719 } try_algn;
16720 int main()
16721 {
16722     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
16723     return(0);
16724 }
16725 EOCP
16726                 set try
16727                 if eval $compile_ok; then
16728                         dflt=`$run ./try`
16729                 else
16730                         dflt='8'
16731                         echo "(I can't seem to compile the test program...)"
16732                 fi
16733                 ;;
16734         *) dflt="$alignbytes"
16735                 ;;
16736         esac
16737         rp="Doubles must be aligned on a how-many-byte boundary?"
16738         . ./myread
16739         alignbytes="$ans"
16740         $rm -f try.c try
16741         ;;
16742 esac
16743
16744
16745 : set the base revision
16746 baserev=5.0
16747
16748 : how do we catenate cpp tokens here?
16749 echo " "
16750 echo "Checking to see how your cpp does stuff like catenate tokens..." >&4
16751 $cat >cpp_stuff.c <<'EOCP'
16752 #define RCAT(a,b)a/**/b
16753 #define ACAT(a,b)a ## b
16754 RCAT(Rei,ser)
16755 ACAT(Cir,cus)
16756 EOCP
16757 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
16758 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
16759         echo "Oh!  Smells like ANSI's been here." >&4
16760         echo "We can catify or stringify, separately or together!"
16761         cpp_stuff=42
16762 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
16763         echo "Ah, yes!  The good old days!" >&4
16764         echo "However, in the good old days we don't know how to stringify and"
16765         echo "catify at the same time."
16766         cpp_stuff=1
16767 else
16768         $cat >&4 <<EOM
16769 Hmm, I don't seem to be able to catenate tokens with your cpp.  You're going
16770 to have to edit the values of CAT[2-5] in config.h...
16771 EOM
16772         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
16773 fi
16774 $rm -f cpp_stuff.*
16775
16776 : see if this is a db.h system
16777 set db.h i_db
16778 eval $inhdr
16779
16780 case "$i_db" in
16781 $define)
16782         : Check db version.
16783         echo " "
16784         echo "Checking Berkeley DB version ..." >&4
16785         $cat >try.c <<EOCP
16786 #$d_const HASCONST
16787 #ifndef HASCONST
16788 #define const
16789 #endif
16790 #include <sys/types.h>
16791 #include <stdio.h>
16792 #include <db.h>
16793 int main(int argc, char *argv[])
16794 {
16795 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
16796     int Major, Minor, Patch ;
16797     unsigned long Version ;
16798     (void)db_version(&Major, &Minor, &Patch) ;
16799     if (argc == 2) {
16800         printf("%d %d %d %d %d %d\n",
16801                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
16802                Major, Minor, Patch);
16803         exit(0);
16804     }
16805     printf("You have Berkeley DB Version 2 or greater.\n");
16806
16807     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
16808                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
16809     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
16810                 Major, Minor, Patch) ;
16811
16812     /* check that db.h & libdb are compatible */
16813     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
16814         printf("db.h and libdb are incompatible.\n") ;
16815         exit(3);        
16816     }
16817
16818     printf("db.h and libdb are compatible.\n") ;
16819
16820     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
16821                 + DB_VERSION_PATCH ;
16822
16823     /* needs to be >= 2.3.4 */
16824     if (Version < 2003004) {
16825     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
16826         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
16827         exit(2);        
16828     }
16829
16830     exit(0);
16831 #else
16832 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
16833     if (argc == 2) {
16834         printf("1 0 0\n");
16835         exit(0);
16836     }
16837     printf("You have Berkeley DB Version 1.\n");
16838     exit(0);    /* DB version < 2: the coast is clear. */
16839 #else
16840     exit(1);    /* <db.h> not Berkeley DB? */
16841 #endif
16842 #endif
16843 }
16844 EOCP
16845         set try
16846         if eval $compile_ok && $run ./try; then
16847                 echo 'Looks OK.' >&4
16848                 set `$run ./try 1`
16849                 db_version_major=$1
16850                 db_version_minor=$2
16851                 db_version_patch=$3
16852         else
16853                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
16854                 i_db=$undef
16855                 case " $libs " in
16856                 *"-ldb "*)
16857                         : Remove db from list of libraries to use
16858                         echo "Removing unusable -ldb from library list" >&4
16859                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
16860                         shift
16861                         libs="$*"
16862                         echo "libs = $libs" >&4
16863                         ;;
16864                 esac
16865         fi
16866         $rm -f try.*
16867         ;;
16868 esac
16869
16870 case "$i_db" in
16871 define)
16872         : Check the return type needed for hash 
16873         echo " "
16874         echo "Checking return type needed for hash for Berkeley DB ..." >&4
16875         $cat >try.c <<EOCP
16876 #$d_const HASCONST
16877 #ifndef HASCONST
16878 #define const
16879 #endif
16880 #include <sys/types.h>
16881 #include <db.h>
16882
16883 #ifndef DB_VERSION_MAJOR
16884 u_int32_t hash_cb (ptr, size)
16885 const void *ptr;
16886 size_t size;
16887 {
16888 }
16889 HASHINFO info;
16890 int main()
16891 {
16892         info.hash = hash_cb;
16893 }
16894 #endif
16895 EOCP
16896         if $cc $ccflags -c try.c >try.out 2>&1 ; then
16897                 if $contains warning try.out >>/dev/null 2>&1 ; then
16898                         db_hashtype='int'
16899                 else
16900                         db_hashtype='u_int32_t'
16901                 fi
16902         else
16903                 : XXX Maybe we should just give up here.
16904                 db_hashtype=u_int32_t
16905                 $cat try.out >&4
16906                 echo "Help:  I can't seem to compile the db test program." >&4
16907                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
16908         fi
16909         $rm -f try.*
16910         echo "Your version of Berkeley DB uses $db_hashtype for hash."
16911         ;;
16912 *)      db_hashtype=u_int32_t
16913         ;;
16914 esac
16915 case "$i_db" in
16916 define)
16917         : Check the return type needed for prefix 
16918         echo " "
16919         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
16920         cat >try.c <<EOCP
16921 #$d_const HASCONST
16922 #ifndef HASCONST
16923 #define const
16924 #endif
16925 #include <sys/types.h>
16926 #include <db.h>
16927
16928 #ifndef DB_VERSION_MAJOR
16929 size_t prefix_cb (key1, key2)
16930 const DBT *key1;
16931 const DBT *key2;
16932 {
16933 }
16934 BTREEINFO info;
16935 int main()
16936 {
16937         info.prefix = prefix_cb;
16938 }
16939 #endif
16940 EOCP
16941         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
16942                 if $contains warning try.out >>/dev/null 2>&1 ; then
16943                         db_prefixtype='int'
16944                 else
16945                         db_prefixtype='size_t'
16946                 fi
16947         else
16948                 db_prefixtype='size_t'
16949                 : XXX Maybe we should just give up here.
16950                 $cat try.out >&4
16951                 echo "Help:  I can't seem to compile the db test program." >&4
16952                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
16953         fi
16954         $rm -f try.*
16955         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
16956         ;;
16957 *)      db_prefixtype='size_t'
16958         ;;
16959 esac
16960
16961
16962 : How can we generate normalized random numbers ?
16963 echo " "
16964 echo "Looking for a random number function..." >&4
16965 case "$randfunc" in
16966 '')
16967         if set drand48 val -f; eval $csym; $val; then
16968                 dflt="drand48"
16969                 echo "Good, found drand48()." >&4
16970         elif set random val -f; eval $csym; $val; then
16971                 dflt="random"
16972                 echo "OK, found random()." >&4
16973         else
16974                 dflt="rand"
16975                 echo "Yick, looks like I have to use rand()." >&4
16976         fi
16977         echo " "
16978         ;;
16979 *)
16980         dflt="$randfunc"
16981         ;;
16982 esac
16983 cont=true
16984
16985 case "$ccflags" in
16986 *-Dmy_rand=*|*-Dmy_srand=*)
16987         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
16988         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
16989         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
16990         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
16991         ;;
16992 esac
16993
16994 while $test "$cont"; do
16995         rp="Use which function to generate random numbers?"
16996         . ./myread
16997         if $test "$ans" = "$dflt"; then
16998                 : null
16999         else
17000                 randbits=''
17001         fi
17002         randfunc="$ans"
17003         if set $ans val -f; eval $csym; $val; then
17004                 cont=''
17005         else
17006                 dflt=y
17007                 rp="I cannot find function $ans. Use that name anyway?"
17008                 . ./myread
17009                 dflt=rand
17010                 case "$ans" in
17011                         [yY]*) cont='';;
17012                 esac
17013         fi
17014         case "$cont" in
17015         '')
17016                 case "$randfunc" in
17017                 drand48)
17018                         drand01="drand48()"
17019                         seedfunc="srand48"
17020                         randbits=48
17021                         randseedtype=long
17022                         ;;
17023                 rand|random)
17024                         case "$randbits" in
17025                         '')
17026 echo "Checking to see how many bits your $randfunc() function produces..." >&4
17027                                 $cat >try.c <<EOCP
17028 #$i_unistd I_UNISTD
17029 #$i_stdlib I_STDLIB
17030 #include <stdio.h>
17031 #ifdef I_UNISTD
17032 #  include <unistd.h>
17033 #endif
17034 #ifdef I_STDLIB
17035 #  include <stdlib.h>
17036 #endif
17037 int main()
17038 {
17039         register int i;
17040         register unsigned long tmp;
17041         register unsigned long max = 0L;
17042
17043         for (i = 1000; i; i--) {
17044                 tmp = (unsigned long) $randfunc();
17045                 if (tmp > max) max = tmp;
17046         }
17047         for (i = 0; max; i++)
17048                 max /= 2;
17049         printf("%d\n",i);
17050 }
17051 EOCP
17052                                 set try
17053                                 if eval $compile_ok; then
17054                                         dflt=`try`
17055                                 else
17056                                         dflt='?'
17057                                         echo "(I can't seem to compile the test program...)"
17058                                 fi
17059                                 ;;
17060                         *)
17061                                 dflt="$randbits"
17062                                 ;;
17063                         esac
17064                         rp="How many bits does your $randfunc() function produce?"
17065                         . ./myread
17066                         randbits="$ans"
17067                         $rm -f try.c try
17068                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17069                         seedfunc="s$randfunc"
17070                         randseedtype=unsigned
17071                         ;;
17072                 *)
17073                         dflt="31"
17074                         rp="How many bits does your $randfunc() function produce?"
17075                         . ./myread
17076                         randbits="$ans"
17077                         seedfunc="s$randfunc"
17078                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17079                         if set $seedfunc val -f; eval $csym; $val; then
17080                                 echo "(Using $seedfunc() to seed random generator)"
17081                         else
17082                                 echo "(Warning: no $seedfunc() to seed random generator)"
17083                                 seedfunc=rand
17084                         fi
17085                         randseedtype=unsigned
17086                         ;;
17087                 esac
17088                 ;;
17089         esac
17090 done
17091
17092 echo " "
17093 echo "Determining whether or not we are on an EBCDIC system..." >&4
17094 $cat >try.c <<'EOM'
17095 int main()
17096 {
17097   if ('M'==0xd4) return 0;
17098   return 1;
17099 }
17100 EOM
17101
17102 val=$undef
17103 set try
17104 if eval $compile_ok; then
17105         if $run ./try; then
17106                 echo "You seem to speak EBCDIC." >&4
17107                 val="$define"
17108         else
17109                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
17110         fi
17111 else
17112         echo "I'm unable to compile the test program." >&4
17113         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
17114 fi
17115 $rm -f try try.*
17116 set ebcdic
17117 eval $setvar
17118
17119 echo " "
17120 $cat >&4 <<EOM
17121 Checking how to flush all pending stdio output...
17122 EOM
17123 # I only know how to find the first 32 possibly open files on SunOS.
17124 # See also hints/sunos_4_1.sh and util.c  --AD
17125 case "$osname" in
17126 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
17127 esac
17128 $cat >>try.c <<EOCP
17129 #include <stdio.h>
17130 #$i_unistd I_UNISTD
17131 #ifdef I_UNISTD
17132 # include <unistd.h>
17133 #endif
17134 #$d_sysconf HAS_SYSCONF
17135 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
17136 #ifdef HAS_STDIO_STREAM_ARRAY
17137 # define STDIO_STREAM_ARRAY $stdio_stream_array
17138 #endif
17139 int main() {
17140   FILE* p;
17141   unlink("try.out");
17142   p = fopen("try.out", "w");
17143 #ifdef TRY_FPUTC
17144   fputc('x', p);
17145 #else
17146 # ifdef TRY_FPRINTF
17147   fprintf(p, "x");
17148 # endif
17149 #endif
17150 #ifdef TRY_FFLUSH_NULL
17151   fflush(NULL);
17152 #endif
17153 #ifdef TRY_FFLUSH_ALL
17154   {
17155     long open_max = -1;
17156 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
17157     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
17158 # else
17159 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
17160     open_max = sysconf(_SC_OPEN_MAX);
17161 #  else
17162 #   ifdef FOPEN_MAX
17163     open_max = FOPEN_MAX;
17164 #   else
17165 #    ifdef OPEN_MAX
17166     open_max = OPEN_MAX;
17167 #    else
17168 #     ifdef _NFILE
17169     open_max = _NFILE;
17170 #     endif
17171 #    endif
17172 #   endif
17173 #  endif
17174 # endif 
17175 # ifdef HAS_STDIO_STREAM_ARRAY
17176     if (open_max > 0) {
17177       long i;
17178       for (i = 0; i < open_max; i++)
17179             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17180                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17181                 STDIO_STREAM_ARRAY[i]._flag)
17182                 fflush(&STDIO_STREAM_ARRAY[i]);
17183     }   
17184   }
17185 # endif
17186 #endif
17187   _exit(42);
17188 }
17189 EOCP
17190 : first we have to find out how _not_ to flush
17191 $to try.c
17192 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17193     output=''
17194     set try -DTRY_FPUTC
17195     if eval $compile; then
17196             $run ./try 2>/dev/null
17197             code="$?"
17198             $from try.out
17199             if $test ! -s try.out -a "X$code" = X42; then
17200                 output=-DTRY_FPUTC
17201             fi
17202     fi
17203     case "$output" in
17204     '')
17205             set try -DTRY_FPRINTF
17206             if eval $compile; then
17207                     $run ./try 2>/dev/null
17208                     code="$?"
17209                     $from try.out
17210                     if $test ! -s try.out -a "X$code" = X42; then
17211                         output=-DTRY_FPRINTF
17212                     fi
17213             fi
17214         ;;
17215     esac
17216 fi
17217 : check for fflush NULL behaviour
17218 case "$fflushNULL" in
17219 '')     set try -DTRY_FFLUSH_NULL $output
17220         if eval $compile; then
17221                 $run ./try 2>/dev/null
17222                 code="$?"
17223                 $from try.out
17224                 if $test -s try.out -a "X$code" = X42; then
17225                         fflushNULL="`$cat try.out`"
17226                 else
17227                         if $test "X$code" != X42; then
17228                                 $cat >&4 <<EOM
17229 (If this test failed, don't worry, we'll try another method shortly.)
17230 EOM
17231                         fi
17232                 fi
17233         fi
17234         $rm -f core try.core core.try.*
17235         case "$fflushNULL" in
17236         x)      $cat >&4 <<EOM
17237 Your fflush(NULL) works okay for output streams.
17238 Let's see if it clobbers input pipes...
17239 EOM
17240 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17241 # bug that improperly flushes the input end of pipes.  So we avoid the
17242 # autoflush on fork/system/exec support for now. :-(
17243 $cat >tryp.c <<EOCP
17244 #include <stdio.h>
17245 int
17246 main(int argc, char **argv)
17247 {
17248     char buf[1024];
17249     int i;
17250     char *bp = buf;
17251     while (1) {
17252         while ((i = getc(stdin)) != -1
17253                && (*bp++ = i) != '\n'
17254                && bp < &buf[1024])
17255         /* DO NOTHING */ ;
17256         *bp = '\0';
17257         fprintf(stdout, "%s", buf);
17258         fflush(NULL);
17259         if (i == -1)
17260             return 0;
17261         bp = buf;
17262     }
17263 }
17264 EOCP
17265                 fflushNULL="$define"
17266                 set tryp
17267                 if eval $compile; then
17268                     $rm -f tryp.out
17269                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17270                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17271                        $cat >&4 <<EOM
17272 fflush(NULL) seems to behave okay with input streams.
17273 EOM
17274                         fflushNULL="$define"
17275                     else
17276                         $cat >&4 <<EOM
17277 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17278 EOM
17279                         fflushNULL="$undef"
17280                     fi
17281                 fi
17282                 $rm -f core tryp.c tryp.core core.tryp.*
17283                 ;;
17284         '')     $cat >&4 <<EOM
17285 Your fflush(NULL) isn't working (contrary to ANSI C).
17286 EOM
17287                 fflushNULL="$undef"
17288                 ;;
17289         *)      $cat >&4 <<EOM
17290 Cannot figure out whether your fflush(NULL) works or not.
17291 I'm assuming it doesn't (contrary to ANSI C).
17292 EOM
17293                 fflushNULL="$undef"
17294                 ;;
17295         esac
17296         ;;
17297 $define|true|[yY]*)
17298         fflushNULL="$define"
17299         ;;
17300 *)
17301         fflushNULL="$undef"
17302         ;;
17303 esac
17304 : check explicit looping only if NULL did not work, and if the pipe
17305 : bug does not show up on an explicit flush too
17306 case "$fflushNULL" in
17307 "$undef")
17308         $cat >tryp.c <<EOCP
17309 #include <stdio.h>
17310 int
17311 main(int argc, char **argv)
17312 {
17313     char buf[1024];
17314     int i;
17315     char *bp = buf;
17316     while (1) {
17317         while ((i = getc(stdin)) != -1
17318                && (*bp++ = i) != '\n'
17319                && bp < &buf[1024])
17320         /* DO NOTHING */ ;
17321         *bp = '\0';
17322         fprintf(stdout, "%s", buf);
17323         fflush(stdin);
17324         if (i == -1)
17325             return 0;
17326         bp = buf;
17327     }
17328 }
17329 EOCP
17330         set tryp
17331         if eval $compile; then
17332             $rm -f tryp.out
17333             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17334             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17335                $cat >&4 <<EOM
17336 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17337 EOM
17338                 : now check for fflushall behaviour
17339                 case "$fflushall" in
17340                 '')     set try -DTRY_FFLUSH_ALL $output
17341                         if eval $compile; then
17342                                 $cat >&4 <<EOM
17343 (Now testing the other method--but note that this also may fail.)
17344 EOM
17345                                 $run ./try 2>/dev/null
17346                                 code=$?
17347                                 $from try.out
17348                                 if $test -s try.out -a "X$code" = X42; then
17349                                         fflushall="`$cat try.out`"
17350                                 fi
17351                         fi
17352                         $rm -f core try.core core.try.*
17353                         case "$fflushall" in
17354                         x)      $cat >&4 <<EOM
17355 Whew. Flushing explicitly all the stdio streams works.
17356 EOM
17357                                 fflushall="$define"
17358                                 ;;
17359                         '')     $cat >&4 <<EOM
17360 Sigh. Flushing explicitly all the stdio streams doesn't work.
17361 EOM
17362                                 fflushall="$undef"
17363                                 ;;
17364                         *)      $cat >&4 <<EOM
17365 Cannot figure out whether flushing stdio streams explicitly works or not.
17366 I'm assuming it doesn't.
17367 EOM
17368                                 fflushall="$undef"
17369                                 ;;
17370                         esac
17371                         ;;
17372                 "$define"|true|[yY]*)
17373                         fflushall="$define"
17374                         ;;
17375                 *)
17376                         fflushall="$undef"
17377                         ;;
17378                 esac
17379             else
17380                 $cat >&4 <<EOM
17381 All is futile.  Even fflush(stdin) clobbers input pipes!
17382 EOM
17383                 fflushall="$undef"
17384             fi
17385         else
17386             fflushall="$undef"
17387         fi
17388         $rm -f core tryp.c tryp.core core.tryp.*
17389         ;;
17390 *)      fflushall="$undef"
17391         ;;
17392 esac
17393
17394 case "$fflushNULL$fflushall" in
17395 undefundef)
17396         $cat <<EOM
17397 OK, I give up.  I cannot figure out how to flush pending stdio output.
17398 We won't be flushing handles at all before fork/exec/popen.
17399 EOM
17400         ;;
17401 esac
17402 $rm -f try.* try$exe_ext
17403
17404 : Store the full pathname to the ar program for use in the C program
17405 : Respect a hint or command line value for full_ar.
17406 case "$full_ar" in
17407 '') full_ar=$ar ;;
17408 esac
17409
17410 : Store the full pathname to the sed program for use in the C program
17411 full_sed=$sed
17412
17413 : see what type gids are declared as in the kernel
17414 echo " "
17415 echo "Looking for the type for group ids returned by getgid()."
17416 set gid_t gidtype xxx stdio.h sys/types.h
17417 eval $typedef
17418 case "$gidtype" in
17419 xxx)
17420         xxx=`./findhdr sys/user.h`
17421         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17422         case $1 in
17423         unsigned) dflt="$1 $2" ;;
17424         *) dflt="$1" ;;
17425         esac
17426         ;;
17427 *) dflt="$gidtype";;
17428 esac
17429 case "$gidtype" in
17430 gid_t) echo "gid_t found." ;;
17431 *)      rp="What is the type for group ids returned by getgid()?"
17432         . ./myread
17433         gidtype="$ans"
17434         ;;
17435 esac
17436
17437 echo " "
17438 case "$gidtype" in
17439 *_t) zzz="$gidtype"     ;;
17440 *)   zzz="gid"          ;;
17441 esac
17442 echo "Checking the size of $zzz..." >&4 
17443 cat > try.c <<EOCP
17444 #include <sys/types.h>
17445 #include <stdio.h>
17446 int main() {
17447     printf("%d\n", (int)sizeof($gidtype));
17448     exit(0);
17449 }
17450 EOCP
17451 set try
17452 if eval $compile_ok; then
17453         yyy=`$run ./try`
17454         case "$yyy" in
17455         '')     gidsize=4
17456                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
17457                 ;;
17458         *)      gidsize=$yyy
17459                 echo "Your $zzz is $gidsize bytes long."
17460                 ;;
17461         esac
17462 else
17463         gidsize=4
17464         echo "(I can't compile the test program--guessing $gidsize.)" >&4
17465 fi
17466
17467
17468 echo " "
17469 case "$gidtype" in
17470 *_t) zzz="$gidtype"     ;;
17471 *)   zzz="gid"          ;;
17472 esac
17473 echo "Checking the sign of $zzz..." >&4 
17474 cat > try.c <<EOCP
17475 #include <sys/types.h>
17476 #include <stdio.h>
17477 int main() {
17478         $gidtype foo = -1;
17479         if (foo < 0)
17480                 printf("-1\n");
17481         else
17482                 printf("1\n");
17483 }
17484 EOCP
17485 set try
17486 if eval $compile; then
17487         yyy=`$run ./try`
17488         case "$yyy" in
17489         '')     gidsign=1
17490                 echo "(I can't execute the test program--guessing unsigned.)" >&4
17491                 ;;
17492         *)      gidsign=$yyy
17493                 case "$gidsign" in
17494                  1) echo "Your $zzz is unsigned." ;;
17495                 -1) echo "Your $zzz is signed."   ;;
17496                 esac
17497                 ;;
17498         esac
17499 else
17500         gidsign=1
17501         echo "(I can't compile the test program--guessing unsigned.)" >&4
17502 fi
17503
17504
17505 echo " "
17506
17507 if $test X"$quadtype" != X; then
17508
17509 echo "Checking how to print 64-bit integers..." >&4
17510
17511 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
17512         $cat >try.c <<'EOCP'
17513 #include <sys/types.h>
17514 #include <stdio.h>
17515 int main() {
17516   int q = 12345678901;
17517   printf("%ld\n", q);
17518 }
17519 EOCP
17520         set try
17521         if eval $compile; then
17522                 yyy=`$run ./try`
17523                 case "$yyy" in
17524                 12345678901)
17525                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
17526                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
17527                         echo "We will use %d."
17528                         ;;
17529                 esac
17530         fi
17531 fi
17532
17533 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
17534         $cat >try.c <<'EOCP'
17535 #include <sys/types.h>
17536 #include <stdio.h>
17537 int main() {
17538   long q = 12345678901;
17539   printf("%ld\n", q);
17540 }
17541 EOCP
17542         set try
17543         if eval $compile; then
17544                 yyy=`$run ./try`
17545                 case "$yyy" in
17546                 12345678901)
17547                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
17548                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
17549                         echo "We will use %ld."
17550                         ;;
17551                 esac
17552         fi
17553 fi
17554
17555 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
17556         $cat >try.c <<'EOCP'
17557 #include <sys/types.h>
17558 #include <inttypes.h>
17559 #include <stdio.h>
17560 int main() {
17561   int64_t q = 12345678901;
17562   printf("%" PRId64 "\n", q);
17563 }
17564 EOCP
17565         set try
17566         if eval $compile; then
17567                 yyy=`$run ./try`
17568                 case "$yyy" in
17569                 12345678901)
17570                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
17571                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
17572                         echo "We will use the C9X style."
17573                         ;;
17574                 esac
17575         fi
17576 fi
17577
17578 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
17579         $cat >try.c <<EOCP
17580 #include <sys/types.h>
17581 #include <stdio.h>
17582 int main() {
17583   $quadtype q = 12345678901;
17584   printf("%Ld\n", q);
17585 }
17586 EOCP
17587         set try
17588         if eval $compile; then
17589                 yyy=`$run ./try`
17590                 case "$yyy" in
17591                 12345678901)
17592                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
17593                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
17594                         echo "We will use %Ld."
17595                         ;;
17596                 esac
17597         fi
17598 fi
17599
17600 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
17601         $cat >try.c <<'EOCP'
17602 #include <sys/types.h>
17603 #include <stdio.h>
17604 int main() {
17605   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
17606   printf("%lld\n", q);
17607 }
17608 EOCP
17609         set try
17610         if eval $compile; then
17611                 yyy=`$run ./try`
17612                 case "$yyy" in
17613                 12345678901)
17614                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
17615                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
17616                         echo "We will use the %lld style."
17617                         ;;
17618                 esac
17619         fi
17620 fi
17621
17622 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
17623         $cat >try.c <<EOCP
17624 #include <sys/types.h>
17625 #include <stdio.h>
17626 int main() {
17627   $quadtype q = 12345678901;
17628   printf("%qd\n", q);
17629 }
17630 EOCP
17631         set try
17632         if eval $compile; then
17633                 yyy=`$run ./try`
17634                 case "$yyy" in
17635                 12345678901)
17636                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
17637                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
17638                         echo "We will use %qd."
17639                         ;;
17640                 esac
17641         fi
17642 fi
17643
17644 if $test X"$sPRId64" = X; then
17645         echo "Cannot figure out how to print 64-bit integers." >&4
17646 fi
17647
17648 $rm -f try try.*
17649
17650 fi
17651
17652 case "$sPRId64" in
17653 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
17654         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
17655         ;;
17656 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
17657         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
17658         ;;
17659 esac
17660
17661
17662 echo " "
17663 $echo "Checking the format strings to be used for Perl's internal types..." >&4
17664
17665 if $test X"$ivsize" = X8; then
17666         ivdformat="$sPRId64"
17667         uvuformat="$sPRIu64"
17668         uvoformat="$sPRIo64"
17669         uvxformat="$sPRIx64"
17670         uvXUformat="$sPRIXU64"
17671 else
17672         if $test X"$ivsize" = X"$longsize"; then
17673                 ivdformat='"ld"'
17674                 uvuformat='"lu"'
17675                 uvoformat='"lo"'
17676                 uvxformat='"lx"'
17677                 uvXUformat='"lX"'
17678         else
17679                 if $test X"$ivsize" = X"$intsize"; then
17680                         ivdformat='"d"'
17681                         uvuformat='"u"'
17682                         uvoformat='"o"'
17683                         uvxformat='"x"'
17684                         uvXUformat='"X"'
17685                 else
17686                         : far out
17687                         if $test X"$ivsize" = X"$shortsize"; then
17688                                 ivdformat='"hd"'
17689                                 uvuformat='"hu"'
17690                                 uvoformat='"ho"'
17691                                 uvxformat='"hx"'
17692                                 uvXUformat='"hX"'
17693                         fi
17694                 fi
17695         fi
17696 fi
17697
17698 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
17699         nveformat="$sPRIeldbl"
17700         nvfformat="$sPRIfldbl"
17701         nvgformat="$sPRIgldbl"
17702         nvEUformat="$sPRIEUldbl"
17703         nvFUformat="$sPRIFUldbl"
17704         nvGUformat="$sPRIGUldbl"
17705 else
17706         nveformat='"e"'
17707         nvfformat='"f"'
17708         nvgformat='"g"'
17709         nvEUformat='"E"'
17710         nvFUformat='"F"'
17711         nvGUformat='"G"'
17712 fi
17713
17714 case "$ivdformat" in
17715 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
17716     exit 1
17717     ;;
17718 esac
17719
17720
17721 echo " "
17722 $echo "Checking the format string to be used for gids..." >&4
17723
17724 case "$gidsign" in
17725 -1)     if $test X"$gidsize" = X"$ivsize"; then
17726                 gidformat="$ivdformat"
17727         else
17728                 if $test X"$gidsize" = X"$longsize"; then
17729                         gidformat='"ld"'
17730                 else
17731                         if $test X"$gidsize" = X"$intsize"; then
17732                                 gidformat='"d"'
17733                         else
17734                                 if $test X"$gidsize" = X"$shortsize"; then
17735                                         gidformat='"hd"'
17736                                 fi
17737                         fi
17738                 fi
17739         fi
17740         ;;
17741 *)      if $test X"$gidsize" = X"$uvsize"; then
17742                 gidformat="$uvuformat"
17743         else
17744                 if $test X"$gidsize" = X"$longsize"; then
17745                         gidformat='"lu"'
17746                 else
17747                         if $test X"$gidsize" = X"$intsize"; then
17748                                 gidformat='"u"'
17749                         else
17750                                 if $test X"$gidsize" = X"$shortsize"; then
17751                                         gidformat='"hu"'
17752                                 fi
17753                         fi
17754                 fi
17755         fi
17756         ;;
17757 esac
17758
17759 : see if getgroups exists
17760 set getgroups d_getgrps
17761 eval $inlibc
17762
17763 : see if setgroups exists
17764 set setgroups d_setgrps
17765 eval $inlibc
17766
17767
17768 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
17769 echo " "
17770 case "$d_getgrps$d_setgrps" in
17771 *define*)
17772         case "$groupstype" in
17773         '') dflt="$gidtype" ;;
17774         *)  dflt="$groupstype" ;;
17775         esac
17776         $cat <<EOM
17777 What type of pointer is the second argument to getgroups() and setgroups()?
17778 Usually this is the same as group ids, $gidtype, but not always.
17779
17780 EOM
17781         rp='What type pointer is the second argument to getgroups() and setgroups()?'
17782         . ./myread
17783         groupstype="$ans"
17784         ;;
17785 *)  groupstype="$gidtype";;
17786 esac
17787
17788 echo " "
17789 echo "Checking if your $make program sets \$(MAKE)..." >&4
17790 case "$make_set_make" in
17791 '')
17792         $sed 's/^X //' > testmake.mak << 'EOF'
17793 Xall:
17794 X       @echo 'maketemp="$(MAKE)"'
17795 EOF
17796         case "`$make -f testmake.mak 2>/dev/null`" in
17797         *maketemp=*) make_set_make='#' ;;
17798         *)      make_set_make="MAKE=$make" ;;
17799         esac
17800         $rm -f testmake.mak
17801         ;;
17802 esac
17803 case "$make_set_make" in
17804 '#') echo "Yup, it does.";;
17805 *) echo "Nope, it doesn't.";;
17806 esac
17807
17808 : see what type is used for mode_t
17809 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
17810 set mode_t modetype int stdio.h sys/types.h
17811 eval $typedef_ask
17812
17813 : see if stdarg is available
17814 echo " "
17815 if $test `./findhdr stdarg.h`; then
17816         echo "<stdarg.h> found." >&4
17817         valstd="$define"
17818 else
17819         echo "<stdarg.h> NOT found." >&4
17820         valstd="$undef"
17821 fi
17822
17823 : see if varags is available
17824 echo " "
17825 if $test `./findhdr varargs.h`; then
17826         echo "<varargs.h> found." >&4
17827 else
17828         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
17829 fi
17830
17831 : set up the varargs testing programs
17832 $cat > varargs.c <<EOP
17833 #ifdef I_STDARG
17834 #include <stdarg.h>
17835 #endif
17836 #ifdef I_VARARGS
17837 #include <varargs.h>
17838 #endif
17839
17840 #ifdef I_STDARG
17841 int f(char *p, ...)
17842 #else
17843 int f(va_alist)
17844 va_dcl
17845 #endif
17846 {
17847         va_list ap;
17848 #ifndef I_STDARG
17849         char *p;
17850 #endif
17851 #ifdef I_STDARG
17852         va_start(ap,p);
17853 #else
17854         va_start(ap);
17855         p = va_arg(ap, char *);
17856 #endif
17857         va_end(ap);
17858 }
17859 EOP
17860 $cat > varargs <<EOP
17861 $startsh
17862 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
17863         echo "true"
17864 else
17865         echo "false"
17866 fi
17867 $rm -f varargs$_o
17868 EOP
17869 chmod +x varargs
17870
17871 : now check which varargs header should be included
17872 echo " "
17873 i_varhdr=''
17874 case "$valstd" in
17875 "$define")
17876         if `./varargs I_STDARG`; then
17877                 val='stdarg.h'
17878         elif `./varargs I_VARARGS`; then
17879                 val='varargs.h'
17880         fi
17881         ;;
17882 *)
17883         if `./varargs I_VARARGS`; then
17884                 val='varargs.h'
17885         fi
17886         ;;
17887 esac
17888 case "$val" in
17889 '')
17890 echo "I could not find the definition for va_dcl... You have problems..." >&4
17891         val="$undef"; set i_stdarg; eval $setvar
17892         val="$undef"; set i_varargs; eval $setvar
17893         ;;
17894 *) 
17895         set i_varhdr
17896         eval $setvar
17897         case "$i_varhdr" in
17898         stdarg.h)
17899                 val="$define"; set i_stdarg; eval $setvar
17900                 val="$undef"; set i_varargs; eval $setvar
17901                 ;;
17902         varargs.h)
17903                 val="$undef"; set i_stdarg; eval $setvar
17904                 val="$define"; set i_varargs; eval $setvar
17905                 ;;
17906         esac
17907         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
17908 esac
17909 $rm -f varargs*
17910
17911 : see if we need va_copy
17912 echo " "
17913 case "$i_stdarg" in
17914 "$define")
17915         $cat >try.c <<EOCP
17916 #include <stdarg.h>
17917 #include <stdio.h>
17918 #$i_stdlib I_STDLIB
17919 #ifdef I_STDLIB
17920 #include <stdlib.h>
17921 #endif
17922 #include <signal.h>
17923
17924 int
17925 ivfprintf(FILE *f, const char *fmt, va_list *valp)
17926 {
17927   return vfprintf(f, fmt, *valp);
17928 }
17929  
17930 int    
17931 myvfprintf(FILE *f, const  char *fmt, va_list val)
17932 {
17933   return ivfprintf(f, fmt, &val);
17934 }
17935       
17936 int
17937 myprintf(char *fmt, ...) 
17938 {
17939   va_list val;
17940   va_start(val, fmt);
17941   return myvfprintf(stdout, fmt, val); 
17942 }         
17943
17944 int
17945 main(int ac, char **av)
17946 {
17947   signal(SIGSEGV, exit);
17948
17949   myprintf("%s%cs all right, then\n", "that", '\'');                            
17950   exit(0);      
17951 }
17952 EOCP
17953         set try
17954         if eval $compile && $run ./try 2>&1 >/dev/null; then
17955                 case "`$run ./try`" in
17956                 "that's all right, then")
17957                         okay=yes
17958                         ;;
17959                 esac
17960         fi
17961         case "$okay" in
17962         yes)    echo "It seems that you don't need va_copy()." >&4
17963                 need_va_copy="$undef"
17964                 ;;
17965         *)      echo "It seems that va_copy() or similar will be needed." >&4
17966                 need_va_copy="$define"
17967                 ;;
17968         esac
17969         $rm -f try.* core core.* *.core *.core.*
17970         ;;
17971 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
17972         ;;
17973 esac
17974
17975 : see what type is used for size_t
17976 rp="What is the type used for the length parameter for string functions?"
17977 set size_t sizetype 'unsigned int' stdio.h sys/types.h
17978 eval $typedef_ask
17979
17980 : check for type of arguments to gethostbyaddr. 
17981 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
17982         case "$d_gethbyaddr" in
17983         $define)
17984                 $cat <<EOM
17985
17986 Checking to see what type of arguments are accepted by gethostbyaddr().
17987 EOM
17988                 hdrs="$define sys/types.h
17989                         $d_socket sys/socket.h 
17990                         $i_niin netinet/in.h 
17991                         $i_netdb netdb.h
17992                         $i_unistd unistd.h"
17993                 : The first arg can 'char *' or 'void *'
17994                 : The second arg is some of integral type
17995                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
17996                         for yyy in size_t long int; do
17997                                 case "$netdb_host_type" in
17998                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
17999                                         if ./protochk "$try" $hdrs; then
18000                                                 echo "Your system accepts $xxx for the first arg."
18001                                                 echo "...and $yyy for the second arg."
18002                                                 netdb_host_type="$xxx"
18003                                                 netdb_hlen_type="$yyy"
18004                                         fi
18005                                         ;;
18006                                 esac
18007                         done
18008                 done
18009                 : In case none of those worked, prompt the user.
18010                 case "$netdb_host_type" in
18011                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
18012                         dflt='char *'
18013                         . ./myread
18014                         netdb_host_type=$ans
18015                         rp='What is the type for the 2nd argument to gethostbyaddr?'
18016                         dflt="$sizetype"
18017                         . ./myread
18018                         netdb_hlen_type=$ans
18019                         ;;
18020                 esac
18021                 ;;
18022         *)      : no gethostbyaddr, so pick harmless defaults
18023                 netdb_host_type='char *'
18024                 netdb_hlen_type="$sizetype"
18025                 ;;
18026         esac
18027         # Remove the "const" if needed. -- but then we'll have a 
18028         # prototype clash!
18029         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
18030 fi
18031
18032 : check for type of argument to gethostbyname. 
18033 if test "X$netdb_name_type" = X ; then
18034         case "$d_gethbyname" in
18035         $define)
18036                 $cat <<EOM
18037
18038 Checking to see what type of argument is accepted by gethostbyname().
18039 EOM
18040                 hdrs="$define sys/types.h
18041                         $d_socket sys/socket.h 
18042                         $i_niin netinet/in.h 
18043                         $i_netdb netdb.h
18044                         $i_unistd unistd.h"
18045                 for xxx in "const char *" "char *"; do
18046                         case "$netdb_name_type" in
18047                         '')     try="extern struct hostent *gethostbyname($xxx);"
18048                                 if ./protochk "$try" $hdrs; then
18049                                         echo "Your system accepts $xxx."
18050                                         netdb_name_type="$xxx"
18051                                 fi
18052                                 ;;
18053                         esac
18054                 done
18055                 : In case none of those worked, prompt the user.
18056                 case "$netdb_name_type" in
18057                 '')     rp='What is the type for the 1st argument to gethostbyname?'
18058                         dflt='char *'
18059                         . ./myread
18060                         netdb_name_type=$ans
18061                         ;;
18062                 esac
18063                 ;;
18064         *)      : no gethostbyname, so pick harmless default
18065                 netdb_name_type='char *'
18066                 ;;
18067         esac
18068 fi
18069
18070 : check for type of 1st argument to getnetbyaddr. 
18071 if test "X$netdb_net_type" = X ; then
18072         case "$d_getnbyaddr" in
18073         $define)
18074                 $cat <<EOM
18075
18076 Checking to see what type of 1st argument is accepted by getnetbyaddr().
18077 EOM
18078                 hdrs="$define sys/types.h
18079                         $d_socket sys/socket.h 
18080                         $i_niin netinet/in.h 
18081                         $i_netdb netdb.h
18082                         $i_unistd unistd.h"
18083                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
18084                         case "$netdb_net_type" in
18085                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
18086                                 if ./protochk "$try" $hdrs; then
18087                                         echo "Your system accepts $xxx."
18088                                         netdb_net_type="$xxx"
18089                                 fi
18090                                 ;;
18091                         esac
18092                 done
18093                 : In case none of those worked, prompt the user.
18094                 case "$netdb_net_type" in
18095                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
18096                         dflt='long'
18097                         . ./myread
18098                         netdb_net_type=$ans
18099                         ;;
18100                 esac
18101                 ;;
18102         *)      : no getnetbyaddr, so pick harmless default
18103                 netdb_net_type='long'
18104                 ;;
18105         esac
18106 fi
18107 : locate the preferred pager for this system
18108 case "$pager" in
18109 '')
18110         dflt=''
18111         case "$pg" in
18112         /*) dflt=$pg;;
18113         [a-zA-Z]:/*) dflt=$pg;;
18114         esac
18115         case "$more" in
18116         /*) dflt=$more;;
18117         [a-zA-Z]:/*) dflt=$more;;
18118         esac
18119         case "$less" in
18120         /*) dflt=$less;;
18121         [a-zA-Z]:/*) dflt=$less;;
18122         esac
18123         case "$dflt" in
18124         '') dflt=/usr/ucb/more;;
18125         esac
18126         ;;
18127 *) dflt="$pager";;
18128 esac
18129 echo " "
18130 fn=f/
18131 rp='What pager is used on your system?'
18132 . ./getfile
18133 pager="$ans"
18134
18135 : see what type pids are declared as in the kernel
18136 rp="What is the type of process ids on this system?"
18137 set pid_t pidtype int stdio.h sys/types.h
18138 eval $typedef_ask
18139
18140 : Find earliest binary compatible site_perl subdirectory perl can use.
18141 case "$bincompat5005" in
18142 "$define") xs_apiversion='5.005' ;;
18143 *) xs_apiversion=$version ;;   # The current site_perl version.
18144 esac
18145 : Find earliest pure perl site_perl subdirectory perl can use.
18146 : The versioned directories started at 5.005.
18147 pm_apiversion='5.005'
18148
18149 : see if ar generates random libraries by itself
18150 echo " "
18151 echo "Checking how to generate random libraries on your machine..." >&4
18152 echo 'int bar1() { return bar2(); }' > bar1.c
18153 echo 'int bar2() { return 2; }' > bar2.c
18154 $cat > foo.c <<'EOP'
18155 int main() { printf("%d\n", bar1()); exit(0); }
18156 EOP
18157 $cc $ccflags -c bar1.c >/dev/null 2>&1
18158 $cc $ccflags -c bar2.c >/dev/null 2>&1
18159 $cc $ccflags -c foo.c >/dev/null 2>&1
18160 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
18161 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18162         $run ./foobar >/dev/null 2>&1; then
18163         echo "$ar appears to generate random libraries itself."
18164         orderlib=false
18165         ranlib=":"
18166 elif $ar ts bar$_a >/dev/null 2>&1 &&
18167         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18168         $run ./foobar >/dev/null 2>&1; then
18169                 echo "a table of contents needs to be added with '$ar ts'."
18170                 orderlib=false
18171                 ranlib="$ar ts"
18172 else
18173         case "$ranlib" in
18174         :) ranlib='';;
18175         '')
18176                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18177                 $test -f $ranlib || ranlib=''
18178                 ;;
18179         esac
18180         if $test -n "$ranlib"; then
18181                 echo "your system has '$ranlib'; we'll use that."
18182                 orderlib=false
18183         else
18184                 echo "your system doesn't seem to support random libraries"
18185                 echo "so we'll use lorder and tsort to order the libraries."
18186                 orderlib=true
18187                 ranlib=":"
18188         fi
18189 fi
18190 $rm -f foo* bar* 
18191
18192 : check for type of arguments to select. 
18193 case "$selecttype" in
18194 '') case "$d_select" in
18195         $define)
18196                 echo " "
18197                 $cat <<EOM
18198 Checking to see what type of arguments are accepted by select().
18199 EOM
18200                 hdrs="$define sys/types.h
18201                         $i_systime sys/time.h 
18202                         $i_sysselct sys/select.h
18203                         $d_socket sys/socket.h"
18204                 : The first arg can be int, unsigned, or size_t
18205                 : The last arg may or may not be 'const'
18206                 val=''
18207                 : void pointer has been seen but using that
18208                 : breaks the selectminbits test
18209                 for xxx in 'fd_set *' 'int *'; do
18210                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18211                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18212                                         case "$val" in
18213                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18214                                                 if ./protochk "$try" $hdrs; then
18215                                                         echo "Your system accepts $xxx."
18216                                                         val="$xxx"
18217                                                 fi
18218                                                 ;;
18219                                         esac
18220                                 done
18221                         done
18222                 done
18223                 case "$val" in
18224                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18225                         case "$d_fd_set" in
18226                                 $define) dflt="fd_set *" ;;
18227                                 *)              dflt="int *" ;;
18228                         esac
18229                         . ./myread
18230                         val=$ans
18231                         ;;
18232                 esac
18233                 selecttype="$val"
18234                 ;;
18235         *)      : no select, so pick a harmless default
18236                 selecttype='int *'
18237                 ;;
18238         esac
18239         ;;
18240 esac
18241
18242 : check for the select 'width'
18243 case "$selectminbits" in
18244 '') case "$d_select" in
18245         $define)
18246                 $cat <<EOM
18247
18248 Checking to see on how many bits at a time your select() operates...
18249 EOM
18250                 $cat >try.c <<EOCP
18251 #include <sys/types.h>
18252 #$i_time I_TIME
18253 #$i_systime I_SYS_TIME
18254 #$i_systimek I_SYS_TIME_KERNEL
18255 #ifdef I_TIME
18256 #   include <time.h>
18257 #endif
18258 #ifdef I_SYS_TIME
18259 #   ifdef I_SYS_TIME_KERNEL
18260 #       define KERNEL
18261 #   endif
18262 #   include <sys/time.h>
18263 #   ifdef I_SYS_TIME_KERNEL
18264 #       undef KERNEL
18265 #   endif
18266 #endif
18267 #$i_sysselct I_SYS_SELECT
18268 #ifdef I_SYS_SELECT
18269 #include <sys/select.h>
18270 #endif
18271 #$d_socket HAS_SOCKET
18272 #ifdef HAS_SOCKET
18273 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18274 #endif
18275 #include <stdio.h>
18276 $selecttype b;
18277 #define S sizeof(*(b))
18278 #define MINBITS 64
18279 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18280 #define NBITS  (NBYTES * 8)
18281 int main() {
18282     char s[NBYTES];
18283     struct timeval t;
18284     int i;
18285     FILE* fp;
18286     int fd;
18287
18288     fclose(stdin);
18289     fp = fopen("try.c", "r");
18290     if (fp == 0)
18291       exit(1);
18292     fd = fileno(fp);
18293     if (fd < 0)
18294       exit(2);
18295     b = ($selecttype)s;
18296     for (i = 0; i < NBITS; i++)
18297         FD_SET(i, b);
18298     t.tv_sec  = 0;
18299     t.tv_usec = 0;
18300     select(fd + 1, b, 0, 0, &t);
18301     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18302     printf("%d\n", i + 1);
18303     return 0;
18304 }
18305 EOCP
18306                 set try
18307                 if eval $compile_ok; then
18308                         selectminbits=`$run ./try`
18309                         case "$selectminbits" in
18310                         '')     cat >&4 <<EOM
18311 Cannot figure out on how many bits at a time your select() operates.
18312 I'll play safe and guess it is 32 bits.
18313 EOM
18314                                 selectminbits=32
18315                                 bits="32 bits"
18316                                 ;;
18317                         1)      bits="1 bit" ;;
18318                         *)      bits="$selectminbits bits" ;;
18319                         esac
18320                         echo "Your select() operates on $bits at a time." >&4
18321                 else
18322                         rp='What is the minimum number of bits your select() operates on?'
18323                         case "$byteorder" in
18324                         1234|12345678)  dflt=32 ;;
18325                         *)              dflt=1  ;;
18326                         esac
18327                         . ./myread
18328                         val=$ans
18329                         selectminbits="$val"
18330                 fi
18331                 $rm -f try.* try
18332                 ;;
18333         *)      : no select, so pick a harmless default
18334                 selectminbits='32'
18335                 ;;
18336         esac
18337         ;;
18338 esac
18339
18340 : Trace out the files included by signal.h, then look for SIGxxx names.
18341 : Remove SIGARRAYSIZE used by HPUX.
18342 : Remove SIGSTKSIZE used by Linux.
18343 : Remove SIGSTKSZ used by Posix.
18344 : Remove SIGTYP void lines used by OS2.
18345 : Some cpps, like os390, dont give the file name anywhere
18346 if [ "X$fieldn" = X ]; then
18347         : Just make some guesses.  We check them later.
18348         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18349 else
18350         xxx=`echo '#include <signal.h>' |
18351         $cppstdin $cppminus $cppflags 2>/dev/null |
18352         $grep '^[       ]*#.*include' | 
18353         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18354 fi
18355 : Check this list of files to be sure we have parsed the cpp output ok.
18356 : This will also avoid potentially non-existent files, such 
18357 : as ../foo/bar.h
18358 xxxfiles=''
18359 for xx in $xxx /dev/null ; do
18360         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18361 done
18362 : If we have found no files, at least try signal.h
18363 case "$xxxfiles" in
18364 '')     xxxfiles=`./findhdr signal.h` ;;
18365 esac
18366 xxx=`awk '
18367 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18368         print substr($2, 4, 20)
18369 }
18370 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18371         print substr($3, 4, 20)
18372 }' $xxxfiles`
18373 : Append some common names just in case the awk scan failed.
18374 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18375 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18376 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18377 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18378 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18379
18380 : generate a few handy files for later
18381 $cat > signal.c <<'EOCP'
18382 #include <sys/types.h>
18383 #include <signal.h>
18384 #include <stdio.h>
18385 int main() {
18386
18387 /* Strange style to avoid deeply-nested #if/#else/#endif */
18388 #ifndef NSIG
18389 #  ifdef _NSIG
18390 #    define NSIG (_NSIG)
18391 #  endif
18392 #endif
18393
18394 #ifndef NSIG
18395 #  ifdef SIGMAX
18396 #    define NSIG (SIGMAX+1)
18397 #  endif
18398 #endif
18399
18400 #ifndef NSIG
18401 #  ifdef SIG_MAX
18402 #    define NSIG (SIG_MAX+1)
18403 #  endif
18404 #endif
18405
18406 #ifndef NSIG
18407 #  ifdef MAXSIG
18408 #    define NSIG (MAXSIG+1)
18409 #  endif
18410 #endif
18411
18412 #ifndef NSIG
18413 #  ifdef MAX_SIG
18414 #    define NSIG (MAX_SIG+1)
18415 #  endif
18416 #endif
18417
18418 #ifndef NSIG
18419 #  ifdef SIGARRAYSIZE
18420 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18421 #  endif
18422 #endif
18423
18424 #ifndef NSIG
18425 #  ifdef _sys_nsig
18426 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
18427 #  endif
18428 #endif
18429
18430 /* Default to some arbitrary number that's big enough to get most
18431    of the common signals.
18432 */
18433 #ifndef NSIG
18434 #    define NSIG 50
18435 #endif
18436
18437 printf("NSIG %d\n", NSIG);
18438
18439 #ifndef JUST_NSIG
18440
18441 EOCP
18442
18443 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
18444 {
18445         printf "#ifdef SIG"; printf $1; printf "\n"
18446         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
18447         printf $1; printf ");\n"
18448         printf "#endif\n"
18449 }
18450 END {
18451         printf "#endif /* JUST_NSIG */\n";
18452         printf "exit(0);\n}\n";
18453 }
18454 ' >>signal.c
18455 $cat >signal.awk <<'EOP'
18456 BEGIN { ndups = 0 }
18457 $1 ~ /^NSIG$/ { nsig = $2 }
18458 ($1 !~ /^NSIG$/) && (NF == 2) {
18459     if ($2 > maxsig) { maxsig = $2 }
18460     if (sig_name[$2]) {
18461         dup_name[ndups] = $1
18462         dup_num[ndups] = $2
18463         ndups++ 
18464     }
18465     else {
18466         sig_name[$2] = $1
18467         sig_num[$2] = $2
18468     }
18469 }
18470 END { 
18471     if (nsig == 0) {
18472         nsig = maxsig + 1
18473     }
18474     printf("NSIG %d\n", nsig);
18475     for (n = 1; n < nsig; n++) {
18476         if (sig_name[n]) {
18477             printf("%s %d\n", sig_name[n], sig_num[n])
18478         }
18479         else {
18480             printf("NUM%d %d\n", n, n) 
18481         }
18482     }
18483     for (n = 0; n < ndups; n++) {
18484         printf("%s %d\n", dup_name[n], dup_num[n])
18485     }
18486 }
18487 EOP
18488 $cat >signal_cmd <<EOS
18489 $startsh
18490 if $test -s signal.lst; then
18491     echo "Using your existing signal.lst file"
18492         exit 0
18493 fi
18494 xxx="$xxx"
18495 EOS
18496 $cat >>signal_cmd <<'EOS'
18497
18498 set signal
18499 if eval $compile_ok; then
18500         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
18501 else
18502         echo "(I can't seem be able to compile the whole test program)" >&4
18503         echo "(I'll try it in little pieces.)" >&4
18504         set signal -DJUST_NSIG
18505         if eval $compile_ok; then
18506                 $run ./signal$_exe > signal.nsg
18507                 $cat signal.nsg
18508         else
18509                 echo "I can't seem to figure out how many signals you have." >&4
18510                 echo "Guessing 50." >&4
18511                 echo 'NSIG 50' > signal.nsg
18512         fi
18513         : Now look at all the signal names, one at a time.
18514         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
18515                 $cat > signal.c <<EOCP
18516 #include <sys/types.h>
18517 #include <signal.h>
18518 #include <stdio.h>
18519 int main() {
18520 printf("$xx %d\n", SIG${xx});
18521 return 0;
18522 }
18523 EOCP
18524                 set signal
18525                 if eval $compile; then
18526                         echo "SIG${xx} found."
18527                         $run ./signal$_exe  >> signal.ls1
18528                 else
18529                         echo "SIG${xx} NOT found."
18530                 fi
18531         done
18532         if $test -s signal.ls1; then
18533                 $cat signal.nsg signal.ls1 |
18534                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
18535         fi
18536
18537 fi
18538 if $test -s signal.lst; then
18539         :
18540 else
18541         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
18542         echo 'kill -l' >signal
18543         set X `csh -f <signal`
18544         $rm -f signal
18545         shift
18546         case $# in
18547         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
18548         esac
18549         echo $@ | $tr ' ' $trnl | \
18550             $awk '{ printf "%s %d\n", $1, ++s; }
18551                   END { printf "NSIG %d\n", ++s }' >signal.lst
18552 fi
18553 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
18554 EOS
18555 chmod a+x signal_cmd
18556 $eunicefix signal_cmd
18557
18558 : generate list of signal names
18559 echo " "
18560 case "$sig_name_init" in
18561 '') doinit=yes ;;
18562 *)  case "$sig_num_init" in
18563     ''|*,*) doinit=yes ;;
18564     esac ;;
18565 esac
18566 case "$doinit" in
18567 yes)
18568         echo "Generating a list of signal names and numbers..." >&4
18569         . ./signal_cmd
18570         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
18571         sig_name=`$awk 'BEGIN { printf "ZERO " }
18572                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
18573         sig_num=`$awk  'BEGIN { printf "0 " }
18574                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
18575         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
18576                              !/^NSIG/   { printf "\"%s\", ", $1 }
18577                              END        { printf "0\n" }' signal.lst`
18578         sig_num_init=`$awk  'BEGIN      { printf "0, " }
18579                              !/^NSIG/   { printf "%d, ", $2}
18580                              END        { printf "0\n"}' signal.lst`
18581         ;;
18582 esac
18583 echo "The following $sig_count signals are available:"
18584 echo " "
18585 echo $sig_name | $awk \
18586 'BEGIN { linelen = 0 }
18587 {
18588         for (i = 1; i <= NF; i++) {
18589                 name = "SIG" $i " "
18590                 linelen = linelen + length(name)
18591                 if (linelen > 70) {
18592                         printf "\n"
18593                         linelen = length(name)
18594                 }
18595                 printf "%s", name
18596         }
18597         printf "\n"
18598 }'
18599 sig_size=`echo $sig_name | awk '{print NF}'`
18600 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
18601
18602 echo " "
18603 case "$sizetype" in
18604 *_t) zzz="$sizetype"    ;;
18605 *)   zzz="filesize"     ;;
18606 esac
18607 echo "Checking the size of $zzz..." >&4 
18608 cat > try.c <<EOCP
18609 #include <sys/types.h>
18610 #include <stdio.h>
18611 int main() {
18612     printf("%d\n", (int)sizeof($sizetype));
18613     exit(0);
18614 }
18615 EOCP
18616 set try
18617 if eval $compile_ok; then
18618         yyy=`$run ./try`
18619         case "$yyy" in
18620         '')     sizesize=4
18621                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
18622                 ;;
18623         *)      sizesize=$yyy
18624                 echo "Your $zzz size is $sizesize bytes."
18625                 ;;
18626         esac
18627 else
18628         sizesize=4
18629         echo "(I can't compile the test program--guessing $sizesize.)" >&4
18630 fi
18631
18632
18633 : check for socklen_t
18634 echo " "
18635 echo "Checking to see if you have socklen_t..." >&4
18636 $cat >try.c <<EOCP
18637 #include <sys/types.h>
18638 #$d_socket HAS_SOCKET
18639 #ifdef HAS_SOCKET
18640 #include <sys/socket.h>
18641 #endif
18642 int main() { socklen_t x = 16; }
18643 EOCP
18644 set try
18645 if eval $compile; then
18646         val="$define"
18647         echo "You have socklen_t."
18648 else
18649         val="$undef"
18650         echo "You do not have socklen_t."
18651         case "$sizetype" in
18652         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
18653         esac
18654 fi
18655 $rm -f try try.*
18656 set d_socklen_t
18657 eval $setvar
18658
18659 : see if this is a socks.h system
18660 set socks.h i_socks
18661 eval $inhdr
18662
18663 : check for type of the size argument to socket calls
18664 case "$d_socket" in
18665 "$define")
18666         $cat <<EOM
18667
18668 Checking to see what type is the last argument of accept().
18669 EOM
18670         yyy=''
18671         case "$d_socklen_t" in
18672         "$define") yyy="$yyy socklen_t"
18673         esac
18674         yyy="$yyy $sizetype int long unsigned"
18675         for xxx in $yyy; do
18676                 case "$socksizetype" in
18677                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
18678                         case "$usesocks" in
18679                         "$define")
18680                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
18681                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
18682                                         socksizetype="$xxx"
18683                                 fi
18684                                 ;;
18685                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
18686                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
18687                                         socksizetype="$xxx"
18688                                 fi
18689                                 ;;
18690                         esac
18691                         ;;
18692                 esac
18693         done
18694 : In case none of those worked, prompt the user.
18695         case "$socksizetype" in
18696         '')     rp='What is the type for socket address structure sizes?'
18697                 dflt='int'
18698                 . ./myread
18699                 socksizetype=$ans
18700                 ;;
18701         esac
18702         ;;
18703 *)      : no sockets, so pick relatively harmless default
18704         socksizetype='int'
18705         ;;
18706 esac
18707
18708 : see what type is used for signed size_t
18709 set ssize_t ssizetype int stdio.h sys/types.h
18710 eval $typedef
18711 dflt="$ssizetype"
18712 $cat > try.c <<EOM
18713 #include <stdio.h>
18714 #include <sys/types.h>
18715 #define Size_t $sizetype
18716 #define SSize_t $dflt
18717 int main()
18718 {
18719         if (sizeof(Size_t) == sizeof(SSize_t))
18720                 printf("$dflt\n");
18721         else if (sizeof(Size_t) == sizeof(int))
18722                 printf("int\n");
18723         else 
18724                 printf("long\n");
18725         exit(0);
18726 }
18727 EOM
18728 echo " "
18729 set try
18730 if eval $compile_ok && $run ./try > /dev/null; then
18731         ssizetype=`$run ./try`
18732         echo "I'll be using $ssizetype for functions returning a byte count." >&4
18733 else
18734         $cat >&4 <<EOM
18735 Help! I can't compile and run the ssize_t test program: please enlighten me!
18736 (This is probably a misconfiguration in your system or libraries, and
18737 you really ought to fix it.  Still, I'll try anyway.)
18738
18739 I need a type that is the same size as $sizetype, but is guaranteed to
18740 be signed.  Common values are ssize_t, int and long.
18741
18742 EOM
18743         rp="What signed type is the same size as $sizetype?"
18744         . ./myread
18745         ssizetype="$ans"
18746 fi
18747 $rm -f try try.*
18748
18749 : see what type of char stdio uses.
18750 echo " "
18751 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
18752 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
18753         echo "Your stdio uses unsigned chars." >&4
18754         stdchar="unsigned char"
18755 else
18756         echo "Your stdio uses signed chars." >&4
18757         stdchar="char"
18758 fi
18759 $rm -f stdioh
18760
18761
18762
18763 : see what type uids are declared as in the kernel
18764 echo " "
18765 echo "Looking for the type for user ids returned by getuid()."
18766 set uid_t uidtype xxx stdio.h sys/types.h
18767 eval $typedef
18768 case "$uidtype" in
18769 xxx)
18770         xxx=`./findhdr sys/user.h`
18771         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
18772         case $1 in
18773         unsigned) dflt="$1 $2" ;;
18774         *) dflt="$1" ;;
18775         esac
18776         ;;
18777 *) dflt="$uidtype";;
18778 esac
18779 case "$uidtype" in
18780 uid_t)  echo "uid_t found." ;;
18781 *)      rp="What is the type for user ids returned by getuid()?"
18782         . ./myread
18783         uidtype="$ans"
18784         ;;
18785 esac
18786
18787 echo " "
18788 case "$uidtype" in
18789 *_t) zzz="$uidtype"     ;;
18790 *)   zzz="uid"          ;;
18791 esac
18792 echo "Checking the size of $zzz..." >&4 
18793 cat > try.c <<EOCP
18794 #include <sys/types.h>
18795 #include <stdio.h>
18796 int main() {
18797     printf("%d\n", (int)sizeof($uidtype));
18798     exit(0);
18799 }
18800 EOCP
18801 set try
18802 if eval $compile_ok; then
18803         yyy=`$run ./try`
18804         case "$yyy" in
18805         '')     uidsize=4
18806                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
18807                 ;;
18808         *)      uidsize=$yyy
18809                 echo "Your $zzz is $uidsize bytes long."
18810                 ;;
18811         esac
18812 else
18813         uidsize=4
18814         echo "(I can't compile the test program--guessing $uidsize.)" >&4
18815 fi
18816
18817 echo " "
18818 case "$uidtype" in
18819 *_t) zzz="$uidtype"     ;;
18820 *)   zzz="uid"          ;;
18821 esac
18822 echo "Checking the sign of $zzz..." >&4
18823 cat > try.c <<EOCP
18824 #include <sys/types.h>
18825 #include <stdio.h>
18826 int main() {
18827         $uidtype foo = -1;
18828         if (foo < 0)
18829                 printf("-1\n");
18830         else
18831                 printf("1\n");
18832 }
18833 EOCP
18834 set try
18835 if eval $compile; then
18836         yyy=`$run ./try`
18837         case "$yyy" in
18838         '')     uidsign=1
18839                 echo "(I can't execute the test program--guessing unsigned.)" >&4
18840                 ;;
18841         *)      uidsign=$yyy
18842                 case "$uidsign" in
18843                  1) echo "Your $zzz is unsigned." ;;
18844                 -1) echo "Your $zzz is signed."   ;;
18845                 esac
18846                 ;;
18847         esac
18848 else
18849         uidsign=1
18850         echo "(I can't compile the test program--guessing unsigned.)" >&4
18851 fi
18852
18853
18854
18855 echo " "
18856 $echo "Checking the format string to be used for uids..." >&4
18857
18858 case "$uidsign" in
18859 -1)     if $test X"$uidsize" = X"$ivsize"; then
18860                 uidformat="$ivdformat"
18861         else
18862                 if $test X"$uidsize" = X"$longsize"; then
18863                         uidformat='"ld"'
18864                 else
18865                         if $test X"$uidsize" = X"$intsize"; then
18866                                 uidformat='"d"'
18867                         else
18868                                 if $test X"$uidsize" = X"$shortsize"; then
18869                                         uidformat='"hd"'
18870                                 fi
18871                         fi
18872                 fi
18873         fi
18874         ;;
18875 *)      if $test X"$uidsize" = X"$uvsize"; then
18876                 uidformat="$uvuformat"
18877         else
18878                 if $test X"$uidsize" = X"$longsize"; then
18879                         uidformat='"lu"'
18880                 else
18881                         if $test X"$uidsize" = X"$intsize"; then
18882                                 uidformat='"u"'
18883                         else
18884                                 if $test X"$uidsize" = X"$shortsize"; then
18885                                         uidformat='"hu"'
18886                                 fi
18887                         fi
18888                 fi
18889         fi
18890         ;;
18891 esac
18892
18893 : determine compiler compiler
18894 case "$yacc" in
18895 '')
18896         dflt=yacc;;
18897 *)
18898         dflt="$yacc";;
18899 esac
18900 echo " "
18901 comp='yacc'
18902 if $test -f "$byacc$_exe"; then
18903         dflt="$byacc"
18904         comp="byacc or $comp"
18905 fi
18906 if $test -f "$bison$_exe"; then
18907         comp="$comp or bison -y"
18908 fi
18909 rp="Which compiler compiler ($comp) shall I use?"
18910 . ./myread
18911 yacc="$ans"
18912 case "$yacc" in
18913 *bis*)
18914         case "$yacc" in
18915         *-y*) ;;
18916         *)
18917                 yacc="$yacc -y"
18918                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
18919                 ;;
18920         esac
18921         ;;
18922 esac
18923
18924 : see if this is a fp.h system
18925 set fp.h i_fp
18926 eval $inhdr
18927
18928 : see if this is a fp_class.h system
18929 set fp_class.h i_fp_class
18930 eval $inhdr
18931
18932 : see if this is a ieeefp.h system
18933 case "$i_ieeefp" in
18934 '' ) set ieeefp.h i_ieeefp
18935      eval $inhdr
18936      ;;
18937 esac
18938
18939 : see if this is a libutil.h system
18940 set libutil.h i_libutil
18941 eval $inhdr
18942
18943 : see if mach cthreads are available
18944 if test "X$usethreads" = "X$define"; then
18945         set mach/cthreads.h i_machcthr
18946         eval $inhdr
18947 else
18948         i_machcthr="$undef"
18949 fi
18950
18951
18952
18953 : see if this is a math.h system
18954 set math.h i_math
18955 eval $inhdr
18956
18957 : see if this is a mntent.h system
18958 set mntent.h i_mntent
18959 eval $inhdr
18960
18961 : see if ndbm.h is available
18962 set ndbm.h t_ndbm
18963 eval $inhdr
18964
18965 case "$t_ndbm" in
18966 $undef)
18967     # Some Linux distributions such as RedHat 7.1 put the
18968     # ndbm.h header in /usr/include/gdbm/ndbm.h.
18969     if $test -f /usr/include/gdbm/ndbm.h; then
18970         echo '<gdbm/ndbm.h> found.'
18971         ccflags="$ccflags -I/usr/include/gdbm"
18972         cppflags="$cppflags -I/usr/include/gdbm"
18973         t_ndbm=$define
18974     fi
18975     ;;
18976 esac
18977
18978 case "$t_ndbm" in
18979 $define)
18980         : see if dbm_open exists
18981         set dbm_open d_dbm_open
18982         eval $inlibc
18983         case "$d_dbm_open" in
18984         $undef)
18985                 t_ndbm="$undef"
18986                 echo "We won't be including <ndbm.h>"
18987                 ;;
18988         esac
18989         ;;
18990 esac
18991 val="$t_ndbm"
18992 set i_ndbm
18993 eval $setvar
18994
18995 : see if net/errno.h is available
18996 val=''
18997 set net/errno.h val
18998 eval $inhdr
18999
19000 : Unfortunately, it causes problems on some systems.  Arrgh.
19001 case "$val" in
19002 $define)
19003         cat > try.c <<'EOM'
19004 #include <stdio.h>
19005 #include <errno.h>
19006 #include <net/errno.h>
19007 int func()
19008 {
19009         return ENOTSOCK;
19010 }
19011 EOM
19012         if $cc $ccflags -c try.c >/dev/null 2>&1; then
19013                 echo "We'll be including <net/errno.h>." >&4
19014         else
19015                 echo "We won't be including <net/errno.h>." >&4
19016                 val="$undef"
19017         fi
19018         $rm -f try.* try
19019         ;;
19020 esac
19021 set i_neterrno
19022 eval $setvar
19023
19024 : see if netinet/tcp.h is available
19025 set netinet/tcp.h i_netinettcp
19026 eval $inhdr
19027
19028 : see if this is a poll.h system
19029 set poll.h i_poll
19030 eval $inhdr
19031
19032 : see if this is a prot.h system
19033 set prot.h i_prot
19034 eval $inhdr
19035
19036 echo " "
19037 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
19038 $cat <<'EOSH' > Cppsym.know
19039 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
19040 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
19041 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
19042 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
19043 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
19044 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
19045 bull c cadmus clipper CMU COFF COMPILER_VERSION
19046 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
19047 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
19048 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
19049 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
19050 GLIBC GLIBC_MINOR
19051 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
19052 H3050R H3050RX hbullx20 hcx host_mips
19053 hp200 hp300 hp700 HP700 hp800 hp9000
19054 hp9000s200 hp9000s300 hp9000s400 hp9000s500
19055 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
19056 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
19057 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
19058 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
19059 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
19060 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
19061 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
19062 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
19063 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
19064 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
19065 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
19066 MATH_HAS_NO_SIDE_EFFECTS
19067 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
19068 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
19069 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
19070 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
19071 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
19072 NetBSD news1500 news1700 news1800 news1900 news3700
19073 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
19074 ns32016 ns32332 ns32k nsc32000
19075 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
19076 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
19077 pc532 pdp11 PGC PIC plexus PORTAR posix
19078 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
19079 POSIX_C_SOURCE POSIX_SOURCE POWER
19080 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
19081 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
19082 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
19083 sony sony_news sonyrisc sparc sparclite spectrum
19084 stardent stdc STDC_EXT stratos sun sun3 sun386
19085 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
19086 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
19087 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
19088 sysV68 sysV88 Tek4132 Tek4300 titan
19089 TM3200 TM5400 TM5600
19090 tower tower32 tower32_200 tower32_600 tower32_700
19091 tower32_800 tower32_850 tss
19092 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
19093 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
19094 unix UNIX95 UNIX99 unixpc unos
19095 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
19096 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
19097 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
19098 USGr4 USGr4_2
19099 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
19100 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
19101 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
19102 z8000
19103 EOSH
19104 # Maybe put other stuff here too.
19105 cat <<EOSH >>Cppsym.know
19106 $osname
19107 EOSH
19108 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
19109 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
19110 $cat Cppsym.know > Cppsym.c
19111 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
19112 $rm -f Cppsym.a Cppsym.b Cppsym.c
19113 cat <<EOSH > Cppsym
19114 $startsh
19115 if $test \$# -gt 0; then
19116     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
19117     if $test -s Cppsym.got; then
19118         $rm -f Cppsym.got
19119         exit 0
19120     fi
19121     $rm -f Cppsym.got
19122     exit 1
19123 else
19124     $tr " " "$trnl" | ./Cppsym.try
19125     exit 0
19126 fi
19127 EOSH
19128 chmod +x Cppsym
19129 $eunicefix Cppsym
19130 cat <<EOSH > Cppsym.try
19131 $startsh
19132 cat <<'EOCP' > try.c
19133 #include <stdio.h>
19134 int main() {
19135 EOCP
19136 $awk \\
19137 EOSH
19138 cat <<'EOSH' >> Cppsym.try
19139 'length($1) > 0 {
19140     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
19141     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
19142     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
19143     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
19144 }'       >> try.c
19145 echo 'return 0;}' >> try.c
19146 EOSH
19147 cat <<EOSH >> Cppsym.try
19148 ccflags="$ccflags"
19149 case "$osname-$gccversion" in
19150 irix-) ccflags="\$ccflags -woff 1178" ;;
19151 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
19152 esac
19153 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
19154 EOSH
19155 chmod +x Cppsym.try
19156 $eunicefix Cppsym.try
19157 ./Cppsym < Cppsym.know > Cppsym.true
19158 : now check the C compiler for additional symbols
19159 postprocess_cc_v=''
19160 case "$osname" in
19161 aix) postprocess_cc_v="|$tr , ' '" ;;
19162 esac
19163 $cat >ccsym <<EOS
19164 $startsh
19165 $cat >tmp.c <<EOF
19166 extern int foo;
19167 EOF
19168 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
19169 do
19170         case "\$i" in
19171         -D*) echo "\$i" | $sed 's/^-D//';;
19172         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
19173         esac
19174 done
19175 $rm -f try.c
19176 EOS
19177 postprocess_cc_v=''
19178 chmod +x ccsym
19179 $eunicefix ccsym
19180 ./ccsym > ccsym1.raw
19181 if $test -s ccsym1.raw; then
19182        $sort ccsym1.raw | $uniq >ccsym.raw
19183 else
19184        mv ccsym1.raw ccsym.raw
19185 fi
19186
19187 $awk '/\=/ { print $0; next }
19188         { print $0"=1" }' ccsym.raw >ccsym.list
19189 $awk '/\=/ { print $0; next }
19190         { print $0"=1" }' Cppsym.true >ccsym.true
19191 $comm -13 ccsym.true ccsym.list >ccsym.own
19192 $comm -12 ccsym.true ccsym.list >ccsym.com
19193 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19194 also=''
19195 if $test -z ccsym.raw; then
19196         echo "Your C compiler doesn't seem to define any symbols!" >&4
19197         echo " "
19198         echo "However, your C preprocessor defines the following symbols:"
19199         $cat Cppsym.true
19200         ccsymbols=''
19201         cppsymbols=`$cat Cppsym.true`
19202         cppsymbols=`echo $cppsymbols`
19203         cppccsymbols="$cppsymbols"
19204 else
19205         if $test -s ccsym.com; then
19206                 echo "Your C compiler and pre-processor define these symbols:"
19207                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19208                 also='also '
19209                 symbols='ones'
19210                 cppccsymbols=`$cat ccsym.com`
19211                 cppccsymbols=`echo $cppccsymbols`
19212                 $test "$silent" || sleep 1
19213         fi
19214         if $test -s ccsym.cpp; then
19215                 $test "$also" && echo " "
19216                 echo "Your C pre-processor ${also}defines the following symbols:"
19217                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19218                 also='further '
19219                 cppsymbols=`$cat ccsym.cpp`
19220                 cppsymbols=`echo $cppsymbols`
19221                 $test "$silent" || sleep 1
19222         fi
19223         if $test -s ccsym.own; then
19224                 $test "$also" && echo " "
19225                 echo "Your C compiler ${also}defines the following cpp symbols:"
19226                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19227                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19228                 ccsymbols=`$cat ccsym.own`
19229                 ccsymbols=`echo $ccsymbols`
19230                 $test "$silent" || sleep 1
19231         fi
19232 fi
19233
19234 : see if this is a termio system
19235 val="$undef"
19236 val2="$undef"
19237 val3="$undef"
19238 if $test `./findhdr termios.h`; then
19239         set tcsetattr i_termios
19240         eval $inlibc
19241         val3="$i_termios"
19242 fi
19243 echo " "
19244 case "$val3" in
19245 "$define") echo "You have POSIX termios.h... good!" >&4;;
19246 *) if ./Cppsym pyr; then
19247                 case "`/bin/universe`" in
19248                 ucb) if $test `./findhdr sgtty.h`; then
19249                                 val2="$define"
19250                                 echo "<sgtty.h> found." >&4
19251                         else
19252                                 echo "System is pyramid with BSD universe."
19253                                 echo "<sgtty.h> not found--you could have problems." >&4
19254                         fi;;
19255                 *) if $test `./findhdr termio.h`; then
19256                                 val="$define"
19257                                 echo "<termio.h> found." >&4
19258                         else
19259                                 echo "System is pyramid with USG universe."
19260                                 echo "<termio.h> not found--you could have problems." >&4
19261                         fi;;
19262                 esac
19263         elif ./usg; then
19264                 if $test `./findhdr termio.h`; then
19265                         echo "<termio.h> found." >&4
19266                         val="$define"
19267                 elif $test `./findhdr sgtty.h`; then
19268                         echo "<sgtty.h> found." >&4
19269                         val2="$define"
19270                 else
19271 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19272                 fi
19273         else
19274                 if $test `./findhdr sgtty.h`; then
19275                         echo "<sgtty.h> found." >&4
19276                         val2="$define"
19277                 elif $test `./findhdr termio.h`; then
19278                         echo "<termio.h> found." >&4
19279                         val="$define"
19280                 else
19281 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19282                 fi
19283         fi;;
19284 esac
19285 set i_termio; eval $setvar
19286 val=$val2; set i_sgtty; eval $setvar
19287 val=$val3; set i_termios; eval $setvar
19288
19289 : see if stddef is available
19290 set stddef.h i_stddef
19291 eval $inhdr
19292
19293 : see if this is a sunmath.h system
19294 set sunmath.h i_sunmath
19295 eval $inhdr
19296
19297 : see if sys/access.h is available
19298 set sys/access.h i_sysaccess
19299 eval $inhdr
19300
19301 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19302 set sys/filio.h i_sysfilio
19303 eval $inhdr
19304 echo " "
19305 if $test `./findhdr sys/ioctl.h`; then
19306         val="$define"
19307         echo '<sys/ioctl.h> found.' >&4
19308 else
19309         val="$undef"
19310         if $test $i_sysfilio = "$define"; then
19311             echo '<sys/ioctl.h> NOT found.' >&4
19312         else
19313                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19314                 $test $i_termio = "$define" && xxx="termio.h"
19315                 $test $i_termios = "$define" && xxx="termios.h"
19316 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19317         fi
19318 fi
19319 set i_sysioctl
19320 eval $setvar
19321
19322 : see if socket ioctl defs are in sys/sockio.h
19323 echo " "
19324 xxx=`./findhdr sys/sockio.h`
19325 if $test "$xxx"; then
19326         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19327                 val="$define"
19328                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19329         else
19330                 val="$undef"
19331                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19332         fi
19333 else
19334         val="$undef"
19335         $cat <<EOM
19336 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19337 EOM
19338 fi
19339 set i_syssockio
19340 eval $setvar
19341
19342
19343 : see if this is a syslog.h system
19344 set syslog.h i_syslog
19345 eval $inhdr
19346
19347
19348 : see if this is a sys/mode.h system
19349 set sys/mode.h i_sysmode
19350 eval $inhdr
19351
19352 : see if sys/resource.h has to be included
19353 set sys/resource.h i_sysresrc
19354 eval $inhdr
19355
19356 : see if sys/security.h is available
19357 set sys/security.h i_syssecrt
19358 eval $inhdr
19359
19360 : see if this is a sys/statvfs.h system
19361 set sys/statvfs.h i_sysstatvfs
19362 eval $inhdr
19363
19364 : see if this is a sys/un.h system
19365 set sys/un.h i_sysun
19366 eval $inhdr
19367
19368
19369 : see if this is a sys/utsname.h system
19370 set sys/utsname.h i_sysutsname
19371 eval $inhdr
19372
19373 : see if this is a syswait system
19374 set sys/wait.h i_syswait
19375 eval $inhdr
19376
19377 : see if this is a ustat.h system
19378 set ustat.h i_ustat
19379 eval $inhdr
19380
19381 : see if this is an utime system
19382 set utime.h i_utime
19383 eval $inhdr
19384
19385 : see if this is a values.h system
19386 set values.h i_values
19387 eval $inhdr
19388
19389 : see if this is a vfork system
19390 case "$d_vfork" in
19391 "$define")
19392         set vfork.h i_vfork
19393         eval $inhdr
19394         ;;
19395 *)
19396         i_vfork="$undef"
19397         ;;
19398 esac
19399
19400 : see if gdbm.h is available
19401 set gdbm.h t_gdbm
19402 eval $inhdr
19403 case "$t_gdbm" in
19404 $define)
19405         : see if gdbm_open exists
19406         set gdbm_open d_gdbm_open
19407         eval $inlibc
19408         case "$d_gdbm_open" in
19409         $undef)
19410                 t_gdbm="$undef"
19411                 echo "We won't be including <gdbm.h>"
19412                 ;;
19413         esac
19414         ;;
19415 esac
19416 val="$t_gdbm"
19417 set i_gdbm
19418 eval $setvar
19419
19420 echo " "
19421 echo "Looking for extensions..." >&4
19422 : If we are using the old config.sh, known_extensions may contain
19423 : old or inaccurate or duplicate values.
19424 known_extensions=''
19425 nonxs_extensions=''
19426 : We do not use find because it might not be available.
19427 : We do not just use MANIFEST because the user may have dropped
19428 : some additional extensions into the source tree and expect them
19429 : to be built.
19430
19431 : Function to recursively find available extensions, ignoring DynaLoader
19432 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
19433 find_extensions='
19434     for xxx in *; do
19435        case "$xxx" in
19436            DynaLoader|dynaload) ;;
19437            *)
19438            if $test -f $xxx/$xxx.xs; then
19439                known_extensions="$known_extensions $1$xxx";
19440            elif $test -f $xxx/Makefile.PL; then
19441                nonxs_extensions="$nonxs_extensions $1$xxx";
19442            else
19443                if $test -d $xxx -a $# -lt 10; then
19444                    set $1$xxx/ $*;
19445                    cd "$xxx";
19446                    eval $find_extensions;
19447                    cd ..;
19448                    shift;
19449                fi;
19450            fi
19451            ;;
19452        esac;
19453     done'
19454 tdir=`pwd`
19455 cd "$rsrc/ext"
19456 set X
19457 shift
19458 eval $find_extensions
19459 # Special case:  Add in threads/shared since it is not picked up by the
19460 # recursive find above (and adding in general recursive finding breaks
19461 # SDBM_File/sdbm).  A.D.  10/25/2001.
19462 known_extensions="$known_extensions threads/shared"
19463 set X $nonxs_extensions
19464 shift
19465 nonxs_extensions="$*"
19466 set X $known_extensions
19467 shift
19468 known_extensions="$*"
19469 cd "$tdir"
19470
19471 : Now see which are supported on this system.
19472 avail_ext=''
19473 for xxx in $known_extensions ; do
19474         case "$xxx" in
19475         DB_File|db_file)
19476                 case "$i_db" in
19477                 $define) avail_ext="$avail_ext $xxx" ;;
19478                 esac
19479                 ;;
19480         GDBM_File|gdbm_fil)
19481                 case "$i_gdbm" in 
19482                 $define) avail_ext="$avail_ext $xxx" ;;
19483                 esac
19484                 ;;
19485         I18N/Langinfo|i18n_lan)
19486                 case "$i_langinfo$d_nl_langinfo" in 
19487                 $define$define) avail_ext="$avail_ext $xxx" ;;
19488                 esac
19489                 ;;
19490         NDBM_File|ndbm_fil)
19491                 case "$i_ndbm" in
19492                 $define)
19493                     case "$osname-$use64bitint" in
19494                     cygwin-*|hpux-define)
19495                         case "$libs" in
19496                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
19497                         esac
19498                         ;;
19499                     *) avail_ext="$avail_ext $xxx" ;;
19500                     esac
19501                     ;;
19502                 esac
19503                 ;;
19504         ODBM_File|odbm_fil) 
19505                 case "${i_dbm}${i_rpcsvcdbm}" in
19506                 *"${define}"*)
19507                     case "$osname-$use64bitint" in
19508                     cygwin-*|hpux-define)
19509                         case "$libs" in
19510                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
19511                         esac
19512                         ;;
19513                     *) avail_ext="$avail_ext $xxx" ;;
19514                     esac
19515                     ;;
19516                 esac
19517                 ;;
19518         POSIX|posix)
19519                 case "$useposix" in
19520                 true|define|y) avail_ext="$avail_ext $xxx" ;;
19521                 esac
19522                 ;;
19523         Opcode|opcode)
19524                 case "$useopcode" in
19525                 true|define|y) avail_ext="$avail_ext $xxx" ;;
19526                 esac
19527                 ;;
19528         Socket|socket)
19529                 case "$d_socket" in 
19530                 true|$define|y)
19531                     case "$osname" in
19532                     beos) ;; # not unless BONE
19533                     *) avail_ext="$avail_ext $xxx" ;;
19534                     esac
19535                     ;;
19536                 esac
19537                 ;;
19538         Sys/Syslog|sys/syslog)
19539                 : XXX syslog requires socket
19540                 case "$d_socket" in 
19541                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
19542                 esac
19543                 ;;
19544         Thread|thread)
19545                 case "$usethreads" in
19546                 true|$define|y)
19547                         case "$useithreads" in
19548                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
19549                         esac
19550                 esac
19551                 ;;
19552         threads|threads/shared)
19553                 case "$usethreads" in
19554                 true|$define|y)
19555                         case "$useithreads" in
19556                         $define|true|[yY]*) avail_ext="$avail_ext $xxx" ;;
19557                         esac
19558                 esac
19559                 ;;
19560         IPC/SysV|ipc/sysv)
19561                 : XXX Do we need a useipcsysv variable here
19562                 case "${d_msg}${d_sem}${d_shm}" in 
19563                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
19564                 esac
19565                 ;;
19566         *)      avail_ext="$avail_ext $xxx"
19567                 ;;
19568         esac
19569 done
19570
19571 set X $avail_ext
19572 shift
19573 avail_ext="$*"
19574
19575 : Now see which nonxs extensions are supported on this system.
19576 : For now assume all are.
19577 nonxs_ext=''
19578 for xxx in $nonxs_extensions ; do
19579         case "$xxx" in
19580         *)      nonxs_ext="$nonxs_ext $xxx"
19581                 ;;
19582         esac
19583 done
19584
19585 set X $nonxs_ext
19586 shift
19587 nonxs_ext="$*"
19588
19589 case $usedl in
19590 $define)
19591         $cat <<EOM
19592 A number of extensions are supplied with $package.  You may choose to
19593 compile these extensions for dynamic loading (the default), compile
19594 them into the $package executable (static loading), or not include
19595 them at all.  Answer "none" to include no extensions.
19596 Note that DynaLoader is always built and need not be mentioned here.
19597
19598 EOM
19599         case "$dynamic_ext" in
19600         '') dflt="$avail_ext" ;;
19601         *)      dflt="$dynamic_ext"
19602                 # Perhaps we are reusing an old out-of-date config.sh.
19603                 case "$hint" in
19604                 previous)
19605                         if test X"$dynamic_ext" != X"$avail_ext"; then
19606                                 $cat <<EOM
19607 NOTICE:  Your previous config.sh list may be incorrect. 
19608 The extensions now available to you are 
19609         ${avail_ext}
19610 but the default list from your previous config.sh is
19611         ${dynamic_ext} 
19612
19613 EOM
19614                         fi
19615                         ;;
19616                 esac
19617                 ;;
19618         esac
19619         case "$dflt" in
19620         '')     dflt=none;;
19621         esac
19622         rp="What extensions do you wish to load dynamically?"
19623         . ./myread
19624         case "$ans" in
19625         none) dynamic_ext=' ' ;;
19626         *) dynamic_ext="$ans" ;;
19627         esac
19628
19629         case "$static_ext" in
19630         '')
19631                 : Exclude those already listed in dynamic linking
19632                 dflt=''
19633                 for xxx in $avail_ext; do
19634                         case " $dynamic_ext " in
19635                         *" $xxx "*) ;;
19636                         *) dflt="$dflt $xxx" ;;
19637                         esac
19638                 done
19639                 set X $dflt
19640                 shift
19641                 dflt="$*"
19642                 ;;
19643         *)  dflt="$static_ext" 
19644                 ;;
19645         esac
19646
19647         case "$dflt" in
19648         '')     dflt=none;;
19649         esac
19650         rp="What extensions do you wish to load statically?"
19651         . ./myread
19652         case "$ans" in
19653         none) static_ext=' ' ;;
19654         *) static_ext="$ans" ;;
19655         esac
19656         ;;
19657 *)
19658         $cat <<EOM
19659 A number of extensions are supplied with $package.  Answer "none" 
19660 to include no extensions. 
19661 Note that DynaLoader is always built and need not be mentioned here.
19662
19663 EOM
19664         case "$static_ext" in
19665         '') dflt="$avail_ext" ;;
19666         *)      dflt="$static_ext"
19667                 # Perhaps we are reusing an old out-of-date config.sh.
19668                 case "$hint" in
19669                 previous)
19670                         if test X"$static_ext" != X"$avail_ext"; then
19671                                 $cat <<EOM
19672 NOTICE:  Your previous config.sh list may be incorrect. 
19673 The extensions now available to you are 
19674         ${avail_ext}
19675 but the default list from your previous config.sh is
19676         ${static_ext} 
19677
19678 EOM
19679                         fi
19680                         ;;
19681                 esac
19682                 ;;
19683         esac
19684         : Exclude those that are not xs extensions
19685         case "$dflt" in
19686         '')     dflt=none;;
19687         *)  case " $dflt " in
19688             *" Encode "*) # Add the subextensions of Encode
19689                 cd "$rsrc/ext"
19690                 for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
19691                         dflt="$dflt Encode/$xxx"
19692                 done
19693                 cd "$tdir"
19694                 ;;
19695             esac
19696             ;;
19697         esac
19698         rp="What extensions do you wish to include?"
19699         . ./myread
19700         case "$ans" in
19701         none) static_ext=' ' ;;
19702         *) static_ext="$ans" ;;
19703         esac
19704         ;;
19705 esac
19706
19707 set X $dynamic_ext $static_ext $nonxs_ext
19708 shift
19709 extensions="$*"
19710
19711 : Remove libraries needed only for extensions
19712 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
19713 : The exception is SunOS 4.x, which needs them.
19714 case "${osname}X${osvers}" in
19715 sunos*X4*)
19716     perllibs="$libs"
19717     ;;
19718 *) case "$usedl" in
19719     $define|true|[yY]*)
19720             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
19721             shift
19722             perllibs="$*"
19723             ;;
19724     *)  perllibs="$libs"
19725             ;;
19726     esac
19727     ;;
19728 esac
19729
19730 : Remove build directory name from cppstdin so it can be used from
19731 : either the present location or the final installed location.
19732 echo " "
19733 : Get out of the UU directory to get correct path name.
19734 cd ..
19735 case "$cppstdin" in
19736 `pwd`/cppstdin)
19737         echo "Stripping down cppstdin path name"
19738         cppstdin=cppstdin
19739         ;;
19740 esac
19741 cd UU
19742
19743 : end of configuration questions
19744 echo " "
19745 echo "End of configuration questions."
19746 echo " "
19747
19748 : back to where it started
19749 if test -d ../UU; then
19750         cd ..
19751 fi
19752
19753 : configuration may be patched via a 'config.arch' file
19754 if $test -f config.arch; then
19755         echo "I see a config.arch file, loading it."
19756         . ./config.arch
19757 fi
19758
19759 : configuration may be patched via a 'config.over' file
19760 if $test -f config.over; then
19761         echo " "
19762         dflt=y
19763         rp='I see a config.over file.  Do you wish to load it?'
19764         . UU/myread
19765         case "$ans" in
19766         n*) echo "OK, I'll ignore it.";;
19767         *)      . ./config.over
19768                 echo "Configuration override changes have been loaded."
19769                 ;;
19770         esac
19771 fi
19772
19773 : in case they want portability, strip down executable paths
19774 case "$d_portable" in
19775 "$define")
19776         echo " "
19777         echo "Stripping down executable paths..." >&4
19778         for file in $loclist $trylist; do
19779                 eval temp=\$$file
19780                 eval $file=`basename $temp`
19781         done
19782         ;;
19783 esac
19784
19785 : create config.sh file
19786 echo " "
19787 echo "Creating config.sh..." >&4
19788 $spitshell <<EOT >config.sh
19789 $startsh
19790 #
19791 # This file was produced by running the Configure script. It holds all the
19792 # definitions figured out by Configure. Should you modify one of these values,
19793 # do not forget to propagate your changes by running "Configure -der". You may
19794 # instead choose to run each of the .SH files by yourself, or "Configure -S".
19795 #
19796
19797 # Package name      : $package
19798 # Source directory  : $src
19799 # Configuration time: $cf_time
19800 # Configured by     : $cf_by
19801 # Target system     : $myuname
19802
19803 Author='$Author'
19804 Date='$Date'
19805 Header='$Header'
19806 Id='$Id'
19807 Locker='$Locker'
19808 Log='$Log'
19809 Mcc='$Mcc'
19810 RCSfile='$RCSfile'
19811 Revision='$Revision'
19812 Source='$Source'
19813 State='$State'
19814 _a='$_a'
19815 _exe='$_exe'
19816 _o='$_o'
19817 afs='$afs'
19818 afsroot='$afsroot'
19819 alignbytes='$alignbytes'
19820 ansi2knr='$ansi2knr'
19821 aphostname='$aphostname'
19822 api_revision='$api_revision'
19823 api_subversion='$api_subversion'
19824 api_version='$api_version'
19825 api_versionstring='$api_versionstring'
19826 ar='$ar'
19827 archlib='$archlib'
19828 archlibexp='$archlibexp'
19829 archname64='$archname64'
19830 archname='$archname'
19831 archobjs='$archobjs'
19832 asctime_r_proto='$asctime_r_proto'
19833 awk='$awk'
19834 baserev='$baserev'
19835 bash='$bash'
19836 bin='$bin'
19837 bincompat5005='$bincompat5005'
19838 binexp='$binexp'
19839 bison='$bison'
19840 byacc='$byacc'
19841 byteorder='$byteorder'
19842 c='$c'
19843 castflags='$castflags'
19844 cat='$cat'
19845 cc='$cc'
19846 cccdlflags='$cccdlflags'
19847 ccdlflags='$ccdlflags'
19848 ccflags='$ccflags'
19849 ccflags_uselargefiles='$ccflags_uselargefiles'
19850 ccname='$ccname'
19851 ccsymbols='$ccsymbols'
19852 ccversion='$ccversion'
19853 cf_by='$cf_by'
19854 cf_email='$cf_email'
19855 cf_time='$cf_time'
19856 charsize='$charsize'
19857 chgrp='$chgrp'
19858 chmod='$chmod'
19859 chown='$chown'
19860 clocktype='$clocktype'
19861 comm='$comm'
19862 compress='$compress'
19863 contains='$contains'
19864 cp='$cp'
19865 cpio='$cpio'
19866 cpp='$cpp'
19867 cpp_stuff='$cpp_stuff'
19868 cppccsymbols='$cppccsymbols'
19869 cppflags='$cppflags'
19870 cpplast='$cpplast'
19871 cppminus='$cppminus'
19872 cpprun='$cpprun'
19873 cppstdin='$cppstdin'
19874 cppsymbols='$cppsymbols'
19875 crypt_r_proto='$crypt_r_proto'
19876 cryptlib='$cryptlib'
19877 csh='$csh'
19878 ctermid_r_proto='$ctermid_r_proto'
19879 ctime_r_proto='$ctime_r_proto'
19880 d_Gconvert='$d_Gconvert'
19881 d_PRIEUldbl='$d_PRIEUldbl'
19882 d_PRIFUldbl='$d_PRIFUldbl'
19883 d_PRIGUldbl='$d_PRIGUldbl'
19884 d_PRIXU64='$d_PRIXU64'
19885 d_PRId64='$d_PRId64'
19886 d_PRIeldbl='$d_PRIeldbl'
19887 d_PRIfldbl='$d_PRIfldbl'
19888 d_PRIgldbl='$d_PRIgldbl'
19889 d_PRIi64='$d_PRIi64'
19890 d_PRIo64='$d_PRIo64'
19891 d_PRIu64='$d_PRIu64'
19892 d_PRIx64='$d_PRIx64'
19893 d_SCNfldbl='$d_SCNfldbl'
19894 d__fwalk='$d__fwalk'
19895 d_access='$d_access'
19896 d_accessx='$d_accessx'
19897 d_alarm='$d_alarm'
19898 d_archlib='$d_archlib'
19899 d_asctime_r='$d_asctime_r'
19900 d_atolf='$d_atolf'
19901 d_atoll='$d_atoll'
19902 d_attribut='$d_attribut'
19903 d_bcmp='$d_bcmp'
19904 d_bcopy='$d_bcopy'
19905 d_bincompat5005='$d_bincompat5005'
19906 d_bsd='$d_bsd'
19907 d_bsdgetpgrp='$d_bsdgetpgrp'
19908 d_bsdsetpgrp='$d_bsdsetpgrp'
19909 d_bzero='$d_bzero'
19910 d_casti32='$d_casti32'
19911 d_castneg='$d_castneg'
19912 d_charvspr='$d_charvspr'
19913 d_chown='$d_chown'
19914 d_chroot='$d_chroot'
19915 d_chsize='$d_chsize'
19916 d_class='$d_class'
19917 d_closedir='$d_closedir'
19918 d_cmsghdr_s='$d_cmsghdr_s'
19919 d_const='$d_const'
19920 d_crypt='$d_crypt'
19921 d_crypt_r='$d_crypt_r'
19922 d_csh='$d_csh'
19923 d_ctermid_r='$d_ctermid_r'
19924 d_ctime_r='$d_ctime_r'
19925 d_cuserid='$d_cuserid'
19926 d_dbl_dig='$d_dbl_dig'
19927 d_dbminitproto='$d_dbminitproto'
19928 d_difftime='$d_difftime'
19929 d_dirfd='$d_dirfd'
19930 d_dirnamlen='$d_dirnamlen'
19931 d_dlerror='$d_dlerror'
19932 d_dlopen='$d_dlopen'
19933 d_dlsymun='$d_dlsymun'
19934 d_dosuid='$d_dosuid'
19935 d_drand48_r='$d_drand48_r'
19936 d_drand48proto='$d_drand48proto'
19937 d_dup2='$d_dup2'
19938 d_eaccess='$d_eaccess'
19939 d_endgrent='$d_endgrent'
19940 d_endgrent_r='$d_endgrent_r'
19941 d_endhent='$d_endhent'
19942 d_endhostent_r='$d_endhostent_r'
19943 d_endnent='$d_endnent'
19944 d_endnetent_r='$d_endnetent_r'
19945 d_endpent='$d_endpent'
19946 d_endprotoent_r='$d_endprotoent_r'
19947 d_endpwent='$d_endpwent'
19948 d_endpwent_r='$d_endpwent_r'
19949 d_endsent='$d_endsent'
19950 d_endservent_r='$d_endservent_r'
19951 d_eofnblk='$d_eofnblk'
19952 d_eunice='$d_eunice'
19953 d_fchdir='$d_fchdir'
19954 d_fchmod='$d_fchmod'
19955 d_fchown='$d_fchown'
19956 d_fcntl='$d_fcntl'
19957 d_fcntl_can_lock='$d_fcntl_can_lock'
19958 d_fd_macros='$d_fd_macros'
19959 d_fd_set='$d_fd_set'
19960 d_fds_bits='$d_fds_bits'
19961 d_fgetpos='$d_fgetpos'
19962 d_finite='$d_finite'
19963 d_finitel='$d_finitel'
19964 d_flexfnam='$d_flexfnam'
19965 d_flock='$d_flock'
19966 d_flockproto='$d_flockproto'
19967 d_fork='$d_fork'
19968 d_fp_class='$d_fp_class'
19969 d_fpathconf='$d_fpathconf'
19970 d_fpclass='$d_fpclass'
19971 d_fpclassify='$d_fpclassify'
19972 d_fpclassl='$d_fpclassl'
19973 d_fpos64_t='$d_fpos64_t'
19974 d_frexpl='$d_frexpl'
19975 d_fs_data_s='$d_fs_data_s'
19976 d_fseeko='$d_fseeko'
19977 d_fsetpos='$d_fsetpos'
19978 d_fstatfs='$d_fstatfs'
19979 d_fstatvfs='$d_fstatvfs'
19980 d_fsync='$d_fsync'
19981 d_ftello='$d_ftello'
19982 d_ftime='$d_ftime'
19983 d_getcwd='$d_getcwd'
19984 d_getespwnam='$d_getespwnam'
19985 d_getfsstat='$d_getfsstat'
19986 d_getgrent='$d_getgrent'
19987 d_getgrent_r='$d_getgrent_r'
19988 d_getgrgid_r='$d_getgrgid_r'
19989 d_getgrnam_r='$d_getgrnam_r'
19990 d_getgrps='$d_getgrps'
19991 d_gethbyaddr='$d_gethbyaddr'
19992 d_gethbyname='$d_gethbyname'
19993 d_gethent='$d_gethent'
19994 d_gethname='$d_gethname'
19995 d_gethostbyaddr_r='$d_gethostbyaddr_r'
19996 d_gethostbyname_r='$d_gethostbyname_r'
19997 d_gethostent_r='$d_gethostent_r'
19998 d_gethostprotos='$d_gethostprotos'
19999 d_getitimer='$d_getitimer'
20000 d_getlogin='$d_getlogin'
20001 d_getlogin_r='$d_getlogin_r'
20002 d_getmnt='$d_getmnt'
20003 d_getmntent='$d_getmntent'
20004 d_getnbyaddr='$d_getnbyaddr'
20005 d_getnbyname='$d_getnbyname'
20006 d_getnent='$d_getnent'
20007 d_getnetbyaddr_r='$d_getnetbyaddr_r'
20008 d_getnetbyname_r='$d_getnetbyname_r'
20009 d_getnetent_r='$d_getnetent_r'
20010 d_getnetprotos='$d_getnetprotos'
20011 d_getpagsz='$d_getpagsz'
20012 d_getpbyname='$d_getpbyname'
20013 d_getpbynumber='$d_getpbynumber'
20014 d_getpent='$d_getpent'
20015 d_getpgid='$d_getpgid'
20016 d_getpgrp2='$d_getpgrp2'
20017 d_getpgrp='$d_getpgrp'
20018 d_getppid='$d_getppid'
20019 d_getprior='$d_getprior'
20020 d_getprotobyname_r='$d_getprotobyname_r'
20021 d_getprotobynumber_r='$d_getprotobynumber_r'
20022 d_getprotoent_r='$d_getprotoent_r'
20023 d_getprotoprotos='$d_getprotoprotos'
20024 d_getprpwnam='$d_getprpwnam'
20025 d_getpwent='$d_getpwent'
20026 d_getpwent_r='$d_getpwent_r'
20027 d_getpwnam_r='$d_getpwnam_r'
20028 d_getpwuid_r='$d_getpwuid_r'
20029 d_getsbyname='$d_getsbyname'
20030 d_getsbyport='$d_getsbyport'
20031 d_getsent='$d_getsent'
20032 d_getservbyname_r='$d_getservbyname_r'
20033 d_getservbyport_r='$d_getservbyport_r'
20034 d_getservent_r='$d_getservent_r'
20035 d_getservprotos='$d_getservprotos'
20036 d_getspnam='$d_getspnam'
20037 d_getspnam_r='$d_getspnam_r'
20038 d_gettimeod='$d_gettimeod'
20039 d_gmtime_r='$d_gmtime_r'
20040 d_gnulibc='$d_gnulibc'
20041 d_grpasswd='$d_grpasswd'
20042 d_hasmntopt='$d_hasmntopt'
20043 d_htonl='$d_htonl'
20044 d_index='$d_index'
20045 d_inetaton='$d_inetaton'
20046 d_int64_t='$d_int64_t'
20047 d_isascii='$d_isascii'
20048 d_isfinite='$d_isfinite'
20049 d_isinf='$d_isinf'
20050 d_isnan='$d_isnan'
20051 d_isnanl='$d_isnanl'
20052 d_killpg='$d_killpg'
20053 d_lchown='$d_lchown'
20054 d_ldbl_dig='$d_ldbl_dig'
20055 d_link='$d_link'
20056 d_localtime_r='$d_localtime_r'
20057 d_locconv='$d_locconv'
20058 d_lockf='$d_lockf'
20059 d_longdbl='$d_longdbl'
20060 d_longlong='$d_longlong'
20061 d_lseekproto='$d_lseekproto'
20062 d_lstat='$d_lstat'
20063 d_madvise='$d_madvise'
20064 d_mblen='$d_mblen'
20065 d_mbstowcs='$d_mbstowcs'
20066 d_mbtowc='$d_mbtowc'
20067 d_memchr='$d_memchr'
20068 d_memcmp='$d_memcmp'
20069 d_memcpy='$d_memcpy'
20070 d_memmove='$d_memmove'
20071 d_memset='$d_memset'
20072 d_mkdir='$d_mkdir'
20073 d_mkdtemp='$d_mkdtemp'
20074 d_mkfifo='$d_mkfifo'
20075 d_mkstemp='$d_mkstemp'
20076 d_mkstemps='$d_mkstemps'
20077 d_mktime='$d_mktime'
20078 d_mmap='$d_mmap'
20079 d_modfl='$d_modfl'
20080 d_modfl_pow32_bug='$d_modfl_pow32_bug'
20081 d_mprotect='$d_mprotect'
20082 d_msg='$d_msg'
20083 d_msg_ctrunc='$d_msg_ctrunc'
20084 d_msg_dontroute='$d_msg_dontroute'
20085 d_msg_oob='$d_msg_oob'
20086 d_msg_peek='$d_msg_peek'
20087 d_msg_proxy='$d_msg_proxy'
20088 d_msgctl='$d_msgctl'
20089 d_msgget='$d_msgget'
20090 d_msghdr_s='$d_msghdr_s'
20091 d_msgrcv='$d_msgrcv'
20092 d_msgsnd='$d_msgsnd'
20093 d_msync='$d_msync'
20094 d_munmap='$d_munmap'
20095 d_mymalloc='$d_mymalloc'
20096 d_nice='$d_nice'
20097 d_nl_langinfo='$d_nl_langinfo'
20098 d_nv_preserves_uv='$d_nv_preserves_uv'
20099 d_off64_t='$d_off64_t'
20100 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
20101 d_oldpthreads='$d_oldpthreads'
20102 d_oldsock='$d_oldsock'
20103 d_open3='$d_open3'
20104 d_pathconf='$d_pathconf'
20105 d_pause='$d_pause'
20106 d_perl_otherlibdirs='$d_perl_otherlibdirs'
20107 d_phostname='$d_phostname'
20108 d_pipe='$d_pipe'
20109 d_poll='$d_poll'
20110 d_portable='$d_portable'
20111 d_procselfexe='$d_procselfexe'
20112 d_pthread_atfork='$d_pthread_atfork'
20113 d_pthread_yield='$d_pthread_yield'
20114 d_pwage='$d_pwage'
20115 d_pwchange='$d_pwchange'
20116 d_pwclass='$d_pwclass'
20117 d_pwcomment='$d_pwcomment'
20118 d_pwexpire='$d_pwexpire'
20119 d_pwgecos='$d_pwgecos'
20120 d_pwpasswd='$d_pwpasswd'
20121 d_pwquota='$d_pwquota'
20122 d_qgcvt='$d_qgcvt'
20123 d_quad='$d_quad'
20124 d_random_r='$d_random_r'
20125 d_readdir64_r='$d_readdir64_r'
20126 d_readdir='$d_readdir'
20127 d_readdir_r='$d_readdir_r'
20128 d_readlink='$d_readlink'
20129 d_readv='$d_readv'
20130 d_recvmsg='$d_recvmsg'
20131 d_rename='$d_rename'
20132 d_rewinddir='$d_rewinddir'
20133 d_rmdir='$d_rmdir'
20134 d_safebcpy='$d_safebcpy'
20135 d_safemcpy='$d_safemcpy'
20136 d_sanemcmp='$d_sanemcmp'
20137 d_sbrkproto='$d_sbrkproto'
20138 d_sched_yield='$d_sched_yield'
20139 d_scm_rights='$d_scm_rights'
20140 d_seekdir='$d_seekdir'
20141 d_select='$d_select'
20142 d_sem='$d_sem'
20143 d_semctl='$d_semctl'
20144 d_semctl_semid_ds='$d_semctl_semid_ds'
20145 d_semctl_semun='$d_semctl_semun'
20146 d_semget='$d_semget'
20147 d_semop='$d_semop'
20148 d_sendmsg='$d_sendmsg'
20149 d_setegid='$d_setegid'
20150 d_seteuid='$d_seteuid'
20151 d_setgrent='$d_setgrent'
20152 d_setgrent_r='$d_setgrent_r'
20153 d_setgrps='$d_setgrps'
20154 d_sethent='$d_sethent'
20155 d_sethostent_r='$d_sethostent_r'
20156 d_setitimer='$d_setitimer'
20157 d_setlinebuf='$d_setlinebuf'
20158 d_setlocale='$d_setlocale'
20159 d_setlocale_r='$d_setlocale_r'
20160 d_setnent='$d_setnent'
20161 d_setnetent_r='$d_setnetent_r'
20162 d_setpent='$d_setpent'
20163 d_setpgid='$d_setpgid'
20164 d_setpgrp2='$d_setpgrp2'
20165 d_setpgrp='$d_setpgrp'
20166 d_setprior='$d_setprior'
20167 d_setproctitle='$d_setproctitle'
20168 d_setprotoent_r='$d_setprotoent_r'
20169 d_setpwent='$d_setpwent'
20170 d_setpwent_r='$d_setpwent_r'
20171 d_setregid='$d_setregid'
20172 d_setresgid='$d_setresgid'
20173 d_setresuid='$d_setresuid'
20174 d_setreuid='$d_setreuid'
20175 d_setrgid='$d_setrgid'
20176 d_setruid='$d_setruid'
20177 d_setsent='$d_setsent'
20178 d_setservent_r='$d_setservent_r'
20179 d_setsid='$d_setsid'
20180 d_setvbuf='$d_setvbuf'
20181 d_sfio='$d_sfio'
20182 d_shm='$d_shm'
20183 d_shmat='$d_shmat'
20184 d_shmatprototype='$d_shmatprototype'
20185 d_shmctl='$d_shmctl'
20186 d_shmdt='$d_shmdt'
20187 d_shmget='$d_shmget'
20188 d_sigaction='$d_sigaction'
20189 d_sigprocmask='$d_sigprocmask'
20190 d_sigsetjmp='$d_sigsetjmp'
20191 d_sockatmark='$d_sockatmark'
20192 d_sockatmarkproto='$d_sockatmarkproto'
20193 d_socket='$d_socket'
20194 d_socklen_t='$d_socklen_t'
20195 d_sockpair='$d_sockpair'
20196 d_socks5_init='$d_socks5_init'
20197 d_sqrtl='$d_sqrtl'
20198 d_srand48_r='$d_srand48_r'
20199 d_srandom_r='$d_srandom_r'
20200 d_sresgproto='$d_sresgproto'
20201 d_sresuproto='$d_sresuproto'
20202 d_statblks='$d_statblks'
20203 d_statfs_f_flags='$d_statfs_f_flags'
20204 d_statfs_s='$d_statfs_s'
20205 d_statvfs='$d_statvfs'
20206 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20207 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20208 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20209 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20210 d_stdio_stream_array='$d_stdio_stream_array'
20211 d_stdiobase='$d_stdiobase'
20212 d_stdstdio='$d_stdstdio'
20213 d_strchr='$d_strchr'
20214 d_strcoll='$d_strcoll'
20215 d_strctcpy='$d_strctcpy'
20216 d_strerrm='$d_strerrm'
20217 d_strerror='$d_strerror'
20218 d_strerror_r='$d_strerror_r'
20219 d_strftime='$d_strftime'
20220 d_strtod='$d_strtod'
20221 d_strtol='$d_strtol'
20222 d_strtold='$d_strtold'
20223 d_strtoll='$d_strtoll'
20224 d_strtoq='$d_strtoq'
20225 d_strtoul='$d_strtoul'
20226 d_strtoull='$d_strtoull'
20227 d_strtouq='$d_strtouq'
20228 d_strxfrm='$d_strxfrm'
20229 d_suidsafe='$d_suidsafe'
20230 d_symlink='$d_symlink'
20231 d_syscall='$d_syscall'
20232 d_syscallproto='$d_syscallproto'
20233 d_sysconf='$d_sysconf'
20234 d_sysernlst='$d_sysernlst'
20235 d_syserrlst='$d_syserrlst'
20236 d_system='$d_system'
20237 d_tcgetpgrp='$d_tcgetpgrp'
20238 d_tcsetpgrp='$d_tcsetpgrp'
20239 d_telldir='$d_telldir'
20240 d_telldirproto='$d_telldirproto'
20241 d_time='$d_time'
20242 d_times='$d_times'
20243 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20244 d_tm_tm_zone='$d_tm_tm_zone'
20245 d_tmpnam_r='$d_tmpnam_r'
20246 d_truncate='$d_truncate'
20247 d_ttyname_r='$d_ttyname_r'
20248 d_tzname='$d_tzname'
20249 d_u32align='$d_u32align'
20250 d_ualarm='$d_ualarm'
20251 d_umask='$d_umask'
20252 d_uname='$d_uname'
20253 d_union_semun='$d_union_semun'
20254 d_unordered='$d_unordered'
20255 d_usleep='$d_usleep'
20256 d_usleepproto='$d_usleepproto'
20257 d_ustat='$d_ustat'
20258 d_vendorarch='$d_vendorarch'
20259 d_vendorbin='$d_vendorbin'
20260 d_vendorlib='$d_vendorlib'
20261 d_vfork='$d_vfork'
20262 d_void_closedir='$d_void_closedir'
20263 d_voidsig='$d_voidsig'
20264 d_voidtty='$d_voidtty'
20265 d_volatile='$d_volatile'
20266 d_vprintf='$d_vprintf'
20267 d_wait4='$d_wait4'
20268 d_waitpid='$d_waitpid'
20269 d_wcstombs='$d_wcstombs'
20270 d_wctomb='$d_wctomb'
20271 d_writev='$d_writev'
20272 d_xenix='$d_xenix'
20273 date='$date'
20274 db_hashtype='$db_hashtype'
20275 db_prefixtype='$db_prefixtype'
20276 db_version_major='$db_version_major'
20277 db_version_minor='$db_version_minor'
20278 db_version_patch='$db_version_patch'
20279 defvoidused='$defvoidused'
20280 direntrytype='$direntrytype'
20281 dlext='$dlext'
20282 dlsrc='$dlsrc'
20283 doublesize='$doublesize'
20284 drand01='$drand01'
20285 drand48_r_proto='$drand48_r_proto'
20286 dynamic_ext='$dynamic_ext'
20287 eagain='$eagain'
20288 ebcdic='$ebcdic'
20289 echo='$echo'
20290 egrep='$egrep'
20291 emacs='$emacs'
20292 endgrent_r_proto='$endgrent_r_proto'
20293 endhostent_r_proto='$endhostent_r_proto'
20294 endnetent_r_proto='$endnetent_r_proto'
20295 endprotoent_r_proto='$endprotoent_r_proto'
20296 endpwent_r_proto='$endpwent_r_proto'
20297 endservent_r_proto='$endservent_r_proto'
20298 eunicefix='$eunicefix'
20299 exe_ext='$exe_ext'
20300 expr='$expr'
20301 extensions='$extensions'
20302 extras='$extras'
20303 fflushNULL='$fflushNULL'
20304 fflushall='$fflushall'
20305 find='$find'
20306 firstmakefile='$firstmakefile'
20307 flex='$flex'
20308 fpossize='$fpossize'
20309 fpostype='$fpostype'
20310 freetype='$freetype'
20311 from='$from'
20312 full_ar='$full_ar'
20313 full_csh='$full_csh'
20314 full_sed='$full_sed'
20315 gccosandvers='$gccosandvers'
20316 gccversion='$gccversion'
20317 getgrent_r_proto='$getgrent_r_proto'
20318 getgrgid_r_proto='$getgrgid_r_proto'
20319 getgrnam_r_proto='$getgrnam_r_proto'
20320 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
20321 gethostbyname_r_proto='$gethostbyname_r_proto'
20322 gethostent_r_proto='$gethostent_r_proto'
20323 getlogin_r_proto='$getlogin_r_proto'
20324 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
20325 getnetbyname_r_proto='$getnetbyname_r_proto'
20326 getnetent_r_proto='$getnetent_r_proto'
20327 getprotobyname_r_proto='$getprotobyname_r_proto'
20328 getprotobynumber_r_proto='$getprotobynumber_r_proto'
20329 getprotoent_r_proto='$getprotoent_r_proto'
20330 getpwent_r_proto='$getpwent_r_proto'
20331 getpwnam_r_proto='$getpwnam_r_proto'
20332 getpwuid_r_proto='$getpwuid_r_proto'
20333 getservbyname_r_proto='$getservbyname_r_proto'
20334 getservbyport_r_proto='$getservbyport_r_proto'
20335 getservent_r_proto='$getservent_r_proto'
20336 getspnam_r_proto='$getspnam_r_proto'
20337 gidformat='$gidformat'
20338 gidsign='$gidsign'
20339 gidsize='$gidsize'
20340 gidtype='$gidtype'
20341 glibpth='$glibpth'
20342 gmake='$gmake'
20343 gmtime_r_proto='$gmtime_r_proto'
20344 grep='$grep'
20345 groupcat='$groupcat'
20346 groupstype='$groupstype'
20347 gzip='$gzip'
20348 h_fcntl='$h_fcntl'
20349 h_sysfile='$h_sysfile'
20350 hint='$hint'
20351 hostcat='$hostcat'
20352 i16size='$i16size'
20353 i16type='$i16type'
20354 i32size='$i32size'
20355 i32type='$i32type'
20356 i64size='$i64size'
20357 i64type='$i64type'
20358 i8size='$i8size'
20359 i8type='$i8type'
20360 i_arpainet='$i_arpainet'
20361 i_bsdioctl='$i_bsdioctl'
20362 i_crypt='$i_crypt'
20363 i_db='$i_db'
20364 i_dbm='$i_dbm'
20365 i_dirent='$i_dirent'
20366 i_dld='$i_dld'
20367 i_dlfcn='$i_dlfcn'
20368 i_fcntl='$i_fcntl'
20369 i_float='$i_float'
20370 i_fp='$i_fp'
20371 i_fp_class='$i_fp_class'
20372 i_gdbm='$i_gdbm'
20373 i_grp='$i_grp'
20374 i_ieeefp='$i_ieeefp'
20375 i_inttypes='$i_inttypes'
20376 i_langinfo='$i_langinfo'
20377 i_libutil='$i_libutil'
20378 i_limits='$i_limits'
20379 i_locale='$i_locale'
20380 i_machcthr='$i_machcthr'
20381 i_malloc='$i_malloc'
20382 i_math='$i_math'
20383 i_memory='$i_memory'
20384 i_mntent='$i_mntent'
20385 i_ndbm='$i_ndbm'
20386 i_netdb='$i_netdb'
20387 i_neterrno='$i_neterrno'
20388 i_netinettcp='$i_netinettcp'
20389 i_niin='$i_niin'
20390 i_poll='$i_poll'
20391 i_prot='$i_prot'
20392 i_pthread='$i_pthread'
20393 i_pwd='$i_pwd'
20394 i_rpcsvcdbm='$i_rpcsvcdbm'
20395 i_sfio='$i_sfio'
20396 i_sgtty='$i_sgtty'
20397 i_shadow='$i_shadow'
20398 i_socks='$i_socks'
20399 i_stdarg='$i_stdarg'
20400 i_stddef='$i_stddef'
20401 i_stdlib='$i_stdlib'
20402 i_string='$i_string'
20403 i_sunmath='$i_sunmath'
20404 i_sysaccess='$i_sysaccess'
20405 i_sysdir='$i_sysdir'
20406 i_sysfile='$i_sysfile'
20407 i_sysfilio='$i_sysfilio'
20408 i_sysin='$i_sysin'
20409 i_sysioctl='$i_sysioctl'
20410 i_syslog='$i_syslog'
20411 i_sysmman='$i_sysmman'
20412 i_sysmode='$i_sysmode'
20413 i_sysmount='$i_sysmount'
20414 i_sysndir='$i_sysndir'
20415 i_sysparam='$i_sysparam'
20416 i_sysresrc='$i_sysresrc'
20417 i_syssecrt='$i_syssecrt'
20418 i_sysselct='$i_sysselct'
20419 i_syssockio='$i_syssockio'
20420 i_sysstat='$i_sysstat'
20421 i_sysstatfs='$i_sysstatfs'
20422 i_sysstatvfs='$i_sysstatvfs'
20423 i_systime='$i_systime'
20424 i_systimek='$i_systimek'
20425 i_systimes='$i_systimes'
20426 i_systypes='$i_systypes'
20427 i_sysuio='$i_sysuio'
20428 i_sysun='$i_sysun'
20429 i_sysutsname='$i_sysutsname'
20430 i_sysvfs='$i_sysvfs'
20431 i_syswait='$i_syswait'
20432 i_termio='$i_termio'
20433 i_termios='$i_termios'
20434 i_time='$i_time'
20435 i_unistd='$i_unistd'
20436 i_ustat='$i_ustat'
20437 i_utime='$i_utime'
20438 i_values='$i_values'
20439 i_varargs='$i_varargs'
20440 i_varhdr='$i_varhdr'
20441 i_vfork='$i_vfork'
20442 ignore_versioned_solibs='$ignore_versioned_solibs'
20443 inc_version_list='$inc_version_list'
20444 inc_version_list_init='$inc_version_list_init'
20445 incpath='$incpath'
20446 inews='$inews'
20447 installarchlib='$installarchlib'
20448 installbin='$installbin'
20449 installman1dir='$installman1dir'
20450 installman3dir='$installman3dir'
20451 installprefix='$installprefix'
20452 installprefixexp='$installprefixexp'
20453 installprivlib='$installprivlib'
20454 installscript='$installscript'
20455 installsitearch='$installsitearch'
20456 installsitebin='$installsitebin'
20457 installsitelib='$installsitelib'
20458 installstyle='$installstyle'
20459 installusrbinperl='$installusrbinperl'
20460 installvendorarch='$installvendorarch'
20461 installvendorbin='$installvendorbin'
20462 installvendorlib='$installvendorlib'
20463 intsize='$intsize'
20464 issymlink='$issymlink'
20465 ivdformat='$ivdformat'
20466 ivsize='$ivsize'
20467 ivtype='$ivtype'
20468 known_extensions='$known_extensions'
20469 ksh='$ksh'
20470 ld='$ld'
20471 lddlflags='$lddlflags'
20472 ldflags='$ldflags'
20473 ldflags_uselargefiles='$ldflags_uselargefiles'
20474 ldlibpthname='$ldlibpthname'
20475 less='$less'
20476 lib_ext='$lib_ext'
20477 libc='$libc'
20478 libperl='$libperl'
20479 libpth='$libpth'
20480 libs='$libs'
20481 libsdirs='$libsdirs'
20482 libsfiles='$libsfiles'
20483 libsfound='$libsfound'
20484 libspath='$libspath'
20485 libswanted='$libswanted'
20486 libswanted_uselargefiles='$libswanted_uselargefiles'
20487 line='$line'
20488 lint='$lint'
20489 lkflags='$lkflags'
20490 ln='$ln'
20491 lns='$lns'
20492 localtime_r_proto='$localtime_r_proto'
20493 locincpth='$locincpth'
20494 loclibpth='$loclibpth'
20495 longdblsize='$longdblsize'
20496 longlongsize='$longlongsize'
20497 longsize='$longsize'
20498 lp='$lp'
20499 lpr='$lpr'
20500 ls='$ls'
20501 lseeksize='$lseeksize'
20502 lseektype='$lseektype'
20503 mail='$mail'
20504 mailx='$mailx'
20505 make='$make'
20506 make_set_make='$make_set_make'
20507 mallocobj='$mallocobj'
20508 mallocsrc='$mallocsrc'
20509 malloctype='$malloctype'
20510 man1dir='$man1dir'
20511 man1direxp='$man1direxp'
20512 man1ext='$man1ext'
20513 man3dir='$man3dir'
20514 man3direxp='$man3direxp'
20515 man3ext='$man3ext'
20516 mips_type='$mips_type'
20517 mkdir='$mkdir'
20518 mmaptype='$mmaptype'
20519 modetype='$modetype'
20520 more='$more'
20521 multiarch='$multiarch'
20522 mv='$mv'
20523 myarchname='$myarchname'
20524 mydomain='$mydomain'
20525 myhostname='$myhostname'
20526 myuname='$myuname'
20527 n='$n'
20528 need_va_copy='$need_va_copy'
20529 netdb_hlen_type='$netdb_hlen_type'
20530 netdb_host_type='$netdb_host_type'
20531 netdb_name_type='$netdb_name_type'
20532 netdb_net_type='$netdb_net_type'
20533 nm='$nm'
20534 nm_opt='$nm_opt'
20535 nm_so_opt='$nm_so_opt'
20536 nonxs_ext='$nonxs_ext'
20537 nroff='$nroff'
20538 nvEUformat='$nvEUformat'
20539 nvFUformat='$nvFUformat'
20540 nvGUformat='$nvGUformat'
20541 nv_preserves_uv_bits='$nv_preserves_uv_bits'
20542 nveformat='$nveformat'
20543 nvfformat='$nvfformat'
20544 nvgformat='$nvgformat'
20545 nvsize='$nvsize'
20546 nvtype='$nvtype'
20547 o_nonblock='$o_nonblock'
20548 obj_ext='$obj_ext'
20549 old_pthread_create_joinable='$old_pthread_create_joinable'
20550 optimize='$optimize'
20551 orderlib='$orderlib'
20552 osname='$osname'
20553 osvers='$osvers'
20554 otherlibdirs='$otherlibdirs'
20555 package='$package'
20556 pager='$pager'
20557 passcat='$passcat'
20558 patchlevel='$patchlevel'
20559 path_sep='$path_sep'
20560 perl5='$perl5'
20561 perl='$perl'
20562 perl_patchlevel='$perl_patchlevel'
20563 perladmin='$perladmin'
20564 perllibs='$perllibs'
20565 perlpath='$perlpath'
20566 pg='$pg'
20567 phostname='$phostname'
20568 pidtype='$pidtype'
20569 plibpth='$plibpth'
20570 pm_apiversion='$pm_apiversion'
20571 pmake='$pmake'
20572 pr='$pr'
20573 prefix='$prefix'
20574 prefixexp='$prefixexp'
20575 privlib='$privlib'
20576 privlibexp='$privlibexp'
20577 procselfexe='$procselfexe'
20578 prototype='$prototype'
20579 ptrsize='$ptrsize'
20580 quadkind='$quadkind'
20581 quadtype='$quadtype'
20582 randbits='$randbits'
20583 randfunc='$randfunc'
20584 random_r_proto='$random_r_proto'
20585 randseedtype='$randseedtype'
20586 ranlib='$ranlib'
20587 rd_nodata='$rd_nodata'
20588 readdir64_r_proto='$readdir64_r_proto'
20589 readdir_r_proto='$readdir_r_proto'
20590 revision='$revision'
20591 rm='$rm'
20592 rmail='$rmail'
20593 run='$run'
20594 runnm='$runnm'
20595 sPRIEUldbl='$sPRIEUldbl'
20596 sPRIFUldbl='$sPRIFUldbl'
20597 sPRIGUldbl='$sPRIGUldbl'
20598 sPRIXU64='$sPRIXU64'
20599 sPRId64='$sPRId64'
20600 sPRIeldbl='$sPRIeldbl'
20601 sPRIfldbl='$sPRIfldbl'
20602 sPRIgldbl='$sPRIgldbl'
20603 sPRIi64='$sPRIi64'
20604 sPRIo64='$sPRIo64'
20605 sPRIu64='$sPRIu64'
20606 sPRIx64='$sPRIx64'
20607 sSCNfldbl='$sSCNfldbl'
20608 sched_yield='$sched_yield'
20609 scriptdir='$scriptdir'
20610 scriptdirexp='$scriptdirexp'
20611 sed='$sed'
20612 seedfunc='$seedfunc'
20613 selectminbits='$selectminbits'
20614 selecttype='$selecttype'
20615 sendmail='$sendmail'
20616 setgrent_r_proto='$setgrent_r_proto'
20617 sethostent_r_proto='$sethostent_r_proto'
20618 setlocale_r_proto='$setlocale_r_proto'
20619 setnetent_r_proto='$setnetent_r_proto'
20620 setprotoent_r_proto='$setprotoent_r_proto'
20621 setpwent_r_proto='$setpwent_r_proto'
20622 setservent_r_proto='$setservent_r_proto'
20623 sh='$sh'
20624 shar='$shar'
20625 sharpbang='$sharpbang'
20626 shmattype='$shmattype'
20627 shortsize='$shortsize'
20628 shrpenv='$shrpenv'
20629 shsharp='$shsharp'
20630 sig_count='$sig_count'
20631 sig_name='$sig_name'
20632 sig_name_init='$sig_name_init'
20633 sig_num='$sig_num'
20634 sig_num_init='$sig_num_init'
20635 sig_size='$sig_size'
20636 signal_t='$signal_t'
20637 sitearch='$sitearch'
20638 sitearchexp='$sitearchexp'
20639 sitebin='$sitebin'
20640 sitebinexp='$sitebinexp'
20641 sitelib='$sitelib'
20642 sitelib_stem='$sitelib_stem'
20643 sitelibexp='$sitelibexp'
20644 siteprefix='$siteprefix'
20645 siteprefixexp='$siteprefixexp'
20646 sizesize='$sizesize'
20647 sizetype='$sizetype'
20648 sleep='$sleep'
20649 smail='$smail'
20650 so='$so'
20651 sockethdr='$sockethdr'
20652 socketlib='$socketlib'
20653 socksizetype='$socksizetype'
20654 sort='$sort'
20655 spackage='$spackage'
20656 spitshell='$spitshell'
20657 srand48_r_proto='$srand48_r_proto'
20658 srandom_r_proto='$srandom_r_proto'
20659 src='$src'
20660 ssizetype='$ssizetype'
20661 startperl='$startperl'
20662 startsh='$startsh'
20663 static_ext='$static_ext'
20664 stdchar='$stdchar'
20665 stdio_base='$stdio_base'
20666 stdio_bufsiz='$stdio_bufsiz'
20667 stdio_cnt='$stdio_cnt'
20668 stdio_filbuf='$stdio_filbuf'
20669 stdio_ptr='$stdio_ptr'
20670 stdio_stream_array='$stdio_stream_array'
20671 strerror_r_proto='$strerror_r_proto'
20672 strings='$strings'
20673 submit='$submit'
20674 subversion='$subversion'
20675 sysman='$sysman'
20676 tail='$tail'
20677 tar='$tar'
20678 targetarch='$targetarch'
20679 tbl='$tbl'
20680 tee='$tee'
20681 test='$test'
20682 timeincl='$timeincl'
20683 timetype='$timetype'
20684 tmpnam_r_proto='$tmpnam_r_proto'
20685 to='$to'
20686 touch='$touch'
20687 tr='$tr'
20688 trnl='$trnl'
20689 troff='$troff'
20690 ttyname_r_proto='$ttyname_r_proto'
20691 u16size='$u16size'
20692 u16type='$u16type'
20693 u32size='$u32size'
20694 u32type='$u32type'
20695 u64size='$u64size'
20696 u64type='$u64type'
20697 u8size='$u8size'
20698 u8type='$u8type'
20699 uidformat='$uidformat'
20700 uidsign='$uidsign'
20701 uidsize='$uidsize'
20702 uidtype='$uidtype'
20703 uname='$uname'
20704 uniq='$uniq'
20705 uquadtype='$uquadtype'
20706 use5005threads='$use5005threads'
20707 use64bitall='$use64bitall'
20708 use64bitint='$use64bitint'
20709 usecrosscompile='$usecrosscompile'
20710 usedl='$usedl'
20711 useithreads='$useithreads'
20712 uselargefiles='$uselargefiles'
20713 uselongdouble='$uselongdouble'
20714 usemorebits='$usemorebits'
20715 usemultiplicity='$usemultiplicity'
20716 usemymalloc='$usemymalloc'
20717 usenm='$usenm'
20718 useopcode='$useopcode'
20719 useperlio='$useperlio'
20720 useposix='$useposix'
20721 usereentrant='$usereentrant'
20722 usesfio='$usesfio'
20723 useshrplib='$useshrplib'
20724 usesocks='$usesocks'
20725 usethreads='$usethreads'
20726 usevendorprefix='$usevendorprefix'
20727 usevfork='$usevfork'
20728 usrinc='$usrinc'
20729 uuname='$uuname'
20730 uvXUformat='$uvXUformat'
20731 uvoformat='$uvoformat'
20732 uvsize='$uvsize'
20733 uvtype='$uvtype'
20734 uvuformat='$uvuformat'
20735 uvxformat='$uvxformat'
20736 vendorarch='$vendorarch'
20737 vendorarchexp='$vendorarchexp'
20738 vendorbin='$vendorbin'
20739 vendorbinexp='$vendorbinexp'
20740 vendorlib='$vendorlib'
20741 vendorlib_stem='$vendorlib_stem'
20742 vendorlibexp='$vendorlibexp'
20743 vendorprefix='$vendorprefix'
20744 vendorprefixexp='$vendorprefixexp'
20745 version='$version'
20746 version_patchlevel_string='$version_patchlevel_string'
20747 versiononly='$versiononly'
20748 vi='$vi'
20749 voidflags='$voidflags'
20750 xlibpth='$xlibpth'
20751 xs_apiversion='$xs_apiversion'
20752 yacc='$yacc'
20753 yaccflags='$yaccflags'
20754 zcat='$zcat'
20755 zip='$zip'
20756 EOT
20757
20758 : Add in command line options if available
20759 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
20760
20761 : add special variables
20762 $test -f $src/patchlevel.h && \
20763 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
20764 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
20765 echo "PERL_CONFIG_SH=true" >>config.sh
20766
20767 : propagate old symbols
20768 if $test -f UU/config.sh; then
20769         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
20770         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
20771         $sort | $uniq -u >UU/oldsyms
20772         set X `cat UU/oldsyms`
20773         shift
20774         case $# in
20775         0) ;;
20776         *)
20777                 cat <<EOM
20778 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
20779 EOM
20780                 echo "# Variables propagated from previous config.sh file." >>config.sh
20781                 for sym in `cat UU/oldsyms`; do
20782                         echo "    Propagating $hint variable "'$'"$sym..."
20783                         eval 'tmp="$'"${sym}"'"'
20784                         echo "$tmp" | \
20785                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
20786                 done
20787                 ;;
20788         esac
20789 fi
20790
20791 : Finish up by extracting the .SH files
20792 case "$alldone" in
20793 exit)
20794         $rm -rf UU
20795         echo "Extraction done."
20796         exit 0
20797         ;;
20798 cont)
20799         ;;
20800 '')
20801         dflt=''
20802         nostick=true
20803         $cat <<EOM
20804
20805 If you'd like to make any changes to the config.sh file before I begin
20806 to configure things, do it as a shell escape now (e.g. !vi config.sh).
20807
20808 EOM
20809         rp="Press return or use a shell escape to edit config.sh:"
20810         . UU/myread
20811         nostick=''
20812         case "$ans" in
20813         '') ;;
20814         *) : in case they cannot read
20815                 sh 1>&4 -c "$ans";;
20816         esac
20817         ;;
20818 esac
20819
20820 : if this fails, just run all the .SH files by hand
20821 . ./config.sh
20822
20823 echo " "
20824 exec 1>&4
20825 pwd=`pwd`
20826 . ./UU/extract
20827 cd "$pwd"
20828
20829 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
20830         dflt=y
20831         case "$silent" in
20832         true) ;;
20833         *)
20834                 $cat <<EOM
20835
20836 Now you need to generate make dependencies by running "$make depend".
20837 You might prefer to run it in background: "$make depend > makedepend.out &"
20838 It can take a while, so you might not want to run it right now.
20839
20840 EOM
20841                 ;;
20842         esac
20843         rp="Run $make depend now?"
20844         . UU/myread
20845         case "$ans" in
20846         y*)
20847                 $make depend && echo "Now you must run '$make'."
20848                 ;;
20849         *)
20850                 echo "You must run '$make depend' then '$make'."
20851                 ;;
20852         esac
20853 elif test -f [Mm]akefile; then
20854         echo " "
20855         echo "Now you must run a $make."
20856 else
20857         echo "Configure done."
20858 fi
20859
20860 if $test -f Policy.sh; then
20861     $cat <<EOM
20862
20863 If you compile $package on a different machine or from a different object
20864 directory, copy the Policy.sh file from this object directory to the
20865 new one before you run Configure -- this will help you with most of
20866 the policy defaults.
20867
20868 EOM
20869 fi
20870 if $test -f config.msg; then
20871     echo "Hmm.  I also noted the following information while running:"
20872     echo " "
20873     $cat config.msg >&4
20874     $rm -f config.msg
20875 fi
20876 $rm -f kit*isdone ark*isdone
20877 $rm -rf UU
20878
20879 : End of Configure
20880