bignum-0.12 updates from:
[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 Thu Aug  1 18:53:48 CEST 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 byteorder=''
305 cc=''
306 ccflags=''
307 cppflags=''
308 ldflags=''
309 lkflags=''
310 locincpth=''
311 optimize=''
312 cf_email=''
313 cf_by=''
314 cf_time=''
315 charsize=''
316 contains=''
317 cpp_stuff=''
318 cpplast=''
319 cppminus=''
320 cpprun=''
321 cppstdin=''
322 d__fwalk=''
323 d_access=''
324 d_accessx=''
325 d_alarm=''
326 asctime_r_proto=''
327 d_asctime_r=''
328 d_attribut=''
329 d_bcmp=''
330 d_bcopy=''
331 d_bzero=''
332 d_casti32=''
333 castflags=''
334 d_castneg=''
335 d_chown=''
336 d_chroot=''
337 d_chsize=''
338 d_class=''
339 d_closedir=''
340 d_void_closedir=''
341 d_cmsghdr_s=''
342 d_const=''
343 cryptlib=''
344 d_crypt=''
345 crypt_r_proto=''
346 d_crypt_r=''
347 d_csh=''
348 full_csh=''
349 ctermid_r_proto=''
350 d_ctermid_r=''
351 ctime_r_proto=''
352 d_ctime_r=''
353 d_cuserid=''
354 d_dbl_dig=''
355 d_dbminitproto=''
356 d_difftime=''
357 d_dirfd=''
358 d_dlerror=''
359 d_dlopen=''
360 d_dlsymun=''
361 d_dosuid=''
362 d_suidsafe=''
363 d_drand48_r=''
364 drand48_r_proto=''
365 d_drand48proto=''
366 d_dup2=''
367 d_eaccess=''
368 d_endgrent=''
369 d_endgrent_r=''
370 endgrent_r_proto=''
371 d_endhent=''
372 d_endhostent_r=''
373 endhostent_r_proto=''
374 d_endnent=''
375 d_endnetent_r=''
376 endnetent_r_proto=''
377 d_endpent=''
378 d_endprotoent_r=''
379 endprotoent_r_proto=''
380 d_endpwent=''
381 d_endpwent_r=''
382 endpwent_r_proto=''
383 d_endsent=''
384 d_endservent_r=''
385 endservent_r_proto=''
386 d_fchdir=''
387 d_fchmod=''
388 d_fchown=''
389 d_fcntl=''
390 d_fcntl_can_lock=''
391 d_fd_macros=''
392 d_fd_set=''
393 d_fds_bits=''
394 d_fgetpos=''
395 d_finite=''
396 d_finitel=''
397 d_flexfnam=''
398 d_flock=''
399 d_flockproto=''
400 d_fork=''
401 d_fp_class=''
402 d_fpclass=''
403 d_fpclassify=''
404 d_fpclassl=''
405 d_fpos64_t=''
406 d_frexpl=''
407 d_fs_data_s=''
408 d_fseeko=''
409 d_fsetpos=''
410 d_fstatfs=''
411 d_fsync=''
412 d_ftello=''
413 d_ftime=''
414 d_gettimeod=''
415 d_Gconvert=''
416 d_getcwd=''
417 d_getespwnam=''
418 d_getfsstat=''
419 d_getgrent=''
420 d_getgrent_r=''
421 getgrent_r_proto=''
422 d_getgrgid_r=''
423 getgrgid_r_proto=''
424 d_getgrnam_r=''
425 getgrnam_r_proto=''
426 d_getgrps=''
427 d_gethbyaddr=''
428 d_gethbyname=''
429 d_gethent=''
430 aphostname=''
431 d_gethname=''
432 d_phostname=''
433 d_uname=''
434 d_gethostbyaddr_r=''
435 gethostbyaddr_r_proto=''
436 d_gethostbyname_r=''
437 gethostbyname_r_proto=''
438 d_gethostent_r=''
439 gethostent_r_proto=''
440 d_gethostprotos=''
441 d_getitimer=''
442 d_getlogin=''
443 d_getlogin_r=''
444 getlogin_r_proto=''
445 d_getmnt=''
446 d_getmntent=''
447 d_getnbyaddr=''
448 d_getnbyname=''
449 d_getnent=''
450 d_getnetbyaddr_r=''
451 getnetbyaddr_r_proto=''
452 d_getnetbyname_r=''
453 getnetbyname_r_proto=''
454 d_getnetent_r=''
455 getnetent_r_proto=''
456 d_getnetprotos=''
457 d_getpagsz=''
458 d_getpent=''
459 d_getpgid=''
460 d_getpgrp2=''
461 d_bsdgetpgrp=''
462 d_getpgrp=''
463 d_getppid=''
464 d_getprior=''
465 d_getpbyname=''
466 d_getpbynumber=''
467 d_getprotobyname_r=''
468 getprotobyname_r_proto=''
469 d_getprotobynumber_r=''
470 getprotobynumber_r_proto=''
471 d_getprotoent_r=''
472 getprotoent_r_proto=''
473 d_getprotoprotos=''
474 d_getprpwnam=''
475 d_getpwent=''
476 d_getpwent_r=''
477 getpwent_r_proto=''
478 d_getpwnam_r=''
479 getpwnam_r_proto=''
480 d_getpwuid_r=''
481 getpwuid_r_proto=''
482 d_getsent=''
483 d_getservbyname_r=''
484 getservbyname_r_proto=''
485 d_getservbyport_r=''
486 getservbyport_r_proto=''
487 d_getservent_r=''
488 getservent_r_proto=''
489 d_getservprotos=''
490 d_getspnam=''
491 d_getspnam_r=''
492 getspnam_r_proto=''
493 d_getsbyname=''
494 d_getsbyport=''
495 d_gmtime_r=''
496 gmtime_r_proto=''
497 d_gnulibc=''
498 gnulibc_version=''
499 d_hasmntopt=''
500 d_htonl=''
501 d_inetaton=''
502 d_int64_t=''
503 d_isascii=''
504 d_isfinite=''
505 d_isinf=''
506 d_isnan=''
507 d_isnanl=''
508 d_killpg=''
509 d_lchown=''
510 d_ldbl_dig=''
511 d_link=''
512 d_localtime_r=''
513 localtime_r_proto=''
514 d_locconv=''
515 d_lockf=''
516 d_longdbl=''
517 longdblsize=''
518 d_longlong=''
519 longlongsize=''
520 d_lseekproto=''
521 d_lstat=''
522 d_madvise=''
523 d_mblen=''
524 d_mbstowcs=''
525 d_mbtowc=''
526 d_memchr=''
527 d_memcmp=''
528 d_memcpy=''
529 d_memmove=''
530 d_memset=''
531 d_mkdir=''
532 d_mkdtemp=''
533 d_mkfifo=''
534 d_mkstemp=''
535 d_mkstemps=''
536 d_mktime=''
537 d_mmap=''
538 mmaptype=''
539 d_modfl=''
540 d_modfl_pow32_bug=''
541 d_modflproto=''
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 : Possible local include directories to search.
1155 : Set locincpth to "" in a hint file to defeat local include searches.
1156 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1157 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1158 :
1159 : no include file wanted by default
1160 inclwanted=''
1161
1162 : Trailing extension.  Override this in a hint file, if needed.
1163 : Extra object files, if any, needed on this platform.
1164 archobjs=''
1165 groupstype=''
1166 libnames=''
1167 : change the next line if compiling for Xenix/286 on Xenix/386
1168 xlibpth='/usr/lib/386 /lib/386'
1169 : Possible local library directories to search.
1170 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1171 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1172
1173 : general looking path for locating libraries
1174 glibpth="/lib /usr/lib $xlibpth"
1175 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1176 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1177 test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1178
1179 : Private path used by Configure to find libraries.  Its value
1180 : is prepended to libpth. This variable takes care of special
1181 : machines, like the mips.  Usually, it should be empty.
1182 plibpth=''
1183
1184 : default library list
1185 libswanted=''
1186 : some systems want to use only the non-versioned libso:s
1187 ignore_versioned_solibs=''
1188 : full support for void wanted by default
1189 defvoidused=15
1190
1191 ccname=''
1192 ccversion=''
1193 perllibs=''
1194 : set useposix=false in your hint file to disable the POSIX extension.
1195 useposix=true
1196 : set useopcode=false in your hint file to disable the Opcode extension.
1197 useopcode=true
1198 archname64=''
1199 ccflags_uselargefiles=''
1200 ldflags_uselargefiles=''
1201 libswanted_uselargefiles=''
1202 : set usemultiplicity on the Configure command line to enable multiplicity.
1203 : set usesocks on the Configure command line to enable socks.
1204 archname=''
1205 : set usethreads on the Configure command line to enable threads.
1206 usereentrant='undef'
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        case "`echo foo|tr '\r\n' xy 2>/dev/null`" in
1864        fooxy) trnl='\n\r' ;;
1865        esac
1866 fi
1867 if test X"$trnl" = X; then
1868         cat <<EOM >&2
1869
1870 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1871
1872 EOM
1873         exit 1
1874 fi
1875
1876 : compute the number of columns on the terminal for proper question formatting
1877 case "$COLUMNS" in
1878 '') COLUMNS='80';;
1879 esac
1880
1881 : set up the echo used in my read
1882 myecho="case \"\$xxxm\" in
1883 '') echo $n \"\$rp $c\" >&4;;
1884 *) case \"\$rp\" in
1885         '') echo $n \"[\$xxxm] $c\";;
1886         *)
1887                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
1888                         echo \"\$rp\" >&4
1889                         echo $n \"[\$xxxm] $c\" >&4
1890                 else
1891                         echo $n \"\$rp [\$xxxm] $c\" >&4
1892                 fi
1893                 ;;
1894         esac;;
1895 esac"
1896
1897 : now set up to do reads with possible shell escape and default assignment
1898 cat <<EOSC >myread
1899 $startsh
1900 xxxm=\$dflt
1901 $myecho
1902 ans='!'
1903 case "\$fastread" in
1904 yes) case "\$dflt" in
1905         '') ;;
1906         *) ans='';
1907                 case "\$silent-\$rp" in
1908                 true-) ;;
1909                 *) echo " " >&4;;
1910                 esac;;
1911         esac;;
1912 *) case "\$silent" in
1913         true) case "\$rp" in
1914                 '') ans='';;
1915                 esac;;
1916         esac;;
1917 esac
1918 while expr "X\$ans" : "X!" >/dev/null; do
1919         read answ
1920         set x \$xxxm
1921         shift
1922         aok=''; eval "ans=\\"\$answ\\"" && aok=y
1923         case  "\$answ" in
1924         "!")
1925                 sh 1>&4
1926                 echo " "
1927                 $myecho
1928                 ;;
1929         !*)
1930                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
1931                 shift
1932                 sh 1>&4 -c "\$*"
1933                 echo " "
1934                 $myecho
1935                 ;;
1936         "\$ans")
1937                 case "\$ans" in
1938                 \\&*)
1939                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
1940                         shift
1941                         case "\$1" in
1942                         -d)
1943                                 fastread=yes
1944                                 echo "(OK, I'll run with -d after this question.)" >&4
1945                                 ;;
1946                         -*)
1947                                 echo "*** Sorry, \$1 not supported yet." >&4
1948                                 ;;
1949                         esac
1950                         $myecho
1951                         ans=!
1952                         ;;
1953                 esac;;
1954         *)
1955                 case "\$aok" in
1956                 y)
1957                         echo "*** Substitution done -- please confirm."
1958                         xxxm="\$ans"
1959                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
1960                         xxxm="\$ans"
1961                         ans=!
1962                         ;;
1963                 *)
1964                         echo "*** Error -- try again."
1965                         ans=!
1966                         ;;
1967                 esac
1968                 $myecho
1969                 ;;
1970         esac
1971         case "\$ans\$xxxm\$nostick" in
1972         '')
1973                 ans=!
1974                 $myecho
1975                 ;;
1976         esac
1977 done
1978 case "\$ans" in
1979 '') ans="\$xxxm";;
1980 esac
1981 EOSC
1982
1983 : create .config dir to save info across Configure sessions
1984 test -d ../.config || mkdir ../.config
1985 cat >../.config/README <<EOF
1986 This directory created by Configure to save information that should
1987 persist across sessions for $package.
1988
1989 You may safely delete it if you wish.
1990 EOF
1991
1992 xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
1993 case "$usedevel" in
1994 $define|true|[yY]*) ;;
1995 *) case "$xversion" in
1996    *[13579])
1997         cat >&4 <<EOH
1998 *** WHOA THERE!!! ***
1999
2000     This is an UNSTABLE DEVELOPMENT release.
2001     The version of this $package distribution is $xversion, that is, odd,
2002     (as opposed to even) and that signifies a development release.
2003     If you want a maintenance release, you want an even-numbered version.
2004
2005     Do ***NOT*** install this into production use.
2006     Data corruption and crashes are possible.
2007
2008     It is most seriously suggested that you do not continue any further
2009     unless you want to help in developing and debugging Perl.
2010
2011     If you *still* want to build perl, you can answer 'y' now,
2012     or pass -Dusedevel to Configure.
2013
2014 EOH
2015         rp='Do you really want to continue?'
2016         dflt='n'
2017         . ./myread
2018         case "$ans" in
2019         [yY]) echo >&4 "Okay, continuing."
2020               usedevel="$define" ;;
2021         *) echo >&4 "Okay, bye."
2022            exit 1
2023            ;;
2024         esac
2025         ;;
2026     esac
2027     ;;
2028 esac
2029 case "$usedevel" in
2030 $define|true|[yY]*)
2031         case "$versiononly" in
2032         '') versiononly="$define" ;;
2033         esac
2034         case "$installusrbinperl" in
2035         '') installusrbinperl="$undef" ;;
2036         esac
2037         ;;
2038 esac
2039
2040 : general instructions
2041 needman=true
2042 firsttime=true
2043 user=`(logname) 2>/dev/null`
2044 case "$user" in
2045 '') user=`whoami 2>&1`;;
2046 esac
2047 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2048         firsttime=false
2049         echo " "
2050         rp='Would you like to see the instructions?'
2051         dflt=n
2052         . ./myread
2053         case "$ans" in
2054         [yY]*) ;;
2055         *) needman=false;;
2056         esac
2057 fi
2058 if $needman; then
2059         cat <<EOH
2060
2061 This installation shell script will examine your system and ask you questions
2062 to determine how the perl5 package should be installed. If you get
2063 stuck on a question, you may use a ! shell escape to start a subshell or
2064 execute a command.  Many of the questions will have default answers in square
2065 brackets; typing carriage return will give you the default.
2066
2067 On some of the questions which ask for file or directory names you are allowed
2068 to use the ~name construct to specify the login directory belonging to "name",
2069 even if you don't have a shell which knows about that.  Questions where this is
2070 allowed will be marked "(~name ok)".
2071
2072 EOH
2073         rp=''
2074         dflt='Type carriage return to continue'
2075         . ./myread
2076         cat <<'EOH'
2077
2078 The prompter used in this script allows you to use shell variables and
2079 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
2080 in the default answer, as if the default line was a set of arguments given to a
2081 script shell.  This means you may also use $* to repeat the whole default line,
2082 so you do not have to re-type everything to add something to the default.
2083
2084 Everytime there is a substitution, you will have to confirm.  If there is an
2085 error (e.g. an unmatched backtick), the default answer will remain unchanged
2086 and you will be prompted again.
2087
2088 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
2089 the questions and use the computed defaults (or the previous answers if there
2090 was already a config.sh file). Type 'Configure -h' for a list of options.
2091 You may also start interactively and then answer '& -d' at any prompt to turn
2092 on the non-interactive behaviour for the remainder of the execution.
2093
2094 EOH
2095         . ./myread
2096         cat <<EOH
2097
2098 Much effort has been expended to ensure that this shell script will run on any
2099 Unix system.  If despite that it blows up on yours, your best bet is to edit
2100 Configure and run it again.  If you can't run Configure for some reason,
2101 you'll have to generate a config.sh file by hand.  Whatever problems you
2102 have, let me (perlbug@perl.org) know how I blew it.
2103
2104 This installation script affects things in two ways:
2105
2106 1) it may do direct variable substitutions on some of the files included
2107    in this kit.
2108 2) it builds a config.h file for inclusion in C programs.  You may edit
2109    any of these files as the need arises after running this script.
2110
2111 If you make a mistake on a question, there is no easy way to back up to it
2112 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
2113 files.  Configure will offer to let you do this before it runs the SH files.
2114
2115 EOH
2116         dflt='Type carriage return to continue'
2117         . ./myread
2118         case "$firsttime" in
2119         true) echo $user >>../.config/instruct;;
2120         esac
2121 fi
2122
2123 : find out where common programs are
2124 echo " "
2125 echo "Locating common programs..." >&4
2126 cat <<EOSC >loc
2127 $startsh
2128 case \$# in
2129 0) exit 1;;
2130 esac
2131 thing=\$1
2132 shift
2133 dflt=\$1
2134 shift
2135 for dir in \$*; do
2136         case "\$thing" in
2137         .)
2138         if test -d \$dir/\$thing; then
2139                 echo \$dir
2140                 exit 0
2141         fi
2142         ;;
2143         *)
2144         for thisthing in \$dir/\$thing; do
2145                 : just loop through to pick last item
2146         done
2147         if test -f \$thisthing; then
2148                 echo \$thisthing
2149                 exit 0
2150         elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2151                 echo \$thisthing
2152                 exit 0
2153         elif test -f \$dir/\$thing.exe; then
2154                 if test -n "$DJGPP"; then
2155                         echo \$dir/\$thing.exe
2156                 else
2157                         : on Eunice apparently
2158                         echo \$dir/\$thing
2159                 fi
2160                 exit 0
2161         fi
2162         ;;
2163         esac
2164 done
2165 echo \$dflt
2166 exit 1
2167 EOSC
2168 chmod +x loc
2169 $eunicefix loc
2170 loclist="
2171 awk
2172 cat
2173 chmod
2174 comm
2175 cp
2176 echo
2177 expr
2178 grep
2179 ls
2180 mkdir
2181 rm
2182 sed
2183 sort
2184 touch
2185 tr
2186 uniq
2187 "
2188 trylist="
2189 Mcc
2190 ar
2191 bison
2192 byacc
2193 cpp
2194 csh
2195 date
2196 egrep
2197 gmake
2198 gzip
2199 less
2200 ln
2201 make
2202 more
2203 nm
2204 nroff
2205 pg
2206 test
2207 uname
2208 zip
2209 "
2210 pth=`echo $PATH | sed -e "s/$p_/ /g"`
2211 pth="$pth /lib /usr/lib"
2212 for file in $loclist; do
2213         eval xxx=\$$file
2214         case "$xxx" in
2215         /*|?:[\\/]*)
2216                 if test -f "$xxx"; then
2217                         : ok
2218                 else
2219                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2220                         xxx=`./loc $file $file $pth`
2221                 fi
2222                 ;;
2223         '') xxx=`./loc $file $file $pth`;;
2224         *) xxx=`./loc $xxx $xxx $pth`;;
2225         esac
2226         eval $file=$xxx$_exe
2227         eval _$file=$xxx
2228         case "$xxx" in
2229         /*)
2230                 echo $file is in $xxx.
2231                 ;;
2232         ?:[\\/]*)
2233                 echo $file is in $xxx.
2234                 ;;
2235         *)
2236                 echo "I don't know where '$file' is, and my life depends on it." >&4
2237                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2238                 exit 1
2239                 ;;
2240         esac
2241 done
2242 echo " "
2243 echo "Don't worry if any of the following aren't found..."
2244 say=offhand
2245 for file in $trylist; do
2246         eval xxx=\$$file
2247         case "$xxx" in
2248         /*|?:[\\/]*)
2249                 if test -f "$xxx"; then
2250                         : ok
2251                 else
2252                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2253                         xxx=`./loc $file $file $pth`
2254                 fi
2255                 ;;
2256         '') xxx=`./loc $file $file $pth`;;
2257         *) xxx=`./loc $xxx $xxx $pth`;;
2258         esac
2259         eval $file=$xxx$_exe
2260         eval _$file=$xxx
2261         case "$xxx" in
2262         /*)
2263                 echo $file is in $xxx.
2264                 ;;
2265         ?:[\\/]*)
2266                 echo $file is in $xxx.
2267                 ;;
2268         *)
2269                 echo "I don't see $file out there, $say."
2270                 say=either
2271                 ;;
2272         esac
2273 done
2274 case "$egrep" in
2275 egrep)
2276         echo "Substituting grep for egrep."
2277         egrep=$grep
2278         _egrep=$grep
2279         ;;
2280 esac
2281 case "$ln" in
2282 ln)
2283         echo "Substituting cp for ln."
2284         ln=$cp
2285         _ln=$cp
2286         ;;
2287 esac
2288 case "$make" in
2289 make)   
2290         case "$gmake" in
2291         gmake)
2292         echo "I can't find make or gmake, and my life depends on it." >&4
2293         echo "Go find a public domain implementation or fix your PATH setting!" >&4
2294         exit 1
2295         ;;
2296         esac
2297         ;;
2298 esac    
2299 case "$gmake" in
2300 gmake)  ;;
2301 *)      # We can't have osname yet.
2302         if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2303                 # Assume that gmake, if found, is definitely GNU make
2304                 # and prefer it over the system make.
2305                 echo "Substituting gmake for make."
2306                 make=$gmake
2307                 _make=$gmake
2308         fi
2309         ;;
2310 esac
2311 case "$test" in
2312 test)
2313         echo "Hopefully test is built into your sh."
2314         ;;
2315 *)
2316         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2317                 echo "Using the test built into your sh."
2318                 test=test
2319                 _test=test
2320         fi
2321         ;;
2322 esac
2323 case "$echo" in
2324 echo)
2325         echo "Hopefully echo is built into your sh."
2326         ;;
2327 '') ;;
2328 *)
2329         echo " "
2330 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2331         $echo $n "hi there$c" >foo1
2332         echo $n "hi there$c" >foo2
2333         if cmp foo1 foo2 >/dev/null 2>&1; then
2334                 echo "They are compatible.  In fact, they may be identical."
2335         else
2336                 case "$n" in
2337                 '-n') n='' c='\c';;
2338                 *) n='-n' c='';;
2339                 esac
2340                 cat <<FOO
2341 They are not compatible!  You are probably running ksh on a non-USG system.
2342 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2343 have echo built in and we may have to run some Bourne shell scripts.  That
2344 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2345
2346 FOO
2347                 $echo $n "The star should be here-->$c"
2348                 $echo "*"
2349         fi
2350         $rm -f foo1 foo2
2351         ;;
2352 esac
2353
2354 cat <<EOS >trygcc
2355 $startsh
2356 EOS
2357 cat <<'EOSC' >>trygcc
2358 case "$cc" in
2359 '') ;;
2360 *)  $rm -f try try.*
2361     $cat >try.c <<EOM
2362 int main(int argc, char *argv[]) {
2363   return 0;
2364 }
2365 EOM
2366     if $cc -o try $ccflags $ldflags try.c; then
2367        :
2368     else
2369         echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2370         despair=yes
2371         trygcc=yes
2372         case "$cc" in
2373         *gcc*) trygcc=no ;;
2374         esac
2375         case "`$cc -v -c try.c 2>&1`" in
2376         *gcc*) trygcc=no ;;
2377         esac
2378         if $test X"$trygcc" = Xyes; then
2379             if gcc -o try -c try.c; then
2380                 echo " "
2381                 echo "You seem to have a working gcc, though." >&4
2382                 rp="Would you like to use it?"
2383                 dflt=y
2384                 if $test -f myread; then
2385                     . ./myread
2386                 else
2387                     if $test -f UU/myread; then
2388                         . ./UU/myread
2389                     else
2390                         echo "Cannot find myread, sorry.  Aborting." >&2
2391                         exit 1
2392                     fi
2393                 fi  
2394                 case "$ans" in
2395                 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2396                        if $test -f usethreads.cbu; then
2397                            $cat >&4 <<EOM 
2398
2399 *** However, any setting of the C compiler flags (e.g. for thread support)
2400 *** has been lost.  It may be necessary to pass -Dcc=gcc to Configure
2401 *** (together with e.g. -Dusethreads).
2402
2403 EOM
2404                        fi;;
2405                 esac
2406             fi
2407         fi
2408     fi
2409     $rm -f try try.*
2410     ;;
2411 esac
2412 EOSC
2413
2414 cat <<EOS >checkcc
2415 $startsh
2416 EOS
2417 cat <<'EOSC' >>checkcc
2418 case "$cc" in        
2419 '') ;;
2420 *)  $rm -f try try.*              
2421     $cat >try.c <<EOM
2422 int main(int argc, char *argv[]) {
2423   return 0;
2424 }
2425 EOM
2426     if $cc -o try $ccflags $ldflags try.c; then
2427        :
2428     else
2429         if $test X"$despair" = Xyes; then
2430            echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2431         fi
2432         $cat >&4 <<EOM         
2433 You need to find a working C compiler.
2434 Either (purchase and) install the C compiler supplied by your OS vendor,
2435 or for a free C compiler try http://gcc.gnu.org/
2436 I cannot continue any further, aborting.
2437 EOM
2438         exit 1
2439     fi
2440     $rm -f try try.*
2441     ;;
2442 esac
2443 EOSC
2444
2445 : determine whether symbolic links are supported
2446 echo " "
2447 $touch blurfl
2448 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2449         echo "Symbolic links are supported." >&4
2450         lns="$ln -s"
2451 else
2452         echo "Symbolic links are NOT supported." >&4
2453         lns="$ln"
2454 fi
2455 $rm -f blurfl sym
2456
2457 : determine whether symbolic links are supported
2458 echo " "
2459 case "$lns" in
2460 *"ln"*" -s")
2461         echo "Checking how to test for symbolic links..." >&4
2462         $lns blurfl sym
2463         if $test "X$issymlink" = X; then
2464                 case "$newsh" in
2465                 '') sh     -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2466                 *)  $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2467                 esac
2468                 if test $? = 0; then
2469                         issymlink="test -h"
2470                 else
2471                         echo "Your builtin 'test -h' may be broken." >&4
2472                         case "$test" in
2473                         /*)     ;;
2474                         *)      pth=`echo $PATH | sed -e "s/$p_/ /g"`
2475                                 for p in $pth
2476                                 do
2477                                         if test -f "$p/$test"; then
2478                                                 test="$p/$test"
2479                                                 break
2480                                         fi
2481                                 done
2482                                 ;;
2483                         esac
2484                         case "$test" in
2485                         /*)
2486                                 echo "Trying external '$test -h'." >&4
2487                                 issymlink="$test -h"
2488                                 if $test ! -h sym >/dev/null 2>&1; then
2489                                         echo "External '$test -h' is broken, too." >&4
2490                                         issymlink=''
2491                                 fi
2492                                 ;;
2493                         *)      issymlink='' ;;
2494                         esac
2495                 fi              
2496         fi
2497         if $test "X$issymlink" = X; then
2498                 if $test -L sym 2>/dev/null; then
2499                         issymlink="$test -L"
2500                         echo "The builtin '$test -L' worked." >&4
2501                 fi
2502         fi
2503         if $test "X$issymlink" != X; then
2504                 echo "You can test for symbolic links with '$issymlink'." >&4
2505         else
2506                 echo "I do not know how you can test for symbolic links." >&4
2507         fi
2508         $rm -f blurfl sym
2509         ;;
2510 *)      echo "No symbolic links, so not testing for their testing..." >&4
2511         ;;
2512 esac
2513 echo " "
2514
2515
2516 case "$mksymlinks" in
2517 $define|true|[yY]*)
2518         case "$src" in
2519         ''|'.') echo "Cannot create symlinks in the original directory." >&4
2520                 exit 1
2521                 ;;
2522         *)      case "$lns:$issymlink" in
2523                 *"ln"*" -s:"*"test -"?)
2524                         echo "Creating the symbolic links..." >&4
2525                         echo "(First creating the subdirectories...)" >&4
2526                         cd ..
2527                         awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2528                                 read directory
2529                                 test -z "$directory" && break
2530                                 mkdir -p $directory
2531                         done
2532                         # Sanity check 1.
2533                         if test ! -d t/base; then
2534                                 echo "Failed to create the subdirectories.  Aborting." >&4
2535                                 exit 1
2536                         fi
2537                         echo "(Then creating the symlinks...)" >&4
2538                         awk '{print $1}' $src/MANIFEST | while true; do
2539                                 read filename
2540                                 test -z "$filename" && break
2541                                 if test -f $filename; then
2542                                         if $issymlink $filename; then
2543                                                 rm -f $filename
2544                                         fi
2545                                 fi
2546                                 if test -f $filename; then
2547                                         echo "$filename already exists, not symlinking."
2548                                 else
2549                                         ln -s $src/$filename $filename
2550                                 fi
2551                         done
2552                         # Sanity check 2.
2553                         if test ! -f t/base/lex.t; then
2554                                 echo "Failed to create the symlinks (t/base/lex.t missing).  Aborting." >&4
2555                                 exit 1
2556                         fi
2557                         cd UU
2558                         ;;
2559                 *)      echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2560                         ;;
2561                 esac
2562                 ;;
2563         esac
2564         ;;
2565 esac
2566
2567
2568 case "$usecrosscompile" in
2569 $define|true|[yY]*)
2570         $echo "Cross-compiling..."
2571         croak=''
2572         case "$cc" in
2573         *-*-gcc) # A cross-compiling gcc, probably.
2574             targetarch=`$echo $cc|$sed 's/-gcc$//'`
2575             ar=$targetarch-ar
2576             # leave out ld, choosing it is more complex
2577             nm=$targetarch-nm
2578             ranlib=$targetarch-ranlib
2579             $echo 'extern int foo;' > try.c
2580             set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2581             shift
2582             if $test $# -gt 0; then
2583                 incpth="$incpth $*"
2584                 incpth="`$echo $incpth|$sed 's/^ //'`"
2585                 echo "Guessing incpth '$incpth'." >&4
2586                 for i in $*; do
2587                     j="`$echo $i|$sed 's,/include$,/lib,'`"
2588                     if $test -d $j; then
2589                         libpth="$libpth $j"
2590                     fi
2591                 done   
2592                 libpth="`$echo $libpth|$sed 's/^ //'`"
2593                 echo "Guessing libpth '$libpth'." >&4
2594             fi
2595             $rm -f try.c
2596             ;;
2597         esac
2598         case "$targetarch" in
2599         '') echo "Targetarch not defined." >&4; croak=y ;;
2600         *)  echo "Using targetarch $targetarch." >&4 ;;
2601         esac
2602         case "$incpth" in
2603         '') echo "Incpth not defined." >&4; croak=y ;;
2604         *)  echo "Using incpth '$incpth'." >&4 ;;
2605         esac
2606         case "$libpth" in
2607         '') echo "Libpth not defined." >&4; croak=y ;;
2608         *)  echo "Using libpth '$libpth'." >&4 ;;
2609         esac
2610         case "$usrinc" in
2611         '') for i in $incpth; do
2612                 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2613                     usrinc=$i
2614                     echo "Guessing usrinc $usrinc." >&4
2615                     break
2616                 fi
2617             done
2618             case "$usrinc" in
2619             '') echo "Usrinc not defined." >&4; croak=y ;;
2620             esac
2621             ;;
2622         *)  echo "Using usrinc $usrinc." >&4 ;;
2623         esac
2624         case "$targethost" in
2625         '') echo "Targethost not defined." >&4; croak=y ;;
2626         *)  echo "Using targethost $targethost." >&4
2627         esac
2628         locincpth=' '
2629         loclibpth=' '
2630         case "$croak" in
2631         y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2632         esac
2633         case "$src" in
2634         /*) run=$src/Cross/run
2635             targetmkdir=$src/Cross/mkdir
2636             to=$src/Cross/to
2637             from=$src/Cross/from
2638             ;;
2639         *)  pwd=`$test -f ../Configure & cd ..; pwd`
2640             run=$pwd/Cross/run
2641             targetmkdir=$pwd/Cross/mkdir
2642             to=$pwd/Cross/to
2643             from=$pwd/Cross/from
2644             ;;
2645         esac
2646         case "$targetrun" in
2647         '') targetrun=ssh ;;
2648         esac
2649         case "$targetto" in
2650         '') targetto=scp ;;
2651         esac
2652         case "$targetfrom" in
2653         '') targetfrom=scp ;;
2654         esac
2655         run=$run-$targetrun
2656         to=$to-$targetto
2657         from=$from-$targetfrom
2658         case "$targetdir" in
2659         '')  targetdir=/tmp
2660              echo "Guessing targetdir $targetdir." >&4
2661              ;;
2662         esac
2663         case "$targetuser" in
2664         '')  targetuser=root
2665              echo "Guessing targetuser $targetuser." >&4
2666              ;;
2667         esac
2668         case "$targetfrom" in
2669         scp)    q=-q ;;
2670         *)      q='' ;;
2671         esac
2672         case "$targetrun" in
2673         ssh|rsh)
2674             cat >$run <<EOF
2675 #!/bin/sh
2676 case "\$1" in
2677 -cwd)
2678   shift
2679   cwd=\$1
2680   shift
2681   ;;
2682 esac
2683 case "\$cwd" in
2684 '') cwd=$targetdir ;;
2685 esac
2686 exe=\$1
2687 shift
2688 if $test ! -f \$exe.xok; then
2689   $to \$exe
2690   $touch \$exe.xok
2691 fi
2692 $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2693 EOF
2694             ;;
2695         *)  echo "Unknown targetrun '$targetrun'" >&4
2696             exit 1
2697             ;;
2698         esac
2699         case "$targetmkdir" in
2700         */Cross/mkdir)
2701             cat >$targetmkdir <<EOF
2702 #!/bin/sh
2703 $targetrun -l $targetuser $targethost "mkdir -p \$@"
2704 EOF
2705             $chmod a+rx $targetmkdir
2706             ;;
2707         *)  echo "Unknown targetmkdir '$targetmkdir'" >&4
2708             exit 1
2709             ;;
2710         esac
2711         case "$targetto" in
2712         scp|rcp)
2713             cat >$to <<EOF
2714 #!/bin/sh
2715 for f in \$@
2716 do
2717   case "\$f" in
2718   /*)
2719     $targetmkdir \`dirname \$f\`
2720     $targetto $q \$f $targetuser@$targethost:\$f            || exit 1
2721     ;;
2722   *)
2723     $targetmkdir $targetdir/\`dirname \$f\`
2724     $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2725     ;;
2726   esac
2727 done
2728 exit 0
2729 EOF
2730             ;;
2731         cp) cat >$to <<EOF
2732 #!/bin/sh
2733 for f in \$@
2734 do
2735   case "\$f" in
2736   /*)
2737     $mkdir -p $targetdir/\`dirname \$f\`
2738     $cp \$f $targetdir/\$f || exit 1
2739     ;;
2740   *)
2741     $targetmkdir $targetdir/\`dirname \$f\`
2742     $cp \$f $targetdir/\$f || exit 1
2743     ;;
2744   esac
2745 done
2746 exit 0
2747 EOF
2748             ;;
2749         *)  echo "Unknown targetto '$targetto'" >&4
2750             exit 1
2751             ;;
2752         esac
2753         case "$targetfrom" in
2754         scp|rcp)
2755           cat >$from <<EOF
2756 #!/bin/sh
2757 for f in \$@
2758 do
2759   $rm -f \$f
2760   $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2761 done
2762 exit 0
2763 EOF
2764             ;;
2765         cp) cat >$from <<EOF
2766 #!/bin/sh
2767 for f in \$@
2768 do
2769   $rm -f \$f
2770   cp $targetdir/\$f . || exit 1
2771 done
2772 exit 0
2773 EOF
2774             ;;
2775         *)  echo "Unknown targetfrom '$targetfrom'" >&4
2776             exit 1
2777             ;;
2778         esac
2779         if $test ! -f $run; then
2780             echo "Target 'run' script '$run' not found." >&4
2781         else
2782             $chmod a+rx $run
2783         fi
2784         if $test ! -f $to; then
2785             echo "Target 'to' script '$to' not found." >&4
2786         else
2787             $chmod a+rx $to
2788         fi
2789         if $test ! -f $from; then
2790             echo "Target 'from' script '$from' not found." >&4
2791         else
2792             $chmod a+rx $from
2793         fi
2794         if $test ! -f $run -o ! -f $to -o ! -f $from; then
2795             exit 1
2796         fi
2797         cat >&4 <<EOF
2798 Using '$run' for remote execution,
2799 and '$from' and '$to'
2800 for remote file transfer.
2801 EOF
2802         ;;
2803 *)      run=''
2804         to=:
2805         from=:
2806         usecrosscompile='undef'
2807         targetarch=''
2808         ;;
2809 esac
2810
2811 : see whether [:lower:] and [:upper:] are supported character classes
2812 echo " "
2813 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2814 ABYZ)
2815         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2816         up='[:upper:]'
2817         low='[:lower:]'
2818         ;;
2819 *)      # There is a discontinuity in EBCDIC between 'I' and 'J'
2820         # (0xc9 and 0xd1), therefore that is a nice testing point.
2821         if test "X$up" = X -o "X$low" = X; then
2822             case "`echo IJ | $tr '[I-J]' '[i-j]' 2>/dev/null`" in
2823             ij) up='[A-Z]'
2824                 low='[a-z]'
2825                 ;;
2826             esac
2827         fi
2828         if test "X$up" = X -o "X$low" = X; then
2829             case "`echo IJ | $tr I-J i-j 2>/dev/null`" in
2830             ij) up='A-Z'
2831                 low='a-z'
2832                 ;;
2833             esac
2834         fi
2835         if test "X$up" = X -o "X$low" = X; then
2836             case "`echo IJ | od -x 2>/dev/null`" in
2837             *C9D1*|*c9d1*)
2838                 echo "Hey, this might be EBCDIC." >&4
2839                 if test "X$up" = X -o "X$low" = X; then
2840                     case "`echo IJ | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2841                     ij) up='[A-IJ-RS-Z]'
2842                         low='[a-ij-rs-z]'
2843                         ;;
2844                     esac
2845                 fi
2846                 if test "X$up" = X -o "X$low" = X; then
2847                     case "`echo IJ | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2848                     ij) up='A-IJ-RS-Z'
2849                         low='a-ij-rs-z'
2850                         ;;
2851                     esac
2852                 fi
2853                 ;;
2854             esac
2855         fi
2856 esac
2857 case "`echo IJ | $tr \"$up\" \"$low\" 2>/dev/null`" in
2858 ij)
2859     echo "Using $up and $low to convert case." >&4
2860     ;;
2861 *)
2862     echo "I don't know how to translate letters from upper to lower case." >&4
2863     echo "Your tr is not acting any way I know of." >&4
2864     exit 1
2865     ;;
2866 esac
2867 : set up the translation script tr, must be called with ./tr of course
2868 cat >tr <<EOSC
2869 $startsh
2870 case "\$1\$2" in
2871 '[A-Z][a-z]') exec $tr '$up' '$low';;
2872 '[a-z][A-Z]') exec $tr '$low' '$up';;
2873 esac
2874 exec $tr "\$@"
2875 EOSC
2876 chmod +x tr
2877 $eunicefix tr
2878
2879 : Try to determine whether config.sh was made on this system
2880 case "$config_sh" in
2881 '')
2882 myuname=`$uname -a 2>/dev/null`
2883 $test -z "$myuname" && myuname=`hostname 2>/dev/null`
2884 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
2885 # because the A-Z/a-z are not consecutive.
2886 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
2887         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
2888 newmyuname="$myuname"
2889 dflt=n
2890 case "$knowitall" in
2891 '')
2892         if test -f ../config.sh; then
2893                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
2894                         eval "`grep myuname= ../config.sh`"
2895                 fi
2896                 if test "X$myuname" = "X$newmyuname"; then
2897                         dflt=y
2898                 fi
2899         fi
2900         ;;
2901 *) dflt=y;;
2902 esac
2903
2904 : Get old answers from old config file if Configure was run on the
2905 : same system, otherwise use the hints.
2906 hint=default
2907 cd ..
2908 if test -f config.sh; then
2909         echo " "
2910         rp="I see a config.sh file.  Shall I use it to set the defaults?"
2911         . UU/myread
2912         case "$ans" in
2913         n*|N*) echo "OK, I'll ignore it."
2914                 mv config.sh config.sh.old
2915                 myuname="$newmyuname"
2916                 ;;
2917         *)  echo "Fetching default answers from your old config.sh file..." >&4
2918                 tmp_n="$n"
2919                 tmp_c="$c"
2920                 tmp_sh="$sh"
2921                 . ./config.sh
2922                 cp config.sh UU
2923                 n="$tmp_n"
2924                 c="$tmp_c"
2925                 : Older versions did not always set $sh.  Catch re-use of such
2926                 : an old config.sh.
2927                 case "$sh" in
2928                 '') sh="$tmp_sh" ;;
2929                 esac
2930                 hint=previous
2931                 ;;
2932         esac
2933 fi
2934 . ./UU/checkcc
2935 if test ! -f config.sh; then
2936         $cat <<EOM
2937
2938 First time through, eh?  I have some defaults handy for some systems
2939 that need some extra help getting the Configure answers right:
2940
2941 EOM
2942         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
2943         dflt=''
2944         : Half the following guesses are probably wrong... If you have better
2945         : tests or hints, please send them to perlbug@perl.org
2946         : The metaconfig authors would also appreciate a copy...
2947         $test -f /irix && osname=irix
2948         $test -f /xenix && osname=sco_xenix
2949         $test -f /dynix && osname=dynix
2950         $test -f /dnix && osname=dnix
2951         $test -f /lynx.os && osname=lynxos
2952         $test -f /unicos && osname=unicos && osvers=`$uname -r`
2953         $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
2954         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
2955         $test -f /bin/mips && /bin/mips && osname=mips
2956         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
2957                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
2958         $test -d /usr/apollo/bin && osname=apollo
2959         $test -f /etc/saf/_sactab && osname=svr4
2960         $test -d /usr/include/minix && osname=minix
2961         $test -f /system/gnu_library/bin/ar.pm && osname=vos
2962         if $test -d /MachTen -o -d /MachTen_Folder; then
2963                 osname=machten
2964                 if $test -x /sbin/version; then
2965                         osvers=`/sbin/version | $awk '{print $2}' |
2966                         $sed -e 's/[A-Za-z]$//'`
2967                 elif $test -x /usr/etc/version; then
2968                         osvers=`/usr/etc/version | $awk '{print $2}' |
2969                         $sed -e 's/[A-Za-z]$//'`
2970                 else
2971                         osvers="$2.$3"
2972                 fi
2973         fi
2974
2975         $test -f /sys/posix.dll &&
2976                 $test -f /usr/bin/what &&
2977                 set X `/usr/bin/what /sys/posix.dll` &&
2978                 $test "$3" = UWIN &&
2979                 osname=uwin &&
2980                 osvers="$5"
2981
2982         if $test -f $uname; then
2983                 set X $myuname
2984                 shift
2985
2986                 case "$5" in
2987                 fps*) osname=fps ;;
2988                 mips*)
2989                         case "$4" in
2990                         umips) osname=umips ;;
2991                         *) osname=mips ;;
2992                         esac;;
2993                 [23]100) osname=mips ;;
2994                 next*) osname=next ;;
2995                 i386*)
2996                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
2997                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
2998                                 osname='sco'
2999                                 osvers=$tmp
3000                         elif $test -f /etc/kconfig; then
3001                                 osname=isc
3002                                 if test "$lns" = "$ln -s"; then
3003                                         osvers=4
3004                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3005                                         osvers=3
3006                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3007                                         osvers=2
3008                                 fi
3009                         fi
3010                         tmp=''
3011                         ;;
3012                 pc*)
3013                         if test -n "$DJGPP"; then
3014                                 osname=dos
3015                                 osvers=djgpp
3016                         fi
3017                         ;;
3018                 esac
3019
3020                 case "$1" in
3021                 aix) osname=aix
3022                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3023                         case "$tmp" in
3024                         'not found') osvers="$4"."$3" ;;
3025                         '<3240'|'<>3240') osvers=3.2.0 ;;
3026                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3027                         '=3250'|'>3250') osvers=3.2.5 ;;
3028                         *) osvers=$tmp;;
3029                         esac
3030                         ;;
3031                 bsd386) osname=bsd386
3032                         osvers=`$uname -r`
3033                         ;;
3034                 cygwin*) osname=cygwin
3035                         osvers="$3"
3036                         ;;
3037                 *dc.osx) osname=dcosx
3038                         osvers="$3"
3039                         ;;
3040                 dnix) osname=dnix
3041                         osvers="$3"
3042                         ;;
3043                 domainos) osname=apollo
3044                         osvers="$3"
3045                         ;;
3046                 dgux) osname=dgux 
3047                         osvers="$3"
3048                         ;;
3049                 dynixptx*) osname=dynixptx
3050                         osvers=`echo "$4"|sed 's/^v//'`
3051                         ;;
3052                 freebsd) osname=freebsd 
3053                         osvers="$3" ;;
3054                 genix) osname=genix ;;
3055                 hp*) osname=hpux 
3056                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3057                         ;;
3058                 irix*) osname=irix
3059                         case "$3" in
3060                         4*) osvers=4 ;;
3061                         5*) osvers=5 ;;
3062                         *)      osvers="$3" ;;
3063                         esac
3064                         ;;
3065                 linux) osname=linux
3066                         case "$3" in
3067                         *)      osvers="$3" ;;
3068                         esac
3069                         ;;
3070                 MiNT) osname=mint
3071                         ;;
3072                 netbsd*) osname=netbsd
3073                         osvers="$3"
3074                         ;;
3075                 news-os) osvers="$3"
3076                         case "$3" in
3077                         4*) osname=newsos4 ;;
3078                         *) osname=newsos ;;
3079                         esac
3080                         ;;
3081                 next*) osname=next ;;
3082                 nonstop-ux) osname=nonstopux ;;
3083                 openbsd) osname=openbsd
3084                         osvers="$3"
3085                         ;;
3086                 POSIX-BC | posix-bc ) osname=posix-bc
3087                         osvers="$3"
3088                         ;;
3089                 powerux | power_ux | powermax_os | powermaxos | \
3090                 powerunix | power_unix) osname=powerux
3091                         osvers="$3"
3092                         ;;
3093                 qnx) osname=qnx
3094                         osvers="$4"
3095                         ;;
3096                 solaris) osname=solaris
3097                         case "$3" in
3098                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3099                         *)      osvers="$3" ;;
3100                         esac
3101                         ;;
3102                 sunos) osname=sunos
3103                         case "$3" in
3104                         5*) osname=solaris
3105                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3106                         *)      osvers="$3" ;;
3107                         esac
3108                         ;;
3109                 titanos) osname=titanos
3110                         case "$3" in
3111                         1*) osvers=1 ;;
3112                         2*) osvers=2 ;;
3113                         3*) osvers=3 ;;
3114                         4*) osvers=4 ;;
3115                         *)      osvers="$3" ;;
3116                         esac
3117                         ;;
3118                 ultrix) osname=ultrix
3119                         osvers="$3"
3120                         ;;
3121                 osf1|mls+)      case "$5" in
3122                                 alpha)
3123                                         osname=dec_osf
3124                                         osvers=`sizer -v | awk '{print $3}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3125                                         case "$osvers" in
3126                                         [1-9].[0-9]*) ;;
3127                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3128                                         esac
3129                                         ;;
3130                         hp*)    osname=hp_osf1  ;;
3131                         mips)   osname=mips_osf1 ;;
3132                         esac
3133                         ;;
3134                 unixware) osname=svr5
3135                         osvers="$4"
3136                         ;;
3137                 uts)    osname=uts
3138                         osvers="$3"
3139                         ;;
3140                 vos) osvers="$3"
3141                         ;;
3142                 $2) case "$osname" in
3143                         *isc*) ;;
3144                         *freebsd*) ;;
3145                         svr*)
3146                                 : svr4.x or possibly later
3147                                 case "svr$3" in 
3148                                 ${osname}*)
3149                                         osname=svr$3
3150                                         osvers=$4
3151                                         ;;
3152                                 esac
3153                                 case "$osname" in
3154                                 svr4.0)
3155                                         : Check for ESIX
3156                                         if test -f /stand/boot ; then
3157                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3158                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3159                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3160                                                         if test -n "$isesix"; then
3161                                                                 osname=esix4
3162                                                         fi
3163                                                 fi
3164                                         fi
3165                                         ;;
3166                                 esac
3167                                 ;;
3168                         *)      if test -f /etc/systemid; then
3169                                         osname=sco
3170                                         set `echo $3 | $sed 's/\./ /g'` $4
3171                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3172                                                 osvers=$1.$2.$3
3173                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3174                                                 osvers=$1.$2
3175                                         elif $test -f $src/hints/sco_$1.sh; then
3176                                                 osvers=$1
3177                                         fi
3178                                 else
3179                                         case "$osname" in
3180                                         '') : Still unknown.  Probably a generic Sys V.
3181                                                 osname="sysv"
3182                                                 osvers="$3"
3183                                                 ;;
3184                                         esac
3185                                 fi
3186                                 ;;
3187                         esac
3188                         ;;
3189                 *)      case "$osname" in
3190                         '') : Still unknown.  Probably a generic BSD.
3191                                 osname="$1"
3192                                 osvers="$3"
3193                                 ;;
3194                         esac
3195                         ;;
3196                 esac
3197         else
3198                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3199                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3200                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3201                                 osname=news_os
3202                         fi
3203                         $rm -f UU/kernel.what
3204                 elif test -d c:/.; then
3205                         set X $myuname
3206                         osname=os2
3207                         osvers="$5"
3208                 fi
3209         fi
3210         
3211         case "$targetarch" in
3212         '') ;;
3213         *)  hostarch=$osname
3214             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3215             osvers=''
3216             ;;
3217         esac
3218
3219         : Now look for a hint file osname_osvers, unless one has been
3220         : specified already.
3221         case "$hintfile" in
3222         ''|' ')
3223                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3224                 : Also try without trailing minor version numbers.
3225                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3226                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3227                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3228                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3229                 case "$file" in
3230                 '') dflt=none ;;
3231                 *)  case "$osvers" in
3232                         '') dflt=$file
3233                                 ;;
3234                         *)  if $test -f $src/hints/$file.sh ; then
3235                                         dflt=$file
3236                                 elif $test -f $src/hints/$xfile.sh ; then
3237                                         dflt=$xfile
3238                                 elif $test -f $src/hints/$xxfile.sh ; then
3239                                         dflt=$xxfile
3240                                 elif $test -f $src/hints/$xxxfile.sh ; then
3241                                         dflt=$xxxfile
3242                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3243                                         dflt=$xxxxfile
3244                                 elif $test -f "$src/hints/${osname}.sh" ; then
3245                                         dflt="${osname}"
3246                                 else
3247                                         dflt=none
3248                                 fi
3249                                 ;;
3250                         esac
3251                         ;;
3252                 esac
3253                 if $test -f Policy.sh ; then
3254                         case "$dflt" in
3255                         *Policy*) ;;
3256                         none) dflt="Policy" ;;
3257                         *) dflt="Policy $dflt" ;;
3258                         esac
3259                 fi
3260                 ;;
3261         *)
3262                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3263                 ;;
3264         esac
3265
3266         if $test -f Policy.sh ; then
3267                 $cat <<EOM
3268
3269 There's also a Policy hint file available, which should make the
3270 site-specific (policy) questions easier to answer.
3271 EOM
3272
3273         fi
3274
3275         $cat <<EOM
3276
3277 You may give one or more space-separated answers, or "none" if appropriate.
3278 A well-behaved OS will have no hints, so answering "none" or just "Policy"
3279 is a good thing.  DO NOT give a wrong version or a wrong OS.
3280
3281 EOM
3282
3283         rp="Which of these apply, if any?"
3284         . UU/myread
3285         tans=$ans
3286         for file in $tans; do
3287                 if $test X$file = XPolicy -a -f Policy.sh; then
3288                         . Policy.sh
3289                         $cat Policy.sh >> UU/config.sh
3290                 elif $test -f $src/hints/$file.sh; then
3291                         . $src/hints/$file.sh
3292                         $cat $src/hints/$file.sh >> UU/config.sh
3293                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3294                         : nothing
3295                 else
3296                         : Give one chance to correct a possible typo.
3297                         echo "$file.sh does not exist"
3298                         dflt=$file
3299                         rp="hint to use instead?"
3300                         . UU/myread
3301                         for file in $ans; do
3302                                 if $test -f "$src/hints/$file.sh"; then
3303                                         . $src/hints/$file.sh
3304                                         $cat $src/hints/$file.sh >> UU/config.sh
3305                                 elif $test X$ans = X -o X$ans = Xnone ; then
3306                                         : nothing
3307                                 else
3308                                         echo "$file.sh does not exist -- ignored."
3309                                 fi
3310                         done
3311                 fi
3312         done
3313
3314         hint=recommended
3315         : Remember our hint file for later.
3316         if $test -f "$src/hints/$file.sh" ; then
3317                 hintfile="$file"
3318         else
3319                 hintfile=''
3320         fi
3321 fi
3322 cd UU
3323 ;;
3324 *)
3325         echo " "
3326         echo "Fetching default answers from $config_sh..." >&4
3327         tmp_n="$n"
3328         tmp_c="$c"
3329         cd ..
3330         cp $config_sh config.sh 2>/dev/null
3331         chmod +w config.sh
3332         . ./config.sh
3333         cd UU
3334         cp ../config.sh .
3335         n="$tmp_n"
3336         c="$tmp_c"
3337         hint=previous
3338         ;;
3339 esac
3340 test "$override" && . ./optdef.sh
3341
3342 : Restore computed paths
3343 for file in $loclist $trylist; do
3344         eval $file="\$_$file"
3345 done
3346
3347 cat << EOM
3348
3349 Configure uses the operating system name and version to set some defaults.
3350 The default value is probably right if the name rings a bell. Otherwise,
3351 since spelling matters for me, either accept the default or answer "none"
3352 to leave it blank.
3353
3354 EOM
3355 case "$osname" in
3356         ''|' ')
3357                 case "$hintfile" in
3358                 ''|' '|none) dflt=none ;;
3359                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3360                 esac
3361                 ;;
3362         *) dflt="$osname" ;;
3363 esac
3364 rp="Operating system name?"
3365 . ./myread
3366 case "$ans" in
3367 none)  osname='' ;;
3368 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3369 esac
3370 echo " "
3371 case "$osvers" in
3372         ''|' ')
3373                 case "$hintfile" in
3374                 ''|' '|none) dflt=none ;;
3375                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3376                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3377                         case "$dflt" in
3378                         ''|' ') dflt=none ;;
3379                         esac
3380                         ;;
3381                 esac
3382                 ;;
3383         *) dflt="$osvers" ;;
3384 esac
3385 rp="Operating system version?"
3386 . ./myread
3387 case "$ans" in
3388 none)  osvers='' ;;
3389 *) osvers="$ans" ;;
3390 esac
3391
3392
3393 . ./posthint.sh
3394
3395 : who configured the system
3396 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3397 cf_by=`(logname) 2>/dev/null`
3398 case "$cf_by" in
3399 "")
3400         cf_by=`(whoami) 2>/dev/null`
3401         case "$cf_by" in
3402         "") cf_by=unknown ;;
3403         esac ;;
3404 esac
3405
3406 : set up the script used to warn in case of inconsistency
3407 cat <<EOS >whoa
3408 $startsh
3409 EOS
3410 cat <<'EOSC' >>whoa
3411 dflt=y
3412 echo " "
3413 echo "*** WHOA THERE!!! ***" >&4
3414 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
3415 rp="    Keep the $hint value?"
3416 . ./myread
3417 case "$ans" in
3418 y) td=$was; tu=$was;;
3419 esac
3420 EOSC
3421
3422 : function used to set $1 to $val
3423 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3424 case "$val$was" in
3425 $define$undef) . ./whoa; eval "$var=\$td";;
3426 $undef$define) . ./whoa; eval "$var=\$tu";;
3427 *) eval "$var=$val";;
3428 esac'
3429
3430 case "$usesocks" in
3431 $define|true|[yY]*)     dflt='y';;
3432 *) dflt='n';;
3433 esac
3434 cat <<EOM
3435
3436 Perl can be built to use the SOCKS proxy protocol library.  To do so,
3437 Configure must be run with -Dusesocks.  If you use SOCKS you also need
3438 to use the PerlIO abstraction layer, this will be implicitly selected.
3439
3440 If this doesn't make any sense to you, just accept the default '$dflt'.
3441 EOM
3442 rp='Build Perl for SOCKS?'
3443 . ./myread
3444 case "$ans" in
3445 y|Y)    val="$define" ;;     
3446 *)      val="$undef" ;;
3447 esac
3448 set usesocks
3449 eval $setvar
3450
3451 case "$usesocks" in
3452 $define|true|[yY]*) useperlio="$define";;
3453 esac
3454
3455 case "$useperlio" in
3456 $define|true|[yY]*|'')  dflt='y';;
3457 *) dflt='n';;
3458 esac
3459 cat <<EOM
3460
3461 Previous version of $package used the standard IO mechanisms as
3462 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
3463 alternate IO mechanisms via the PerlIO abstraction layer, but the
3464 stdio mechanism is still available if needed.  The abstraction layer
3465 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
3466 Using PerlIO with sfio may cause problems with some extension modules.
3467
3468 If this doesn't make any sense to you, just accept the default '$dflt'.
3469 EOM
3470 rp='Use the PerlIO abstraction layer?'
3471 . ./myread
3472 case "$ans" in
3473 y|Y) 
3474         val="$define"
3475         ;;
3476 *)      
3477         echo "Ok, doing things the stdio way."
3478         val="$undef"
3479         ;;
3480 esac
3481 set useperlio
3482 eval $setvar 
3483
3484 case "$usesocks" in
3485 $define|true|[yY]*)
3486         case "$useperlio" in
3487         $define|true|[yY]*) ;;
3488         *)      cat >&4 <<EOM
3489
3490 You are using the SOCKS proxy protocol library which means that you
3491 should also use the PerlIO layer.  You may be headed for trouble.
3492
3493 EOM
3494                 ;;
3495         esac
3496         ;;
3497 esac
3498
3499         
3500 case "$usethreads" in
3501 $define|true|[yY]*)     dflt='y';;
3502 *)     # Catch case where user specified ithreads or 5005threads but
3503        # forgot -Dusethreads (A.D. 4/2002)
3504        case "$useithreads$use5005threads" in
3505        *$define*)      
3506                 case "$useperlio" in
3507                 "$define")      dflt='y' ;;
3508                 *)              dflt='n' ;;
3509                 esac
3510                 ;;
3511        *)       dflt='n';;
3512        esac
3513        ;;
3514 esac
3515 cat <<EOM
3516
3517 Perl can be built to take advantage of threads on some systems.
3518 To do so, Configure can be run with -Dusethreads.
3519
3520 Note that Perl built with threading support runs slightly slower
3521 and uses more memory than plain Perl. The current implementation
3522 is believed to be stable, but it is fairly new, and so should be
3523 treated with caution.
3524
3525 If this doesn't make any sense to you, just accept the default '$dflt'.
3526 EOM
3527 rp='Build a threading Perl?'
3528 . ./myread
3529 case "$ans" in
3530 y|Y)    val="$define" ;;
3531 *)      val="$undef" ;;
3532 esac
3533 set usethreads
3534 eval $setvar
3535
3536 case "$usethreads" in
3537 $define)
3538         $cat <<EOM
3539
3540 Since release 5.6, Perl has had two different threading implementations,
3541 the newer interpreter-based version (ithreads) with one interpreter per
3542 thread, and the older 5.005 version (5005threads).
3543 The 5005threads version is effectively unmaintained and will probably be
3544 removed in Perl 5.10, so there should be no need to build a Perl using it
3545 unless needed for backwards compatibility with some existing 5.005threads
3546 code.
3547
3548 EOM
3549         : Default to ithreads unless overridden on command line or with
3550         : old config.sh
3551         dflt='y'
3552         case "$use5005threads" in
3553                 $define|true|[yY]*) dflt='n';;
3554         esac
3555         case "$useithreads" in
3556                 $undef|false|[nN]*) dflt='n';;
3557         esac
3558         rp='Use the newer interpreter-based ithreads?'
3559         . ./myread
3560         case "$ans" in
3561         y|Y)    val="$define" ;;
3562         *)      val="$undef" ;;
3563         esac
3564         set useithreads
3565         eval $setvar
3566         : Now set use5005threads to the opposite value.
3567         case "$useithreads" in
3568         $define) val="$undef" ;;
3569         *) val="$define" ;;
3570         esac
3571         set use5005threads
3572         eval $setvar
3573         ;;
3574 *)
3575         useithreads="$undef"
3576         use5005threads="$undef"
3577         ;;
3578 esac
3579
3580 case "$useithreads$use5005threads" in
3581 "$define$define")
3582         $cat >&4 <<EOM
3583
3584 You cannot have both the ithreads and the 5.005 threads enabled
3585 at the same time.  Disabling the 5.005 threads since they are
3586 much less stable than the ithreads.
3587
3588 EOM
3589         use5005threads="$undef"
3590         ;;
3591 esac
3592
3593 if test X"$usethreads" = "X$define" -a "X$useperlio" = "Xundef"; then
3594         cat >&4 <<EOF
3595 ***
3596 *** To build with ithreads you must also use the PerlIO layer.
3597 *** Cannot continue, aborting.
3598 ***
3599 EOF
3600         exit 1
3601 fi
3602
3603 case "$d_oldpthreads" in
3604 '')     : Configure tests would be welcome here.  For now, assume undef.
3605         val="$undef" ;;
3606 *)      val="$d_oldpthreads" ;;
3607 esac
3608 set d_oldpthreads
3609 eval $setvar
3610
3611
3612 case "$usethreads" in
3613 "$define"|true|[yY]*)
3614 : Look for a hint-file generated 'call-back-unit'.  If the
3615 : user has specified that a threading perl is to be built,
3616 : we may need to set or change some other defaults.
3617         if $test -f usethreads.cbu; then
3618                 echo "Your platform has some specific hints for threaded builds, using them..."
3619                 . ./usethreads.cbu
3620         else
3621                 $cat <<EOM
3622 (Your platform doesn't have any specific hints for threaded builds.
3623  Assuming POSIX threads, then.)
3624 EOM
3625         fi
3626         ;;
3627 esac
3628
3629 cat <<EOM
3630
3631 Perl can be built so that multiple Perl interpreters can coexist
3632 within the same Perl executable.
3633 EOM
3634
3635 case "$useithreads" in
3636 $define)
3637         cat <<EOM
3638 This multiple interpreter support is required for interpreter-based threads.
3639 EOM
3640         val="$define"
3641         ;;
3642 *)      case "$usemultiplicity" in
3643         $define|true|[yY]*)     dflt='y';;
3644         *) dflt='n';;
3645         esac
3646         echo " "
3647         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
3648         rp='Build Perl for multiplicity?'
3649         . ./myread
3650         case "$ans" in
3651         y|Y)    val="$define" ;;
3652         *)      val="$undef" ;;
3653         esac
3654         ;;
3655 esac
3656 set usemultiplicity
3657 eval $setvar
3658
3659
3660 case "$usemorebits" in
3661 "$define"|true|[yY]*)
3662         use64bitint="$define"
3663         uselongdouble="$define"
3664         usemorebits="$define"
3665         ;;
3666 *)      usemorebits="$undef"
3667         ;;
3668 esac
3669
3670 : make some quick guesses about what we are up against
3671 echo " "
3672 $echo $n "Hmm...  $c"
3673 echo exit 1 >bsd
3674 echo exit 1 >usg
3675 echo exit 1 >v7
3676 echo exit 1 >osf1
3677 echo exit 1 >eunice
3678 echo exit 1 >xenix
3679 echo exit 1 >venix
3680 echo exit 1 >os2
3681 d_bsd="$undef"
3682 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3683 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3684 then
3685         echo "Looks kind of like an OSF/1 system, but we'll see..."
3686         echo exit 0 >osf1
3687 elif test `echo abc | $tr a-z A-Z` = Abc ; then
3688         xxx=`./loc addbib blurfl $pth`
3689         if $test -f $xxx; then
3690         echo "Looks kind of like a USG system with BSD features, but we'll see..."
3691                 echo exit 0 >bsd
3692                 echo exit 0 >usg
3693         else
3694                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3695                         echo "Looks kind of like an extended USG system, but we'll see..."
3696                 else
3697                         echo "Looks kind of like a USG system, but we'll see..."
3698                 fi
3699                 echo exit 0 >usg
3700         fi
3701 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3702         echo "Looks kind of like a BSD system, but we'll see..."
3703         d_bsd="$define"
3704         echo exit 0 >bsd
3705 else
3706         echo "Looks kind of like a Version 7 system, but we'll see..."
3707         echo exit 0 >v7
3708 fi
3709 case "$eunicefix" in
3710 *unixtovms*)
3711         $cat <<'EOI'
3712 There is, however, a strange, musty smell in the air that reminds me of
3713 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3714 EOI
3715         echo exit 0 >eunice
3716         d_eunice="$define"
3717 : it so happens the Eunice I know will not run shell scripts in Unix format
3718         ;;
3719 *)
3720         echo " "
3721         echo "Congratulations.  You aren't running Eunice."
3722         d_eunice="$undef"
3723         ;;
3724 esac
3725 : Detect OS2.  The p_ variable is set above in the Head.U unit.
3726 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
3727 : semicolon as a patch separator
3728 case "$p_" in
3729 :) ;;
3730 *)
3731         $cat <<'EOI'
3732 I have the feeling something is not exactly right, however...don't tell me...
3733 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3734 (Or you may be running DOS with DJGPP.)
3735 EOI
3736         echo exit 0 >os2
3737         ;;
3738 esac
3739 if test -f /xenix; then
3740         echo "Actually, this looks more like a XENIX system..."
3741         echo exit 0 >xenix
3742         d_xenix="$define"
3743 else
3744         echo " "
3745         echo "It's not Xenix..."
3746         d_xenix="$undef"
3747 fi
3748 chmod +x xenix
3749 $eunicefix xenix
3750 if test -f /venix; then
3751         echo "Actually, this looks more like a VENIX system..."
3752         echo exit 0 >venix
3753 else
3754         echo " "
3755         if ./xenix; then
3756                 : null
3757         else
3758                 echo "Nor is it Venix..."
3759         fi
3760 fi
3761 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3762 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3763 $rm -f foo
3764
3765 case "$cc" in
3766 '') dflt=cc;;
3767 *) dflt="$cc";;
3768 esac
3769 rp="Use which C compiler?"
3770 . ./myread
3771 cc="$ans"
3772
3773 : See if they have not cc but they do have gcc
3774 . ./trygcc
3775 : Look for a hint-file generated 'call-back-unit'.  Now that the
3776 : user has specified the compiler, we may need to set or change some
3777 : other defaults.
3778 if $test -f cc.cbu; then
3779     . ./cc.cbu
3780 fi
3781 . ./checkcc
3782
3783 echo " "
3784 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3785 $cat >try.c <<EOM
3786 #include <stdio.h>
3787 int main() {
3788 #ifdef __GNUC__
3789 #ifdef __VERSION__
3790         printf("%s\n", __VERSION__);
3791 #else
3792         printf("%s\n", "1");
3793 #endif
3794 #endif
3795         exit(0);
3796 }
3797 EOM
3798 if $cc -o try $ccflags $ldflags try.c; then
3799         gccversion=`$run ./try`
3800         case "$gccversion" in
3801         '') echo "You are not using GNU cc." ;;
3802         *)  echo "You are using GNU cc $gccversion."
3803             ccname=gcc  
3804             ;;
3805         esac
3806 else
3807         echo " "
3808         echo "*** WHOA THERE!!! ***" >&4
3809         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3810         case "$knowitall" in
3811         '')
3812         echo "    You'd better start hunting for one and let me know about it." >&4
3813                 exit 1
3814                 ;;
3815         esac
3816 fi
3817 $rm -f try try.*
3818 case "$gccversion" in
3819 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3820 esac
3821 case "$gccversion" in
3822 '') gccosandvers='' ;;
3823 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
3824    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
3825    gccshortvers=''
3826    case "$gccosandvers" in
3827    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
3828    $osname$osvers) ;; # looking good
3829    $osname*) cat <<EOM >&4
3830
3831 *** WHOA THERE!!! ***
3832
3833     Your gcc has not been compiled for the exact release of
3834     your operating system ($gccosandvers versus $osname$osvers).
3835
3836     In general it is a good idea to keep gcc synchronized with
3837     the operating system because otherwise serious problems
3838     may ensue when trying to compile software, like Perl.
3839
3840     I'm trying to be optimistic here, though, and will continue.
3841     If later during the configuration and build icky compilation
3842     problems appear (headerfile conflicts being the most common
3843     manifestation), I suggest reinstalling the gcc to match
3844     your operating system release.
3845
3846 EOM
3847       ;;
3848    *) gccosandvers='' ;; # failed to parse, better be silent
3849    esac
3850    ;;
3851 esac
3852 case "$ccname" in
3853 '') ccname="$cc" ;;
3854 esac
3855
3856 # gcc 3.1 complains about adding -Idirectories that it already knows about,
3857 # so we will take those off from locincpth.
3858 case "$gccversion" in
3859 3*)
3860     echo "main(){}">try.c
3861     for incdir in `$cc -v -c try.c 2>&1 | \
3862        sed '1,/^#include <\.\.\.>/d;/^End of search list/,$d;s/^ //'` ; do
3863        locincpth=`echo $locincpth | sed s!$incdir!!`
3864     done
3865     $rm -f try try.*
3866 esac
3867
3868 : decide how portable to be.  Allow command line overrides.
3869 case "$d_portable" in
3870 "$undef") ;;
3871 *)      d_portable="$define" ;;
3872 esac
3873
3874 : set up shell script to do ~ expansion
3875 cat >filexp <<EOSS
3876 $startsh
3877 : expand filename
3878 case "\$1" in
3879  ~/*|~)
3880         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3881         ;;
3882  ~*)
3883         if $test -f /bin/csh; then
3884                 /bin/csh -f -c "glob \$1"
3885                 failed=\$?
3886                 echo ""
3887                 exit \$failed
3888         else
3889                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3890                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3891                 if $test ! -d "\$dir"; then
3892                         me=\`basename \$0\`
3893                         echo "\$me: can't locate home directory for: \$name" >&2
3894                         exit 1
3895                 fi
3896                 case "\$1" in
3897                 */*)
3898                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3899                         ;;
3900                 *)
3901                         echo \$dir
3902                         ;;
3903                 esac
3904         fi
3905         ;;
3906 *)
3907         echo \$1
3908         ;;
3909 esac
3910 EOSS
3911 chmod +x filexp
3912 $eunicefix filexp
3913
3914 : now set up to get a file name
3915 cat <<EOS >getfile
3916 $startsh
3917 EOS
3918 cat <<'EOSC' >>getfile
3919 tilde=''
3920 fullpath=''
3921 already=''
3922 skip=''
3923 none_ok=''
3924 exp_file=''
3925 nopath_ok=''
3926 orig_rp="$rp"
3927 orig_dflt="$dflt"
3928 case "$gfpth" in
3929 '') gfpth='.' ;;
3930 esac
3931
3932 case "$fn" in
3933 *\(*)
3934         : getfile will accept an answer from the comma-separated list
3935         : enclosed in parentheses even if it does not meet other criteria.
3936         expr "$fn" : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
3937         fn=`echo $fn | sed 's/(.*)//'`
3938         ;;
3939 esac
3940
3941 case "$fn" in
3942 *:*)
3943         loc_file=`expr $fn : '.*:\(.*\)'`
3944         fn=`expr $fn : '\(.*\):.*'`
3945         ;;
3946 esac
3947
3948 case "$fn" in
3949 *~*) tilde=true;;
3950 esac
3951 case "$fn" in
3952 */*) fullpath=true;;
3953 esac
3954 case "$fn" in
3955 *+*) skip=true;;
3956 esac
3957 case "$fn" in
3958 *n*) none_ok=true;;
3959 esac
3960 case "$fn" in
3961 *e*) exp_file=true;;
3962 esac
3963 case "$fn" in
3964 *p*) nopath_ok=true;;
3965 esac
3966
3967 case "$fn" in
3968 *f*) type='File';;
3969 *d*) type='Directory';;
3970 *l*) type='Locate';;
3971 esac
3972
3973 what="$type"
3974 case "$what" in
3975 Locate) what='File';;
3976 esac
3977
3978 case "$exp_file" in
3979 '')
3980         case "$d_portable" in
3981         "$define") ;;
3982         *) exp_file=true;;
3983         esac
3984         ;;
3985 esac
3986
3987 cd ..
3988 while test "$type"; do
3989         redo=''
3990         rp="$orig_rp"
3991         dflt="$orig_dflt"
3992         case "$tilde" in
3993         true) rp="$rp (~name ok)";;
3994         esac
3995         . UU/myread
3996         if test -f UU/getfile.ok && \
3997                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
3998         then
3999                 value="$ans"
4000                 ansexp="$ans"
4001                 break
4002         fi
4003         case "$ans" in
4004         none)
4005                 value=''
4006                 ansexp=''
4007                 case "$none_ok" in
4008                 true) type='';;
4009                 esac
4010                 ;;
4011         *)
4012                 case "$tilde" in
4013                 '') value="$ans"
4014                         ansexp="$ans";;
4015                 *)
4016                         value=`UU/filexp $ans`
4017                         case $? in
4018                         0)
4019                                 if test "$ans" != "$value"; then
4020                                         echo "(That expands to $value on this system.)"
4021                                 fi
4022                                 ;;
4023                         *) value="$ans";;
4024                         esac
4025                         ansexp="$value"
4026                         case "$exp_file" in
4027                         '') value="$ans";;
4028                         esac
4029                         ;;
4030                 esac
4031                 case "$fullpath" in
4032                 true)
4033                         case "$ansexp" in
4034                         /*) value="$ansexp" ;;
4035                         [a-zA-Z]:/*) value="$ansexp" ;;
4036                         *)
4037                                 redo=true
4038                                 case "$already" in
4039                                 true)
4040                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
4041                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
4042                                         ;;
4043                                 *)
4044                                 echo "Please give a full path name, starting with slash." >&4
4045                                         case "$tilde" in
4046                                         true)
4047                                 echo "Note that using ~name is ok provided it expands well." >&4
4048                                                 already=true
4049                                                 ;;
4050                                         esac
4051                                 esac
4052                                 ;;
4053                         esac
4054                         ;;
4055                 esac
4056                 case "$redo" in
4057                 '')
4058                         case "$type" in
4059                         File)
4060                                 for fp in $gfpth; do
4061                                         if test "X$fp" = X.; then
4062                                             pf="$ansexp"
4063                                         else    
4064                                             pf="$fp/$ansexp"
4065                                         fi
4066                                         if test -f "$pf"; then
4067                                                 type=''
4068                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
4069                                         then
4070                                                 echo "($value is not a plain file, but that's ok.)"
4071                                                 type=''
4072                                         fi
4073                                         if test X"$type" = X; then
4074                                             value="$pf"
4075                                             break
4076                                         fi
4077                                 done
4078                                 ;;
4079                         Directory)
4080                                 for fp in $gfpth; do
4081                                         if test "X$fp" = X.; then
4082                                             dir="$ans"
4083                                             direxp="$ansexp"
4084                                         else    
4085                                             dir="$fp/$ansexp"
4086                                             direxp="$fp/$ansexp"
4087                                         fi
4088                                         if test -d "$direxp"; then
4089                                                 type=''
4090                                                 value="$dir"
4091                                                 break
4092                                         fi
4093                                 done
4094                                 ;;
4095                         Locate)
4096                                 if test -d "$ansexp"; then
4097                                         echo "(Looking for $loc_file in directory $value.)"
4098                                         value="$value/$loc_file"
4099                                         ansexp="$ansexp/$loc_file"
4100                                 fi
4101                                 if test -f "$ansexp"; then
4102                                         type=''
4103                                 fi
4104                                 case "$nopath_ok" in
4105                                 true)   case "$value" in
4106                                         */*) ;;
4107                                         *)      echo "Assuming $value will be in people's path."
4108                                                 type=''
4109                                                 ;;
4110                                         esac
4111                                         ;;
4112                                 esac
4113                                 ;;
4114                         esac
4115
4116                         case "$skip" in
4117                         true) type='';
4118                         esac
4119
4120                         case "$type" in
4121                         '') ;;
4122                         *)
4123                                 if test "$fastread" = yes; then
4124                                         dflt=y
4125                                 else
4126                                         dflt=n
4127                                 fi
4128                                 rp="$what $value doesn't exist.  Use that name anyway?"
4129                                 . UU/myread
4130                                 dflt=''
4131                                 case "$ans" in
4132                                 y*) type='';;
4133                                 *) echo " ";;
4134                                 esac
4135                                 ;;
4136                         esac
4137                         ;;
4138                 esac
4139                 ;;
4140         esac
4141 done
4142 cd UU
4143 ans="$value"
4144 rp="$orig_rp"
4145 dflt="$orig_dflt"
4146 rm -f getfile.ok
4147 test "X$gfpthkeep" != Xy && gfpth=""
4148 EOSC
4149
4150 : What should the include directory be ?
4151 echo " "
4152 $echo $n "Hmm...  $c"
4153 dflt='/usr/include'
4154 incpath=''
4155 mips_type=''
4156 if $test -f /bin/mips && /bin/mips; then
4157         echo "Looks like a MIPS system..."
4158         $cat >usr.c <<'EOCP'
4159 #ifdef SYSTYPE_BSD43
4160 /bsd43
4161 #endif
4162 EOCP
4163         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4164                 dflt='/bsd43/usr/include'
4165                 incpath='/bsd43'
4166                 mips_type='BSD 4.3'
4167         else
4168                 mips_type='System V'
4169         fi
4170         $rm -f usr.c usr.out
4171         echo "and you're compiling with the $mips_type compiler and libraries."
4172         xxx_prompt=y
4173         echo "exit 0" >mips
4174 else
4175         echo "Doesn't look like a MIPS system."
4176         xxx_prompt=n
4177         echo "exit 1" >mips
4178 fi
4179 chmod +x mips
4180 $eunicefix mips
4181 case "$usrinc" in
4182 '') ;;
4183 *) dflt="$usrinc";;
4184 esac
4185 case "$xxx_prompt" in
4186 y)      fn=d/
4187         echo " "
4188         rp='Where are the include files you want to use?'
4189         . ./getfile
4190         usrinc="$ans"
4191         ;;
4192 *)      usrinc="$dflt"
4193         ;;
4194 esac
4195
4196 : see how we invoke the C preprocessor
4197 echo " "
4198 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4199 cat <<'EOT' >testcpp.c
4200 #define ABC abc
4201 #define XYZ xyz
4202 ABC.XYZ
4203 EOT
4204 cd ..
4205 if test ! -f cppstdin; then
4206         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4207                 # AIX cc -E doesn't show the absolute headerfile
4208                 # locations but we'll cheat by using the -M flag.
4209                 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
4210         else
4211                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4212         fi
4213 else
4214         echo "Keeping your $hint cppstdin wrapper."
4215 fi
4216 chmod 755 cppstdin
4217 wrapper=`pwd`/cppstdin
4218 ok='false'
4219 cd UU
4220
4221 if $test "X$cppstdin" != "X" && \
4222         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4223         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4224 then
4225         echo "You used to use $cppstdin $cppminus so we'll use that again."
4226         case "$cpprun" in
4227         '') echo "But let's see if we can live without a wrapper..." ;;
4228         *)
4229                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4230                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4231                 then
4232                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4233                         ok='true'
4234                 else
4235                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4236                 fi
4237                 ;;
4238         esac
4239 else
4240         case "$cppstdin" in
4241         '') ;;
4242         *)
4243                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4244                 ;;
4245         esac
4246 fi
4247
4248 if $ok; then
4249         : nothing
4250 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4251         $cc -E <testcpp.c >testcpp.out 2>&1; \
4252         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4253         echo "Yup, it does."
4254         x_cpp="$cc -E"
4255         x_minus='';
4256 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4257         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4258         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4259         echo "Yup, it does."
4260         x_cpp="$cc -E"
4261         x_minus='-';
4262 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4263         $cc -P <testcpp.c >testcpp.out 2>&1; \
4264         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4265         echo "Yipee, that works!"
4266         x_cpp="$cc -P"
4267         x_minus='';
4268 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4269         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4270         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4271         echo "At long last!"
4272         x_cpp="$cc -P"
4273         x_minus='-';
4274 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4275         $cpp <testcpp.c >testcpp.out 2>&1; \
4276         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4277         echo "It works!"
4278         x_cpp="$cpp"
4279         x_minus='';
4280 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4281         $cpp - <testcpp.c >testcpp.out 2>&1; \
4282         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4283         echo "Hooray, it works!  I was beginning to wonder."
4284         x_cpp="$cpp"
4285         x_minus='-';
4286 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4287         $wrapper <testcpp.c >testcpp.out 2>&1; \
4288         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4289         x_cpp="$wrapper"
4290         x_minus=''
4291         echo "Eureka!"
4292 else
4293         dflt=''
4294         rp="No dice.  I can't find a C preprocessor.  Name one:"
4295         . ./myread
4296         x_cpp="$ans"
4297         x_minus=''
4298         $x_cpp <testcpp.c >testcpp.out 2>&1
4299         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4300                 echo "OK, that will do." >&4
4301         else
4302 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4303                 exit 1
4304         fi
4305 fi
4306
4307 case "$ok" in
4308 false)
4309         cppstdin="$x_cpp"
4310         cppminus="$x_minus"
4311         cpprun="$x_cpp"
4312         cpplast="$x_minus"
4313         set X $x_cpp
4314         shift
4315         case "$1" in
4316         "$cpp")
4317                 echo "Perhaps can we force $cc -E using a wrapper..."
4318                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4319                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4320                 then
4321                         echo "Yup, we can."
4322                         cppstdin="$wrapper"
4323                         cppminus='';
4324                 else
4325                         echo "Nope, we'll have to live without it..."
4326                 fi
4327                 ;;
4328         esac
4329         case "$cpprun" in
4330         "$wrapper")
4331                 cpprun=''
4332                 cpplast=''
4333                 ;;
4334         esac
4335         ;;
4336 esac
4337
4338 case "$cppstdin" in
4339 "$wrapper"|'cppstdin') ;;
4340 *) $rm -f $wrapper;;
4341 esac
4342 $rm -f testcpp.c testcpp.out
4343
4344 : Set private lib path
4345 case "$plibpth" in
4346 '') if ./mips; then
4347                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4348         fi;;
4349 esac
4350 case "$libpth" in
4351 ' ') dlist='';;
4352 '') dlist="$loclibpth $plibpth $glibpth";;
4353 *) dlist="$libpth";;
4354 esac
4355
4356 : Now check and see which directories actually exist, avoiding duplicates
4357 libpth=''
4358 for xxx in $dlist
4359 do
4360     if $test -d $xxx; then
4361                 case " $libpth " in
4362                 *" $xxx "*) ;;
4363                 *) libpth="$libpth $xxx";;
4364                 esac
4365     fi
4366 done
4367 $cat <<'EOM'
4368
4369 Some systems have incompatible or broken versions of libraries.  Among
4370 the directories listed in the question below, please remove any you
4371 know not to be holding relevant libraries, and add any that are needed.
4372 Say "none" for none.
4373
4374 EOM
4375 case "$libpth" in
4376 '') dflt='none';;
4377 *)
4378         set X $libpth
4379         shift
4380         dflt=${1+"$@"}
4381         ;;
4382 esac
4383 rp="Directories to use for library searches?"
4384 . ./myread
4385 case "$ans" in
4386 none) libpth=' ';;
4387 *) libpth="$ans";;
4388 esac
4389
4390 : compute shared library extension
4391 case "$so" in
4392 '')
4393         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4394                 dflt='sl'
4395         else
4396                 dflt='so'
4397         fi
4398         ;;
4399 *) dflt="$so";;
4400 esac
4401 $cat <<EOM
4402
4403 On some systems, shared libraries may be available.  Answer 'none' if
4404 you want to suppress searching of shared libraries for the remainder
4405 of this configuration.
4406
4407 EOM
4408 rp='What is the file extension used for shared libraries?'
4409 . ./myread
4410 so="$ans"
4411
4412 : Define several unixisms.
4413 : Hints files or command line option can be used to override them.
4414 : The convoluted testing is in case hints files set either the old
4415 : or the new name.
4416 case "$_exe" in
4417 '')     case "$exe_ext" in
4418         '')     ;;
4419         *)      _exe="$exe_ext" ;;
4420         esac
4421         ;;
4422 esac
4423 case "$_a" in
4424 '')     case "$lib_ext" in
4425     '') _a='.a';;
4426         *)      _a="$lib_ext" ;;
4427         esac
4428         ;;
4429 esac
4430 case "$_o" in
4431 '') case "$obj_ext" in
4432         '')     _o='.o';;
4433         *)      _o="$obj_ext";;
4434         esac
4435         ;;
4436 esac
4437 case "$p_" in
4438 '') case "$path_sep" in
4439         '')     p_=':';;
4440         *)      p_="$path_sep";;
4441         esac
4442         ;;
4443 esac
4444 exe_ext=$_exe
4445 lib_ext=$_a
4446 obj_ext=$_o
4447 path_sep=$p_
4448
4449 : Which makefile gets called first.  This is used by make depend.
4450 case "$firstmakefile" in
4451 '') firstmakefile='makefile';;
4452 esac
4453
4454 : Looking for optional libraries
4455 echo " "
4456 echo "Checking for optional libraries..." >&4
4457 case "$libs" in
4458 ' '|'') dflt='';;
4459 *) dflt="$libs";;
4460 esac
4461 case "$libswanted" in
4462 '') libswanted='c_s';;
4463 esac
4464 case "$usesocks" in
4465 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4466 esac
4467 libsfound=''
4468 libsfiles=''
4469 libsdirs=''
4470 libspath=''
4471 for thisdir in $libpth $xlibpth; do
4472   test -d $thisdir && libspath="$libspath $thisdir"
4473 done
4474 for thislib in $libswanted; do
4475         for thisdir in $libspath; do
4476             xxx=''
4477             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4478                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4479                 $test -f "$xxx" && eval $libscheck
4480                 $test -f "$xxx" && libstyle=shared
4481             fi
4482             if test ! -f "$xxx"; then
4483                 xxx=$thisdir/lib$thislib.$so
4484                 $test -f "$xxx" && eval $libscheck
4485                 $test -f "$xxx" && libstyle=shared
4486             fi  
4487             if test ! -f "$xxx"; then
4488                 xxx=$thisdir/lib$thislib$_a
4489                 $test -f "$xxx" && eval $libscheck
4490                 $test -f "$xxx" && libstyle=static
4491             fi
4492             if test ! -f "$xxx"; then
4493                 xxx=$thisdir/$thislib$_a
4494                 $test -f "$xxx" && eval $libscheck
4495                 $test -f "$xxx" && libstyle=static
4496             fi
4497             if test ! -f "$xxx"; then
4498                 xxx=$thisdir/lib${thislib}_s$_a
4499                 $test -f "$xxx" && eval $libscheck
4500                 $test -f "$xxx" && libstyle=static
4501                 $test -f "$xxx" && thislib=${thislib}_s
4502             fi
4503             if test ! -f "$xxx"; then
4504                 xxx=$thisdir/Slib$thislib$_a
4505                 $test -f "$xxx" && eval $libscheck
4506                 $test -f "$xxx" && libstyle=static
4507             fi
4508             if $test -f "$xxx"; then
4509                 case "$libstyle" in
4510                 shared) echo "Found -l$thislib (shared)." ;;
4511                 static) echo "Found -l$thislib." ;;
4512                 *)      echo "Found -l$thislib ($libstyle)." ;;
4513                 esac
4514                 case " $dflt " in
4515                 *"-l$thislib "*);;
4516                 *) dflt="$dflt -l$thislib"
4517                    libsfound="$libsfound $xxx"
4518                    yyy=`basename $xxx`
4519                    libsfiles="$libsfiles $yyy"
4520                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4521                    case " $libsdirs " in
4522                    *" $yyy "*) ;;
4523                    *) libsdirs="$libsdirs $yyy" ;;
4524                    esac
4525                    ;;
4526                 esac
4527                 break
4528             fi  
4529         done
4530         if $test ! -f "$xxx"; then
4531             echo "No -l$thislib."
4532         fi
4533 done
4534 set X $dflt
4535 shift
4536 dflt="$*"
4537 case "$libs" in
4538 '') dflt="$dflt";;
4539 *) dflt="$libs";;
4540 esac
4541 case "$dflt" in
4542 ' '|'') dflt='none';;
4543 esac
4544
4545 $cat <<EOM
4546
4547 In order to compile $package on your machine, a number of libraries
4548 are usually needed.  Include any other special libraries here as well.
4549 Say "none" for none.  The default list is almost always right.
4550 EOM
4551
4552 echo " "
4553 rp="What libraries to use?"
4554 . ./myread
4555 case "$ans" in
4556 none) libs=' ';;
4557 *) libs="$ans";;
4558 esac
4559
4560 : determine optimization, if desired, or use for debug flag also
4561 case "$optimize" in
4562 ' '|$undef) dflt='none';;
4563 '') dflt='-O';;
4564 *) dflt="$optimize";;
4565 esac
4566 $cat <<EOH
4567
4568 By default, $package compiles with the -O flag to use the optimizer.
4569 Alternately, you might want to use the symbolic debugger, which uses
4570 the -g flag (on traditional Unix systems).  Either flag can be
4571 specified here.  To use neither flag, specify the word "none".
4572
4573 EOH
4574 rp="What optimizer/debugger flag should be used?"
4575 . ./myread
4576 optimize="$ans"
4577 case "$optimize" in
4578 'none') optimize=" ";;
4579 esac
4580
4581 dflt=''
4582 : We will not override a previous value, but we might want to
4583 : augment a hint file
4584 case "$hint" in
4585 default|recommended)
4586         case "$gccversion" in
4587         1*) dflt='-fpcc-struct-return' ;;
4588         esac
4589         case "$optimize" in
4590         *-g*) dflt="$dflt -DDEBUGGING";;
4591         esac
4592         case "$gccversion" in
4593         2*) if test -d /etc/conf/kconfig.d &&
4594                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
4595                 then
4596                         dflt="$dflt -posix"
4597                 fi
4598                 ;;
4599         esac
4600         case "$gccversion" in
4601         1*) ;;
4602         2.[0-8]*) ;;
4603         ?*)     echo " "
4604                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
4605                 echo 'int main(void) { return 0; }' > gcctest.c
4606                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
4607                         echo "Yes, it does." 2>&1
4608                         case "$ccflags" in
4609                         *strict-aliasing*) 
4610                                 echo "Leaving current flags $ccflags alone." 2>&1
4611                                 ;;
4612                         *) dflt="$dflt -fno-strict-aliasing" ;;
4613                         esac
4614                 else
4615                         echo "Nope, it doesn't, but that's ok." 2>&1
4616                 fi
4617                 ;;
4618         esac
4619         ;;
4620 esac
4621
4622 case "$mips_type" in
4623 *BSD*|'') inclwanted="$locincpth $usrinc";;
4624 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
4625 esac
4626 for thisincl in $inclwanted; do
4627         if $test -d $thisincl; then
4628                 if $test x$thisincl != x$usrinc; then
4629                         case "$dflt" in
4630                         *" -I$thisincl "*);;
4631                         *) dflt="$dflt -I$thisincl ";;
4632                         esac
4633                 fi
4634         fi
4635 done
4636
4637 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
4638         xxx=true;
4639 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
4640         xxx=true;
4641 else
4642         xxx=false;
4643 fi;
4644 if $xxx; then
4645         case "$dflt" in
4646         *$2*);;
4647         *) dflt="$dflt -D$2";;
4648         esac;
4649 fi'
4650
4651 set signal.h LANGUAGE_C; eval $inctest
4652
4653 case "$usesocks" in
4654 $define)
4655         ccflags="$ccflags -DSOCKS"
4656         ;;
4657 esac
4658
4659 case "$hint" in
4660 default|recommended) dflt="$ccflags $dflt" ;;
4661 *) dflt="$ccflags";;
4662 esac
4663
4664 case "$dflt" in
4665 ''|' ') dflt=none;;
4666 esac
4667
4668 $cat <<EOH
4669
4670 Your C compiler may want other flags.  For this question you should include
4671 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4672 but you should NOT include libraries or ld flags like -lwhatever.  If you
4673 want $package to honor its debug switch, you should include -DDEBUGGING here.
4674 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4675
4676 To use no flags, specify the word "none".
4677
4678 EOH
4679 set X $dflt
4680 shift
4681 dflt=${1+"$@"}
4682 rp="Any additional cc flags?"
4683 . ./myread
4684 case "$ans" in
4685 none) ccflags='';;
4686 *) ccflags="$ans";;
4687 esac
4688
4689 : the following weeds options from ccflags that are of no interest to cpp
4690 case "$cppflags" in
4691 '') cppflags="$ccflags" ;;
4692 *)  cppflags="$cppflags $ccflags" ;;
4693 esac
4694 case "$gccversion" in
4695 1*) cppflags="$cppflags -D__GNUC__"
4696 esac
4697 case "$mips_type" in
4698 '');;
4699 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4700 esac
4701 case "$cppflags" in
4702 '');;
4703 *)
4704         echo " "
4705         echo "Let me guess what the preprocessor flags are..." >&4
4706         set X $cppflags
4707         shift
4708         cppflags=''
4709         $cat >cpp.c <<'EOM'
4710 #define BLURFL foo
4711
4712 BLURFL xx LFRULB
4713 EOM
4714         previous=''
4715         for flag in $*
4716         do
4717                 case "$flag" in
4718                 -*) ftry="$flag";;
4719                 *) ftry="$previous $flag";;
4720                 esac
4721                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4722                         >cpp1.out 2>/dev/null && \
4723                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4724                         >cpp2.out 2>/dev/null && \
4725                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4726                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4727                 then
4728                         cppflags="$cppflags $ftry"
4729                         previous=''
4730                 else
4731                         previous="$flag"
4732                 fi
4733         done
4734         set X $cppflags
4735         shift
4736         cppflags=${1+"$@"}
4737         case "$cppflags" in
4738         *-*)  echo "They appear to be: $cppflags";;
4739         esac
4740         $rm -f cpp.c cpp?.out
4741         ;;
4742 esac
4743
4744 : flags used in final linking phase
4745 case "$ldflags" in
4746 '') if ./venix; then
4747                 dflt='-i -z'
4748         else
4749                 dflt=''
4750         fi
4751         case "$ccflags" in
4752         *-posix*) dflt="$dflt -posix" ;;
4753         esac
4754         ;;
4755 *) dflt="$ldflags";;
4756 esac
4757
4758 : Try to guess additional flags to pick up local libraries.
4759 for thislibdir in $libpth; do
4760         case " $loclibpth " in
4761         *" $thislibdir "*)
4762                 case "$dflt " in 
4763                 *"-L$thislibdir "*) ;;
4764                 *)  dflt="$dflt -L$thislibdir" ;;
4765                 esac
4766                 ;;
4767         esac
4768 done
4769
4770 case "$dflt" in
4771 '') dflt='none' ;;
4772 esac
4773
4774 $cat <<EOH
4775
4776 Your C linker may need flags.  For this question you should
4777 include -L/whatever and any other flags used by the C linker, but you
4778 should NOT include libraries like -lwhatever.
4779
4780 Make sure you include the appropriate -L/path flags if your C linker
4781 does not normally search all of the directories you specified above,
4782 namely
4783         $libpth
4784 To use no flags, specify the word "none".
4785
4786 EOH
4787
4788 rp="Any additional ld flags (NOT including libraries)?"
4789 . ./myread
4790 case "$ans" in
4791 none) ldflags='';;
4792 *) ldflags="$ans";;
4793 esac
4794 rmlist="$rmlist pdp11"
4795
4796 : coherency check
4797 echo " "
4798 echo "Checking your choice of C compiler and flags for coherency..." >&4
4799 $cat > try.c <<'EOF'
4800 #include <stdio.h>
4801 int main() { printf("Ok\n"); exit(0); }
4802 EOF
4803 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
4804 shift
4805 $cat >try.msg <<'EOM'
4806 I've tried to compile and run the following simple program:
4807
4808 EOM
4809 $cat try.c >> try.msg
4810
4811 $cat >> try.msg <<EOM
4812
4813 I used the command:
4814
4815         $*
4816         $run ./try
4817
4818 and I got the following output:
4819
4820 EOM
4821 dflt=y
4822 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
4823         if $sh -c "$run ./try" >>try.msg 2>&1; then
4824                 xxx=`$run ./try`
4825                 case "$xxx" in
4826                 "Ok") dflt=n ;;
4827                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4828                         case " $libs " in
4829                         *" -lsfio "*)
4830                                 cat >> try.msg <<'EOQS'
4831 If $libs contains -lsfio, and sfio is mis-configured, then it
4832 sometimes (apparently) runs and exits with a 0 status, but with no
4833 output!  It may have to do with sfio's use of _exit vs. exit.
4834
4835 EOQS
4836                                 rp="You have a big problem.  Shall I abort Configure"
4837                                 dflt=y
4838                                 ;;
4839                         esac
4840                         ;;
4841                 esac
4842         else
4843                 echo "The program compiled OK, but exited with status $?." >>try.msg
4844                 rp="You have a problem.  Shall I abort Configure"
4845                 dflt=y
4846         fi
4847 else
4848         echo "I can't compile the test program." >>try.msg
4849         rp="You have a BIG problem.  Shall I abort Configure"
4850         dflt=y
4851 fi
4852 case "$dflt" in
4853 y)
4854         $cat try.msg >&4
4855         case "$knowitall" in
4856         '')
4857                 echo "(The supplied flags or libraries might be incorrect.)"
4858                 ;;
4859         *) dflt=n;;
4860         esac
4861         echo " "
4862         . ./myread
4863         case "$ans" in
4864         n*|N*) ;;
4865         *)      echo "Ok.  Stopping Configure." >&4
4866                 exit 1
4867                 ;;
4868         esac
4869         ;;
4870 n) echo "OK, that should do.";;
4871 esac
4872 $rm -f try try.* core
4873
4874 : define a shorthand compile call
4875 compile='
4876 mc_file=$1;
4877 shift;
4878 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
4879 : define a shorthand compile call for compilations that should be ok.
4880 compile_ok='
4881 mc_file=$1;
4882 shift;
4883 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
4884
4885 : check for lengths of integral types
4886 echo " "
4887 case "$intsize" in
4888 '')
4889         echo "Checking to see how big your integers are..." >&4
4890         $cat >try.c <<'EOCP'
4891 #include <stdio.h>
4892 int main()
4893 {
4894         printf("intsize=%d;\n", (int)sizeof(int));
4895         printf("longsize=%d;\n", (int)sizeof(long));
4896         printf("shortsize=%d;\n", (int)sizeof(short));
4897         exit(0);
4898 }
4899 EOCP
4900         set try
4901         if eval $compile_ok && $run ./try > /dev/null; then
4902                 eval `$run ./try`
4903                 echo "Your integers are $intsize bytes long."
4904                 echo "Your long integers are $longsize bytes long."
4905                 echo "Your short integers are $shortsize bytes long."
4906         else
4907                 $cat >&4 <<EOM
4908 !
4909 Help! I can't compile and run the intsize test program: please enlighten me!
4910 (This is probably a misconfiguration in your system or libraries, and
4911 you really ought to fix it.  Still, I'll try anyway.)
4912 !
4913 EOM
4914                 dflt=4
4915                 rp="What is the size of an integer (in bytes)?"
4916                 . ./myread
4917                 intsize="$ans"
4918                 dflt=$intsize
4919                 rp="What is the size of a long integer (in bytes)?"
4920                 . ./myread
4921                 longsize="$ans"
4922                 dflt=2
4923                 rp="What is the size of a short integer (in bytes)?"
4924                 . ./myread
4925                 shortsize="$ans"
4926         fi
4927         ;;
4928 esac
4929 $rm -f try try.*
4930
4931 : check for long long
4932 echo " "
4933 echo "Checking to see if you have long long..." >&4
4934 echo 'int main() { long long x = 7; return 0; }' > try.c
4935 set try
4936 if eval $compile; then
4937         val="$define"
4938         echo "You have long long."
4939 else
4940         val="$undef"
4941         echo "You do not have long long."
4942 fi
4943 $rm try.*
4944 set d_longlong
4945 eval $setvar
4946
4947 : check for length of long long
4948 case "${d_longlong}${longlongsize}" in
4949 $define)
4950         echo " "
4951         echo "Checking to see how big your long longs are..." >&4
4952         $cat >try.c <<'EOCP'
4953 #include <stdio.h>
4954 int main()
4955 {
4956     printf("%d\n", (int)sizeof(long long));
4957     return(0);
4958 }
4959 EOCP
4960         set try
4961         if eval $compile_ok; then
4962                 longlongsize=`$run ./try`
4963                 echo "Your long longs are $longlongsize bytes long."
4964         else
4965                 dflt='8'
4966                 echo " "
4967                 echo "(I can't seem to compile the test program.  Guessing...)"
4968                 rp="What is the size of a long long (in bytes)?"
4969                 . ./myread
4970                 longlongsize="$ans"
4971         fi
4972         if $test "X$longsize" = "X$longlongsize"; then
4973                 echo "(That isn't any different from an ordinary long.)"
4974         fi      
4975         ;;
4976 esac
4977 $rm -f try.* try
4978
4979 : determine filename position in cpp output
4980 echo " "
4981 echo "Computing filename position in cpp output for #include directives..." >&4
4982 case "$osname" in
4983 vos) testaccess=-e ;;
4984 *)   testaccess=-r ;;
4985 esac
4986 echo '#include <stdio.h>' > foo.c
4987 $cat >fieldn <<EOF
4988 $startsh
4989 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
4990 $grep '^[       ]*#.*stdio\.h' | \
4991 while read cline; do
4992         pos=1
4993         set \$cline
4994         while $test \$# -gt 0; do
4995                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
4996                         echo "\$pos"
4997                         exit 0
4998                 fi
4999                 shift
5000                 pos=\`expr \$pos + 1\`
5001         done
5002 done
5003 EOF
5004 chmod +x fieldn
5005 fieldn=`./fieldn`
5006 $rm -f foo.c fieldn
5007 case $fieldn in
5008 '') pos='???';;
5009 1) pos=first;;
5010 2) pos=second;;
5011 3) pos=third;;
5012 *) pos="${fieldn}th";;
5013 esac
5014 echo "Your cpp writes the filename in the $pos field of the line."
5015
5016 case "$osname" in
5017 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5018 *)   cppfilter='' ;;
5019 esac
5020 : locate header file
5021 $cat >findhdr <<EOF
5022 $startsh
5023 wanted=\$1
5024 name=''
5025 for usrincdir in $usrinc
5026 do
5027         if test -f \$usrincdir/\$wanted; then
5028                 echo "\$usrincdir/\$wanted"
5029                 exit 0
5030         fi
5031 done
5032 awkprg='{ print \$$fieldn }'
5033 echo "#include <\$wanted>" > foo\$\$.c
5034 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5035 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5036 while read cline; do
5037         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5038         case "\$name" in
5039         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5040         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5041         *) exit 2;;
5042         esac;
5043 done;
5044 #
5045 # status = 0: grep returned 0 lines, case statement not executed
5046 # status = 1: headerfile found
5047 # status = 2: while loop executed, no headerfile found
5048 #
5049 status=\$?
5050 $rm -f foo\$\$.c;
5051 if test \$status -eq 1; then
5052         exit 0;
5053 fi
5054 exit 1
5055 EOF
5056 chmod +x findhdr
5057
5058 : define an alternate in-header-list? function
5059 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5060 cont=true; xxf="echo \"<\$1> found.\" >&4";
5061 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5062 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5063 esac;
5064 case $# in 4) instead=instead;; *) instead="at last";; esac;
5065 while $test "$cont"; do
5066         xxx=`./findhdr $1`
5067         var=$2; eval "was=\$$2";
5068         if $test "$xxx" && $test -r "$xxx";
5069         then eval $xxf;
5070         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5071                 cont="";
5072         else eval $xxnf;
5073         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5074         set $yyy; shift; shift; yyy=$@;
5075         case $# in 0) cont="";;
5076         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5077                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5078         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5079                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5080         esac;
5081 done;
5082 while $test "$yyy";
5083 do set $yyy; var=$2; eval "was=\$$2";
5084         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5085         set $yyy; shift; shift; yyy=$@;
5086 done'
5087
5088 : see if inttypes.h is available
5089 : we want a real compile instead of Inhdr because some systems
5090 : have an inttypes.h which includes non-existent headers
5091 echo " "
5092 $cat >try.c <<EOCP
5093 #include <inttypes.h>
5094 int main() {
5095         static int32_t foo32 = 0x12345678;
5096 }
5097 EOCP
5098 set try
5099 if eval $compile; then
5100         echo "<inttypes.h> found." >&4
5101         val="$define"
5102 else
5103         echo "<inttypes.h> NOT found." >&4
5104         val="$undef"
5105 fi
5106 $rm -f try.c try
5107 set i_inttypes
5108 eval $setvar
5109
5110 : check for int64_t
5111 echo " "
5112 echo "Checking to see if you have int64_t..." >&4
5113 $cat >try.c <<EOCP
5114 #include <sys/types.h>
5115 #$i_inttypes I_INTTYPES
5116 #ifdef I_INTTYPES
5117 #include <inttypes.h>
5118 #endif
5119 int main() { int64_t x = 7; }
5120 EOCP
5121 set try
5122 if eval $compile; then
5123         val="$define"
5124         echo "You have int64_t."
5125 else
5126         val="$undef"
5127         echo "You do not have int64_t."
5128 fi
5129 $rm -f try try.*
5130 set d_int64_t
5131 eval $setvar
5132
5133
5134 echo " "
5135 echo "Checking which 64-bit integer type we could use..." >&4
5136
5137 case "$intsize" in
5138 8) val=int
5139    set quadtype
5140    eval $setvar
5141    val='"unsigned int"'
5142    set uquadtype
5143    eval $setvar
5144    quadkind=1
5145    ;;
5146 *) case "$longsize" in
5147    8) val=long
5148       set quadtype
5149       eval $setvar
5150       val='"unsigned long"'
5151       set uquadtype
5152       eval $setvar
5153       quadkind=2
5154       ;;
5155    *) case "$d_longlong:$longlongsize" in
5156       define:8)
5157         val='"long long"'
5158         set quadtype
5159         eval $setvar
5160         val='"unsigned long long"'
5161         set uquadtype
5162         eval $setvar
5163         quadkind=3
5164         ;;
5165       *) case "$d_int64_t" in
5166          define)
5167            val=int64_t
5168            set quadtype
5169            eval $setvar
5170            val=uint64_t
5171            set uquadtype
5172            eval $setvar
5173            quadkind=4
5174            ;;
5175          esac
5176          ;;
5177       esac
5178       ;;
5179    esac
5180    ;;
5181 esac
5182
5183 case "$quadtype" in
5184 '')     echo "Alas, no 64-bit integer types in sight." >&4
5185         d_quad="$undef"
5186         ;;
5187 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5188         d_quad="$define"
5189         ;;
5190 esac
5191
5192
5193 case "$uselonglong" in
5194 "$define"|true|[yY]*)
5195         cat <<EOM >&4
5196
5197 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5198 EOM
5199         use64bitint="$define"
5200         ;;
5201 esac                          
5202 case "$use64bits" in
5203 "$define"|true|[yY]*)
5204         cat <<EOM >&4
5205
5206 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5207 EOM
5208         use64bitint="$define"
5209         ;;
5210 esac                          
5211 case "$use64bitints" in
5212 "$define"|true|[yY]*)
5213         cat <<EOM >&4
5214
5215 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5216 EOM
5217         use64bitint="$define"
5218         ;;
5219 esac                          
5220 case "$use64bitsint" in
5221 "$define"|true|[yY]*)
5222         cat <<EOM >&4
5223
5224 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5225 EOM
5226         use64bitint="$define"
5227         ;;
5228 esac                          
5229 case "$uselonglongs" in
5230 "$define"|true|[yY]*)
5231         cat <<EOM >&4
5232
5233 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5234 EOM
5235         use64bitint="$define"
5236         ;;
5237 esac                          
5238 case "$use64bitsall" in
5239 "$define"|true|[yY]*)
5240         cat <<EOM >&4
5241
5242 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5243 EOM
5244         use64bitall="$define"
5245         ;;
5246 esac                          
5247
5248 case "$ccflags" in
5249 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5250 esac
5251 case "$use64bitall" in
5252 "$define"|true|[yY]*) use64bitint="$define" ;;
5253 esac
5254
5255 case "$longsize" in
5256 8) cat <<EOM
5257
5258 You have natively 64-bit long integers.
5259 EOM
5260    val="$define"
5261    ;;
5262 *) case "$use64bitint" in
5263    "$define"|true|[yY]*) dflt='y';;
5264    *) dflt='n';;
5265    esac
5266    case "$d_quad" in
5267    "$define") ;;
5268    *) dflt='n' ;;
5269    esac
5270    cat <<EOM
5271
5272 Perl can be built to take advantage of 64-bit integer types
5273 on some systems.  To do so, Configure can be run with -Duse64bitint.
5274 Choosing this option will most probably introduce binary incompatibilities.
5275
5276 If this doesn't make any sense to you, just accept the default '$dflt'.
5277 (The default has been chosen based on your configuration.)
5278 EOM
5279    rp='Try to use 64-bit integers, if available?'
5280    . ./myread
5281    case "$ans" in
5282    [yY]*) val="$define" ;;
5283    *)     val="$undef"  ;;
5284    esac
5285    ;;
5286 esac
5287 set use64bitint
5288 eval $setvar
5289
5290 case "$use64bitall" in
5291 "$define"|true|[yY]*) dflt='y' ;;
5292 *) case "$longsize" in
5293    8) dflt='y' ;;
5294    *) dflt='n' ;;
5295    esac
5296    ;;
5297 esac    
5298 cat <<EOM
5299
5300 You may also choose to try maximal 64-bitness.  It means using as much
5301 64-bitness as possible on the platform.  This in turn means even more
5302 binary incompatibilities.  On the other hand, your platform may not
5303 have any more 64-bitness available than what you already have chosen.
5304
5305 If this doesn't make any sense to you, just accept the default '$dflt'.
5306 (The default has been chosen based on your configuration.)
5307 EOM
5308 rp='Try to use maximal 64-bit support, if available?'
5309 . ./myread
5310 case "$ans" in
5311 [yY]*) val="$define" ;;
5312 *)     val="$undef"  ;;
5313 esac
5314 set use64bitall
5315 eval $setvar
5316 case "$use64bitall" in
5317 "$define")
5318         case "$use64bitint" in
5319         "$undef")
5320                 cat <<EOM
5321
5322 Since you have chosen a maximally 64-bit build, I'm also turning on
5323 the use of 64-bit integers.
5324 EOM
5325                 use64bitint="$define" ;;
5326         esac
5327         ;;
5328 esac
5329
5330 case "$use64bitint" in
5331 "$define"|true|[yY]*)
5332 : Look for a hint-file generated 'call-back-unit'.  If the
5333 : user has specified that a 64-bit perl is to be built,
5334 : we may need to set or change some other defaults.
5335         if $test -f use64bitint.cbu; then
5336                 echo "Your platform has some specific hints for 64-bit integers, using them..."
5337                 . ./use64bitint.cbu
5338         fi
5339         case "$longsize" in
5340         4) case "$archname64" in
5341            '') archname64=64int ;;
5342            esac
5343            ;;
5344         esac
5345         ;;
5346 esac
5347
5348 case "$use64bitall" in
5349 "$define"|true|[yY]*)
5350 : Look for a hint-file generated 'call-back-unit'.  If the
5351 : user has specified that a maximally 64-bit perl is to be built,
5352 : we may need to set or change some other defaults.
5353         if $test -f use64bitall.cbu; then
5354                 echo "Your platform has some specific hints for 64-bit builds, using them..."
5355                 . ./use64bitall.cbu
5356         fi
5357         case "$longsize" in
5358         4) case "$archname64" in
5359            ''|64int) archname64=64all ;;
5360            esac
5361            ;;
5362         esac
5363         ;;
5364 esac
5365
5366 echo " "
5367 echo "Checking for GNU C Library..." >&4
5368 cat >try.c <<'EOCP'
5369 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
5370    alone are insufficient to distinguish different versions, such as
5371    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
5372    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
5373 */
5374 #include <stdio.h>
5375 int main(void)
5376 {
5377 #ifdef __GLIBC__
5378 #   ifdef __GLIBC_MINOR__
5379 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
5380 #           include <gnu/libc-version.h>
5381             printf("%s\n",  gnu_get_libc_version());
5382 #       else
5383             printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
5384 #       endif
5385 #   else
5386         printf("%d\n",  __GLIBC__);
5387 #   endif
5388     return 0;
5389 #else
5390     return 1;
5391 #endif
5392 }
5393 EOCP
5394 set try
5395 if eval $compile_ok && $run ./try > glibc.ver; then
5396         val="$define"
5397         gnulibc_version=`$cat glibc.ver`
5398         echo "You are using the GNU C Library version $gnulibc_version"
5399 else
5400         val="$undef"
5401         gnulibc_version=''
5402         echo "You are not using the GNU C Library"
5403 fi
5404 $rm -f try try.* glibc.ver
5405 set d_gnulibc
5406 eval $setvar
5407
5408 : see if nm is to be used to determine whether a symbol is defined or not
5409 case "$usenm" in
5410 '')
5411         dflt=''
5412         case "$d_gnulibc" in
5413         "$define")
5414                 echo " "
5415                 echo "nm probably won't work on the GNU C Library." >&4
5416                 dflt=n
5417                 ;;
5418         esac
5419         case "$dflt" in
5420         '') 
5421                 if $test "$osname" = aix -a ! -f /lib/syscalls.exp; then
5422                         echo " "
5423                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
5424                         echo "'nm' won't be sufficient on this sytem." >&4
5425                         dflt=n
5426                 fi
5427                 ;;
5428         esac
5429         case "$dflt" in
5430         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
5431                 if $test $dflt -gt 20; then
5432                         dflt=y
5433                 else
5434                         dflt=n
5435                 fi
5436                 ;;
5437         esac
5438         ;;
5439 *)
5440         case "$usenm" in
5441         true|$define) dflt=y;;
5442         *) dflt=n;;
5443         esac
5444         ;;
5445 esac
5446 $cat <<EOM
5447
5448 I can use $nm to extract the symbols from your C libraries. This
5449 is a time consuming task which may generate huge output on the disk (up
5450 to 3 megabytes) but that should make the symbols extraction faster. The
5451 alternative is to skip the 'nm' extraction part and to compile a small
5452 test program instead to determine whether each symbol is present. If
5453 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
5454 this may be the best solution.
5455
5456 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
5457
5458 EOM
5459 rp="Shall I use $nm to extract C symbols from the libraries?"
5460 . ./myread
5461 case "$ans" in
5462 [Nn]*) usenm=false;;
5463 *) usenm=true;;
5464 esac
5465
5466 runnm=$usenm
5467 case "$reuseval" in
5468 true) runnm=false;;
5469 esac
5470
5471 : nm options which may be necessary
5472 case "$nm_opt" in
5473 '') if $test -f /mach_boot; then
5474                 nm_opt=''       # Mach
5475         elif $test -d /usr/ccs/lib; then
5476                 nm_opt='-p'     # Solaris (and SunOS?)
5477         elif $test -f /dgux; then
5478                 nm_opt='-p'     # DG-UX
5479         elif $test -f /lib64/rld; then
5480                 nm_opt='-p'     # 64-bit Irix
5481         else
5482                 nm_opt=''
5483         fi;;
5484 esac
5485
5486 : nm options which may be necessary for shared libraries but illegal
5487 : for archive libraries.  Thank you, Linux.
5488 case "$nm_so_opt" in
5489 '')     case "$myuname" in
5490         *linux*)
5491                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
5492                         nm_so_opt='--dynamic'
5493                 fi
5494                 ;;
5495         esac
5496         ;;
5497 esac
5498
5499 case "$runnm" in
5500 true)
5501 : get list of predefined functions in a handy place
5502 echo " "
5503 case "$libc" in
5504 '') libc=unknown
5505         case "$libs" in
5506         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
5507         esac
5508         ;;
5509 esac
5510 case "$libs" in
5511 '') ;;
5512 *)  for thislib in $libs; do
5513         case "$thislib" in
5514         -lc|-lc_s)
5515                 : Handle C library specially below.
5516                 ;;
5517         -l*)
5518                 thislib=`echo $thislib | $sed -e 's/^-l//'`
5519                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
5520                         :
5521                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
5522                         :
5523                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
5524                         :
5525                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
5526                         :
5527                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
5528                         :
5529                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
5530                         :
5531                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
5532                         :
5533                 else
5534                         try=''
5535                 fi
5536                 libnames="$libnames $try"
5537                 ;;
5538         *) libnames="$libnames $thislib" ;;
5539         esac
5540         done
5541         ;;
5542 esac
5543 xxx=normal
5544 case "$libc" in
5545 unknown)
5546         set /lib/libc.$so
5547         for xxx in $libpth; do
5548                 $test -r $1 || set $xxx/libc.$so
5549                 : The messy sed command sorts on library version numbers.
5550                 $test -r $1 || \
5551                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
5552                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
5553                                 h
5554                                 s/[0-9][0-9]*/0000&/g
5555                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
5556                                 G
5557                                 s/\n/ /' | \
5558                          $sort | $sed -e 's/^.* //'`
5559                 eval set \$$#
5560         done
5561         $test -r $1 || set /usr/ccs/lib/libc.$so
5562         $test -r $1 || set /lib/libsys_s$_a
5563         ;;
5564 *)
5565         set blurfl
5566         ;;
5567 esac
5568 if $test -r "$1"; then
5569         echo "Your (shared) C library seems to be in $1."
5570         libc="$1"
5571 elif $test -r /lib/libc && $test -r /lib/clib; then
5572         echo "Your C library seems to be in both /lib/clib and /lib/libc."
5573         xxx=apollo
5574         libc='/lib/clib /lib/libc'
5575         if $test -r /lib/syslib; then
5576                 echo "(Your math library is in /lib/syslib.)"
5577                 libc="$libc /lib/syslib"
5578         fi
5579 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
5580         echo "Your C library seems to be in $libc, as you said before."
5581 elif $test -r $incpath/usr/lib/libc$_a; then
5582         libc=$incpath/usr/lib/libc$_a;
5583         echo "Your C library seems to be in $libc.  That's fine."
5584 elif $test -r /lib/libc$_a; then
5585         libc=/lib/libc$_a;
5586         echo "Your C library seems to be in $libc.  You're normal."
5587 else
5588         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
5589                 :
5590         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
5591                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
5592         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
5593                 :
5594         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
5595                 :
5596         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
5597                 :
5598         else
5599                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
5600         fi
5601         if $test -r "$tans"; then
5602                 echo "Your C library seems to be in $tans, of all places."
5603                 libc=$tans
5604         else
5605                 libc='blurfl'
5606         fi
5607 fi
5608 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
5609         dflt="$libc"
5610         cat <<EOM
5611
5612 If the guess above is wrong (which it might be if you're using a strange
5613 compiler, or your machine supports multiple models), you can override it here.
5614
5615 EOM
5616 else
5617         dflt=''
5618         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
5619         cat >&4 <<EOM
5620 I can't seem to find your C library.  I've looked in the following places:
5621
5622 EOM
5623         $sed 's/^/      /' libpath
5624         cat <<EOM
5625
5626 None of these seems to contain your C library. I need to get its name...
5627
5628 EOM
5629 fi
5630 fn=f
5631 rp='Where is your C library?'
5632 . ./getfile
5633 libc="$ans"
5634
5635 echo " "
5636 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
5637 set X `cat libnames`
5638 shift
5639 xxx=files
5640 case $# in 1) xxx=file; esac
5641 echo "Extracting names from the following $xxx for later perusal:" >&4
5642 echo " "
5643 $sed 's/^/      /' libnames >&4
5644 echo " "
5645 $echo $n "This may take a while...$c" >&4
5646
5647 for file in $*; do
5648         case $file in
5649         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
5650         *) $nm $nm_opt $file 2>/dev/null;;
5651         esac
5652 done >libc.tmp
5653
5654 $echo $n ".$c"
5655 $grep fprintf libc.tmp > libc.ptf
5656 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
5657 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
5658 xxx='[ADTSIW]'
5659 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *_[_.]*//p' -e 's/^.* $xxx  *//p'";\
5660         eval $xscan;\
5661         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5662                 eval $xrun
5663 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
5664         eval $xscan;\
5665         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5666                 eval $xrun
5667 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
5668         eval $xscan;\
5669         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5670                 eval $xrun
5671 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
5672         eval $xscan;\
5673         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5674                 eval $xrun
5675 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
5676         eval $xscan;\
5677         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5678                 eval $xrun
5679 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
5680         eval $xscan;\
5681         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5682                 eval $xrun
5683 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
5684                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
5685         eval $xscan;\
5686         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5687                 eval $xrun
5688 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
5689         eval $xscan;\
5690         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5691                 eval $xrun
5692 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
5693         eval $xscan;\
5694         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5695                 eval $xrun
5696 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
5697         eval $xscan;\
5698         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5699                 eval $xrun
5700 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
5701         eval $xscan;\
5702         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5703                 eval $xrun
5704 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
5705         eval $xscan;\
5706         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5707                 eval $xrun
5708 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
5709         eval $xscan;\
5710         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5711                 eval $xrun
5712 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
5713         eval $xscan;\
5714         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5715                 eval $xrun
5716 else
5717         $nm -p $* 2>/dev/null >libc.tmp
5718         $grep fprintf libc.tmp > libc.ptf
5719         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
5720                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
5721         then
5722                 nm_opt='-p'
5723                 eval $xrun
5724         else
5725                 echo " "
5726                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
5727                 com=''
5728                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
5729                         for thisname in $libnames $libc; do
5730                                 $ar t $thisname >>libc.tmp
5731                         done
5732                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
5733                         echo "Ok." >&4
5734                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
5735                         # Repeat libc to extract forwarders to DLL entries too
5736                         for thisname in $libnames $libc; do
5737                                 $ar tv $thisname >>libc.tmp
5738                                 # Revision 50 of EMX has bug in $ar.
5739                                 # it will not extract forwarders to DLL entries
5740                                 # Use emximp which will extract exactly them.
5741                                 emximp -o tmp.imp $thisname \
5742                                     2>/dev/null && \
5743                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
5744                                     < tmp.imp >>libc.tmp
5745                                 $rm tmp.imp
5746                         done
5747                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
5748                         echo "Ok." >&4
5749                 else
5750                         echo "$ar didn't seem to work right." >&4
5751                         echo "Maybe this is a Cray...trying bld instead..." >&4
5752                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
5753                         then
5754                                 for thisname in $libnames; do
5755                                         bld t $libnames | \
5756                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
5757                                         $ar t $thisname >>libc.tmp
5758                                 done
5759                                 echo "Ok." >&4
5760                         else
5761                                 echo "That didn't work either.  Giving up." >&4
5762                                 exit 1
5763                         fi
5764                 fi
5765         fi
5766 fi
5767 nm_extract="$com"
5768 if $test -f /lib/syscalls.exp; then
5769         echo " "
5770         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
5771         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
5772 fi
5773 ;;
5774 esac
5775 $rm -f libnames libpath
5776
5777 : is a C symbol defined?
5778 csym='tlook=$1;
5779 case "$3" in
5780 -v) tf=libc.tmp; tc=""; tdc="";;
5781 -a) tf=libc.tmp; tc="[0]"; tdc="[]";;
5782 *) tlook="^$1\$"; tf=libc.list; tc="()"; tdc="()";;
5783 esac;
5784 tx=yes;
5785 case "$reuseval-$4" in
5786 true-) ;;
5787 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
5788 esac;
5789 case "$tx" in
5790 yes)
5791         case "$runnm" in
5792         true)
5793                 if $contains $tlook $tf >/dev/null 2>&1;
5794                 then tval=true;
5795                 else tval=false;
5796                 fi;;
5797         *)
5798                 echo "int main() { extern short $1$tdc; printf(\"%hd\", $1$tc); }" > t.c;
5799                 if $cc -o t $optimize $ccflags $ldflags t.c $libs >/dev/null 2>&1;
5800                 then tval=true;
5801                 else tval=false;
5802                 fi;
5803                 $rm -f t t.c;;
5804         esac;;
5805 *)
5806         case "$tval" in
5807         $define) tval=true;;
5808         *) tval=false;;
5809         esac;;
5810 esac;
5811 eval "$2=$tval"'
5812
5813 : define an is-in-libc? function
5814 inlibc='echo " "; td=$define; tu=$undef;
5815 sym=$1; var=$2; eval "was=\$$2";
5816 tx=yes;
5817 case "$reuseval$was" in
5818 true) ;;
5819 true*) tx=no;;
5820 esac;
5821 case "$tx" in
5822 yes)
5823         set $sym tres -f;
5824         eval $csym;
5825         case "$tres" in
5826         true)
5827                 echo "$sym() found." >&4;
5828                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
5829         *)
5830                 echo "$sym() NOT found." >&4;
5831                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
5832         esac;;
5833 *)
5834         case "$was" in
5835         $define) echo "$sym() found." >&4;;
5836         *) echo "$sym() NOT found." >&4;;
5837         esac;;
5838 esac'
5839
5840 : see if sqrtl exists
5841 set sqrtl d_sqrtl
5842 eval $inlibc
5843
5844 : check for length of double
5845 echo " "
5846 case "$doublesize" in
5847 '')
5848         echo "Checking to see how big your double precision numbers are..." >&4
5849         $cat >try.c <<'EOCP'
5850 #include <stdio.h>
5851 int main()
5852 {
5853     printf("%d\n", (int)sizeof(double));
5854     exit(0);
5855 }
5856 EOCP
5857         set try
5858         if eval $compile_ok; then
5859                 doublesize=`$run ./try`
5860                 echo "Your double is $doublesize bytes long."
5861         else
5862                 dflt='8'
5863                 echo "(I can't seem to compile the test program.  Guessing...)"
5864                 rp="What is the size of a double precision number (in bytes)?"
5865                 . ./myread
5866                 doublesize="$ans"
5867         fi
5868         ;;
5869 esac
5870 $rm -f try.c try
5871
5872 : check for long doubles
5873 echo " "
5874 echo "Checking to see if you have long double..." >&4
5875 echo 'int main() { long double x = 7.0; }' > try.c
5876 set try
5877 if eval $compile; then
5878         val="$define"
5879         echo "You have long double."
5880 else
5881         val="$undef"
5882         echo "You do not have long double."
5883 fi
5884 $rm try.*
5885 set d_longdbl
5886 eval $setvar
5887
5888 : check for length of long double
5889 case "${d_longdbl}${longdblsize}" in
5890 $define)
5891         echo " "
5892         echo "Checking to see how big your long doubles are..." >&4
5893         $cat >try.c <<'EOCP'
5894 #include <stdio.h>
5895 int main()
5896 {
5897         printf("%d\n", sizeof(long double));
5898 }
5899 EOCP
5900         set try
5901         set try
5902         if eval $compile; then
5903                 longdblsize=`$run ./try`
5904                 echo "Your long doubles are $longdblsize bytes long."
5905         else
5906                 dflt='8'
5907                 echo " "
5908                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
5909                 rp="What is the size of a long double (in bytes)?"
5910                 . ./myread
5911                 longdblsize="$ans"
5912         fi
5913         if $test "X$doublesize" = "X$longdblsize"; then
5914                 echo "(That isn't any different from an ordinary double.)"
5915         fi      
5916         ;;
5917 esac
5918 $rm -f try.* try
5919
5920 echo " "
5921
5922 if $test X"$d_longdbl" = X"$define"; then
5923
5924 echo "Checking how to print long doubles..." >&4
5925
5926 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
5927         $cat >try.c <<'EOCP'
5928 #include <sys/types.h>
5929 #include <stdio.h>
5930 int main() {
5931   double d = 123.456;
5932   printf("%.3f\n", d);
5933 }
5934 EOCP
5935         set try
5936         if eval $compile; then
5937                 yyy=`$run ./try`
5938                 case "$yyy" in
5939                 123.456)
5940                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
5941                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
5942                         echo "We will use %f."
5943                         ;;
5944                 esac
5945         fi
5946 fi
5947
5948 if $test X"$sPRIfldbl" = X; then
5949         $cat >try.c <<'EOCP'
5950 #include <sys/types.h>
5951 #include <stdio.h>
5952 int main() {
5953   long double d = 123.456;
5954   printf("%.3Lf\n", d);
5955 }
5956 EOCP
5957         set try
5958         if eval $compile; then
5959                 yyy=`$run ./try`
5960                 case "$yyy" in
5961                 123.456)
5962                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
5963                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
5964                         echo "We will use %Lf."
5965                         ;;
5966                 esac
5967         fi
5968 fi
5969
5970 if $test X"$sPRIfldbl" = X; then
5971         $cat >try.c <<'EOCP'
5972 #include <sys/types.h>
5973 #include <stdio.h>
5974 int main() {
5975   long double d = 123.456;
5976   printf("%.3llf\n", d);
5977 }
5978 EOCP
5979         set try
5980         if eval $compile; then
5981                 yyy=`$run ./try`
5982                 case "$yyy" in
5983                 123.456)
5984                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
5985                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
5986                         echo "We will use %llf."
5987                         ;;
5988                 esac
5989         fi
5990 fi
5991
5992 if $test X"$sPRIfldbl" = X; then
5993         $cat >try.c <<'EOCP'
5994 #include <sys/types.h>
5995 #include <stdio.h>
5996 int main() {
5997   long double d = 123.456;
5998   printf("%.3lf\n", d);
5999 }
6000 EOCP
6001         set try
6002         if eval $compile; then
6003                 yyy=`$run ./try`
6004                 case "$yyy" in
6005                 123.456)
6006                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
6007                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
6008                         echo "We will use %lf."
6009                         ;;
6010                 esac
6011         fi
6012 fi
6013
6014 if $test X"$sPRIfldbl" = X; then
6015         echo "Cannot figure out how to print long doubles." >&4
6016 else
6017         sSCNfldbl=$sPRIfldbl    # expect consistency
6018 fi
6019
6020 $rm -f try try.*
6021
6022 fi # d_longdbl
6023
6024 case "$sPRIfldbl" in
6025 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
6026         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
6027         d_SCNfldbl="$undef";
6028         ;;
6029 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
6030         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
6031         d_SCNfldbl="$define";
6032         ;;
6033 esac
6034
6035 : see if modfl exists
6036 set modfl d_modfl
6037 eval $inlibc
6038
6039
6040 hasproto='varname=$1; func=$2; shift; shift;
6041 while $test $# -ge 2; do
6042         case "$1" in
6043         $define) echo "#include <$2>";;
6044         esac ;
6045     shift 2;
6046 done > try.c;
6047 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
6048 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
6049         echo "$func() prototype found.";
6050         val="$define";
6051 else
6052         echo "$func() prototype NOT found.";
6053         val="$undef";
6054 fi;
6055 set $varname;
6056 eval $setvar;
6057 $rm -f try.c tryout.c'
6058
6059 : see if prototype for modfl is available
6060 echo " "
6061 set d_modflproto modfl math.h
6062 eval $hasproto
6063
6064 d_modfl_pow32_bug="$undef"
6065
6066 case "$d_longdbl$d_modfl" in
6067 $define$define)
6068         $cat <<EOM
6069 Checking to see whether your modfl() is okay for large values...
6070 EOM
6071 $cat >try.c <<EOCP
6072 #include <math.h> 
6073 #include <stdio.h>
6074 EOCP
6075 if $test "X$d_modflproto" != "X$define"; then
6076         $cat >>try.c <<EOCP
6077 /* Sigh. many current glibcs provide the function, but do not prototype it.  */ 
6078 long double modfl (long double, long double *);
6079 EOCP
6080 fi
6081 $cat >>try.c <<EOCP
6082 int main() {
6083     long double nv = 4294967303.15;
6084     long double v, w;
6085     v = modfl(nv, &w);         
6086 #ifdef __GLIBC__
6087     printf("glibc");
6088 #endif
6089     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
6090     return 0;
6091 }
6092 EOCP
6093         case "$osname:$gccversion" in
6094         aix:)   saveccflags="$ccflags"
6095                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
6096         esac
6097         set try
6098         if eval $compile; then
6099                 foo=`$run ./try`
6100                 case "$foo" in
6101                 *" 4294967303.150000 1.150000 4294967302.000000")
6102                         echo >&4 "Your modfl() is broken for large values."
6103                         d_modfl_pow32_bug="$define"
6104                         case "$foo" in
6105                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
6106                         ;;
6107                         esac
6108                         ;;
6109                 *" 4294967303.150000 0.150000 4294967303.000000")
6110                         echo >&4 "Your modfl() seems okay for large values."
6111                         ;;
6112                 *)      echo >&4 "I don't understand your modfl() at all."
6113                         d_modfl="$undef"
6114                         ;;
6115                 esac
6116                 $rm -f try.* try core core.try.*
6117         else
6118                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
6119                 d_modfl="$undef"
6120         fi
6121         case "$osname:$gccversion" in
6122         aix:)   ccflags="$saveccflags" ;; # restore
6123         esac
6124         ;;
6125 esac
6126
6127 case "$ccflags" in
6128 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
6129 esac
6130
6131 case "$uselongdouble" in
6132 $define|true|[yY]*)     dflt='y';;
6133 *) dflt='n';;
6134 esac
6135 cat <<EOM
6136
6137 Perl can be built to take advantage of long doubles which
6138 (if available) may give more accuracy and range for floating point numbers.
6139
6140 If this doesn't make any sense to you, just accept the default '$dflt'.
6141 EOM
6142 rp='Try to use long doubles if available?'
6143 . ./myread
6144 case "$ans" in
6145 y|Y)    val="$define"   ;;
6146 *)      val="$undef"    ;;
6147 esac
6148 set uselongdouble
6149 eval $setvar
6150
6151 case "$uselongdouble" in
6152 true|[yY]*) uselongdouble="$define" ;;
6153 esac
6154
6155 case "$uselongdouble" in
6156 $define)
6157 : Look for a hint-file generated 'call-back-unit'.  If the
6158 : user has specified that long doubles should be used,
6159 : we may need to set or change some other defaults.
6160         if $test -f uselongdouble.cbu; then
6161                 echo "Your platform has some specific hints for long doubles, using them..."
6162                 . ./uselongdouble.cbu
6163         else
6164                 $cat <<EOM
6165 (Your platform doesn't have any specific hints for long doubles.)
6166 EOM
6167         fi
6168         ;;
6169 esac
6170
6171 message=X
6172 case "$uselongdouble:$d_sqrtl:$d_modfl" in
6173 $define:$define:$define)
6174         : You have both
6175         ;;
6176 $define:$define:$undef)
6177         message="I could not find modfl"
6178         ;;
6179 $define:$undef:$define)
6180         message="I could not find sqrtl"
6181         ;;
6182 $define:$undef:$undef)
6183         message="I found neither sqrtl nor modfl"
6184         ;;
6185 esac
6186
6187 if $test "$message" != X; then
6188         $cat <<EOM >&4
6189
6190 *** You requested the use of long doubles but you do not seem to have
6191 *** the mathematic functions for long doubles.
6192 *** ($message)
6193 *** I'm disabling the use of long doubles.
6194
6195 EOM
6196
6197         uselongdouble=$undef
6198 fi
6199
6200 : determine the architecture name
6201 echo " "
6202 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
6203         tarch=`arch`"-$osname"
6204 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
6205         if uname -m > tmparch 2>&1 ; then
6206                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
6207                         -e 's/$/'"-$osname/" tmparch`
6208         else
6209                 tarch="$osname"
6210         fi
6211         $rm -f tmparch
6212 else
6213         tarch="$osname"
6214 fi
6215 case "$myarchname" in
6216 ''|"$tarch") ;;
6217 *)
6218         echo "(Your architecture name used to be $myarchname.)"
6219         archname=''
6220         ;;
6221 esac
6222 case "$targetarch" in
6223 '') ;;
6224 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
6225 esac
6226 myarchname="$tarch"
6227 case "$archname" in
6228 '') dflt="$tarch";;
6229 *) dflt="$archname";;
6230 esac
6231 rp='What is your architecture name'
6232 . ./myread
6233 archname="$ans"
6234 case "$usethreads" in
6235 $define)
6236         echo "Threads selected." >&4
6237         case "$archname" in
6238         *-thread*) echo "...and architecture name already has -thread." >&4
6239                 ;;
6240         *)      archname="$archname-thread"
6241                 echo "...setting architecture name to $archname." >&4
6242                 ;;
6243         esac
6244         ;;
6245 esac
6246 case "$usemultiplicity" in
6247 $define)
6248         echo "Multiplicity selected." >&4
6249         case "$archname" in
6250         *-multi*) echo "...and architecture name already has -multi." >&4
6251                 ;;
6252         *)      archname="$archname-multi"
6253                 echo "...setting architecture name to $archname." >&4
6254                 ;;
6255         esac
6256         ;;
6257 esac
6258 case "$use64bitint$use64bitall" in
6259 *"$define"*)
6260         case "$archname64" in
6261         '')
6262                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
6263                 ;;
6264         *)
6265                 case "$use64bitint" in
6266                 "$define") echo "64 bit integers selected." >&4 ;;
6267                 esac
6268                 case "$use64bitall" in
6269                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
6270                 esac
6271                 case "$archname" in
6272                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
6273                         ;;
6274                 *)      archname="$archname-$archname64"
6275                         echo "...setting architecture name to $archname." >&4
6276                         ;;
6277                 esac
6278                 ;;
6279         esac
6280 esac
6281 case "$uselongdouble" in
6282 $define)
6283         echo "Long doubles selected." >&4
6284         case "$longdblsize" in
6285         $doublesize)
6286                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
6287                 ;;
6288         *)
6289                 case "$archname" in
6290                 *-ld*) echo "...and architecture name already has -ld." >&4
6291                         ;;
6292                 *)      archname="$archname-ld"
6293                         echo "...setting architecture name to $archname." >&4
6294                         ;;
6295                 esac
6296                 ;;
6297         esac
6298         ;;
6299 esac
6300 case "$useperlio" in
6301 $define)
6302         echo "Perlio selected." >&4
6303         ;;
6304 *)
6305         echo "Perlio not selected, using stdio." >&4
6306         case "$archname" in
6307         *-stdio*) echo "...and architecture name already has -stdio." >&4
6308                 ;;
6309         *)      archname="$archname-stdio"
6310                 echo "...setting architecture name to $archname." >&4
6311                 ;;
6312         esac
6313         ;;
6314 esac
6315
6316 : determine root of directory hierarchy where package will be installed.
6317 case "$prefix" in
6318 '')
6319         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
6320         ;;
6321 *?/)
6322         dflt=`echo "$prefix" | sed 's/.$//'`
6323         ;;
6324 *)
6325         dflt="$prefix"
6326         ;;
6327 esac
6328 $cat <<EOM
6329
6330 By default, $package will be installed in $dflt/bin, manual pages
6331 under $dflt/man, etc..., i.e. with $dflt as prefix for all
6332 installation directories. Typically this is something like /usr/local.
6333 If you wish to have binaries under /usr/bin but other parts of the
6334 installation under /usr/local, that's ok: you will be prompted
6335 separately for each of the installation directories, the prefix being
6336 only used to set the defaults.
6337
6338 EOM
6339 fn=d~
6340 rp='Installation prefix to use?'
6341 . ./getfile
6342 oldprefix=''
6343 case "$prefix" in
6344 '') ;;
6345 *)
6346         case "$ans" in
6347         "$prefix") ;;
6348         *) oldprefix="$prefix";;
6349         esac
6350         ;;
6351 esac
6352 prefix="$ans"
6353 prefixexp="$ansexp"
6354
6355 case "$afsroot" in
6356 '')     afsroot=/afs ;;
6357 *)      afsroot=$afsroot ;;
6358 esac
6359
6360 : is AFS running?
6361 echo " "
6362 case "$afs" in
6363 $define|true)   afs=true ;;
6364 $undef|false)   afs=false ;;
6365 *)      if test -d $afsroot; then
6366                 afs=true
6367         else
6368                 afs=false
6369         fi
6370         ;;
6371 esac
6372 if $afs; then
6373         echo "AFS may be running... I'll be extra cautious then..." >&4
6374 else
6375         echo "AFS does not seem to be running..." >&4
6376 fi
6377
6378 : determine installation prefix for where package is to be installed.
6379 if $afs; then 
6380 $cat <<EOM
6381
6382 Since you are running AFS, I need to distinguish the directory in which
6383 files will reside from the directory in which they are installed (and from
6384 which they are presumably copied to the former directory by occult means).
6385
6386 EOM
6387         case "$installprefix" in
6388         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
6389         *) dflt="$installprefix";;
6390         esac
6391 else
6392 $cat <<EOM
6393
6394 In some special cases, particularly when building $package for distribution,
6395 it is convenient to distinguish between the directory in which files should 
6396 be installed from the directory ($prefix) in which they 
6397 will eventually reside.  For most users, these two directories are the same.
6398
6399 EOM
6400         case "$installprefix" in
6401         '') dflt=$prefix ;;
6402         *) dflt=$installprefix;;
6403         esac
6404 fi
6405 fn=d~
6406 rp='What installation prefix should I use for installing files?'
6407 . ./getfile
6408 installprefix="$ans"
6409 installprefixexp="$ansexp"
6410
6411 : set the prefixit variable, to compute a suitable default value
6412 prefixit='case "$3" in
6413 ""|none)
6414         case "$oldprefix" in
6415         "") eval "$1=\"\$$2\"";;
6416         *)
6417                 case "$3" in
6418                 "") eval "$1=";;
6419                 none)
6420                         eval "tp=\"\$$2\"";
6421                         case "$tp" in
6422                         ""|" ") eval "$1=\"\$$2\"";;
6423                         *) eval "$1=";;
6424                         esac;;
6425                 esac;;
6426         esac;;
6427 *)
6428         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
6429         case "$tp" in
6430         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
6431         /*-$oldprefix/*|\~*-$oldprefix/*)
6432                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
6433         *) eval "$1=\"\$$2\"";;
6434         esac;;
6435 esac'
6436
6437 : get the patchlevel
6438 echo " "
6439 echo "Getting the current patchlevel..." >&4
6440 if $test -r $rsrc/patchlevel.h;then
6441         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
6442         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
6443         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
6444         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
6445         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
6446         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
6447        perl_patchlevel=`grep ',"DEVEL[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
6448 else
6449         revision=0
6450         patchlevel=0
6451         subversion=0
6452         api_revision=0
6453         api_version=0
6454         api_subversion=0
6455         perl_patchlevel=0
6456         $echo "(You do not have patchlevel.h.  Eek.)"
6457 fi
6458 if $test -r $rsrc/.patch ; then  
6459         if $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
6460                 perl_patchlevel=`cat $rsrc/.patch`
6461         fi
6462 fi
6463 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
6464 version_patchlevel_string="version $patchlevel subversion $subversion"
6465 case "$perl_patchlevel" in
6466 0|'') ;;
6467 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
6468 esac
6469
6470 $echo "(You have $package $version_patchlevel_string.)"
6471
6472 case "$osname" in
6473 dos|vms)
6474         : XXX Should be a Configure test for double-dots in filenames.
6475         version=`echo $revision $patchlevel $subversion | \
6476                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
6477         api_versionstring=`echo $api_revision $api_version $api_subversion | \
6478                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
6479         ;;
6480 *)
6481         version=`echo $revision $patchlevel $subversion | \
6482                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
6483         api_versionstring=`echo $api_revision $api_version $api_subversion | \
6484                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
6485         ;;
6486 esac
6487 : Special case the 5.005_xx maintenance series, which used 5.005
6488 : without any subversion label as a subdirectory in $sitelib
6489 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
6490         api_versionstring='5.005'
6491 fi
6492
6493 : determine installation style
6494 : For now, try to deduce it from prefix unless it is already set.
6495 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
6496 case "$installstyle" in
6497 '')     case "$prefix" in
6498                 *perl*) dflt='lib';;
6499                 *) dflt='lib/perl5' ;;
6500         esac
6501         ;;
6502 *)      dflt="$installstyle" ;;
6503 esac
6504 : Probably not worth prompting for this since we prompt for all
6505 : the directories individually, and the prompt would be too long and
6506 : confusing anyway.
6507 installstyle=$dflt
6508
6509 : determine where private library files go
6510 : Usual default is /usr/local/lib/perl5/$version.
6511 : Also allow things like /opt/perl/lib/$version, since 
6512 : /opt/perl/lib/perl5... would be redundant.
6513 : The default "style" setting is made in installstyle.U
6514 case "$installstyle" in
6515 *lib/perl5*) set dflt privlib lib/$package/$version ;;
6516 *)       set dflt privlib lib/$version ;;
6517 esac
6518 eval $prefixit
6519 $cat <<EOM
6520
6521 There are some auxiliary files for $package that need to be put into a
6522 private library directory that is accessible by everyone.
6523
6524 EOM
6525 fn=d~+
6526 rp='Pathname where the private library files will reside?'
6527 . ./getfile
6528 privlib="$ans"
6529 privlibexp="$ansexp"
6530 : Change installation prefix, if necessary.
6531 if $test X"$prefix" != X"$installprefix"; then
6532         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
6533 else
6534         installprivlib="$privlibexp"
6535 fi
6536
6537 : set the prefixup variable, to restore leading tilda escape
6538 prefixup='case "$prefixexp" in
6539 "$prefix") ;;
6540 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
6541 esac'
6542
6543 : determine where public architecture dependent libraries go
6544 set archlib archlib
6545 eval $prefixit
6546 : privlib default is /usr/local/lib/$package/$version
6547 : archlib default is /usr/local/lib/$package/$version/$archname
6548 : privlib may have an optional trailing /share.
6549 tdflt=`echo $privlib | $sed 's,/share$,,'`
6550 tdflt=$tdflt/$archname
6551 case "$archlib" in
6552 '')     dflt=$tdflt
6553         ;;
6554 *)      dflt="$archlib"
6555     ;;
6556 esac
6557 $cat <<EOM
6558
6559 $spackage contains architecture-dependent library files.  If you are
6560 sharing libraries in a heterogeneous environment, you might store
6561 these files in a separate location.  Otherwise, you can just include
6562 them with the rest of the public library files.
6563
6564 EOM
6565 fn=d+~
6566 rp='Where do you want to put the public architecture-dependent libraries?'
6567 . ./getfile
6568 archlib="$ans"
6569 archlibexp="$ansexp"
6570 if $test X"$archlib" = X"$privlib"; then
6571         d_archlib="$undef"
6572 else
6573         d_archlib="$define"
6574 fi
6575 : Change installation prefix, if necessary.
6576 if $test X"$prefix" != X"$installprefix"; then
6577         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
6578 else
6579         installarchlib="$archlibexp"
6580 fi
6581
6582 : see if setuid scripts can be secure
6583 $cat <<EOM
6584
6585 Some kernels have a bug that prevents setuid #! scripts from being
6586 secure.  Some sites have disabled setuid #! scripts because of this.
6587
6588 First let's decide if your kernel supports secure setuid #! scripts.
6589 (If setuid #! scripts would be secure but have been disabled anyway,
6590 don't say that they are secure if asked.)
6591
6592 EOM
6593
6594 val="$undef"
6595 if $test -d /dev/fd; then
6596         echo "#!$ls" >reflect
6597         chmod +x,u+s reflect
6598         ./reflect >flect 2>&1
6599         if $contains "/dev/fd" flect >/dev/null; then
6600                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
6601                 val="$define"
6602         else
6603                 $cat <<EOM
6604 If you are not sure if they are secure, I can check but I'll need a
6605 username and password different from the one you are using right now.
6606 If you don't have such a username or don't want me to test, simply
6607 enter 'none'.
6608
6609 EOM
6610                 rp='Other username to test security of setuid scripts with?'
6611                 dflt='none'
6612                 . ./myread
6613                 case "$ans" in
6614                 n|none)
6615                         case "$d_suidsafe" in
6616                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
6617                                 dflt=n;;
6618                         "$undef")
6619                                 echo "Well, the $hint value is *not* secure." >&4
6620                                 dflt=n;;
6621                         *)      echo "Well, the $hint value *is* secure." >&4
6622                                 dflt=y;;
6623                         esac
6624                         ;;
6625                 *)
6626                         $rm -f reflect flect
6627                         echo "#!$ls" >reflect
6628                         chmod +x,u+s reflect
6629                         echo >flect
6630                         chmod a+w flect
6631                         echo '"su" will (probably) prompt you for '"$ans's password."
6632                         su $ans -c './reflect >flect'
6633                         if $contains "/dev/fd" flect >/dev/null; then
6634                                 echo "Okay, it looks like setuid scripts are secure." >&4
6635                                 dflt=y
6636                         else
6637                                 echo "I don't think setuid scripts are secure." >&4
6638                                 dflt=n
6639                         fi
6640                         ;;
6641                 esac
6642                 rp='Does your kernel have *secure* setuid scripts?'
6643                 . ./myread
6644                 case "$ans" in
6645                 [yY]*)  val="$define";;
6646                 *)      val="$undef";;
6647                 esac
6648         fi
6649 else
6650         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6651         echo "(That's for file descriptors, not floppy disks.)"
6652         val="$undef"
6653 fi
6654 set d_suidsafe
6655 eval $setvar
6656
6657 $rm -f reflect flect
6658
6659 : now see if they want to do setuid emulation
6660 echo " "
6661 val="$undef"
6662 case "$d_suidsafe" in
6663 "$define")
6664         val="$undef"
6665         echo "No need to emulate SUID scripts since they are secure here." >&4
6666         ;;
6667 *)
6668         $cat <<EOM
6669 Some systems have disabled setuid scripts, especially systems where
6670 setuid scripts cannot be secure.  On systems where setuid scripts have
6671 been disabled, the setuid/setgid bits on scripts are currently
6672 useless.  It is possible for $package to detect those bits and emulate
6673 setuid/setgid in a secure fashion.  This emulation will only work if
6674 setuid scripts have been disabled in your kernel.
6675
6676 EOM
6677         case "$d_dosuid" in
6678         "$define") dflt=y ;;
6679         *) dflt=n ;;
6680         esac
6681         rp="Do you want to do setuid/setgid emulation?"
6682         . ./myread
6683         case "$ans" in
6684         [yY]*)  val="$define";;
6685         *)      val="$undef";;
6686         esac
6687         ;;
6688 esac
6689 set d_dosuid
6690 eval $setvar
6691
6692 : see if this is a malloc.h system
6693 set malloc.h i_malloc
6694 eval $inhdr
6695
6696 : see if stdlib is available
6697 set stdlib.h i_stdlib
6698 eval $inhdr
6699
6700 : check for void type
6701 echo " "
6702 echo "Checking to see how well your C compiler groks the void type..." >&4
6703 case "$voidflags" in
6704 '')
6705         $cat >try.c <<'EOCP'
6706 #if TRY & 1
6707 void sub() {
6708 #else
6709 sub() {
6710 #endif
6711         extern void moo();      /* function returning void */
6712         void (*goo)();          /* ptr to func returning void */
6713 #if TRY & 8
6714         void *hue;              /* generic ptr */
6715 #endif
6716 #if TRY & 2
6717         void (*foo[10])();
6718 #endif
6719
6720 #if TRY & 4
6721         if(goo == moo) {
6722                 exit(0);
6723         }
6724 #endif
6725         exit(0);
6726 }
6727 int main() { sub(); }
6728 EOCP
6729         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6730                 voidflags=$defvoidused
6731         echo "Good.  It appears to support void to the level $package wants.">&4
6732                 if $contains warning .out >/dev/null 2>&1; then
6733                         echo "However, you might get some warnings that look like this:"
6734                         $cat .out
6735                 fi
6736         else
6737 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6738                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6739                         echo "It supports 1..."
6740                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6741                                 echo "It also supports 2..."
6742                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6743                                         voidflags=7
6744                                         echo "And it supports 4 but not 8 definitely."
6745                                 else
6746                                         echo "It doesn't support 4..."
6747                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6748                                                 voidflags=11
6749                                                 echo "But it supports 8."
6750                                         else
6751                                                 voidflags=3
6752                                                 echo "Neither does it support 8."
6753                                         fi
6754                                 fi
6755                         else
6756                                 echo "It does not support 2..."
6757                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6758                                         voidflags=13
6759                                         echo "But it supports 4 and 8."
6760                                 else
6761                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6762                                                 voidflags=5
6763                                                 echo "And it supports 4 but has not heard about 8."
6764                                         else
6765                                                 echo "However it supports 8 but not 4."
6766                                         fi
6767                                 fi
6768                         fi
6769                 else
6770                         echo "There is no support at all for void."
6771                         voidflags=0
6772                 fi
6773         fi
6774 esac
6775 case "$voidflags" in
6776 "$defvoidused") ;;
6777 *)      $cat >&4 <<'EOM'
6778   Support flag bits are:
6779     1: basic void declarations.
6780     2: arrays of pointers to functions returning void.
6781     4: operations between pointers to and addresses of void functions.
6782     8: generic void pointers.
6783 EOM
6784         dflt="$voidflags";
6785         rp="Your void support flags add up to what?"
6786         . ./myread
6787         voidflags="$ans"
6788         ;;
6789 esac
6790 $rm -f try.* .out
6791
6792 : check for length of pointer
6793 echo " "
6794 case "$ptrsize" in
6795 '')
6796         echo "Checking to see how big your pointers are..." >&4
6797         if test "$voidflags" -gt 7; then
6798                 echo '#define VOID_PTR char *' > try.c
6799         else
6800                 echo '#define VOID_PTR void *' > try.c
6801         fi
6802         $cat >>try.c <<'EOCP'
6803 #include <stdio.h>
6804 int main()
6805 {
6806     printf("%d\n", (int)sizeof(VOID_PTR));
6807     exit(0);
6808 }
6809 EOCP
6810         set try
6811         if eval $compile_ok; then
6812                 ptrsize=`$run ./try`
6813                 echo "Your pointers are $ptrsize bytes long."
6814         else
6815                 dflt='4'
6816                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6817                 rp="What is the size of a pointer (in bytes)?"
6818                 . ./myread
6819                 ptrsize="$ans"
6820         fi
6821         ;;
6822 esac
6823 $rm -f try.c try
6824 case "$use64bitall" in
6825 "$define"|true|[yY]*)
6826         case "$ptrsize" in
6827         4)      cat <<EOM >&4
6828
6829 *** You have chosen a maximally 64-bit build, but your pointers
6830 *** are only 4 bytes wide, disabling maximal 64-bitness.
6831
6832 EOM
6833                 use64bitall="$undef"
6834                 case "$use64bitint" in
6835                 "$define"|true|[yY]*) ;;
6836                 *)      cat <<EOM >&4
6837
6838 *** Downgrading from maximal 64-bitness to using 64-bit integers.
6839
6840 EOM
6841                         use64bitint="$define"
6842                         ;;
6843                 esac
6844                 ;;
6845         esac
6846         ;;
6847 esac
6848
6849
6850 : determine which malloc to compile in
6851 echo " "
6852 case "$usemymalloc" in
6853 [yY]*|true|$define)     dflt='y' ;;
6854 [nN]*|false|$undef)     dflt='n' ;;
6855 *)      case "$ptrsize" in
6856         4) dflt='y' ;;
6857         *) dflt='n' ;;
6858         esac
6859         ;;
6860 esac
6861 rp="Do you wish to attempt to use the malloc that comes with $package?"
6862 . ./myread
6863 usemymalloc="$ans"
6864 case "$ans" in
6865 y*|true)
6866         usemymalloc='y'
6867         mallocsrc='malloc.c'
6868         mallocobj="malloc$_o"
6869         d_mymalloc="$define"
6870         case "$libs" in
6871         *-lmalloc*)
6872                 : Remove malloc from list of libraries to use
6873                 echo "Removing unneeded -lmalloc from library list" >&4
6874                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6875                 shift
6876                 libs="$*"
6877                 echo "libs = $libs" >&4
6878                 ;;
6879         esac
6880         ;;
6881 *)
6882         usemymalloc='n'
6883         mallocsrc=''
6884         mallocobj=''
6885         d_mymalloc="$undef"
6886         ;;
6887 esac
6888
6889 : compute the return types of malloc and free
6890 echo " "
6891 $cat >malloc.c <<END
6892 #$i_malloc I_MALLOC
6893 #$i_stdlib I_STDLIB
6894 #include <stdio.h>
6895 #include <sys/types.h>
6896 #ifdef I_MALLOC
6897 #include <malloc.h>
6898 #endif
6899 #ifdef I_STDLIB
6900 #include <stdlib.h>
6901 #endif
6902 #ifdef TRY_MALLOC
6903 void *malloc();
6904 #endif
6905 #ifdef TRY_FREE
6906 void free();
6907 #endif
6908 END
6909 case "$malloctype" in
6910 '')
6911         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6912                 malloctype='void *'
6913         else
6914                 malloctype='char *'
6915         fi
6916         ;;
6917 esac
6918 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6919
6920 case "$freetype" in
6921 '')
6922         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6923                 freetype='void'
6924         else
6925                 freetype='int'
6926         fi
6927         ;;
6928 esac
6929 echo "Your system uses $freetype free(), it would seem." >&4
6930 $rm -f malloc.[co]
6931 $cat <<EOM
6932
6933 After $package is installed, you may wish to install various
6934 add-on modules and utilities.  Typically, these add-ons will
6935 be installed under $prefix with the rest
6936 of this package.  However, you may wish to install such add-ons
6937 elsewhere under a different prefix.
6938
6939 If you do not wish to put everything under a single prefix, that's
6940 ok.  You will be prompted for the individual locations; this siteprefix
6941 is only used to suggest the defaults.
6942
6943 The default should be fine for most people.
6944
6945 EOM
6946 fn=d~+
6947 rp='Installation prefix to use for add-on modules and utilities?'
6948 : XXX Here might be another good place for an installstyle setting.
6949 case "$siteprefix" in
6950 '') dflt=$prefix ;;
6951 *)  dflt=$siteprefix ;;
6952 esac
6953 . ./getfile
6954 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6955 oldsiteprefix=''
6956 case "$siteprefix" in
6957 '') ;;
6958 *)      case "$ans" in
6959         "$prefix") ;;
6960         *) oldsiteprefix="$prefix";;
6961         esac
6962         ;;
6963 esac
6964 siteprefix="$ans"
6965 siteprefixexp="$ansexp"
6966
6967 : determine where site specific libraries go.
6968 : Usual default is /usr/local/lib/perl5/site_perl/$version
6969 : The default "style" setting is made in installstyle.U
6970 : XXX No longer works with Prefixit stuff.
6971 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6972 case "$sitelib" in
6973 '') case "$installstyle" in
6974         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6975         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6976         esac
6977         ;;
6978 *)      dflt="$sitelib"
6979         ;;
6980 esac
6981 $cat <<EOM
6982
6983 The installation process will create a directory for
6984 site-specific extensions and modules.  Most users find it convenient
6985 to place all site-specific files in this directory rather than in the
6986 main distribution directory.
6987
6988 EOM
6989 fn=d~+
6990 rp='Pathname for the site-specific library files?'
6991 . ./getfile
6992 sitelib="$ans"
6993 sitelibexp="$ansexp"
6994 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6995 : Change installation prefix, if necessary.
6996 if $test X"$prefix" != X"$installprefix"; then
6997         installsitelib=`echo $sitelibexp | $sed "s#^$prefix#$installprefix#"`
6998 else
6999         installsitelib="$sitelibexp"
7000 fi
7001
7002 : determine where site specific architecture-dependent libraries go.
7003 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
7004 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
7005 : sitelib may have an optional trailing /share.
7006 case "$sitearch" in
7007 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
7008         dflt="$dflt/$archname"
7009         ;;
7010 *)      dflt="$sitearch"
7011         ;;
7012 esac
7013 set sitearch sitearch none
7014 eval $prefixit
7015 $cat <<EOM
7016
7017 The installation process will also create a directory for
7018 architecture-dependent site-specific extensions and modules.
7019
7020 EOM
7021 fn=d~+
7022 rp='Pathname for the site-specific architecture-dependent library files?'
7023 . ./getfile
7024 sitearch="$ans"
7025 sitearchexp="$ansexp"
7026 : Change installation prefix, if necessary.
7027 if $test X"$prefix" != X"$installprefix"; then
7028         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
7029 else
7030         installsitearch="$sitearchexp"
7031 fi
7032
7033 $cat <<EOM
7034
7035 The installation process will also create a directory for
7036 vendor-supplied add-ons.  Vendors who supply perl with their system
7037 may find it convenient to place all vendor-supplied files in this
7038 directory rather than in the main distribution directory.  This will
7039 ease upgrades between binary-compatible maintenance versions of perl.
7040
7041 Of course you may also use these directories in whatever way you see
7042 fit.  For example, you might use them to access modules shared over a
7043 company-wide network.
7044
7045 The default answer should be fine for most people.
7046 This causes further questions about vendor add-ons to be skipped
7047 and no vendor-specific directories will be configured for perl.
7048
7049 EOM
7050 rp='Do you want to configure vendor-specific add-on directories?'
7051 case "$usevendorprefix" in
7052 define|true|[yY]*) dflt=y ;;
7053 *)      : User may have set vendorprefix directly on Configure command line.
7054         case "$vendorprefix" in
7055         ''|' ') dflt=n ;;
7056         *)      dflt=y ;;
7057         esac
7058         ;;
7059 esac
7060 . ./myread
7061 case "$ans" in
7062 [yY]*)  fn=d~+
7063         rp='Installation prefix to use for vendor-supplied add-ons?'
7064         case "$vendorprefix" in
7065         '') dflt='' ;;
7066         *)  dflt=$vendorprefix ;;
7067         esac
7068         . ./getfile
7069         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
7070         oldvendorprefix=''
7071         case "$vendorprefix" in
7072         '') ;;
7073         *)      case "$ans" in
7074                 "$prefix") ;;
7075                 *) oldvendorprefix="$prefix";;
7076                 esac
7077                 ;;
7078         esac
7079         usevendorprefix="$define"
7080         vendorprefix="$ans"
7081         vendorprefixexp="$ansexp"
7082         ;;
7083 *)      usevendorprefix="$undef"
7084         vendorprefix=''
7085         vendorprefixexp=''
7086         ;;
7087 esac
7088
7089 case "$vendorprefix" in
7090 '')     d_vendorlib="$undef"
7091         vendorlib=''
7092         vendorlibexp=''
7093         ;;
7094 *)      d_vendorlib="$define"
7095         : determine where vendor-supplied modules go.
7096         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
7097         case "$vendorlib" in
7098         '')
7099                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
7100                 case "$installstyle" in
7101                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
7102                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
7103                 esac
7104                 ;;
7105         *)      dflt="$vendorlib"
7106                 ;;
7107         esac
7108         fn=d~+
7109         rp='Pathname for the vendor-supplied library files?'
7110         . ./getfile
7111         vendorlib="$ans"
7112         vendorlibexp="$ansexp"
7113         ;;
7114 esac
7115 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
7116 : Change installation prefix, if necessary.
7117 if $test X"$prefix" != X"$installprefix"; then
7118         installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
7119 else
7120         installvendorlib="$vendorlibexp"
7121 fi
7122
7123 case "$vendorprefix" in
7124 '')     d_vendorarch="$undef"
7125         vendorarch=''
7126         vendorarchexp=''
7127         ;;
7128 *)      d_vendorarch="$define"
7129         : determine where vendor-supplied architecture-dependent libraries go.
7130         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
7131         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
7132         : vendorlib may have an optional trailing /share.
7133         case "$vendorarch" in
7134         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
7135                 dflt="$dflt/$archname"
7136                 ;;
7137         *)      dflt="$vendorarch" ;;
7138         esac
7139         fn=d~+
7140         rp='Pathname for vendor-supplied architecture-dependent files?'
7141         . ./getfile
7142         vendorarch="$ans"
7143         vendorarchexp="$ansexp"
7144         ;;
7145 esac
7146 : Change installation prefix, if necessary.
7147 if $test X"$prefix" != X"$installprefix"; then
7148         installvendorarch=`echo $vendorarchexp | sed "s#^$prefix#$installprefix#"`
7149 else
7150         installvendorarch="$vendorarchexp"
7151 fi
7152
7153 : Final catch-all directories to search
7154 $cat <<EOM
7155
7156 Lastly, you can have perl look in other directories for extensions and
7157 modules in addition to those already specified.
7158 These directories will be searched after 
7159         $sitearch 
7160         $sitelib 
7161 EOM
7162 test X"$vendorlib" != "X" && echo '     ' $vendorlib
7163 test X"$vendorarch" != "X" && echo '    ' $vendorarch
7164 echo ' '
7165 case "$otherlibdirs" in
7166 ''|' ') dflt='none' ;;
7167 *)      dflt="$otherlibdirs" ;;
7168 esac
7169 $cat <<EOM
7170 Enter a colon-separated set of extra paths to include in perl's @INC
7171 search path, or enter 'none' for no extra paths.
7172
7173 EOM
7174
7175 rp='Colon-separated list of additional directories for perl to search?'
7176 . ./myread
7177 case "$ans" in
7178 ' '|''|none)    otherlibdirs=' ' ;;     
7179 *)      otherlibdirs="$ans" ;;
7180 esac
7181 case "$otherlibdirs" in
7182 ' ') val=$undef ;;
7183 *)      val=$define ;;
7184 esac
7185 set d_perl_otherlibdirs
7186 eval $setvar
7187
7188 : Cruising for prototypes
7189 echo " "
7190 echo "Checking out function prototypes..." >&4
7191 $cat >prototype.c <<'EOCP'
7192 int main(int argc, char *argv[]) {
7193         exit(0);}
7194 EOCP
7195 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
7196         echo "Your C compiler appears to support function prototypes."
7197         val="$define"
7198 else
7199         echo "Your C compiler doesn't seem to understand function prototypes."
7200         val="$undef"
7201 fi
7202 set prototype
7203 eval $setvar
7204 $rm -f prototype*
7205
7206 case "$prototype" in
7207 "$define") ;;
7208 *)      ansi2knr='ansi2knr'
7209         echo " "
7210         cat <<EOM >&4
7211
7212 $me:  FATAL ERROR:
7213 This version of $package can only be compiled by a compiler that 
7214 understands function prototypes.  Unfortunately, your C compiler 
7215         $cc $ccflags
7216 doesn't seem to understand them.  Sorry about that.
7217
7218 If GNU cc is available for your system, perhaps you could try that instead.  
7219
7220 Eventually, we hope to support building Perl with pre-ANSI compilers.
7221 If you would like to help in that effort, please contact <perlbug@perl.org>.
7222
7223 Aborting Configure now.
7224 EOM
7225         exit 2
7226         ;;
7227 esac
7228
7229 : determine where public executables go
7230 echo " "
7231 set dflt bin bin
7232 eval $prefixit
7233 fn=d~
7234 rp='Pathname where the public executables will reside?'
7235 . ./getfile
7236 if $test "X$ansexp" != "X$binexp"; then
7237         installbin=''
7238 fi
7239 bin="$ans"
7240 binexp="$ansexp"
7241 : Change installation prefix, if necessary.
7242 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
7243 if $test X"$prefix" != X"$installprefix"; then
7244         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
7245 else
7246         installbin="$binexp"
7247 fi
7248
7249 echo " "
7250 case "$extras" in
7251 '') dflt='n';;
7252 *) dflt='y';;
7253 esac
7254 cat <<EOM
7255 Perl can be built with extra modules or bundles of modules which
7256 will be fetched from the CPAN and installed alongside Perl.
7257
7258 Notice that you will need access to the CPAN; either via the Internet,
7259 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
7260 be asked later to configure the CPAN.pm module which will in turn do
7261 the installation of the rest of the extra modules or bundles.)
7262
7263 Notice also that if the modules require any external software such as
7264 libraries and headers (the libz library and the zlib.h header for the
7265 Compress::Zlib module, for example) you MUST have any such software
7266 already installed, this configuration process will NOT install such
7267 things for you.
7268
7269 If this doesn't make any sense to you, just accept the default '$dflt'.
7270 EOM
7271 rp='Install any extra modules (y or n)?'
7272 . ./myread
7273 case "$ans" in
7274 y|Y)
7275         cat <<EOM
7276
7277 Please list any extra modules or bundles to be installed from CPAN,
7278 with spaces between the names.  The names can be in any format the
7279 'install' command of CPAN.pm will understand.  (Answer 'none',
7280 without the quotes, to install no extra modules or bundles.)
7281 EOM
7282         rp='Extras?'
7283         dflt="$extras"
7284         . ./myread
7285         extras="$ans"
7286 esac
7287 case "$extras" in
7288 ''|'none')
7289         val=''
7290         $rm -f ../extras.lst
7291         ;;
7292 *)      echo "(Saving the list of extras for later...)"
7293         echo "$extras" > ../extras.lst
7294         val="'$extras'"
7295         ;;
7296 esac
7297 set extras
7298 eval $setvar
7299 echo " "
7300
7301 : Find perl5.005 or later.
7302 echo "Looking for a previously installed perl5.005 or later... "
7303 case "$perl5" in
7304 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
7305                 : Check if this perl is recent and can load a simple module
7306                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
7307                         perl5=$tdir/perl
7308                         break;
7309                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
7310                         perl5=$tdir/perl5
7311                         break;
7312                 fi
7313         done
7314         ;;
7315 *)      perl5="$perl5"
7316         ;;
7317 esac
7318 case "$perl5" in
7319 '')     echo "None found.  That's ok.";;
7320 *)      echo "Using $perl5." ;;
7321 esac
7322
7323 : Determine list of previous versions to include in @INC
7324 $cat > getverlist <<EOPL
7325 #!$perl5 -w
7326 use File::Basename;
7327 \$api_versionstring = "$api_versionstring";
7328 \$version = "$version";
7329 \$stem = "$sitelib_stem";
7330 \$archname = "$archname";
7331 EOPL
7332         $cat >> getverlist <<'EOPL'
7333 # Can't have leading @ because metaconfig interprets it as a command!
7334 ;@inc_version_list=();
7335 # XXX Redo to do opendir/readdir? 
7336 if (-d $stem) {
7337     chdir($stem);
7338     ;@candidates = glob("5.*");
7339 }
7340 else {
7341     ;@candidates = ();
7342 }
7343
7344 # XXX ToDo:  These comparisons must be reworked when two-digit
7345 # subversions come along, so that 5.7.10 compares as greater than
7346 # 5.7.3!  By that time, hope that 5.6.x is sufficiently
7347 # widespread that we can use the built-in version vectors rather
7348 # than reinventing them here.  For 5.6.0, however, we must
7349 # assume this script will likely be run by 5.005_0x.  --AD 1/2000.
7350 foreach $d (@candidates) {
7351     if ($d lt $version) {
7352         if ($d ge $api_versionstring) {
7353             unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
7354         }
7355         elsif ($d ge "5.005") {
7356             unshift(@inc_version_list, grep { -d } $d);
7357         }
7358     }
7359     else {
7360         # Skip newer version.  I.e. don't look in
7361         # 5.7.0 if we're installing 5.6.1.
7362     }
7363 }
7364
7365 if (@inc_version_list) {
7366     print join(' ', @inc_version_list);
7367 }
7368 else {
7369     # Blank space to preserve value for next Configure run.
7370     print " ";
7371 }
7372 EOPL
7373 chmod +x getverlist
7374 case "$inc_version_list" in
7375 '')     if test -x "$perl5$exe_ext"; then
7376                 dflt=`$perl5 getverlist`
7377         else
7378                 dflt='none'
7379         fi
7380         ;;
7381 $undef) dflt='none' ;;
7382 *)  eval dflt=\"$inc_version_list\" ;;
7383 esac
7384 case "$dflt" in
7385 ''|' ') dflt=none ;;
7386 esac
7387 case "$dflt" in
7388 5.005) dflt=none ;;
7389 esac
7390 $cat <<EOM
7391
7392 In order to ease the process of upgrading, this version of perl 
7393 can be configured to use modules built and installed with earlier 
7394 versions of perl that were installed under $prefix.  Specify here
7395 the list of earlier versions that this version of perl should check.
7396 If Configure detected no earlier versions of perl installed under
7397 $prefix, then the list will be empty.  Answer 'none' to tell perl
7398 to not search earlier versions.
7399
7400 The default should almost always be sensible, so if you're not sure,
7401 just accept the default.
7402 EOM
7403
7404 rp='List of earlier versions to include in @INC?'
7405 . ./myread
7406 case "$ans" in
7407 [Nn]one|''|' ') inc_version_list=' ' ;;
7408 *) inc_version_list="$ans" ;;
7409 esac
7410 case "$inc_version_list" in
7411 ''|' ') 
7412         inc_version_list_init='0';;
7413 *)      inc_version_list_init=`echo $inc_version_list |
7414                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
7415         ;;
7416 esac
7417 $rm -f getverlist
7418
7419 : determine whether to install perl also as /usr/bin/perl
7420
7421 echo " "
7422 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
7423         $cat <<EOM
7424 Many scripts expect perl to be installed as /usr/bin/perl.
7425 I can install the perl you are about to compile also as /usr/bin/perl
7426 (in addition to $installbin/perl).
7427 EOM
7428         case "$installusrbinperl" in
7429         "$undef"|[nN]*) dflt='n';;
7430         *)              dflt='y';;
7431         esac
7432         rp="Do you want to install perl as /usr/bin/perl?"
7433         . ./myread
7434         case "$ans" in
7435         [yY]*)  val="$define";;
7436         *)      val="$undef" ;;
7437         esac
7438 else
7439         val="$undef"
7440 fi
7441 set installusrbinperl
7442 eval $setvar
7443
7444 : see if dld is available
7445 set dld.h i_dld
7446 eval $inhdr
7447
7448 : see if dlopen exists
7449 xxx_runnm="$runnm"
7450 runnm=false
7451 set dlopen d_dlopen
7452 eval $inlibc
7453 runnm="$xxx_runnm"
7454
7455 : determine which dynamic loading, if any, to compile in
7456 echo " "
7457 dldir="ext/DynaLoader"
7458 case "$usedl" in
7459 $define|y|true)
7460         dflt='y'
7461         usedl="$define"
7462         ;;
7463 $undef|n|false)
7464         dflt='n'
7465         usedl="$undef"
7466         ;;
7467 *) 
7468         dflt='n'
7469         case "$d_dlopen" in
7470             $define) dflt='y' ;;
7471         esac
7472         case "$i_dld" in
7473             $define) dflt='y' ;;
7474         esac
7475         : Does a dl_xxx.xs file exist for this operating system
7476         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7477         ;;
7478 esac
7479 rp="Do you wish to use dynamic loading?"
7480 . ./myread
7481 usedl="$ans"
7482 case "$ans" in
7483 y*) usedl="$define"
7484         case "$dlsrc" in
7485         '')
7486                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7487                         dflt="$dldir/dl_${osname}.xs"
7488                 elif $test "$d_dlopen" = "$define" ; then
7489                         dflt="$dldir/dl_dlopen.xs"
7490                 elif $test "$i_dld" = "$define" ; then
7491                         dflt="$dldir/dl_dld.xs"
7492                 else
7493                         dflt=''
7494                 fi
7495                 ;;
7496         *)      dflt="$dldir/$dlsrc"
7497                 ;;
7498         esac
7499     echo "The following dynamic loading files are available:"
7500         : Can not go over to $dldir because getfile has path hard-coded in.
7501         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7502         rp="Source file to use for dynamic loading"
7503         fn="fne"
7504         gfpth="$src"
7505         . ./getfile
7506         usedl="$define"
7507         : emulate basename
7508         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7509
7510         $cat << EOM
7511
7512 Some systems may require passing special flags to $cc -c to
7513 compile modules that will be used to create a shared library.
7514 To use no flags, say "none".
7515
7516 EOM
7517     case "$cccdlflags" in
7518     '') case "$gccversion" in
7519                 '') case "$osname" in
7520                         hpux)   dflt='+z' ;;
7521                         next)   dflt='none' ;;
7522                         irix*)  dflt='-KPIC' ;;
7523                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7524                         sunos)  dflt='-pic' ;;
7525                         *)      dflt='none' ;;
7526                     esac
7527                         ;;
7528                 *)  case "$osname" in
7529                         darwin) dflt='none' ;;
7530                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7531                         *)      dflt='-fpic' ;;
7532                     esac ;;
7533             esac ;;
7534         ' ') dflt='none' ;;
7535     *)  dflt="$cccdlflags" ;;
7536     esac
7537     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7538     . ./myread
7539     case "$ans" in
7540     none) cccdlflags=' ' ;;
7541     *) cccdlflags="$ans" ;;
7542     esac
7543
7544     cat << EOM
7545
7546 Some systems use ld to create libraries that can be dynamically loaded,
7547 while other systems (such as those using ELF) use $cc.
7548
7549 EOM
7550         case "$ld" in
7551         '')     $cat >try.c <<'EOM'
7552 /* Test for whether ELF binaries are produced */
7553 #include <fcntl.h>
7554 #include <stdlib.h>
7555 int main() {
7556         char b[4];
7557         int i = open("a.out",O_RDONLY);
7558         if(i == -1) 
7559                 exit(1); /* fail */
7560         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7561                 exit(0); /* succeed (yes, it's ELF) */
7562         else
7563                 exit(1); /* fail */
7564 }
7565 EOM
7566                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7567                         cat <<EOM
7568 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7569 EOM
7570                         dflt="$cc"
7571                 else
7572                         echo "I'll use ld to build dynamic libraries."
7573                         dflt='ld'
7574                 fi
7575                 rm -f try.c a.out
7576                 ;;
7577         *)      dflt="$ld"
7578                 ;;
7579         esac
7580
7581     rp="What command should be used to create dynamic libraries?"
7582     . ./myread
7583         ld="$ans"
7584
7585     cat << EOM
7586
7587 Some systems may require passing special flags to $ld to create a
7588 library that can be dynamically loaded.  If your ld flags include
7589 -L/other/path options to locate libraries outside your loader's normal
7590 search path, you may need to specify those -L options here as well.  To
7591 use no flags, say "none".
7592
7593 EOM
7594     case "$lddlflags" in
7595     '') case "$osname" in
7596                         beos) dflt='-nostart' ;;
7597                         hpux) dflt='-b';
7598                               case "$gccversion" in
7599                               '') dflt="$dflt +vnocompatwarnings" ;;
7600                               esac
7601                               ;;        
7602                         linux|irix*)    dflt='-shared' ;;
7603                         next)  dflt='none' ;;
7604                         solaris) dflt='-G' ;;
7605                         sunos) dflt='-assert nodefinitions' ;;
7606                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7607                 *)     dflt='none' ;;
7608                         esac
7609                         ;;
7610     *) dflt="$lddlflags" ;;
7611     esac
7612
7613         : Try to guess additional flags to pick up local libraries.
7614         : Be careful not to append to a plain 'none'
7615         case "$dflt" in
7616         none) dflt='' ;;
7617         esac
7618         for thisflag in $ldflags; do
7619                 case "$thisflag" in
7620                 -L*|-R*|-Wl,-R*)
7621                         case " $dflt " in
7622                         *" $thisflag "*) ;;
7623                         *) dflt="$dflt $thisflag" ;;
7624                         esac
7625                         ;;
7626                 esac
7627         done
7628
7629         case "$dflt" in
7630         ''|' ') dflt='none' ;;
7631         esac
7632
7633     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7634     . ./myread
7635     case "$ans" in
7636     none) lddlflags=' ' ;;
7637     *) lddlflags="$ans" ;;
7638     esac
7639
7640         cat <<EOM
7641
7642 Some systems may require passing special flags to $cc to indicate that
7643 the resulting executable will use dynamic linking.  To use no flags,
7644 say "none".
7645
7646 EOM
7647     case "$ccdlflags" in
7648     '') case "$osname" in
7649                 hpux)   dflt='-Wl,-E' ;;
7650                 linux)  dflt='-rdynamic' ;;
7651                 next)   dflt='none' ;;
7652                 sunos)  dflt='none' ;;
7653                 *)      dflt='none' ;;
7654             esac ;;
7655     ' ')  dflt='none' ;;
7656     *)  dflt="$ccdlflags" ;;
7657     esac
7658     rp="Any special flags to pass to $cc to use dynamic linking?"
7659     . ./myread
7660     case "$ans" in
7661     none) ccdlflags=' ' ;;
7662     *) ccdlflags="$ans" ;;
7663     esac
7664     ;;
7665 *)  usedl="$undef"
7666         ld='ld'
7667     dlsrc='dl_none.xs'
7668     lddlflags=''
7669     ccdlflags=''
7670     ;;
7671 esac
7672
7673 also=''
7674 case "$usedl" in
7675 $undef)
7676         # No dynamic loading being used, so don't bother even to prompt.
7677         useshrplib='false'
7678         ;;
7679 *)      case "$useshrplib" in
7680         '')     case "$osname" in
7681                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7682                         dflt=y
7683                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7684                         ;;
7685                 next*)
7686                         case "$osvers" in
7687                         4*)     dflt=y
7688                                 also='Building a shared libperl is needed for MAB support.'
7689                                 ;;
7690                         *)      dflt=n
7691                                 ;;
7692                         esac
7693                         ;;
7694                 *)      dflt=n
7695                         ;;
7696                 esac
7697                 ;;
7698         $define|true|[Yy]*)
7699                 dflt=y
7700                 ;;
7701         *)      dflt=n
7702                 ;;
7703         esac
7704         $cat << EOM
7705
7706 The perl executable is normally obtained by linking perlmain.c with
7707 libperl${_a}, any static extensions (usually just DynaLoader), and
7708 any other libraries needed on this system (such as -lm, etc.).  Since
7709 your system supports dynamic loading, it is probably possible to build
7710 a shared libperl.$so.  If you will have more than one executable linked
7711 to libperl.$so, this will significantly reduce the size of each
7712 executable, but it may have a noticeable affect on performance.  The
7713 default is probably sensible for your system.
7714 $also
7715
7716 EOM
7717         rp="Build a shared libperl.$so (y/n)"
7718         . ./myread
7719         case "$ans" in
7720         true|$define|[Yy]*)
7721                 useshrplib='true'  ;;
7722         *)      useshrplib='false' ;;
7723         esac
7724         ;;
7725 esac
7726
7727 case "$useshrplib" in
7728 true)
7729         case "$libperl" in
7730         '')
7731                 # Figure out a good name for libperl.so.  Since it gets stored in
7732                 # a version-specific architecture-dependent library, the version
7733                 # number isn't really that important, except for making cc/ld happy.
7734                 #
7735                 # A name such as libperl.so.3.1
7736                 majmin="libperl.$so.$patchlevel.$subversion"
7737                 # A name such as libperl.so.301
7738                 majonly=`echo $patchlevel $subversion |
7739                         $awk '{printf "%d%02d", $1, $2}'`
7740                 majonly=libperl.$so.$majonly
7741                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7742                 # rely on figuring it out from the naming of libc.
7743                 case "${osname}${osvers}" in
7744                 next4*)
7745                         dflt=libperl.5.$so
7746                         # XXX How handle the --version stuff for MAB?
7747                         ;;
7748                 linux*)  # ld won't link with a bare -lperl otherwise.
7749                         dflt=libperl.$so
7750                         ;;
7751                 cygwin*) # ld links against an importlib
7752                         dflt=libperl$lib_ext
7753                         ;;
7754                 *)      # Try to guess based on whether libc has major.minor.
7755                         case "$libc" in
7756                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7757                         *libc.$so.[0-9]*) dflt=$majonly ;;
7758                         *)      dflt=libperl.$so ;;
7759                         esac
7760                         ;;
7761                 esac
7762                 ;;
7763         *)      dflt=$libperl
7764                 ;;
7765         esac
7766         cat << EOM
7767
7768 I need to select a good name for the shared libperl.  If your system uses
7769 library names with major and minor numbers, then you might want something
7770 like $majmin.  Alternatively, if your system uses a single version
7771 number for shared libraries, then you might want to use $majonly.
7772 Or, your system might be quite happy with a simple libperl.$so.
7773
7774 Since the shared libperl will get installed into a version-specific
7775 architecture-dependent directory, the version number of the shared perl
7776 library probably isn't important, so the default should be o.k.
7777
7778 EOM
7779         rp='What name do you want to give to the shared libperl?'
7780         . ./myread
7781         libperl=$ans
7782         echo "Ok, I'll use $libperl"
7783         ;;
7784 *)
7785         libperl="libperl${_a}"
7786         ;;
7787 esac
7788
7789 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
7790 case "$shrpdir" in
7791 '') ;;
7792 *)      $cat >&4 <<EOM
7793 WARNING:  Use of the shrpdir variable for the installation location of
7794 the shared $libperl is not supported.  It was never documented and
7795 will not work in this version.  Let me (perlbug@perl.org)
7796 know of any problems this may cause.
7797
7798 EOM
7799         case "$shrpdir" in
7800         "$archlibexp/CORE")
7801                 $cat >&4 <<EOM
7802 But your current setting of $shrpdir is
7803 the default anyway, so it's harmless.
7804 EOM
7805                 ;;
7806         *)
7807                 $cat >&4 <<EOM
7808 Further, your current attempted setting of $shrpdir
7809 conflicts with the value of $archlibexp/CORE
7810 that installperl will use.
7811 EOM
7812                 ;;
7813         esac
7814         ;;
7815 esac
7816
7817 # How will the perl executable find the installed shared $libperl?
7818 # Add $xxx to ccdlflags.
7819 # If we can't figure out a command-line option, use $shrpenv to
7820 # set env LD_RUN_PATH.  The main perl makefile uses this.
7821 shrpdir=$archlibexp/CORE
7822 xxx=''
7823 tmp_shrpenv=''
7824 if "$useshrplib"; then
7825     case "$osname" in 
7826         aix)
7827                 # We'll set it in Makefile.SH...
7828                 ;;
7829         solaris)
7830                 xxx="-R $shrpdir"
7831                 ;;
7832         freebsd|netbsd)
7833                 xxx="-Wl,-R$shrpdir"
7834                 ;;
7835         bsdos|linux|irix*|dec_osf)
7836                 xxx="-Wl,-rpath,$shrpdir"
7837                 ;;
7838         next)
7839                 # next doesn't like the default...
7840                 ;;
7841         beos)
7842                 # beos doesn't like the default, either.
7843                 ;;
7844         hpux*)
7845                 # hpux doesn't like the default, either.
7846                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7847                 ;;
7848         *)
7849                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7850                 ;;
7851         esac
7852         case "$xxx" in
7853         '') ;;
7854         *)      
7855                 # Only add $xxx if it isn't already in ccdlflags.
7856                 case " $ccdlflags " in
7857                 *" $xxx "*)     ;;
7858                 *)      ccdlflags="$ccdlflags $xxx"
7859                         cat <<EOM >&4
7860
7861 Adding $xxx to the flags
7862 passed to $ld so that the perl executable will find the 
7863 installed shared $libperl.
7864
7865 EOM
7866                         ;;
7867                 esac
7868                 ;;
7869         esac
7870 fi
7871 # Fix ccdlflags in AIX for building external extensions.
7872 # (For building Perl itself bare -bE:perl.exp is needed,
7873 #  Makefile.SH takes care of this.)
7874 case "$osname" in
7875 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7876 esac
7877 # Respect a hint or command-line value.
7878 case "$shrpenv" in
7879 '') shrpenv="$tmp_shrpenv" ;;
7880 esac
7881 case "$ldlibpthname" in
7882 '')     ldlibpthname=LD_LIBRARY_PATH ;;
7883 none)   ldlibpthname='' ;;
7884 esac
7885
7886 : determine where manual pages are on this system
7887 echo " "
7888 case "$sysman" in
7889 '') 
7890         syspath='/usr/share/man/man1 /usr/man/man1'
7891         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7892         syspath="$syspath /usr/man/u_man/man1"
7893         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7894         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7895         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7896         sysman=`./loc . /usr/man/man1 $syspath`
7897         ;;
7898 esac
7899 if $test -d "$sysman"; then
7900         echo "System manual is in $sysman." >&4
7901 else
7902         echo "Could not find manual pages in source form." >&4
7903 fi
7904
7905 : determine where manual pages go
7906 set man1dir man1dir none
7907 eval $prefixit
7908 $cat <<EOM
7909
7910 $spackage has manual pages available in source form.
7911 EOM
7912 case "$nroff" in
7913 nroff)
7914         echo "However, you don't have nroff, so they're probably useless to you."
7915         case "$man1dir" in
7916         '') man1dir="none";;
7917         esac;;
7918 esac
7919 echo "If you don't want the manual sources installed, answer 'none'."
7920 case "$man1dir" in
7921 ' ') dflt=none
7922         ;;
7923 '')
7924         lookpath="$prefixexp/share/man/man1"
7925         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
7926         lookpath="$lookpath $prefixexp/man/p_man/man1"
7927         lookpath="$lookpath $prefixexp/man/u_man/man1"
7928         lookpath="$lookpath $prefixexp/man/man.1"
7929         case "$sysman" in
7930         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
7931         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
7932         esac
7933         set dflt
7934         eval $prefixup
7935         ;;
7936 *)  dflt="$man1dir"
7937         ;;
7938 esac
7939 echo " "
7940 fn=dn+~
7941 rp="Where do the main $spackage manual pages (source) go?"
7942 . ./getfile
7943 if $test "X$man1direxp" != "X$ansexp"; then
7944         installman1dir=''
7945 fi
7946 man1dir="$ans"
7947 man1direxp="$ansexp"
7948 case "$man1dir" in
7949 '')     man1dir=' '
7950         installman1dir='';;
7951 esac
7952
7953 : Change installation prefix, if necessary.
7954 if $test X"$prefix" != X"$installprefix"; then
7955         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
7956 else
7957         installman1dir="$man1direxp"
7958 fi
7959
7960 : What suffix to use on installed man pages
7961
7962 case "$man1dir" in
7963 ' ')
7964         man1ext='0'
7965         ;;
7966 *)
7967         rp="What suffix should be used for the main $spackage man pages?"
7968         case "$man1ext" in
7969         '')     case "$man1dir" in
7970                 *1)  dflt=1 ;;
7971                 *1p) dflt=1p ;;
7972                 *1pm) dflt=1pm ;;
7973                 *l) dflt=l;;
7974                 *n) dflt=n;;
7975                 *o) dflt=o;;
7976                 *p) dflt=p;;
7977                 *C) dflt=C;;
7978                 *L) dflt=L;;
7979                 *L1) dflt=L1;;
7980                 *) dflt=1;;
7981                 esac
7982                 ;;
7983         *)      dflt="$man1ext";;
7984         esac
7985         . ./myread
7986         man1ext="$ans"
7987         ;;
7988 esac
7989
7990 : see if we can have long filenames
7991 echo " "
7992 first=123456789abcdef
7993 $rm -f $first
7994 if (echo hi >$first) 2>/dev/null; then
7995         if $test -f 123456789abcde; then
7996                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
7997                 val="$undef"
7998         else
7999                 echo 'You can have filenames longer than 14 characters.'>&4
8000                 val="$define"
8001         fi
8002 else
8003         $cat <<'EOM'
8004 You can't have filenames longer than 14 chars.
8005 You can't even think about them!
8006 EOM
8007         val="$undef"
8008 fi 
8009 set d_flexfnam
8010 eval $setvar
8011 $rm -rf 123456789abcde*
8012
8013 : determine where library module manual pages go
8014 set man3dir man3dir none
8015 eval $prefixit
8016 $cat <<EOM
8017
8018 $spackage has manual pages for many of the library modules.
8019 EOM
8020
8021 case "$nroff" in
8022 nroff)
8023         $cat <<'EOM'
8024 However, you don't have nroff, so they're probably useless to you.
8025 EOM
8026         case "$man3dir" in
8027         '') man3dir="none";;
8028         esac;;
8029 esac
8030
8031 case "$d_flexfnam" in
8032 undef)
8033         $cat <<'EOM'
8034 However, your system can't handle the long file names like File::Basename.3. 
8035 EOM
8036         case "$man3dir" in
8037         '') man3dir="none";;
8038         esac;;
8039 esac
8040
8041 echo "If you don't want the manual sources installed, answer 'none'."
8042 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8043 case "$man3dir" in
8044 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8045         if $test -d "$privlib/man/man3"; then
8046                 cat <<EOM >&4
8047
8048 WARNING:  Previous versions of perl installed man3 pages into
8049 $privlib/man/man3.  This version will suggest a 
8050 new default of $dflt.  
8051 EOM
8052                 tdflt=$dflt
8053                 dflt='n'
8054                 rp='Do you wish to preserve the old behavior?(y/n)'
8055                 . ./myread
8056                 case "$ans" in
8057                 y*) dflt="$privlib/man/man3" ;;
8058                 *)  dflt=$tdflt ;;
8059                 esac
8060     fi
8061         ;;
8062 *)      dflt="$man3dir" ;;
8063 esac
8064 case "$dflt" in
8065 ' ') dflt=none ;;
8066 esac
8067 echo " "
8068 fn=dn+~
8069 rp="Where do the $package library man pages (source) go?"
8070 . ./getfile
8071 man3dir="$ans"
8072 man3direxp="$ansexp"
8073 case "$man3dir" in
8074 '')     man3dir=' '
8075         installman3dir='';;
8076 esac
8077
8078 : Change installation prefix, if necessary.
8079 if $test X"$prefix" != X"$installprefix"; then
8080         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
8081 else
8082         installman3dir="$man3direxp"
8083 fi
8084
8085 : What suffix to use on installed man pages
8086 case "$man3dir" in
8087 ' ')
8088         man3ext='0'
8089         ;;
8090 *)
8091         rp="What suffix should be used for the $package library man pages?"
8092         case "$man3ext" in
8093         '')     case "$man3dir" in
8094                 *3)  dflt=3 ;;
8095                 *3p) dflt=3p ;;
8096                 *3pm) dflt=3pm ;;
8097                 *l) dflt=l;;
8098                 *n) dflt=n;;
8099                 *o) dflt=o;;
8100                 *p) dflt=p;;
8101                 *C) dflt=C;;
8102                 *L) dflt=L;;
8103                 *L3) dflt=L3;;
8104                 *) dflt=3;;
8105                 esac
8106                 ;;
8107         *)      dflt="$man3ext";;
8108         esac
8109         . ./myread
8110         man3ext="$ans"
8111         ;;
8112 esac
8113
8114 : see if we have to deal with yellow pages, now NIS.
8115 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8116         if $test -f /usr/etc/nibindd; then
8117                 echo " "
8118                 echo "I'm fairly confident you're on a NeXT."
8119                 echo " "
8120                 rp='Do you get the hosts file via NetInfo?'
8121                 dflt=y
8122                 case "$hostcat" in
8123                 nidump*) ;;
8124                 '') ;;
8125                 *) dflt=n;;
8126                 esac
8127                 . ./myread
8128                 case "$ans" in
8129                 y*) hostcat='nidump hosts .';;
8130                 *)      case "$hostcat" in
8131                         nidump*) hostcat='';;
8132                         esac
8133                         ;;
8134                 esac
8135         fi
8136         case "$hostcat" in
8137         nidump*) ;;
8138         *)
8139                 case "$hostcat" in
8140                 *ypcat*) dflt=y;;
8141                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8142                                 dflt=y
8143                         else
8144                                 dflt=n
8145                         fi;;
8146                 *) dflt=n;;
8147                 esac
8148                 echo " "
8149                 rp='Are you getting the hosts file via yellow pages?'
8150                 . ./myread
8151                 case "$ans" in
8152                 y*) hostcat='ypcat hosts';;
8153                 *) hostcat='cat /etc/hosts';;
8154                 esac
8155                 ;;
8156         esac
8157 fi
8158 case "$hostcat" in
8159 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8160 esac
8161 case "$groupcat" in
8162 '') test -f /etc/group && groupcat='cat /etc/group';;
8163 esac
8164 case "$passcat" in
8165 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8166 esac
8167
8168 : now get the host name
8169 echo " "
8170 echo "Figuring out host name..." >&4
8171 case "$myhostname" in
8172 '') cont=true
8173         echo 'Maybe "hostname" will work...'
8174         if tans=`sh -c hostname 2>&1` ; then
8175                 myhostname=$tans
8176                 phostname=hostname
8177                 cont=''
8178         fi
8179         ;;
8180 *) cont='';;
8181 esac
8182 if $test "$cont"; then
8183         if ./xenix; then
8184                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8185                 if tans=`cat /etc/systemid 2>&1` ; then
8186                         myhostname=$tans
8187                         phostname='cat /etc/systemid'
8188                         echo "Whadyaknow.  Xenix always was a bit strange..."
8189                         cont=''
8190                 fi
8191         elif $test -r /etc/systemid; then
8192                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8193         fi
8194 fi
8195 if $test "$cont"; then
8196         echo 'No, maybe "uuname -l" will work...'
8197         if tans=`sh -c 'uuname -l' 2>&1` ; then
8198                 myhostname=$tans
8199                 phostname='uuname -l'
8200         else
8201                 echo 'Strange.  Maybe "uname -n" will work...'
8202                 if tans=`sh -c 'uname -n' 2>&1` ; then
8203                         myhostname=$tans
8204                         phostname='uname -n'
8205                 else
8206                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8207                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8208                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8209                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8210                         else
8211                                 case "$myhostname" in
8212                                 '') echo "Does this machine have an identity crisis or something?"
8213                                         phostname='';;
8214                                 *)
8215                                         echo "Well, you said $myhostname before..."
8216                                         phostname='echo $myhostname';;
8217                                 esac
8218                         fi
8219                 fi
8220         fi
8221 fi
8222 case "$myhostname" in
8223 '') myhostname=noname ;;
8224 esac
8225 : you do not want to know about this
8226 set $myhostname
8227 myhostname=$1
8228
8229 : verify guess
8230 if $test "$myhostname" ; then
8231         dflt=y
8232         rp='Your host name appears to be "'$myhostname'".'" Right?"
8233         . ./myread
8234         case "$ans" in
8235         y*) ;;
8236         *) myhostname='';;
8237         esac
8238 fi
8239
8240 : bad guess or no guess
8241 while $test "X$myhostname" = X ; do
8242         dflt=''
8243         rp="Please type the (one word) name of your host:"
8244         . ./myread
8245         myhostname="$ans"
8246 done
8247
8248 : translate upper to lower if necessary
8249 case "$myhostname" in
8250 *[A-Z]*)
8251         echo "(Normalizing case in your host name)"
8252         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8253         ;;
8254 esac
8255
8256 case "$myhostname" in
8257 *.*)
8258         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8259         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8260         echo "(Trimming domain name from host name--host name is now $myhostname)"
8261         ;;
8262 *) case "$mydomain" in
8263         '')
8264                 {
8265                         test "X$hostcat" = "Xypcat hosts" &&
8266                         ypmatch "$myhostname" hosts 2>/dev/null |\
8267                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8268                         $test -s hosts
8269                 } || {
8270                         test "X$hostcat" != "X" &&
8271                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8272                                         /[       ]$myhostname[  . ]/p" > hosts
8273                 }
8274                 tmp_re="[       . ]"
8275                 if $test -f hosts; then
8276                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8277                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8278                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8279                                 hosts | $sort | $uniq | \
8280                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8281                         case `$echo X$dflt` in
8282                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8283                                 dflt=.
8284                                 ;;
8285                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8286                                 ;;
8287                         esac
8288                 else
8289                         echo "(I cannot locate a hosts database anywhere)"
8290                         dflt=.
8291                 fi
8292                 case "$dflt" in
8293                 .)
8294                         tans=`./loc resolv.conf X /etc /usr/etc`
8295                         if $test -f "$tans"; then
8296                                 echo "(Attempting domain name extraction from $tans)"
8297                                 dflt=.`$sed -n -e 's/   / /g' \
8298                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8299                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8300                                 case "$dflt" in
8301                                 .) dflt=.`$sed -n -e 's/        / /g' \
8302                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8303                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8304                                         ;;
8305                                 esac
8306                         fi
8307                         ;;
8308                 esac
8309                 case "$dflt" in
8310                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8311                         dflt=.`sh -c domainname 2>/dev/null`
8312                         case "$dflt" in
8313                         '') dflt='.';;
8314                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8315                         esac
8316                         ;;
8317                 esac
8318                 case "$dflt$osname" in
8319                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8320                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8321                         ;;
8322                 esac
8323                 case "$dflt" in
8324                 .) echo "(Lost all hope -- silly guess then)"
8325                         dflt='.nonet'
8326                         ;;
8327                 esac
8328                 $rm -f hosts
8329                 ;;
8330         *) dflt="$mydomain";;
8331         esac;;
8332 esac
8333 echo " "
8334 rp="What is your domain name?"
8335 . ./myread
8336 tans="$ans"
8337 case "$ans" in
8338 '') ;;
8339 .*) ;;
8340 *) tans=".$tans";;
8341 esac
8342 mydomain="$tans"
8343
8344 : translate upper to lower if necessary
8345 case "$mydomain" in
8346 *[A-Z]*)
8347         echo "(Normalizing case in your domain name)"
8348         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8349         ;;
8350 esac
8351
8352 : a little sanity check here
8353 case "$phostname" in
8354 '') ;;
8355 *)
8356         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8357         $myhostname$mydomain|$myhostname) ;;
8358         *)
8359                 case "$phostname" in
8360                 sed*)
8361                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8362                         ;;
8363                 *)
8364                         echo "(That doesn't agree with your $phostname command, by the way.)"
8365                         ;;
8366                 esac
8367         ;;
8368         esac
8369         ;;
8370 esac
8371
8372 $cat <<EOM
8373
8374 I need to get your e-mail address in Internet format if possible, i.e.
8375 something like user@host.domain. Please answer accurately since I have
8376 no easy means to double check it. The default value provided below
8377 is most probably close to reality but may not be valid from outside
8378 your organization...
8379
8380 EOM
8381 cont=x
8382 while test "$cont"; do
8383         case "$cf_email" in
8384         '') dflt="$cf_by@$myhostname$mydomain";;
8385         *) dflt="$cf_email";;
8386         esac
8387         rp='What is your e-mail address?'
8388         . ./myread
8389         cf_email="$ans"
8390         case "$cf_email" in
8391         *@*.*) cont='' ;;
8392         *)
8393                 rp='Address does not look like an Internet one.  Use it anyway?'
8394                 case "$fastread" in
8395                 yes) dflt=y ;;
8396                 *) dflt=n ;;
8397                 esac
8398                 . ./myread
8399                 case "$ans" in
8400                 y*) cont='' ;;
8401                 *) echo " " ;;
8402                 esac
8403                 ;;
8404         esac
8405 done
8406
8407 $cat <<EOM
8408
8409 If you or somebody else will be maintaining perl at your site, please
8410 fill in the correct e-mail address here so that they may be contacted
8411 if necessary. Currently, the "perlbug" program included with perl
8412 will send mail to this address in addition to perlbug@perl.org. You may
8413 enter "none" for no administrator.
8414
8415 EOM
8416 case "$perladmin" in
8417 '') dflt="$cf_email";;
8418 *) dflt="$perladmin";;
8419 esac
8420 rp='Perl administrator e-mail address'
8421 . ./myread
8422 perladmin="$ans"
8423
8424 : determine whether to only install version-specific parts.
8425 echo " "
8426 $cat <<EOM
8427 Do you want to install only the version-specific parts of the perl
8428 distribution?  Usually you do *not* want to do this.
8429 EOM
8430 case "$versiononly" in
8431 "$define"|[Yy]*|true) dflt='y' ;;
8432 *) dflt='n';
8433 esac
8434 rp="Do you want to install only the version-specific parts of perl?"
8435 . ./myread
8436 case "$ans" in
8437 [yY]*)  val="$define";;
8438 *)      val="$undef" ;;
8439 esac
8440 set versiononly
8441 eval $setvar
8442
8443 case "$versiononly" in
8444 "$define") inc_version_list=''
8445            inc_version_list_init=0
8446            ;;
8447 esac
8448
8449 : figure out how to guarantee perl startup
8450 case "$startperl" in
8451 '')
8452         case "$sharpbang" in
8453         *!)
8454                 $cat <<EOH
8455
8456 I can use the #! construct to start perl on your system. This will
8457 make startup of perl scripts faster, but may cause problems if you
8458 want to share those scripts and perl is not in a standard place
8459 ($binexp/perl) on all your platforms. The alternative is to force
8460 a shell by starting the script with a single ':' character.
8461
8462 EOH
8463                 case "$versiononly" in
8464                 "$define")      dflt="$binexp/perl$version";;  
8465                 *)              dflt="$binexp/perl";;
8466                 esac
8467                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8468                 . ./myread
8469                 case "$ans" in
8470                 none)   startperl=": # use perl";;
8471                 *)      startperl="#!$ans"
8472                         if $test 30 -lt `echo "$ans" | wc -c`; then
8473                                 $cat >&4 <<EOM
8474
8475 WARNING:  Some systems limit the #! command to 32 characters.
8476 If you experience difficulty running Perl scripts with #!, try
8477 installing Perl in a directory with a shorter pathname.
8478
8479 EOM
8480                         fi ;;
8481                 esac
8482                 ;;
8483         *) startperl=": # use perl"
8484                 ;;
8485         esac
8486         ;;
8487 esac
8488 echo "I'll use $startperl to start perl scripts."
8489
8490 : figure best path for perl in scripts
8491 case "$perlpath" in
8492 '')
8493         case "$versiononly" in
8494         "$define")      perlpath="$binexp/perl$version";;
8495         *)              perlpath="$binexp/perl";;
8496         esac
8497         case "$startperl" in
8498         *!*) ;;
8499         *)
8500                 $cat <<EOH
8501
8502 I will use the "eval 'exec'" idiom to start Perl on your system.
8503 I can use the full path of your Perl binary for this purpose, but
8504 doing so may cause problems if you want to share those scripts and
8505 Perl is not always in a standard place ($binexp/perl).
8506
8507 EOH
8508                 dflt="$binexp/perl"
8509                 rp="What path shall I use in \"eval 'exec'\"?"
8510                 . ./myread
8511                 perlpath="$ans"
8512                 ;;
8513         esac
8514         ;;
8515 esac
8516 case "$startperl" in
8517 *!*)    ;;
8518 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8519 esac
8520
8521 : determine where public executable scripts go
8522 set scriptdir scriptdir
8523 eval $prefixit
8524 case "$scriptdir" in
8525 '')
8526         dflt="$bin"
8527         : guess some guesses
8528         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8529         $test -d /usr/share/bin     && dflt=/usr/share/bin
8530         $test -d /usr/local/script  && dflt=/usr/local/script
8531         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8532         $test -d $prefixexp/script  && dflt=$prefixexp/script
8533         set dflt
8534         eval $prefixup
8535         ;;
8536 *)  dflt="$scriptdir"
8537         ;;
8538 esac
8539 $cat <<EOM
8540  
8541 Some installations have a separate directory just for executable scripts so
8542 that they can mount it across multiple architectures but keep the scripts in
8543 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8544 Or you might just lump your scripts in with all your other executables.
8545  
8546 EOM
8547 fn=d~
8548 rp='Where do you keep publicly executable scripts?'
8549 . ./getfile
8550 if $test "X$ansexp" != "X$scriptdirexp"; then
8551         installscript=''
8552 fi
8553 scriptdir="$ans"
8554 scriptdirexp="$ansexp"
8555 : Change installation prefix, if necessary.
8556 if $test X"$prefix" != X"$installprefix"; then
8557         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
8558 else
8559         installscript="$scriptdirexp"
8560 fi
8561
8562 : determine where add-on public executables go
8563 case "$sitebin" in
8564 '')     dflt=$siteprefix/bin ;;
8565 *)      dflt=$sitebin ;;
8566 esac
8567 fn=d~
8568 rp='Pathname where the add-on public executables should be installed?'
8569 . ./getfile
8570 sitebin="$ans"
8571 sitebinexp="$ansexp"
8572 : Change installation prefix, if necessary.
8573 if $test X"$prefix" != X"$installprefix"; then
8574         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
8575 else
8576         installsitebin="$sitebinexp"
8577 fi
8578
8579 : define an is-a-typedef? function
8580 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8581 case "$inclist" in
8582 "") inclist="sys/types.h";;
8583 esac;
8584 eval "varval=\$$var";
8585 case "$varval" in
8586 "")
8587         $rm -f temp.c;
8588         for inc in $inclist; do
8589                 echo "#include <$inc>" >>temp.c;
8590         done;
8591         echo "#ifdef $type" >> temp.c;
8592         echo "printf(\"We have $type\");" >> temp.c;
8593         echo "#endif" >> temp.c;
8594         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8595         if $contains $type temp.E >/dev/null 2>&1; then
8596                 eval "$var=\$type";
8597         else
8598                 eval "$var=\$def";
8599         fi;
8600         $rm -f temp.?;;
8601 *) eval "$var=\$varval";;
8602 esac'
8603
8604 : define an is-a-typedef? function that prompts if the type is not available.
8605 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8606 case "$inclist" in
8607 "") inclist="sys/types.h";;
8608 esac;
8609 eval "varval=\$$var";
8610 case "$varval" in
8611 "")
8612         $rm -f temp.c;
8613         for inc in $inclist; do
8614                 echo "#include <$inc>" >>temp.c;
8615         done;
8616         echo "#ifdef $type" >> temp.c;
8617         echo "printf(\"We have $type\");" >> temp.c;
8618         echo "#endif" >> temp.c;
8619         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8620         echo " " ;
8621         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8622         if $contains $type temp.E >/dev/null 2>&1; then
8623                 echo "$type found." >&4;
8624                 eval "$var=\$type";
8625         else
8626                 echo "$type NOT found." >&4;
8627                 dflt="$def";
8628                 . ./myread ;
8629                 eval "$var=\$ans";
8630         fi;
8631         $rm -f temp.?;;
8632 *) eval "$var=\$varval";;
8633 esac'
8634
8635 : see what type lseek is declared as in the kernel
8636 rp="What is the type used for lseek's offset on this system?"
8637 set off_t lseektype long stdio.h sys/types.h
8638 eval $typedef_ask
8639
8640 echo " "
8641 echo "Checking to see how big your file offsets are..." >&4
8642 $cat >try.c <<EOCP
8643 #include <sys/types.h>
8644 #include <stdio.h>
8645 int main()
8646 {
8647     printf("%d\n", (int)sizeof($lseektype));
8648     return(0); 
8649 }
8650 EOCP
8651 set try
8652 if eval $compile_ok; then
8653         lseeksize=`$run ./try`
8654         echo "Your file offsets are $lseeksize bytes long."
8655 else
8656         dflt=$longsize
8657         echo " "
8658         echo "(I can't seem to compile the test program.  Guessing...)"
8659         rp="What is the size of your file offsets (in bytes)?"
8660         . ./myread
8661         lseeksize="$ans"
8662 fi
8663 $rm -f try.c try
8664
8665 : see what type file positions are declared as in the library
8666 rp="What is the type for file position used by fsetpos()?"
8667 set fpos_t fpostype long stdio.h sys/types.h
8668 eval $typedef_ask
8669
8670 echo " "
8671 case "$fpostype" in
8672 *_t) zzz="$fpostype"    ;;
8673 *)   zzz="fpos_t"       ;;
8674 esac
8675 echo "Checking the size of $zzz..." >&4 
8676 cat > try.c <<EOCP
8677 #include <sys/types.h>
8678 #include <stdio.h>
8679 int main() {
8680     printf("%d\n", (int)sizeof($fpostype));
8681     exit(0);
8682 }
8683 EOCP
8684 set try
8685 if eval $compile_ok; then
8686         yyy=`$run ./try`
8687         case "$yyy" in
8688         '')     fpossize=4
8689                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8690                 ;;
8691         *)      fpossize=$yyy
8692                 echo "Your $zzz is $fpossize bytes long."
8693                 ;;
8694         esac
8695 else
8696         dflt="$longsize"
8697         echo " " >&4
8698         echo "(I can't compile the test program.  Guessing...)" >&4
8699         rp="What is the size of your file positions (in bytes)?"
8700         . ./myread
8701         fpossize="$ans"
8702 fi
8703
8704
8705
8706 # Backward compatibility (uselfs is deprecated).
8707 case "$uselfs" in
8708 "$define"|true|[yY]*)
8709         cat <<EOM >&4
8710
8711 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
8712 EOM
8713         uselargefiles="$define"
8714         ;;
8715 esac                          
8716
8717 case "$lseeksize:$fpossize" in
8718 8:8) cat <<EOM
8719
8720 You can have files larger than 2 gigabytes.
8721 EOM
8722    val="$define" ;;
8723 *)    case "$uselargefiles" in
8724    "$undef"|false|[nN]*) dflt='n' ;;
8725    *)   dflt='y' ;;
8726    esac
8727    cat <<EOM
8728
8729 Perl can be built to understand large files (files larger than 2 gigabytes)
8730 on some systems.  To do so, Configure can be run with -Duselargefiles.
8731
8732 If this doesn't make any sense to you, just accept the default '$dflt'.
8733 EOM
8734    rp='Try to understand large files, if available?'
8735    . ./myread
8736    case "$ans" in
8737    y|Y)         val="$define" ;;
8738    *)           val="$undef"  ;;
8739    esac
8740    ;;
8741 esac
8742 set uselargefiles
8743 eval $setvar
8744 case "$uselargefiles" in
8745 "$define")
8746 : Look for a hint-file generated 'call-back-unit'.  If the
8747 : user has specified that a large files perl is to be built,
8748 : we may need to set or change some other defaults.
8749         if $test -f uselargefiles.cbu; then
8750                 echo "Your platform has some specific hints for large file builds, using them..."
8751                 . ./uselargefiles.cbu
8752                 echo " "
8753                 echo "Rechecking to see how big your file offsets are..." >&4
8754                 $cat >try.c <<EOCP
8755 #include <sys/types.h>
8756 #include <stdio.h>
8757 int main()
8758 {
8759     printf("%d\n", (int)sizeof($lseektype));
8760     return(0); 
8761 }
8762 EOCP
8763                 set try
8764                 if eval $compile_ok; then
8765                         lseeksize=`$run ./try`
8766                         $echo "Your file offsets are now $lseeksize bytes long."
8767                 else
8768                         dflt="$lseeksize"
8769                         echo " "
8770                         echo "(I can't seem to compile the test program.  Guessing...)"
8771                         rp="What is the size of your file offsets (in bytes)?"
8772                         . ./myread
8773                         lseeksize="$ans"
8774                 fi
8775                 case "$fpostype" in
8776                 *_t) zzz="$fpostype"    ;;
8777                 *)   zzz="fpos_t"       ;;
8778                 esac
8779                 $echo $n "Rechecking the size of $zzz...$c" >&4 
8780                 $cat > try.c <<EOCP
8781 #include <sys/types.h>
8782 #include <stdio.h>
8783 int main() {
8784     printf("%d\n", (int)sizeof($fpostype));
8785     exit(0);
8786 }
8787 EOCP
8788                 set try
8789                 if eval $compile_ok; then
8790                         yyy=`$run ./try`
8791                         dflt="$lseeksize"
8792                         case "$yyy" in
8793                         '')     echo " "
8794                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8795                                 ;;
8796                         *)      fpossize=$yyy
8797                                 echo " $fpossize bytes." >&4
8798                                 ;;
8799                         esac
8800                 else
8801                         dflt="$fpossize"
8802                         echo " "
8803                         echo "(I can't compile the test program.  Guessing...)" >&4
8804                         rp="What is the size of your file positions (in bytes)?"
8805                         . ./myread
8806                         fpossize="$ans"
8807                 fi
8808                 $rm -f try.c try
8809         fi
8810         ;;
8811 esac
8812
8813 case "$vendorprefix" in
8814 '')     d_vendorbin="$undef"
8815         vendorbin=''
8816         vendorbinexp=''
8817         ;;
8818 *)      d_vendorbin="$define"
8819         : determine where vendor-supplied executables go.
8820         case "$vendorbin" in
8821         '') dflt=$vendorprefix/bin ;;
8822         *)      dflt="$vendorbin" ;;
8823         esac
8824         fn=d~+
8825         rp='Pathname for the vendor-supplied executables directory?'
8826         . ./getfile
8827         vendorbin="$ans"
8828         vendorbinexp="$ansexp"
8829         ;;
8830 esac
8831 : Change installation prefix, if necessary.
8832 if $test X"$prefix" != X"$installprefix"; then
8833         installvendorbin=`echo $vendorbinexp | $sed "s#^$prefix#$installprefix#"`
8834 else
8835         installvendorbin="$vendorbinexp"
8836 fi
8837
8838 : see if qgcvt exists
8839 set qgcvt d_qgcvt
8840 eval $inlibc
8841
8842 : Check how to convert floats to strings.
8843
8844 if test "X$d_Gconvert" = X; then
8845
8846 echo " "
8847 echo "Checking for an efficient way to convert floats to strings."
8848 echo " " > try.c
8849 case "$uselongdouble" in
8850 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
8851 esac
8852 case "$d_longdbl" in
8853 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
8854 esac
8855 case "$d_PRIgldbl" in
8856 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
8857 esac
8858 $cat >>try.c <<EOP
8859 #ifdef TRY_gconvert
8860 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
8861 char *myname = "gconvert";
8862 #endif
8863 #ifdef TRY_gcvt
8864 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
8865 char *myname = "gcvt";
8866 #endif
8867 #ifdef TRY_qgcvt
8868 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
8869 char *myname = "qgcvt";
8870 #define DOUBLETYPE long double
8871 #endif
8872 #ifdef TRY_sprintf
8873 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
8874 #ifdef HAS_PRIgldbl
8875 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
8876 #else
8877 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
8878 #endif
8879 #else
8880 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
8881 #endif
8882 char *myname = "sprintf";
8883 #endif
8884
8885 #ifndef DOUBLETYPE
8886 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
8887 #define DOUBLETYPE long double
8888 #else
8889 #define DOUBLETYPE double
8890 #endif
8891 #endif
8892
8893 #include <stdio.h>
8894
8895 #define I_STDLIB $i_stdlib
8896 #ifdef I_STDLIB
8897 #include <stdlib.h>
8898 #endif
8899
8900 int
8901 checkit(expect, got)
8902 char *expect;
8903 char *got;
8904 {
8905     if (strcmp(expect, got)) {
8906                 printf("%s oddity:  Expected %s, got %s\n",
8907                         myname, expect, got);
8908                 exit(1);
8909         }
8910 }
8911
8912 int main()
8913
8914         char buf[64]; 
8915         buf[63] = '\0';
8916
8917         /* This must be 1st test on (which?) platform */
8918         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
8919         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
8920         checkit("0.1", buf);
8921
8922         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
8923         checkit("0.01", buf);
8924
8925         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
8926         checkit("0.001", buf);
8927
8928         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
8929         checkit("0.0001", buf);
8930
8931         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
8932         if (strlen(buf) > 5)
8933             checkit("9e-005", buf); /* for Microsoft ?? */
8934         else
8935             checkit("9e-05", buf);
8936
8937         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
8938         checkit("1", buf);
8939
8940         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
8941         checkit("1.1", buf);
8942
8943         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
8944         checkit("1.01", buf);
8945
8946         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
8947         checkit("1.001", buf);
8948
8949         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
8950         checkit("1.0001", buf);
8951
8952         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
8953         checkit("1.00001", buf);
8954
8955         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
8956         checkit("1.000001", buf);
8957
8958         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
8959         checkit("0", buf);
8960
8961         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
8962         checkit("-1", buf);
8963
8964         /* Some Linux gcvt's give 1.e+5 here. */
8965         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
8966         checkit("100000", buf);
8967         
8968         /* Some Linux gcvt's give -1.e+5 here. */
8969         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
8970         checkit("-100000", buf);
8971
8972         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
8973         checkit("123.456", buf);
8974
8975         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
8976         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
8977         /* 34 should be enough to scare even long double
8978          * places into using the e notation. */
8979         if (strlen(buf) > 5)
8980             checkit("1e+034", buf); /* for Microsoft */
8981         else
8982             checkit("1e+34", buf);
8983
8984         /* For Perl, if you add additional tests here, also add them to
8985          * t/base/num.t for benefit of platforms not using Configure or
8986          * overriding d_Gconvert */
8987
8988         exit(0);
8989 }
8990 EOP
8991 : first add preferred functions to our list
8992 xxx_list=""
8993 for xxx_convert in $gconvert_preference; do
8994     case $xxx_convert in
8995     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
8996     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
8997     esac 
8998 done
8999 : then add any others
9000 for xxx_convert in gconvert gcvt sprintf; do
9001     case "$xxx_list" in
9002     *$xxx_convert*) ;;
9003     *) xxx_list="$xxx_list $xxx_convert" ;;
9004     esac 
9005 done
9006
9007 case "$d_longdbl$uselongdouble" in
9008 "$define$define")
9009     : again, add prefered functions to our list first
9010     xxx_ld_list=""
9011     for xxx_convert in $gconvert_ld_preference; do
9012         case $xxx_convert in
9013         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9014         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9015         esac
9016     done
9017     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9018     for xxx_convert in qgcvt sprintf $xxx_list; do
9019         case "$xxx_ld_list" in
9020         $xxx_convert*|*" $xxx_convert"*) ;;
9021         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9022         esac
9023     done
9024     : if sprintf cannot do long doubles, move it to the end
9025     if test "$d_PRIgldbl" != "$define"; then
9026         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9027     fi
9028     : if no qgcvt, remove it
9029     if test "$d_qgcvt" != "$define"; then
9030         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9031     fi
9032     : use the ld_list
9033     xxx_list="$xxx_ld_list"
9034     ;;
9035 esac
9036
9037 for xxx_convert in $xxx_list; do
9038         echo "Trying $xxx_convert..."
9039         $rm -f try try$_o
9040         set try -DTRY_$xxx_convert
9041         if eval $compile; then
9042                 echo "$xxx_convert() found." >&4
9043                 if $run ./try; then
9044                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9045                         break;
9046                 else
9047                         echo "...But $xxx_convert didn't work as I expected."
9048                         xxx_convert=''
9049                 fi
9050         else
9051                 echo "$xxx_convert NOT found." >&4
9052         fi
9053 done
9054
9055 if test X$xxx_convert = X; then
9056     echo "*** WHOA THERE!!! ***" >&4
9057     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9058     xxx_convert=sprintf
9059 fi
9060
9061 case "$xxx_convert" in
9062 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9063 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9064 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9065 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9066    "$define$define$define")
9067       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9068    "$define$define$undef")
9069       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9070    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9071    esac
9072    ;;  
9073 esac
9074
9075 fi
9076
9077 : see if _fwalk exists
9078 set fwalk d__fwalk
9079 eval $inlibc
9080
9081 : Initialize h_fcntl
9082 h_fcntl=false
9083
9084 : Initialize h_sysfile
9085 h_sysfile=false
9086
9087 : access call always available on UNIX
9088 set access d_access
9089 eval $inlibc
9090
9091 : locate the flags for 'access()'
9092 case "$d_access" in
9093 "$define")
9094         echo " "
9095         $cat >access.c <<'EOCP'
9096 #include <sys/types.h>
9097 #ifdef I_FCNTL
9098 #include <fcntl.h>
9099 #endif
9100 #ifdef I_SYS_FILE
9101 #include <sys/file.h>
9102 #endif
9103 #ifdef I_UNISTD
9104 #include <unistd.h>
9105 #endif
9106 int main() {
9107         exit(R_OK);
9108 }
9109 EOCP
9110         : check sys/file.h first, no particular reason here
9111         if $test `./findhdr sys/file.h` && \
9112                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9113                 h_sysfile=true;
9114                 echo "<sys/file.h> defines the *_OK access constants." >&4
9115         elif $test `./findhdr fcntl.h` && \
9116                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9117                 h_fcntl=true;
9118                 echo "<fcntl.h> defines the *_OK access constants." >&4
9119         elif $test `./findhdr unistd.h` && \
9120                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9121                 echo "<unistd.h> defines the *_OK access constants." >&4
9122         else
9123                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9124         fi
9125         ;;
9126 esac
9127 $rm -f access*
9128
9129 : see if accessx exists
9130 set accessx d_accessx
9131 eval $inlibc
9132
9133 : see if alarm exists
9134 set alarm d_alarm
9135 eval $inlibc
9136
9137 : see if POSIX threads are available
9138 set pthread.h i_pthread
9139 eval $inhdr
9140
9141 : define a fucntion to check prototypes
9142 $cat > protochk <<EOSH
9143 $startsh
9144 cc="$cc"
9145 optimize="$optimize"
9146 ccflags="$ccflags"
9147 prototype="$prototype"
9148 define="$define"
9149 rm=$rm
9150 usethreads=$usethreads
9151 i_pthread=$i_pthread
9152 pthread_h_first=$pthread_h_first
9153 EOSH
9154
9155 $cat >> protochk <<'EOSH'
9156
9157 $rm -f try.c
9158 foo="$1"
9159 shift
9160 while test $# -ge 2; do
9161         case "$1" in
9162                 $define) echo "#include <$2>" >> try.c ;;
9163                 literal) echo "$2" >> try.c ;;
9164         esac
9165     # Extra magic for the benefit of systems that need pthread.h
9166     # to be included early to correctly detect threadsafe functions.
9167     # Such functions must guarantee themselves, though, that the usethreads
9168     # and i_pthread have been defined, before calling protochk.
9169     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9170         echo "#include <pthread.h>" >> try.c
9171         pthread_h_done=yes
9172     fi
9173     shift 2
9174 done
9175 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9176 cat >> try.c <<'EOCP'
9177 #ifdef CAN_PROTOTYPE
9178 #define _(args) args
9179 #else
9180 #define _(args) ()
9181 #endif
9182 EOCP
9183 echo "$foo" >> try.c
9184 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9185 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9186 status=$?
9187 $rm -f try.[co]
9188 exit $status
9189 EOSH
9190 chmod +x protochk
9191 $eunicefix protochk
9192
9193 : see if sys/types.h has to be included
9194 set sys/types.h i_systypes
9195 eval $inhdr
9196
9197 : see if sys/select.h has to be included
9198 set sys/select.h i_sysselct
9199 eval $inhdr
9200
9201 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9202 while $test $# -ge 2; do
9203         case "$1" in
9204         $define) echo "#include <$2>";;
9205         esac ;
9206     shift 2;
9207 done > try.c;
9208 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9209 set try;
9210 if eval $compile; then
9211         val="$define";
9212 else
9213         val="$undef";
9214 fi;
9215 set $varname;
9216 eval $setvar;
9217 $rm -f try.c try.o'
9218
9219 : see if we should include time.h, sys/time.h, or both
9220 echo " "
9221 if test "X$timeincl" = X; then
9222         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9223         $echo $n "I'm now running the test program...$c"
9224         $cat >try.c <<'EOCP'
9225 #include <sys/types.h>
9226 #ifdef I_TIME
9227 #include <time.h>
9228 #endif
9229 #ifdef I_SYSTIME
9230 #ifdef SYSTIMEKERNEL
9231 #define KERNEL
9232 #endif
9233 #include <sys/time.h>
9234 #endif
9235 #ifdef I_SYSSELECT
9236 #include <sys/select.h>
9237 #endif
9238 int main()
9239 {
9240         struct tm foo;
9241 #ifdef S_TIMEVAL
9242         struct timeval bar;
9243 #endif
9244 #ifdef S_TIMEZONE
9245         struct timezone tzp;
9246 #endif
9247         if (foo.tm_sec == foo.tm_sec)
9248                 exit(0);
9249 #ifdef S_TIMEVAL
9250         if (bar.tv_sec == bar.tv_sec)
9251                 exit(0);
9252 #endif
9253         exit(1);
9254 }
9255 EOCP
9256         flags=''
9257         for s_timezone in '-DS_TIMEZONE' ''; do
9258         sysselect=''
9259         for s_timeval in '-DS_TIMEVAL' ''; do
9260         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9261         for i_time in '' '-DI_TIME'; do
9262         for i_systime in '-DI_SYSTIME' ''; do
9263                 case "$flags" in
9264                 '') $echo $n ".$c"
9265                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9266                         if eval $compile; then
9267                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9268                                 shift
9269                                 flags="$*"
9270                                 echo " "
9271                                 $echo $n "Succeeded with $flags$c"
9272                         fi
9273                         ;;
9274                 esac
9275         done
9276         done
9277         done
9278         done
9279         done
9280         timeincl=''
9281         echo " "
9282         case "$flags" in
9283         *SYSTIMEKERNEL*) i_systimek="$define"
9284                 timeincl=`./findhdr sys/time.h`
9285                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9286         *) i_systimek="$undef";;
9287         esac
9288         case "$flags" in
9289         *I_TIME*) i_time="$define"
9290                 timeincl=`./findhdr time.h`" $timeincl"
9291                 echo "We'll include <time.h>." >&4;;
9292         *) i_time="$undef";;
9293         esac
9294         case "$flags" in
9295         *I_SYSTIME*) i_systime="$define"
9296                 timeincl=`./findhdr sys/time.h`" $timeincl"
9297                 echo "We'll include <sys/time.h>." >&4;;
9298         *) i_systime="$undef";;
9299         esac
9300         $rm -f try.c try
9301 fi
9302 : see if struct tm knows about tm_zone
9303 case "$i_systime$i_time" in
9304 *$define*) 
9305         echo " "
9306         echo "Checking to see if your struct tm has tm_zone field..." >&4
9307         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9308         eval $hasfield
9309         ;;
9310 *)      val="$undef"
9311         set d_tm_tm_zone
9312         eval $setvar
9313         ;;
9314 esac
9315 case "$d_tm_tm_zone" in
9316 "$define")      echo "Yes, it does."   ;;
9317 *)              echo "No, it doesn't." ;;
9318 esac
9319 : see if struct tm knows about tm_gmtoff
9320 case "$i_systime$i_time" in
9321 *$define*) 
9322         echo " "
9323         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9324         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9325         eval $hasfield
9326         ;;
9327 *)      val="$undef"
9328         set d_tm_tm_gmtoff
9329         eval $setvar
9330         ;;
9331 esac
9332 case "$d_tm_tm_gmtoff" in
9333 "$define")      echo "Yes, it does."   ;;
9334 *)              echo "No, it doesn't." ;;
9335 esac
9336
9337 : see if asctime_r exists
9338 set asctime_r d_asctime_r
9339 eval $inlibc
9340 case "$d_asctime_r" in
9341 "$define")
9342         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
9343         case "$d_asctime_r_proto:$usethreads" in
9344         ":define")      d_asctime_r_proto=define
9345                 set d_asctime_r_proto asctime_r $hdrs
9346                 eval $hasproto ;;
9347         *)      ;;
9348         esac
9349         case "$d_asctime_r_proto" in
9350         define)
9351         case "$asctime_r_proto" in
9352         ''|0) try='char* asctime_r(const struct tm*, char*);'
9353         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9354         esac
9355         case "$asctime_r_proto" in
9356         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9357         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9358         esac
9359         case "$asctime_r_proto" in
9360         ''|0) try='int asctime_r(const struct tm*, char*);'
9361         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9362         esac
9363         case "$asctime_r_proto" in
9364         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9365         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9366         esac
9367         case "$asctime_r_proto" in
9368         ''|0)   d_asctime_r=undef
9369                 asctime_r_proto=0
9370                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9371         * )     case "$asctime_r_proto" in
9372                 REENTRANT_PROTO*) ;;
9373                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9374                 esac
9375                 echo "Prototype: $try" ;;
9376         esac
9377         ;;
9378         *)      case "$usethreads" in
9379                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9380                 esac
9381                 d_asctime_r=undef
9382                 asctime_r_proto=0
9383                 ;;
9384         esac
9385         ;;
9386 *)      asctime_r_proto=0
9387         ;;
9388 esac
9389
9390 : see if atolf exists
9391 set atolf d_atolf
9392 eval $inlibc
9393
9394 : see if atoll exists
9395 set atoll d_atoll
9396 eval $inlibc
9397
9398 : Look for GNU-cc style attribute checking
9399 echo " "
9400 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9401 $cat >attrib.c <<'EOCP'
9402 #include <stdio.h>
9403 void croak (char* pat,...) __attribute__((format(printf,1,2),noreturn));
9404 EOCP
9405 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9406         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9407                 echo "Your C compiler doesn't fully support __attribute__."
9408                 val="$undef"
9409         else
9410                 echo "Your C compiler supports __attribute__."
9411                 val="$define"
9412         fi
9413 else
9414         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9415         val="$undef"
9416 fi
9417 set d_attribut
9418 eval $setvar
9419 $rm -f attrib*
9420
9421 : see if bcmp exists
9422 set bcmp d_bcmp
9423 eval $inlibc
9424
9425 : see if bcopy exists
9426 set bcopy d_bcopy
9427 eval $inlibc
9428
9429 : see if this is a unistd.h system
9430 set unistd.h i_unistd
9431 eval $inhdr
9432
9433 : see if getpgrp exists
9434 set getpgrp d_getpgrp
9435 eval $inlibc
9436
9437 case "$d_getpgrp" in
9438 "$define")
9439         echo " "
9440         echo "Checking to see which flavor of getpgrp is in use..."
9441         $cat >try.c <<EOP
9442 #$i_unistd I_UNISTD
9443 #include <sys/types.h>
9444 #ifdef I_UNISTD
9445 #  include <unistd.h>
9446 #endif
9447 int main()
9448 {
9449         if (getuid() == 0) {
9450                 printf("(I see you are running Configure as super-user...)\n");
9451                 setuid(1);
9452         }
9453 #ifdef TRY_BSD_PGRP
9454         if (getpgrp(1) == 0)
9455                 exit(0);
9456 #else
9457         if (getpgrp() > 0)
9458                 exit(0);
9459 #endif
9460         exit(1);
9461 }
9462 EOP
9463         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9464                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9465                 val="$define"
9466         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9467                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9468                 val="$undef"
9469         else
9470                 echo "I can't seem to compile and run the test program."
9471                 if ./usg; then
9472                         xxx="a USG one, i.e. you use getpgrp()."
9473                 else
9474                         # SVR4 systems can appear rather BSD-ish.
9475                         case "$i_unistd" in
9476                         $undef)
9477                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9478                                 val="$define"
9479                                 ;;
9480                         $define)
9481                                 xxx="probably a USG one, i.e. you use getpgrp()."
9482                                 val="$undef"
9483                                 ;;
9484                         esac
9485                 fi
9486                 echo "Assuming your getpgrp is $xxx" >&4
9487         fi
9488         ;;
9489 *) val="$undef";;
9490 esac
9491 set d_bsdgetpgrp
9492 eval $setvar
9493 $rm -f try try.*
9494
9495 : see if setpgrp exists
9496 set setpgrp d_setpgrp
9497 eval $inlibc
9498
9499 case "$d_setpgrp" in
9500 "$define")
9501         echo " "
9502         echo "Checking to see which flavor of setpgrp is in use..."
9503         $cat >try.c <<EOP
9504 #$i_unistd I_UNISTD
9505 #include <sys/types.h>
9506 #ifdef I_UNISTD
9507 #  include <unistd.h>
9508 #endif
9509 int main()
9510 {
9511         if (getuid() == 0) {
9512                 printf("(I see you are running Configure as super-user...)\n");
9513                 setuid(1);
9514         }
9515 #ifdef TRY_BSD_PGRP
9516         if (-1 == setpgrp(1, 1))
9517                 exit(0);
9518 #else
9519         if (setpgrp() != -1)
9520                 exit(0);
9521 #endif
9522         exit(1);
9523 }
9524 EOP
9525         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9526                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
9527                 val="$define"
9528         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9529                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
9530                 val="$undef"
9531         else
9532                 echo "(I can't seem to compile and run the test program.)"
9533                 if ./usg; then
9534                         xxx="a USG one, i.e. you use setpgrp()."
9535                 else
9536                         # SVR4 systems can appear rather BSD-ish.
9537                         case "$i_unistd" in
9538                         $undef)
9539                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
9540                                 val="$define"
9541                                 ;;
9542                         $define)
9543                                 xxx="probably a USG one, i.e. you use setpgrp()."
9544                                 val="$undef"
9545                                 ;;
9546                         esac
9547                 fi
9548                 echo "Assuming your setpgrp is $xxx" >&4
9549         fi
9550         ;;
9551 *) val="$undef";;
9552 esac
9553 set d_bsdsetpgrp
9554 eval $setvar
9555 $rm -f try try.*
9556 : see if bzero exists
9557 set bzero d_bzero
9558 eval $inlibc
9559
9560 : see if signal is declared as pointer to function returning int or void
9561 echo " "
9562 xxx=`./findhdr signal.h`
9563 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
9564 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
9565         echo "You have int (*signal())() instead of void." >&4
9566         val="$undef"
9567 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
9568         echo "You have void (*signal())()." >&4
9569         val="$define"
9570 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
9571         echo "You have int (*signal())() instead of void." >&4
9572         val="$undef"
9573 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
9574         echo "You have void (*signal())()." >&4
9575         val="$define"
9576 else
9577         case "$d_voidsig" in
9578         '')
9579         echo "I can't determine whether signal handler returns void or int..." >&4
9580                 dflt=void
9581                 rp="What type does your signal handler return?"
9582                 . ./myread
9583                 case "$ans" in
9584                 v*) val="$define";;
9585                 *) val="$undef";;
9586                 esac;;
9587         "$define")
9588                 echo "As you already told me, signal handler returns void." >&4
9589                 val="$define"
9590                 ;;
9591         *)      echo "As you already told me, signal handler returns int." >&4
9592                 val="$undef"
9593                 ;;
9594         esac
9595 fi
9596 set d_voidsig
9597 eval $setvar
9598 case "$d_voidsig" in
9599 "$define") signal_t="void";;
9600 *) signal_t="int";;
9601 esac
9602 $rm -f $$.tmp
9603
9604 : check for ability to cast large floats to 32-bit ints.
9605 echo " "
9606 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
9607 if $test "$intsize" -ge 4; then
9608         xxx=int
9609 else
9610         xxx=long
9611 fi
9612 $cat >try.c <<EOCP
9613 #include <stdio.h>
9614 #include <sys/types.h>
9615 #include <signal.h>
9616 $signal_t blech(s) int s; { exit(3); }
9617 int main()
9618 {
9619         $xxx i32;
9620         double f, g;
9621         int result = 0;
9622         char str[16];
9623         signal(SIGFPE, blech);
9624
9625         /* Don't let compiler optimize the test away.  Store the number 
9626            in a writable string for gcc to pass to sscanf under HP/UX.
9627         */
9628         sprintf(str, "2147483647");
9629         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
9630         g = 10 * f;
9631         i32  = ($xxx) g;
9632
9633         /* x86 processors will probably give 0x8000 0000, which is a
9634        sign change.  We don't want that.  We want to mimic SPARC
9635            behavior here, which is to preserve the sign and give
9636            back 0x7fff ffff.
9637         */
9638         if (i32 != ($xxx) f)
9639                 result |= 1;
9640         exit(result);
9641 }
9642 EOCP
9643 set try
9644 if eval $compile_ok; then
9645         $run ./try
9646         yyy=$?
9647 else
9648         echo "(I can't seem to compile the test program--assuming it can't)"
9649         yyy=1
9650 fi
9651 case "$yyy" in
9652 0)      val="$define"
9653         echo "Yup, it can."
9654         ;;
9655 *)      val="$undef"
9656         echo "Nope, it can't."
9657         ;;
9658 esac
9659 set d_casti32
9660 eval $setvar
9661 $rm -f try try.*
9662
9663 : check for ability to cast negative floats to unsigned
9664 echo " "
9665 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
9666 $cat >try.c <<EOCP
9667 #include <stdio.h>
9668 #include <sys/types.h>
9669 #include <signal.h>
9670 $signal_t blech(s) int s; { exit(7); }
9671 $signal_t blech_in_list(s) int s; { exit(4); }
9672 unsigned long dummy_long(p) unsigned long p; { return p; }
9673 unsigned int dummy_int(p) unsigned int p; { return p; }
9674 unsigned short dummy_short(p) unsigned short p; { return p; }
9675 int main()
9676 {
9677         double f;
9678         unsigned long along;
9679         unsigned int aint;
9680         unsigned short ashort;
9681         int result = 0;
9682         char str[16];
9683         
9684         /* Frustrate gcc-2.7.2's optimizer which failed this test with
9685            a direct f = -123. assignment.  gcc-2.8.0 reportedly
9686            optimized the whole file away
9687         */
9688         /* Store the number in a writable string for gcc to pass to 
9689            sscanf under HP/UX.
9690         */
9691         sprintf(str, "-123");
9692         sscanf(str, "%lf", &f);  /* f = -123.; */
9693
9694         signal(SIGFPE, blech);
9695         along = (unsigned long)f;
9696         aint = (unsigned int)f;
9697         ashort = (unsigned short)f;
9698         if (along != (unsigned long)-123)
9699                 result |= 1;
9700         if (aint != (unsigned int)-123)
9701                 result |= 1;
9702         if (ashort != (unsigned short)-123)
9703                 result |= 1;
9704         sprintf(str, "1073741824.");
9705         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
9706         f = f + f;
9707         along = 0;
9708         along = (unsigned long)f;
9709         if (along != 0x80000000)
9710                 result |= 2;
9711         f -= 1.;
9712         along = 0;
9713         along = (unsigned long)f;
9714         if (along != 0x7fffffff)
9715                 result |= 1;
9716         f += 2.;
9717         along = 0;
9718         along = (unsigned long)f;
9719         if (along != 0x80000001)
9720                 result |= 2;
9721         if (result)
9722                 exit(result);
9723         signal(SIGFPE, blech_in_list);
9724         sprintf(str, "123.");
9725         sscanf(str, "%lf", &f);  /* f = 123.; */
9726         along = dummy_long((unsigned long)f);
9727         aint = dummy_int((unsigned int)f);
9728         ashort = dummy_short((unsigned short)f);
9729         if (along != (unsigned long)123)
9730                 result |= 4;
9731         if (aint != (unsigned int)123)
9732                 result |= 4;
9733         if (ashort != (unsigned short)123)
9734                 result |= 4;
9735         exit(result);
9736
9737 }
9738 EOCP
9739 set try
9740 if eval $compile_ok; then
9741         $run ./try
9742         castflags=$?
9743 else
9744         echo "(I can't seem to compile the test program--assuming it can't)"
9745         castflags=7
9746 fi
9747 case "$castflags" in
9748 0)      val="$define"
9749         echo "Yup, it can."
9750         ;;
9751 *)      val="$undef"
9752         echo "Nope, it can't."
9753         ;;
9754 esac
9755 set d_castneg
9756 eval $setvar
9757 $rm -f try.*
9758
9759 : see if vprintf exists
9760 echo " "
9761 if set vprintf val -f d_vprintf; eval $csym; $val; then
9762         echo 'vprintf() found.' >&4
9763         val="$define"
9764         $cat >try.c <<'EOF'
9765 #include <varargs.h>
9766
9767 int main() { xxx("foo"); }
9768
9769 xxx(va_alist)
9770 va_dcl
9771 {
9772         va_list args;
9773         char buf[10];
9774
9775         va_start(args);
9776         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
9777 }
9778 EOF
9779         set try
9780         if eval $compile && $run ./try; then
9781                 echo "Your vsprintf() returns (int)." >&4
9782                 val2="$undef"
9783         else
9784                 echo "Your vsprintf() returns (char*)." >&4
9785                 val2="$define"
9786         fi
9787 else
9788         echo 'vprintf() NOT found.' >&4
9789                 val="$undef"
9790                 val2="$undef"
9791 fi
9792 $rm -f try try.*
9793 set d_vprintf
9794 eval $setvar
9795 val=$val2
9796 set d_charvspr
9797 eval $setvar
9798
9799 : see if chown exists
9800 set chown d_chown
9801 eval $inlibc
9802
9803 : see if chroot exists
9804 set chroot d_chroot
9805 eval $inlibc
9806
9807 : see if chsize exists
9808 set chsize d_chsize
9809 eval $inlibc
9810
9811 : see if class exists
9812 set class d_class
9813 eval $inlibc
9814
9815 hasstruct='varname=$1; struct=$2; shift; shift;
9816 while $test $# -ge 2; do
9817         case "$1" in
9818         $define) echo "#include <$2>";;
9819         esac ;
9820     shift 2;
9821 done > try.c;
9822 echo "int main () { struct $struct foo; }" >> try.c;
9823 set try;
9824 if eval $compile; then
9825         val="$define";
9826 else
9827         val="$undef";
9828 fi;
9829 set $varname;
9830 eval $setvar;
9831 $rm -f try.c try.o'
9832
9833 socketlib=''
9834 sockethdr=''
9835 : see whether socket exists
9836 echo " "
9837 $echo $n "Hmm... $c" >&4
9838 if set socket val -f d_socket; eval $csym; $val; then
9839         echo "Looks like you have Berkeley networking support." >&4
9840         d_socket="$define"
9841         if set setsockopt val -f; eval $csym; $val; then
9842                 d_oldsock="$undef"
9843         else
9844                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
9845                 d_oldsock="$define"
9846         fi
9847 else
9848         if $contains socklib libc.list >/dev/null 2>&1; then
9849                 echo "Looks like you have Berkeley networking support." >&4
9850                 d_socket="$define"
9851                 : we will have to assume that it supports the 4.2 BSD interface
9852                 d_oldsock="$undef"
9853         else
9854                 echo "You don't have Berkeley networking in libc$_a..." >&4
9855                 if test "X$d_socket" = "X$define"; then
9856                    echo "...but you seem to believe that you have sockets." >&4
9857                 else
9858                         for net in net socket
9859                         do
9860                                 if test -f /usr/lib/lib$net$_a; then
9861                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
9862                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
9863                                         if $contains socket libc.list >/dev/null 2>&1; then
9864                                                 d_socket="$define"
9865                                                 socketlib="-l$net"
9866                                                 case "$net" in
9867                                                 net)
9868                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
9869                                                         sockethdr="-I/usr/netinclude"
9870                                                         ;;
9871                                                 esac
9872                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
9873                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
9874                                                         d_oldsock="$undef"
9875                                                 else
9876                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
9877                                                         d_oldsock="$define"
9878                                                 fi
9879                                                 break
9880                                         fi
9881                                 fi
9882                         done
9883                         if test "X$d_socket" != "X$define"; then
9884                            echo "or anywhere else I see." >&4
9885                            d_socket="$undef"
9886                            d_oldsock="$undef"
9887                         fi
9888                 fi
9889         fi
9890 fi
9891
9892 : see if socketpair exists
9893 set socketpair d_sockpair
9894 eval $inlibc
9895
9896
9897 echo " "
9898 echo "Checking the availability of certain socket constants..." >&4
9899 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
9900         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
9901         $cat >try.c <<EOF
9902 #include <sys/types.h>
9903 #include <sys/socket.h>
9904 int main() {
9905     int i = $ENUM;
9906 }
9907 EOF
9908         val="$undef"
9909         set try; if eval $compile; then
9910                 val="$define"
9911         fi
9912         set d_${enum}; eval $setvar
9913         $rm -f try.c try
9914 done
9915
9916 : see if this is a sys/uio.h system
9917 set sys/uio.h i_sysuio
9918 eval $inhdr
9919
9920
9921 echo " "
9922 echo "Checking to see if your system supports struct cmsghdr..." >&4
9923 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
9924 eval $hasstruct
9925 case "$d_cmsghdr_s" in
9926 "$define")      echo "Yes, it does."   ;;
9927 *)              echo "No, it doesn't." ;;
9928 esac
9929
9930
9931 : check for const keyword
9932 echo " "
9933 echo 'Checking to see if your C compiler knows about "const"...' >&4
9934 $cat >const.c <<'EOCP'
9935 typedef struct spug { int drokk; } spug;
9936 main()
9937 {
9938         const char *foo;
9939         const spug y;
9940 }
9941 EOCP
9942 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
9943         val="$define"
9944         echo "Yup, it does."
9945 else
9946         val="$undef"
9947         echo "Nope, it doesn't."
9948 fi
9949 set d_const
9950 eval $setvar
9951
9952 : see if crypt exists
9953 echo " "
9954 set crypt d_crypt
9955 eval $inlibc
9956 case "$d_crypt" in
9957 $define) cryptlib='' ;;
9958 *)      if set crypt val -f d_crypt; eval $csym; $val; then
9959                 echo 'crypt() found.' >&4
9960                 val="$define"
9961                 cryptlib=''
9962         else
9963                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
9964                 if $test -z "$cryptlib"; then
9965                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
9966                 else
9967                         cryptlib=-lcrypt
9968                 fi
9969                 if $test -z "$cryptlib"; then
9970                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
9971                 else
9972                         cryptlib=-lcrypt
9973                 fi
9974                 if $test -z "$cryptlib"; then
9975                         cryptlib=`./loc libcrypt$_a "" $libpth`
9976                 else
9977                         cryptlib=-lcrypt
9978                 fi
9979                 if $test -z "$cryptlib"; then
9980                         echo 'crypt() NOT found.' >&4
9981                         val="$undef"
9982                 else
9983                         val="$define"
9984                 fi
9985         fi
9986         set d_crypt
9987         eval $setvar
9988         ;;
9989 esac
9990
9991 : see if this is a crypt.h system
9992 set crypt.h i_crypt
9993 eval $inhdr
9994
9995 : see if crypt_r exists
9996 set crypt_r d_crypt_r
9997 eval $inlibc
9998 case "$d_crypt_r" in
9999 "$define")
10000         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
10001         case "$d_crypt_r_proto:$usethreads" in
10002         ":define")      d_crypt_r_proto=define
10003                 set d_crypt_r_proto crypt_r $hdrs
10004                 eval $hasproto ;;
10005         *)      ;;
10006         esac
10007         case "$d_crypt_r_proto" in
10008         define)
10009         case "$crypt_r_proto" in
10010         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
10011         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
10012         esac
10013         case "$crypt_r_proto" in
10014         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
10015         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
10016         esac
10017         case "$crypt_r_proto" in
10018         ''|0)   d_crypt_r=undef
10019                 crypt_r_proto=0
10020                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
10021         * )     case "$crypt_r_proto" in
10022                 REENTRANT_PROTO*) ;;
10023                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
10024                 esac
10025                 echo "Prototype: $try" ;;
10026         esac
10027         ;;
10028         *)      case "$usethreads" in
10029                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10030                 esac
10031                 d_crypt_r=undef
10032                 crypt_r_proto=0
10033                 ;;
10034         esac
10035         ;;
10036 *)      crypt_r_proto=0
10037         ;;
10038 esac
10039
10040 : get csh whereabouts
10041 case "$csh" in
10042 'csh') val="$undef" ;;
10043 *) val="$define" ;;
10044 esac
10045 set d_csh
10046 eval $setvar
10047 : Respect a hint or command line value for full_csh.
10048 case "$full_csh" in
10049 '') full_csh=$csh ;;
10050 esac
10051
10052 : see if ctermid_r exists
10053 set ctermid_r d_ctermid_r
10054 eval $inlibc
10055 case "$d_ctermid_r" in
10056 "$define")
10057         hdrs="$i_systypes sys/types.h define stdio.h "
10058         case "$d_ctermid_r_proto:$usethreads" in
10059         ":define")      d_ctermid_r_proto=define
10060                 set d_ctermid_r_proto ctermid_r $hdrs
10061                 eval $hasproto ;;
10062         *)      ;;
10063         esac
10064         case "$d_ctermid_r_proto" in
10065         define)
10066         case "$ctermid_r_proto" in
10067         ''|0) try='char* ctermid_r(char*);'
10068         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10069         esac
10070         case "$ctermid_r_proto" in
10071         ''|0)   d_ctermid_r=undef
10072                 ctermid_r_proto=0
10073                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10074         * )     case "$ctermid_r_proto" in
10075                 REENTRANT_PROTO*) ;;
10076                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10077                 esac
10078                 echo "Prototype: $try" ;;
10079         esac
10080         ;;
10081         *)      case "$usethreads" in
10082                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10083                 esac
10084                 d_ctermid_r=undef
10085                 ctermid_r_proto=0
10086                 ;;
10087         esac
10088         ;;
10089 *)      ctermid_r_proto=0
10090         ;;
10091 esac
10092
10093 : see if ctime_r exists
10094 set ctime_r d_ctime_r
10095 eval $inlibc
10096 case "$d_ctime_r" in
10097 "$define")
10098         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
10099         case "$d_ctime_r_proto:$usethreads" in
10100         ":define")      d_ctime_r_proto=define
10101                 set d_ctime_r_proto ctime_r $hdrs
10102                 eval $hasproto ;;
10103         *)      ;;
10104         esac
10105         case "$d_ctime_r_proto" in
10106         define)
10107         case "$ctime_r_proto" in
10108         ''|0) try='char* ctime_r(const time_t*, char*);'
10109         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10110         esac
10111         case "$ctime_r_proto" in
10112         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10113         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10114         esac
10115         case "$ctime_r_proto" in
10116         ''|0) try='int ctime_r(const time_t*, char*);'
10117         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10118         esac
10119         case "$ctime_r_proto" in
10120         ''|0) try='int ctime_r(const time_t*, char*, int);'
10121         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10122         esac
10123         case "$ctime_r_proto" in
10124         ''|0)   d_ctime_r=undef
10125                 ctime_r_proto=0
10126                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10127         * )     case "$ctime_r_proto" in
10128                 REENTRANT_PROTO*) ;;
10129                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10130                 esac
10131                 echo "Prototype: $try" ;;
10132         esac
10133         ;;
10134         *)      case "$usethreads" in
10135                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10136                 esac
10137                 d_ctime_r=undef
10138                 ctime_r_proto=0
10139                 ;;
10140         esac
10141         ;;
10142 *)      ctime_r_proto=0
10143         ;;
10144 esac
10145
10146 : see if cuserid exists
10147 set cuserid d_cuserid
10148 eval $inlibc
10149
10150 : see if this is a limits.h system
10151 set limits.h i_limits
10152 eval $inhdr
10153
10154 : see if this is a float.h system
10155 set float.h i_float
10156 eval $inhdr
10157
10158 : See if number of significant digits in a double precision number is known
10159 echo " "
10160 $cat >dbl_dig.c <<EOM
10161 #$i_limits I_LIMITS
10162 #$i_float I_FLOAT
10163 #ifdef I_LIMITS
10164 #include <limits.h>
10165 #endif
10166 #ifdef I_FLOAT
10167 #include <float.h>
10168 #endif
10169 #ifdef DBL_DIG
10170 printf("Contains DBL_DIG");
10171 #endif
10172 EOM
10173 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10174 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10175         echo "DBL_DIG found." >&4
10176         val="$define"
10177 else
10178         echo "DBL_DIG NOT found." >&4
10179         val="$undef"
10180 fi
10181 $rm -f dbl_dig.?
10182 set d_dbl_dig
10183 eval $setvar
10184
10185 : see if dbm.h is available
10186 : see if dbmclose exists
10187 set dbmclose d_dbmclose
10188 eval $inlibc
10189
10190 case "$d_dbmclose" in
10191 $define)
10192         set dbm.h i_dbm
10193         eval $inhdr
10194         case "$i_dbm" in
10195         $define)
10196                 val="$undef"
10197                 set i_rpcsvcdbm
10198                 eval $setvar
10199                 ;;
10200         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10201                 eval $inhdr
10202                 ;;
10203         esac
10204         ;;
10205 *)      echo "We won't be including <dbm.h>"
10206         val="$undef"
10207         set i_dbm
10208         eval $setvar
10209         val="$undef"
10210         set i_rpcsvcdbm
10211         eval $setvar
10212         ;;
10213 esac
10214
10215 : see if prototype for dbminit is available
10216 echo " "
10217 set d_dbminitproto dbminit $i_dbm dbm.h
10218 eval $hasproto
10219
10220 : see if difftime exists
10221 set difftime d_difftime
10222 eval $inlibc
10223
10224 : see if this is a dirent system
10225 echo " "
10226 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10227         val="$define"
10228         echo "<dirent.h> found." >&4
10229 else
10230         val="$undef"
10231         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10232                 echo "<sys/dir.h> found." >&4
10233                 echo " "
10234         else
10235                 xinc=`./findhdr sys/ndir.h`
10236         fi
10237         echo "<dirent.h> NOT found." >&4
10238 fi
10239 set i_dirent
10240 eval $setvar
10241
10242 : Look for type of directory structure.
10243 echo " "
10244 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10245
10246 case "$direntrytype" in
10247 ''|' ')
10248         case "$i_dirent" in
10249         $define) guess1='struct dirent' ;;
10250         *) guess1='struct direct'  ;;
10251         esac
10252         ;;
10253 *)      guess1="$direntrytype"
10254         ;;
10255 esac
10256
10257 case "$guess1" in
10258 'struct dirent') guess2='struct direct' ;;
10259 *) guess2='struct dirent' ;;
10260 esac
10261                 
10262 if $contains "$guess1" try.c >/dev/null 2>&1; then
10263         direntrytype="$guess1"
10264         echo "Your directory entries are $direntrytype." >&4
10265 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10266         direntrytype="$guess2"
10267         echo "Your directory entries seem to be $direntrytype." >&4
10268 else
10269         echo "I don't recognize your system's directory entries." >&4
10270         rp="What type is used for directory entries on this system?"
10271         dflt="$guess1"
10272         . ./myread
10273         direntrytype="$ans"
10274 fi
10275 $rm -f try.c
10276
10277
10278 : see if the directory entry stores field length
10279 echo " "
10280 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10281 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10282         echo "Good, your directory entry keeps length information in d_namlen." >&4
10283         val="$define"
10284 else
10285         echo "Your directory entry does not know about the d_namlen field." >&4
10286         val="$undef"
10287 fi
10288 set d_dirnamlen
10289 eval $setvar
10290 $rm -f try.c
10291
10292 : see if this is an sysdir system
10293 set sys/dir.h i_sysdir
10294 eval $inhdr
10295
10296 : see if this is an sysndir system
10297 set sys/ndir.h i_sysndir
10298 eval $inhdr
10299
10300 : Look for dirfd
10301 echo " "
10302 $cat >dirfd.c <<EOM
10303 #include <stdio.h>
10304 #$i_dirent I_DIRENT             /**/
10305 #$i_sysdir I_SYS_DIR            /**/
10306 #$i_sysndir I_SYS_NDIR          /**/
10307 #$i_systypes I_SYS_TYPES        /**/
10308 #if defined(I_SYS_TYPES)
10309 #include <sys/types.h>
10310 #endif
10311 #if defined(I_DIRENT)
10312 #include <dirent.h>
10313 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10314 #include <sys/dir.h>
10315 #endif
10316 #else
10317 #ifdef I_SYS_NDIR
10318 #include <sys/ndir.h>
10319 #else
10320 #ifdef I_SYS_DIR
10321 #ifdef hp9000s500
10322 #include <ndir.h>       /* may be wrong in the future */
10323 #else
10324 #include <sys/dir.h>
10325 #endif
10326 #endif
10327 #endif
10328 #endif 
10329 int main() {
10330         DIR *dirp = opendir(".");
10331         if (dirfd(dirp) >= 0)
10332                 exit(0);
10333         else
10334                 exit(1);
10335 }
10336 EOM
10337 set dirfd
10338 if eval $compile; then
10339         val="$define"
10340 fi
10341 case "$val" in
10342 $define)        echo "dirfd() found." >&4       ;;
10343 *)              echo "dirfd() NOT found." >&4   ;;
10344 esac
10345 set d_dirfd
10346 eval $setvar
10347 $rm -f dirfd*
10348
10349 : see if dlerror exists
10350 xxx_runnm="$runnm"
10351 runnm=false
10352 set dlerror d_dlerror
10353 eval $inlibc
10354 runnm="$xxx_runnm"
10355
10356 : see if dlfcn is available
10357 set dlfcn.h i_dlfcn
10358 eval $inhdr
10359
10360 case "$usedl" in
10361 $define|y|true)
10362         $cat << EOM
10363
10364 On a few systems, the dynamically loaded modules that perl generates and uses
10365 will need a different extension than shared libs. The default will probably
10366 be appropriate.
10367
10368 EOM
10369         case "$dlext" in
10370         '')     dflt="$so" ;;
10371         *)      dflt="$dlext" ;;
10372         esac
10373         rp='What is the extension of dynamically loaded modules'
10374         . ./myread
10375         dlext="$ans"
10376         ;;
10377 *)
10378         dlext="none"
10379         ;;
10380 esac
10381
10382 : Check if dlsym need a leading underscore
10383 echo " "
10384 val="$undef"
10385
10386 case "$dlsrc" in
10387 dl_dlopen.xs)
10388         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10389         $cat >dyna.c <<'EOM'
10390 fred () { }
10391 EOM
10392
10393 $cat >fred.c<<EOM
10394
10395 #include <stdio.h>
10396 #$i_dlfcn I_DLFCN
10397 #ifdef I_DLFCN
10398 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10399 #else
10400 #include <sys/types.h>
10401 #include <nlist.h>
10402 #include <link.h>
10403 #endif
10404
10405 extern int fred() ;
10406
10407 int main()
10408 {
10409     void * handle ;
10410     void * symbol ;
10411 #ifndef RTLD_LAZY
10412     int mode = 1 ;
10413 #else
10414     int mode = RTLD_LAZY ;
10415 #endif
10416     handle = dlopen("./dyna.$dlext", mode) ;
10417     if (handle == NULL) {
10418         printf ("1\n") ;
10419         fflush (stdout) ;
10420         exit(0);
10421     }
10422     symbol = dlsym(handle, "fred") ;
10423     if (symbol == NULL) {
10424         /* try putting a leading underscore */
10425         symbol = dlsym(handle, "_fred") ;
10426         if (symbol == NULL) {
10427             printf ("2\n") ;
10428             fflush (stdout) ;
10429             exit(0);
10430         }
10431         printf ("3\n") ;
10432     }
10433     else
10434         printf ("4\n") ;
10435     fflush (stdout) ;
10436     exit(0);
10437 }
10438 EOM
10439         : Call the object file tmp-dyna.o in case dlext=o.
10440         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10441                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10442                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10443                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10444                 xxx=`$run ./fred`
10445                 case $xxx in
10446                 1)      echo "Test program failed using dlopen." >&4
10447                         echo "Perhaps you should not use dynamic loading." >&4;;
10448                 2)      echo "Test program failed using dlsym." >&4
10449                         echo "Perhaps you should not use dynamic loading." >&4;;
10450                 3)      echo "dlsym needs a leading underscore" >&4
10451                         val="$define" ;;
10452                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10453                 esac
10454         else
10455                 echo "I can't compile and run the test program." >&4
10456                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10457         fi
10458         ;;
10459 esac
10460                 
10461 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10462
10463 set d_dlsymun
10464 eval $setvar
10465
10466 : see if drand48_r exists
10467 set drand48_r d_drand48_r
10468 eval $inlibc
10469 case "$d_drand48_r" in
10470 "$define")
10471         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10472         case "$d_drand48_r_proto:$usethreads" in
10473         ":define")      d_drand48_r_proto=define
10474                 set d_drand48_r_proto drand48_r $hdrs
10475                 eval $hasproto ;;
10476         *)      ;;
10477         esac
10478         case "$d_drand48_r_proto" in
10479         define)
10480         case "$drand48_r_proto" in
10481         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10482         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10483         esac
10484         case "$drand48_r_proto" in
10485         ''|0)   d_drand48_r=undef
10486                 drand48_r_proto=0
10487                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10488         * )     case "$drand48_r_proto" in
10489                 REENTRANT_PROTO*) ;;
10490                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10491                 esac
10492                 echo "Prototype: $try" ;;
10493         esac
10494         ;;
10495         *)      case "$usethreads" in
10496                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10497                 esac
10498                 d_drand48_r=undef
10499                 drand48_r_proto=0
10500                 ;;
10501         esac
10502         ;;
10503 *)      drand48_r_proto=0
10504         ;;
10505 esac
10506
10507 : see if prototype for drand48 is available
10508 echo " "
10509 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
10510 eval $hasproto
10511
10512 : see if dup2 exists
10513 set dup2 d_dup2
10514 eval $inlibc
10515
10516 : see if eaccess exists
10517 set eaccess d_eaccess
10518 eval $inlibc
10519
10520 : see if endgrent exists
10521 set endgrent d_endgrent
10522 eval $inlibc
10523
10524 : see if this is an grp system
10525 set grp.h i_grp
10526 eval $inhdr
10527
10528 case "$i_grp" in
10529 $define)
10530         xxx=`./findhdr grp.h`
10531         $cppstdin $cppflags $cppminus < $xxx >$$.h
10532
10533         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
10534                 val="$define"
10535         else
10536                 val="$undef"
10537         fi
10538         set d_grpasswd
10539         eval $setvar
10540
10541         $rm -f $$.h
10542         ;;
10543 *)
10544         val="$undef";
10545         set d_grpasswd; eval $setvar
10546         ;;
10547 esac
10548
10549 : see if endgrent_r exists
10550 set endgrent_r d_endgrent_r
10551 eval $inlibc
10552 case "$d_endgrent_r" in
10553 "$define")
10554         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
10555         case "$d_endgrent_r_proto:$usethreads" in
10556         ":define")      d_endgrent_r_proto=define
10557                 set d_endgrent_r_proto endgrent_r $hdrs
10558                 eval $hasproto ;;
10559         *)      ;;
10560         esac
10561         case "$d_endgrent_r_proto" in
10562         define)
10563         case "$endgrent_r_proto" in
10564         ''|0) try='int endgrent_r(FILE**);'
10565         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
10566         esac
10567         case "$endgrent_r_proto" in
10568         ''|0) try='void endgrent_r(FILE**);'
10569         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
10570         esac
10571         case "$endgrent_r_proto" in
10572         ''|0)   d_endgrent_r=undef
10573                 endgrent_r_proto=0
10574                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
10575         * )     case "$endgrent_r_proto" in
10576                 REENTRANT_PROTO*) ;;
10577                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
10578                 esac
10579                 echo "Prototype: $try" ;;
10580         esac
10581         ;;
10582         *)      case "$usethreads" in
10583                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
10584                 esac
10585                 d_endgrent_r=undef
10586                 endgrent_r_proto=0
10587                 ;;
10588         esac
10589         ;;
10590 *)      endgrent_r_proto=0
10591         ;;
10592 esac
10593
10594 : see if endhostent exists
10595 set endhostent d_endhent
10596 eval $inlibc
10597
10598 : see if this is a netdb.h system
10599 set netdb.h i_netdb
10600 eval $inhdr
10601
10602 : see if endhostent_r exists
10603 set endhostent_r d_endhostent_r
10604 eval $inlibc
10605 case "$d_endhostent_r" in
10606 "$define")
10607         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10608         case "$d_endhostent_r_proto:$usethreads" in
10609         ":define")      d_endhostent_r_proto=define
10610                 set d_endhostent_r_proto endhostent_r $hdrs
10611                 eval $hasproto ;;
10612         *)      ;;
10613         esac
10614         case "$d_endhostent_r_proto" in
10615         define)
10616         case "$endhostent_r_proto" in
10617         ''|0) try='int endhostent_r(struct hostent_data*);'
10618         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
10619         esac
10620         case "$endhostent_r_proto" in
10621         ''|0) try='void endhostent_r(struct hostent_data*);'
10622         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
10623         esac
10624         case "$endhostent_r_proto" in
10625         ''|0)   d_endhostent_r=undef
10626                 endhostent_r_proto=0
10627                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
10628         * )     case "$endhostent_r_proto" in
10629                 REENTRANT_PROTO*) ;;
10630                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
10631                 esac
10632                 echo "Prototype: $try" ;;
10633         esac
10634         ;;
10635         *)      case "$usethreads" in
10636                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
10637                 esac
10638                 d_endhostent_r=undef
10639                 endhostent_r_proto=0
10640                 ;;
10641         esac
10642         ;;
10643 *)      endhostent_r_proto=0
10644         ;;
10645 esac
10646
10647 : see if endnetent exists
10648 set endnetent d_endnent
10649 eval $inlibc
10650
10651 : see if endnetent_r exists
10652 set endnetent_r d_endnetent_r
10653 eval $inlibc
10654 case "$d_endnetent_r" in
10655 "$define")
10656         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10657         case "$d_endnetent_r_proto:$usethreads" in
10658         ":define")      d_endnetent_r_proto=define
10659                 set d_endnetent_r_proto endnetent_r $hdrs
10660                 eval $hasproto ;;
10661         *)      ;;
10662         esac
10663         case "$d_endnetent_r_proto" in
10664         define)
10665         case "$endnetent_r_proto" in
10666         ''|0) try='int endnetent_r(struct netent_data*);'
10667         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
10668         esac
10669         case "$endnetent_r_proto" in
10670         ''|0) try='void endnetent_r(struct netent_data*);'
10671         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
10672         esac
10673         case "$endnetent_r_proto" in
10674         ''|0)   d_endnetent_r=undef
10675                 endnetent_r_proto=0
10676                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
10677         * )     case "$endnetent_r_proto" in
10678                 REENTRANT_PROTO*) ;;
10679                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
10680                 esac
10681                 echo "Prototype: $try" ;;
10682         esac
10683         ;;
10684         *)      case "$usethreads" in
10685                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
10686                 esac
10687                 d_endnetent_r=undef
10688                 endnetent_r_proto=0
10689                 ;;
10690         esac
10691         ;;
10692 *)      endnetent_r_proto=0
10693         ;;
10694 esac
10695
10696 : see if endprotoent exists
10697 set endprotoent d_endpent
10698 eval $inlibc
10699
10700 : see if endprotoent_r exists
10701 set endprotoent_r d_endprotoent_r
10702 eval $inlibc
10703 case "$d_endprotoent_r" in
10704 "$define")
10705         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10706         case "$d_endprotoent_r_proto:$usethreads" in
10707         ":define")      d_endprotoent_r_proto=define
10708                 set d_endprotoent_r_proto endprotoent_r $hdrs
10709                 eval $hasproto ;;
10710         *)      ;;
10711         esac
10712         case "$d_endprotoent_r_proto" in
10713         define)
10714         case "$endprotoent_r_proto" in
10715         ''|0) try='int endprotoent_r(struct protoent_data*);'
10716         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
10717         esac
10718         case "$endprotoent_r_proto" in
10719         ''|0) try='void endprotoent_r(struct protoent_data*);'
10720         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
10721         esac
10722         case "$endprotoent_r_proto" in
10723         ''|0)   d_endprotoent_r=undef
10724                 endprotoent_r_proto=0
10725                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
10726         * )     case "$endprotoent_r_proto" in
10727                 REENTRANT_PROTO*) ;;
10728                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
10729                 esac
10730                 echo "Prototype: $try" ;;
10731         esac
10732         ;;
10733         *)      case "$usethreads" in
10734                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
10735                 esac
10736                 d_endprotoent_r=undef
10737                 endprotoent_r_proto=0
10738                 ;;
10739         esac
10740         ;;
10741 *)      endprotoent_r_proto=0
10742         ;;
10743 esac
10744
10745 : see if endpwent exists
10746 set endpwent d_endpwent
10747 eval $inlibc
10748
10749 : see if this is a pwd.h system
10750 set pwd.h i_pwd
10751 eval $inhdr
10752
10753 case "$i_pwd" in
10754 $define)
10755         xxx=`./findhdr pwd.h`
10756         $cppstdin $cppflags $cppminus < $xxx >$$.h
10757
10758         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
10759                 val="$define"
10760         else
10761                 val="$undef"
10762         fi
10763         set d_pwquota
10764         eval $setvar
10765
10766         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
10767                 val="$define"
10768         else
10769                 val="$undef"
10770         fi
10771         set d_pwage
10772         eval $setvar
10773
10774         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
10775                 val="$define"
10776         else
10777                 val="$undef"
10778         fi
10779         set d_pwchange
10780         eval $setvar
10781
10782         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
10783                 val="$define"
10784         else
10785                 val="$undef"
10786         fi
10787         set d_pwclass
10788         eval $setvar
10789
10790         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
10791                 val="$define"
10792         else
10793                 val="$undef"
10794         fi
10795         set d_pwexpire
10796         eval $setvar
10797
10798         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
10799                 val="$define"
10800         else
10801                 val="$undef"
10802         fi
10803         set d_pwcomment
10804         eval $setvar
10805
10806         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
10807                 val="$define"
10808         else
10809                 val="$undef"
10810         fi
10811         set d_pwgecos
10812         eval $setvar
10813
10814         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
10815                 val="$define"
10816         else
10817                 val="$undef"
10818         fi
10819         set d_pwpasswd
10820         eval $setvar
10821
10822         $rm -f $$.h
10823         ;;
10824 *)
10825         val="$undef"; 
10826         set d_pwquota; eval $setvar
10827         set d_pwage; eval $setvar
10828         set d_pwchange; eval $setvar
10829         set d_pwclass; eval $setvar
10830         set d_pwexpire; eval $setvar
10831         set d_pwcomment; eval $setvar
10832         set d_pwgecos; eval $setvar
10833         set d_pwpasswd; eval $setvar
10834         ;;
10835 esac
10836
10837 : see if endpwent_r exists
10838 set endpwent_r d_endpwent_r
10839 eval $inlibc
10840 case "$d_endpwent_r" in
10841 "$define")
10842         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
10843         case "$d_endpwent_r_proto:$usethreads" in
10844         ":define")      d_endpwent_r_proto=define
10845                 set d_endpwent_r_proto endpwent_r $hdrs
10846                 eval $hasproto ;;
10847         *)      ;;
10848         esac
10849         case "$d_endpwent_r_proto" in
10850         define)
10851         case "$endpwent_r_proto" in
10852         ''|0) try='int endpwent_r(FILE**);'
10853         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
10854         esac
10855         case "$endpwent_r_proto" in
10856         ''|0) try='void endpwent_r(FILE**);'
10857         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
10858         esac
10859         case "$endpwent_r_proto" in
10860         ''|0)   d_endpwent_r=undef
10861                 endpwent_r_proto=0
10862                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
10863         * )     case "$endpwent_r_proto" in
10864                 REENTRANT_PROTO*) ;;
10865                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
10866                 esac
10867                 echo "Prototype: $try" ;;
10868         esac
10869         ;;
10870         *)      case "$usethreads" in
10871                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
10872                 esac
10873                 d_endpwent_r=undef
10874                 endpwent_r_proto=0
10875                 ;;
10876         esac
10877         ;;
10878 *)      endpwent_r_proto=0
10879         ;;
10880 esac
10881
10882 : see if endservent exists
10883 set endservent d_endsent
10884 eval $inlibc
10885
10886 : see if endservent_r exists
10887 set endservent_r d_endservent_r
10888 eval $inlibc
10889 case "$d_endservent_r" in
10890 "$define")
10891         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
10892         case "$d_endservent_r_proto:$usethreads" in
10893         ":define")      d_endservent_r_proto=define
10894                 set d_endservent_r_proto endservent_r $hdrs
10895                 eval $hasproto ;;
10896         *)      ;;
10897         esac
10898         case "$d_endservent_r_proto" in
10899         define)
10900         case "$endservent_r_proto" in
10901         ''|0) try='int endservent_r(struct servent_data*);'
10902         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
10903         esac
10904         case "$endservent_r_proto" in
10905         ''|0) try='void endservent_r(struct servent_data*);'
10906         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
10907         esac
10908         case "$endservent_r_proto" in
10909         ''|0)   d_endservent_r=undef
10910                 endservent_r_proto=0
10911                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
10912         * )     case "$endservent_r_proto" in
10913                 REENTRANT_PROTO*) ;;
10914                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
10915                 esac
10916                 echo "Prototype: $try" ;;
10917         esac
10918         ;;
10919         *)      case "$usethreads" in
10920                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
10921                 esac
10922                 d_endservent_r=undef
10923                 endservent_r_proto=0
10924                 ;;
10925         esac
10926         ;;
10927 *)      endservent_r_proto=0
10928         ;;
10929 esac
10930
10931 : Locate the flags for 'open()'
10932 echo " "
10933 $cat >try.c <<'EOCP'
10934 #include <sys/types.h>
10935 #ifdef I_FCNTL
10936 #include <fcntl.h>
10937 #endif
10938 #ifdef I_SYS_FILE
10939 #include <sys/file.h>
10940 #endif
10941 int main() {
10942         if(O_RDONLY);
10943 #ifdef O_TRUNC
10944         exit(0);
10945 #else
10946         exit(1);
10947 #endif
10948 }
10949 EOCP
10950 : check sys/file.h first to get FREAD on Sun
10951 if $test `./findhdr sys/file.h` && \
10952                 set try -DI_SYS_FILE && eval $compile; then
10953         h_sysfile=true;
10954         echo "<sys/file.h> defines the O_* constants..." >&4
10955         if $run ./try; then
10956                 echo "and you have the 3 argument form of open()." >&4
10957                 val="$define"
10958         else
10959                 echo "but not the 3 argument form of open().  Oh, well." >&4
10960                 val="$undef"
10961         fi
10962 elif $test `./findhdr fcntl.h` && \
10963                 set try -DI_FCNTL && eval $compile; then
10964         h_fcntl=true;
10965         echo "<fcntl.h> defines the O_* constants..." >&4
10966         if $run ./try; then
10967                 echo "and you have the 3 argument form of open()." >&4
10968                 val="$define"
10969         else
10970                 echo "but not the 3 argument form of open().  Oh, well." >&4
10971                 val="$undef"
10972         fi
10973 else
10974         val="$undef"
10975         echo "I can't find the O_* constant definitions!  You got problems." >&4
10976 fi
10977 set d_open3
10978 eval $setvar
10979 $rm -f try try.*
10980
10981 : see which of string.h or strings.h is needed
10982 echo " "
10983 strings=`./findhdr string.h`
10984 if $test "$strings" && $test -r "$strings"; then
10985         echo "Using <string.h> instead of <strings.h>." >&4
10986         val="$define"
10987 else
10988         val="$undef"
10989         strings=`./findhdr strings.h`
10990         if $test "$strings" && $test -r "$strings"; then
10991                 echo "Using <strings.h> instead of <string.h>." >&4
10992         else
10993                 echo "No string header found -- You'll surely have problems." >&4
10994         fi
10995 fi
10996 set i_string
10997 eval $setvar
10998 case "$i_string" in
10999 "$undef") strings=`./findhdr strings.h`;;
11000 *)        strings=`./findhdr string.h`;;
11001 esac
11002
11003 : see if this is a sys/file.h system
11004 val=''
11005 set sys/file.h val
11006 eval $inhdr
11007
11008 : do we need to include sys/file.h ?
11009 case "$val" in
11010 "$define")
11011         echo " "
11012         if $h_sysfile; then
11013                 val="$define"
11014                 echo "We'll be including <sys/file.h>." >&4
11015         else
11016                 val="$undef"
11017                 echo "We won't be including <sys/file.h>." >&4
11018         fi
11019         ;;
11020 *)
11021         h_sysfile=false
11022         ;;
11023 esac
11024 set i_sysfile
11025 eval $setvar
11026
11027 : see if fcntl.h is there
11028 val=''
11029 set fcntl.h val
11030 eval $inhdr
11031
11032 : see if we can include fcntl.h
11033 case "$val" in
11034 "$define")
11035         echo " "
11036         if $h_fcntl; then
11037                 val="$define"
11038                 echo "We'll be including <fcntl.h>." >&4
11039         else
11040                 val="$undef"
11041                 if $h_sysfile; then
11042         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11043                 else
11044                         echo "We won't be including <fcntl.h>." >&4
11045                 fi
11046         fi
11047         ;;
11048 *)
11049         h_fcntl=false
11050         val="$undef"
11051         ;;
11052 esac
11053 set i_fcntl
11054 eval $setvar
11055
11056 : check for non-blocking I/O stuff
11057 case "$h_sysfile" in
11058 true) echo "#include <sys/file.h>" > head.c;;
11059 *)
11060        case "$h_fcntl" in
11061        true) echo "#include <fcntl.h>" > head.c;;
11062        *) echo "#include <sys/fcntl.h>" > head.c;;
11063        esac
11064        ;;
11065 esac
11066 echo " "
11067 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11068 case "$o_nonblock" in
11069 '')
11070         $cat head.c > try.c
11071         $cat >>try.c <<EOCP
11072 #include <stdio.h>
11073 #include <stdlib.h>
11074 #$i_fcntl I_FCNTL
11075 #ifdef I_FCNTL
11076 #include <fcntl.h>
11077 #endif
11078 int main() {
11079 #ifdef O_NONBLOCK
11080         printf("O_NONBLOCK\n");
11081         exit(0);
11082 #endif
11083 #ifdef O_NDELAY
11084         printf("O_NDELAY\n");
11085         exit(0);
11086 #endif
11087 #ifdef FNDELAY
11088         printf("FNDELAY\n");
11089         exit(0);
11090 #endif
11091         exit(0);
11092 }
11093 EOCP
11094         set try
11095         if eval $compile_ok; then
11096                 o_nonblock=`$run ./try`
11097                 case "$o_nonblock" in
11098                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11099                 *) echo "Seems like we can use $o_nonblock.";;
11100                 esac
11101         else
11102                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11103         fi
11104         ;;
11105 *) echo "Using $hint value $o_nonblock.";;
11106 esac
11107 $rm -f try try.* .out core
11108
11109 echo " "
11110 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11111 case "$eagain" in
11112 '')
11113         $cat head.c > try.c
11114         $cat >>try.c <<EOCP
11115 #include <errno.h>
11116 #include <sys/types.h>
11117 #include <signal.h>
11118 #include <stdio.h> 
11119 #include <stdlib.h> 
11120 #$i_fcntl I_FCNTL
11121 #ifdef I_FCNTL
11122 #include <fcntl.h>
11123 #endif
11124 #define MY_O_NONBLOCK $o_nonblock
11125 #ifndef errno  /* XXX need better Configure test */
11126 extern int errno;
11127 #endif
11128 #$i_unistd I_UNISTD
11129 #ifdef I_UNISTD
11130 #include <unistd.h>
11131 #endif
11132 #$i_string I_STRING
11133 #ifdef I_STRING
11134 #include <string.h>
11135 #else
11136 #include <strings.h>
11137 #endif
11138 $signal_t blech(x) int x; { exit(3); }
11139 EOCP
11140         $cat >> try.c <<'EOCP'
11141 int main()
11142 {
11143         int pd[2];
11144         int pu[2];
11145         char buf[1];
11146         char string[100];
11147
11148         pipe(pd);       /* Down: child -> parent */
11149         pipe(pu);       /* Up: parent -> child */
11150         if (0 != fork()) {
11151                 int ret;
11152                 close(pd[1]);   /* Parent reads from pd[0] */
11153                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11154 #ifdef F_SETFL
11155                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11156                         exit(1);
11157 #else
11158                 exit(4);
11159 #endif
11160                 signal(SIGALRM, blech);
11161                 alarm(5);
11162                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11163                         exit(2);
11164                 sprintf(string, "%d\n", ret);
11165                 write(2, string, strlen(string));
11166                 alarm(0);
11167 #ifdef EAGAIN
11168                 if (errno == EAGAIN) {
11169                         printf("EAGAIN\n");
11170                         goto ok;
11171                 }
11172 #endif
11173 #ifdef EWOULDBLOCK
11174                 if (errno == EWOULDBLOCK)
11175                         printf("EWOULDBLOCK\n");
11176 #endif
11177         ok:
11178                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11179                 sleep(2);                               /* Give it time to close our pipe */
11180                 alarm(5);
11181                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11182                 alarm(0);
11183                 sprintf(string, "%d\n", ret);
11184                 write(4, string, strlen(string));
11185                 exit(0);
11186         }
11187
11188         close(pd[0]);                   /* We write to pd[1] */
11189         close(pu[1]);                   /* We read from pu[0] */
11190         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11191         close(pd[1]);                   /* Pipe pd is now fully closed! */
11192         exit(0);                                /* Bye bye, thank you for playing! */
11193 }
11194 EOCP
11195         set try
11196         if eval $compile_ok; then
11197                 echo "$startsh" >mtry
11198                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11199                 chmod +x mtry
11200                 ./mtry >/dev/null 2>&1
11201                 case $? in
11202                 0) eagain=`$cat try.out`;;
11203                 1) echo "Could not perform non-blocking setting!";;
11204                 2) echo "I did a successful read() for something that was not there!";;
11205                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11206                 4) echo "Could not find F_SETFL!";;
11207                 *) echo "Something terribly wrong happened during testing.";;
11208                 esac
11209                 rd_nodata=`$cat try.ret`
11210                 echo "A read() system call with no data present returns $rd_nodata."
11211                 case "$rd_nodata" in
11212                 0|-1) ;;
11213                 *)
11214                         echo "(That's peculiar, fixing that to be -1.)"
11215                         rd_nodata=-1
11216                         ;;
11217                 esac
11218                 case "$eagain" in
11219                 '')
11220                         echo "Forcing errno EAGAIN on read() with no data available."
11221                         eagain=EAGAIN
11222                         ;;
11223                 *)
11224                         echo "Your read() sets errno to $eagain when no data is available."
11225                         ;;
11226                 esac
11227                 status=`$cat try.err`
11228                 case "$status" in
11229                 0) echo "And it correctly returns 0 to signal EOF.";;
11230                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11231                 *) echo "However, your read() returns '$status' on EOF??";;
11232                 esac
11233                 val="$define"
11234                 if test "$status" = "$rd_nodata"; then
11235                         echo "WARNING: you can't distinguish between EOF and no data!"
11236                         val="$undef"
11237                 fi
11238         else
11239                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11240                 eagain=EAGAIN
11241         fi
11242         set d_eofnblk
11243         eval $setvar
11244         ;;
11245 *)
11246         echo "Using $hint value $eagain."
11247         echo "Your read() returns $rd_nodata when no data is present."
11248         case "$d_eofnblk" in
11249         "$define") echo "And you can see EOF because read() returns 0.";;
11250         "$undef") echo "But you can't see EOF status from read() returned value.";;
11251         *)
11252                 echo "(Assuming you can't see EOF status from read anyway.)"
11253                 d_eofnblk=$undef
11254                 ;;
11255         esac
11256         ;;
11257 esac
11258 $rm -f try try.* .out core head.c mtry
11259
11260 : see if fchdir exists
11261 set fchdir d_fchdir
11262 eval $inlibc
11263
11264 : see if fchmod exists
11265 set fchmod d_fchmod
11266 eval $inlibc
11267
11268 : see if fchown exists
11269 set fchown d_fchown
11270 eval $inlibc
11271
11272 : see if this is an fcntl system
11273 set fcntl d_fcntl
11274 eval $inlibc
11275
11276 echo " "
11277 : See if fcntl-based locking works.
11278 $cat >try.c <<EOCP
11279 #include <stdlib.h>
11280 #include <unistd.h>
11281 #include <fcntl.h>
11282 #include <signal.h>
11283 $signal_t blech(x) int x; { exit(3); }
11284 int main() {
11285 #if defined(F_SETLK) && defined(F_SETLKW)
11286      struct flock flock;
11287      int retval, fd;
11288      fd = open("try.c", O_RDONLY);
11289      flock.l_type = F_RDLCK;
11290      flock.l_whence = SEEK_SET;
11291      flock.l_start = flock.l_len = 0;
11292      signal(SIGALRM, blech);
11293      alarm(10);
11294      retval = fcntl(fd, F_SETLK, &flock);
11295      close(fd);
11296      (retval < 0 ? exit(2) : exit(0));
11297 #else
11298      exit(2);
11299 #endif
11300 }
11301 EOCP
11302 echo "Checking if fcntl-based file locking works... "
11303 case "$d_fcntl" in
11304 "$define")
11305         set try
11306         if eval $compile_ok; then
11307                 if $run ./try; then
11308                         echo "Yes, it seems to work."
11309                         val="$define"
11310                 else
11311                         echo "Nope, it didn't work."
11312                         val="$undef"
11313                         case "$?" in
11314                         3) $cat >&4 <<EOM
11315 ***
11316 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
11317 *** This is (almost) impossible.
11318 *** If your NFS lock daemons are not feeling well, something like
11319 *** this may happen, please investigate.  Cannot continue, aborting.
11320 ***
11321 EOM
11322                                 exit 1
11323                                 ;;
11324                         esac
11325                 fi
11326         else
11327                 echo "I'm unable to compile the test program, so I'll assume not."
11328                 val="$undef"
11329         fi
11330         ;;
11331 *) val="$undef";
11332         echo "Nope, since you don't even have fcntl()."
11333         ;;
11334 esac
11335 set d_fcntl_can_lock
11336 eval $setvar
11337 $rm -f try*
11338
11339
11340 : check for fd_set items
11341 $cat <<EOM
11342
11343 Checking to see how well your C compiler handles fd_set and friends ...
11344 EOM
11345 $cat >try.c <<EOCP
11346 #$i_systime I_SYS_TIME
11347 #$i_sysselct I_SYS_SELECT
11348 #$d_socket HAS_SOCKET
11349 #include <sys/types.h>
11350 #ifdef HAS_SOCKET
11351 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
11352 #endif
11353 #ifdef I_SYS_TIME
11354 #include <sys/time.h>
11355 #endif
11356 #ifdef I_SYS_SELECT
11357 #include <sys/select.h>
11358 #endif
11359 int main() {
11360         fd_set fds;
11361
11362 #ifdef TRYBITS
11363         if(fds.fds_bits);
11364 #endif
11365
11366 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
11367         exit(0);
11368 #else
11369         exit(1);
11370 #endif
11371 }
11372 EOCP
11373 set try -DTRYBITS
11374 if eval $compile; then
11375         d_fds_bits="$define"
11376         d_fd_set="$define"
11377         echo "Well, your system knows about the normal fd_set typedef..." >&4
11378         if $run ./try; then
11379                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
11380                 d_fd_macros="$define"
11381         else
11382                 $cat >&4 <<'EOM'
11383 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
11384 EOM
11385                 d_fd_macros="$undef"
11386         fi
11387 else
11388         $cat <<'EOM'
11389 Hmm, your compiler has some difficulty with fd_set.  Checking further...
11390 EOM
11391         set try
11392         if eval $compile; then
11393                 d_fds_bits="$undef"
11394                 d_fd_set="$define"
11395                 echo "Well, your system has some sort of fd_set available..." >&4
11396                 if $run ./try; then
11397                         echo "and you have the normal fd_set macros." >&4
11398                         d_fd_macros="$define"
11399                 else
11400                         $cat <<'EOM'
11401 but not the normal fd_set macros!  Gross!  More work for me...
11402 EOM
11403                         d_fd_macros="$undef"
11404                 fi
11405         else
11406         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
11407                 d_fd_set="$undef"
11408                 d_fds_bits="$undef"
11409                 d_fd_macros="$undef"
11410         fi
11411 fi
11412 $rm -f try try.*
11413
11414 : see if fgetpos exists
11415 set fgetpos d_fgetpos
11416 eval $inlibc
11417
11418 : see if finite exists
11419 set finite d_finite
11420 eval $inlibc
11421
11422 : see if finitel exists
11423 set finitel d_finitel
11424 eval $inlibc
11425
11426 : see if flock exists
11427 set flock d_flock
11428 eval $inlibc
11429
11430 : see if prototype for flock is available
11431 echo " "
11432 set d_flockproto flock $i_sysfile sys/file.h
11433 eval $hasproto
11434
11435 : see if fork exists
11436 set fork d_fork
11437 eval $inlibc
11438
11439 : see if fp_class exists
11440 set fp_class d_fp_class
11441 eval $inlibc
11442
11443 : see if pathconf exists
11444 set pathconf d_pathconf
11445 eval $inlibc
11446
11447 : see if fpathconf exists
11448 set fpathconf d_fpathconf
11449 eval $inlibc
11450
11451 : see if fpclass exists
11452 set fpclass d_fpclass
11453 eval $inlibc
11454
11455 : see if fpclassify exists
11456 set fpclassify d_fpclassify
11457 eval $inlibc
11458
11459 : see if fpclassl exists
11460 set fpclassl d_fpclassl
11461 eval $inlibc
11462
11463
11464 : check for fpos64_t
11465 echo " "
11466 echo "Checking to see if you have fpos64_t..." >&4
11467 $cat >try.c <<EOCP
11468 #include <stdio.h>
11469 int main() { fpos64_t x = 7; }
11470 EOCP
11471 set try
11472 if eval $compile; then
11473         val="$define"
11474         echo "You have fpos64_t."
11475 else
11476         val="$undef"
11477         echo "You do not have fpos64_t."
11478         case "$fpossize" in
11479         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
11480         esac
11481 fi
11482 $rm -f try.* try
11483 set d_fpos64_t
11484 eval $setvar
11485
11486 : see if frexpl exists
11487 set frexpl d_frexpl
11488 eval $inlibc
11489
11490 : see if this is a sys/param system
11491 set sys/param.h i_sysparam
11492 eval $inhdr
11493
11494 : see if this is a sys/mount.h system
11495 set sys/mount.h i_sysmount
11496 eval $inhdr
11497
11498
11499 echo " "
11500 echo "Checking to see if your system supports struct fs_data..." >&4
11501 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
11502 eval $hasstruct
11503 case "$d_fs_data_s" in
11504 "$define")      echo "Yes, it does."   ;;
11505 *)              echo "No, it doesn't." ;;
11506 esac
11507
11508 : see if fseeko exists
11509 set fseeko d_fseeko
11510 eval $inlibc
11511 case "$longsize" in
11512 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
11513 esac
11514
11515 : see if fsetpos exists
11516 set fsetpos d_fsetpos
11517 eval $inlibc
11518
11519
11520 : see if fstatfs exists
11521 set fstatfs d_fstatfs
11522 eval $inlibc
11523
11524
11525 : see if statvfs exists
11526 set statvfs d_statvfs
11527 eval $inlibc
11528
11529 : see if fstatvfs exists
11530 set fstatvfs d_fstatvfs
11531 eval $inlibc
11532
11533
11534 : see if fsync exists
11535 set fsync d_fsync
11536 eval $inlibc
11537
11538 : see if ftello exists
11539 set ftello d_ftello
11540 eval $inlibc
11541 case "$longsize" in
11542 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
11543 esac
11544
11545 : see if getcwd exists
11546 set getcwd d_getcwd
11547 eval $inlibc
11548
11549 : see if getespwnam exists
11550 set getespwnam d_getespwnam
11551 eval $inlibc
11552
11553
11554 : see if getfsstat exists
11555 set getfsstat d_getfsstat
11556 eval $inlibc
11557
11558 : see if getgrent exists
11559 set getgrent d_getgrent
11560 eval $inlibc
11561
11562 : see if getgrent_r exists
11563 set getgrent_r d_getgrent_r
11564 eval $inlibc
11565 case "$d_getgrent_r" in
11566 "$define")
11567         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11568         case "$d_getgrent_r_proto:$usethreads" in
11569         ":define")      d_getgrent_r_proto=define
11570                 set d_getgrent_r_proto getgrent_r $hdrs
11571                 eval $hasproto ;;
11572         *)      ;;
11573         esac
11574         case "$d_getgrent_r_proto" in
11575         define)
11576         case "$getgrent_r_proto" in
11577         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
11578         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
11579         esac
11580         case "$getgrent_r_proto" in
11581         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
11582         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
11583         esac
11584         case "$getgrent_r_proto" in
11585         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
11586         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
11587         esac
11588         case "$getgrent_r_proto" in
11589         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
11590         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
11591         esac
11592         case "$getgrent_r_proto" in
11593         ''|0) try='int getgrent_r(struct group*, char*, int);'
11594         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
11595         esac
11596         case "$getgrent_r_proto" in
11597         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
11598         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
11599         esac
11600         case "$getgrent_r_proto" in
11601         ''|0)   d_getgrent_r=undef
11602                 getgrent_r_proto=0
11603                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
11604         * )     case "$getgrent_r_proto" in
11605                 REENTRANT_PROTO*) ;;
11606                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
11607                 esac
11608                 echo "Prototype: $try" ;;
11609         esac
11610         ;;
11611         *)      case "$usethreads" in
11612                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
11613                 esac
11614                 d_getgrent_r=undef
11615                 getgrent_r_proto=0
11616                 ;;
11617         esac
11618         ;;
11619 *)      getgrent_r_proto=0
11620         ;;
11621 esac
11622
11623 : see if getgrgid_r exists
11624 set getgrgid_r d_getgrgid_r
11625 eval $inlibc
11626 case "$d_getgrgid_r" in
11627 "$define")
11628         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11629         case "$d_getgrgid_r_proto:$usethreads" in
11630         ":define")      d_getgrgid_r_proto=define
11631                 set d_getgrgid_r_proto getgrgid_r $hdrs
11632                 eval $hasproto ;;
11633         *)      ;;
11634         esac
11635         case "$d_getgrgid_r_proto" in
11636         define)
11637         case "$getgrgid_r_proto" in
11638         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
11639         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
11640         esac
11641         case "$getgrgid_r_proto" in
11642         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
11643         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
11644         esac
11645         case "$getgrgid_r_proto" in
11646         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
11647         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
11648         esac
11649         case "$getgrgid_r_proto" in
11650         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
11651         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
11652         esac
11653         case "$getgrgid_r_proto" in
11654         ''|0)   d_getgrgid_r=undef
11655                 getgrgid_r_proto=0
11656                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
11657         * )     case "$getgrgid_r_proto" in
11658                 REENTRANT_PROTO*) ;;
11659                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
11660                 esac
11661                 echo "Prototype: $try" ;;
11662         esac
11663         ;;
11664         *)      case "$usethreads" in
11665                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
11666                 esac
11667                 d_getgrgid_r=undef
11668                 getgrgid_r_proto=0
11669                 ;;
11670         esac
11671         ;;
11672 *)      getgrgid_r_proto=0
11673         ;;
11674 esac
11675
11676 : see if getgrnam_r exists
11677 set getgrnam_r d_getgrnam_r
11678 eval $inlibc
11679 case "$d_getgrnam_r" in
11680 "$define")
11681         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11682         case "$d_getgrnam_r_proto:$usethreads" in
11683         ":define")      d_getgrnam_r_proto=define
11684                 set d_getgrnam_r_proto getgrnam_r $hdrs
11685                 eval $hasproto ;;
11686         *)      ;;
11687         esac
11688         case "$d_getgrnam_r_proto" in
11689         define)
11690         case "$getgrnam_r_proto" in
11691         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
11692         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
11693         esac
11694         case "$getgrnam_r_proto" in
11695         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
11696         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
11697         esac
11698         case "$getgrnam_r_proto" in
11699         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
11700         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
11701         esac
11702         case "$getgrnam_r_proto" in
11703         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
11704         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
11705         esac
11706         case "$getgrnam_r_proto" in
11707         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
11708         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
11709         esac
11710         case "$getgrnam_r_proto" in
11711         ''|0)   d_getgrnam_r=undef
11712                 getgrnam_r_proto=0
11713                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
11714         * )     case "$getgrnam_r_proto" in
11715                 REENTRANT_PROTO*) ;;
11716                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
11717                 esac
11718                 echo "Prototype: $try" ;;
11719         esac
11720         ;;
11721         *)      case "$usethreads" in
11722                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
11723                 esac
11724                 d_getgrnam_r=undef
11725                 getgrnam_r_proto=0
11726                 ;;
11727         esac
11728         ;;
11729 *)      getgrnam_r_proto=0
11730         ;;
11731 esac
11732
11733 : see if gethostbyaddr exists
11734 set gethostbyaddr d_gethbyaddr
11735 eval $inlibc
11736
11737 : see if gethostbyname exists
11738 set gethostbyname d_gethbyname
11739 eval $inlibc
11740
11741 : see if gethostent exists
11742 set gethostent d_gethent
11743 eval $inlibc
11744
11745 : see how we will look up host name
11746 echo " "
11747 call=''
11748 if set gethostname val -f d_gethname; eval $csym; $val; then
11749         echo 'gethostname() found.' >&4
11750         d_gethname="$define"
11751         call=gethostname
11752 fi
11753 if set uname val -f d_uname; eval $csym; $val; then
11754         if ./xenix; then
11755                 $cat <<'EOM'
11756 uname() was found, but you're running xenix, and older versions of xenix
11757 have a broken uname(). If you don't really know whether your xenix is old
11758 enough to have a broken system call, use the default answer.
11759
11760 EOM
11761                 dflt=y
11762                 case "$d_uname" in
11763                 "$define") dflt=n;;
11764                 esac
11765                 rp='Is your uname() broken?'
11766                 . ./myread
11767                 case "$ans" in
11768                 n*) d_uname="$define"; call=uname;;
11769                 esac
11770         else
11771                 echo 'uname() found.' >&4
11772                 d_uname="$define"
11773                 case "$call" in
11774                 '') call=uname ;;
11775                 esac
11776         fi
11777 fi
11778 case "$d_gethname" in
11779 '') d_gethname="$undef";;
11780 esac
11781 case "$d_uname" in
11782 '') d_uname="$undef";;
11783 esac
11784 case "$d_uname$d_gethname" in
11785 *define*)
11786         dflt=n
11787         cat <<EOM
11788  
11789 Every now and then someone has a $call() that lies about the hostname
11790 but can't be fixed for political or economic reasons.  If you wish, I can
11791 pretend $call() isn't there and maybe compute hostname at run-time
11792 thanks to the '$phostname' command.
11793
11794 EOM
11795         rp="Shall I ignore $call() from now on?"
11796         . ./myread
11797         case "$ans" in
11798         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
11799         esac;;
11800 esac
11801 case "$phostname" in
11802 '') aphostname='';;
11803 *) case "$aphostname" in
11804         /*) ;;
11805         *) set X $phostname
11806                 shift
11807                 file=$1
11808                 shift
11809                 file=`./loc $file $file $pth`
11810                 aphostname=`echo $file $*`
11811                 ;;
11812         esac
11813         ;;
11814 esac
11815 case "$d_uname$d_gethname" in
11816 *define*) ;;
11817 *)
11818         case "$phostname" in
11819         '')
11820                 echo "There will be no way for $package to get your hostname." >&4;;
11821         *)
11822         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
11823                 ;;
11824         esac;;
11825 esac
11826 case "$d_phostname" in
11827 '') d_phostname="$undef";;
11828 esac
11829
11830 : see if gethostbyaddr_r exists
11831 set gethostbyaddr_r d_gethostbyaddr_r
11832 eval $inlibc
11833 case "$d_gethostbyaddr_r" in
11834 "$define")
11835         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11836         case "$d_gethostbyaddr_r_proto:$usethreads" in
11837         ":define")      d_gethostbyaddr_r_proto=define
11838                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
11839                 eval $hasproto ;;
11840         *)      ;;
11841         esac
11842         case "$d_gethostbyaddr_r_proto" in
11843         define)
11844         case "$gethostbyaddr_r_proto" in
11845         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
11846         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
11847         esac
11848         case "$gethostbyaddr_r_proto" in
11849         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
11850         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
11851         esac
11852         case "$gethostbyaddr_r_proto" in
11853         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
11854         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
11855         esac
11856         case "$gethostbyaddr_r_proto" in
11857         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
11858         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
11859         esac
11860         case "$gethostbyaddr_r_proto" in
11861         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
11862         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
11863         esac
11864         case "$gethostbyaddr_r_proto" in
11865         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
11866         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
11867         esac
11868         case "$gethostbyaddr_r_proto" in
11869         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
11870         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
11871         esac
11872         case "$gethostbyaddr_r_proto" in
11873         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
11874         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
11875         esac
11876         case "$gethostbyaddr_r_proto" in
11877         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
11878         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
11879         esac
11880         case "$gethostbyaddr_r_proto" in
11881         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
11882         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
11883         esac
11884         case "$gethostbyaddr_r_proto" in
11885         ''|0)   d_gethostbyaddr_r=undef
11886                 gethostbyaddr_r_proto=0
11887                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
11888         * )     case "$gethostbyaddr_r_proto" in
11889                 REENTRANT_PROTO*) ;;
11890                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
11891                 esac
11892                 echo "Prototype: $try" ;;
11893         esac
11894         ;;
11895         *)      case "$usethreads" in
11896                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
11897                 esac
11898                 d_gethostbyaddr_r=undef
11899                 gethostbyaddr_r_proto=0
11900                 ;;
11901         esac
11902         ;;
11903 *)      gethostbyaddr_r_proto=0
11904         ;;
11905 esac
11906
11907 : see if gethostbyname_r exists
11908 set gethostbyname_r d_gethostbyname_r
11909 eval $inlibc
11910 case "$d_gethostbyname_r" in
11911 "$define")
11912         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11913         case "$d_gethostbyname_r_proto:$usethreads" in
11914         ":define")      d_gethostbyname_r_proto=define
11915                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
11916                 eval $hasproto ;;
11917         *)      ;;
11918         esac
11919         case "$d_gethostbyname_r_proto" in
11920         define)
11921         case "$gethostbyname_r_proto" in
11922         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
11923         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
11924         esac
11925         case "$gethostbyname_r_proto" in
11926         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
11927         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
11928         esac
11929         case "$gethostbyname_r_proto" in
11930         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
11931         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
11932         esac
11933         case "$gethostbyname_r_proto" in
11934         ''|0)   d_gethostbyname_r=undef
11935                 gethostbyname_r_proto=0
11936                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
11937         * )     case "$gethostbyname_r_proto" in
11938                 REENTRANT_PROTO*) ;;
11939                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
11940                 esac
11941                 echo "Prototype: $try" ;;
11942         esac
11943         ;;
11944         *)      case "$usethreads" in
11945                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
11946                 esac
11947                 d_gethostbyname_r=undef
11948                 gethostbyname_r_proto=0
11949                 ;;
11950         esac
11951         ;;
11952 *)      gethostbyname_r_proto=0
11953         ;;
11954 esac
11955
11956 : see if gethostent_r exists
11957 set gethostent_r d_gethostent_r
11958 eval $inlibc
11959 case "$d_gethostent_r" in
11960 "$define")
11961         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11962         case "$d_gethostent_r_proto:$usethreads" in
11963         ":define")      d_gethostent_r_proto=define
11964                 set d_gethostent_r_proto gethostent_r $hdrs
11965                 eval $hasproto ;;
11966         *)      ;;
11967         esac
11968         case "$d_gethostent_r_proto" in
11969         define)
11970         case "$gethostent_r_proto" in
11971         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
11972         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
11973         esac
11974         case "$gethostent_r_proto" in
11975         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
11976         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
11977         esac
11978         case "$gethostent_r_proto" in
11979         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
11980         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
11981         esac
11982         case "$gethostent_r_proto" in
11983         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
11984         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
11985         esac
11986         case "$gethostent_r_proto" in
11987         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
11988         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
11989         esac
11990         case "$gethostent_r_proto" in
11991         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
11992         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
11993         esac
11994         case "$gethostent_r_proto" in
11995         ''|0)   d_gethostent_r=undef
11996                 gethostent_r_proto=0
11997                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
11998         * )     case "$gethostent_r_proto" in
11999                 REENTRANT_PROTO*) ;;
12000                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12001                 esac
12002                 echo "Prototype: $try" ;;
12003         esac
12004         ;;
12005         *)      case "$usethreads" in
12006                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12007                 esac
12008                 d_gethostent_r=undef
12009                 gethostent_r_proto=0
12010                 ;;
12011         esac
12012         ;;
12013 *)      gethostent_r_proto=0
12014         ;;
12015 esac
12016
12017 : see if prototypes for various gethostxxx netdb.h functions are available
12018 echo " "
12019 set d_gethostprotos gethostent $i_netdb netdb.h
12020 eval $hasproto
12021
12022 : see if getitimer exists
12023 set getitimer d_getitimer
12024 eval $inlibc
12025
12026 : see if getlogin exists
12027 set getlogin d_getlogin
12028 eval $inlibc
12029
12030 : see if getlogin_r exists
12031 set getlogin_r d_getlogin_r
12032 eval $inlibc
12033 case "$d_getlogin_r" in
12034 "$define")
12035         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12036         case "$d_getlogin_r_proto:$usethreads" in
12037         ":define")      d_getlogin_r_proto=define
12038                 set d_getlogin_r_proto getlogin_r $hdrs
12039                 eval $hasproto ;;
12040         *)      ;;
12041         esac
12042         case "$d_getlogin_r_proto" in
12043         define)
12044         case "$getlogin_r_proto" in
12045         ''|0) try='int getlogin_r(char*, size_t);'
12046         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12047         esac
12048         case "$getlogin_r_proto" in
12049         ''|0) try='int getlogin_r(char*, int);'
12050         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12051         esac
12052         case "$getlogin_r_proto" in
12053         ''|0) try='char* getlogin_r(char*, size_t);'
12054         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12055         esac
12056         case "$getlogin_r_proto" in
12057         ''|0) try='char* getlogin_r(char*, int);'
12058         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12059         esac
12060         case "$getlogin_r_proto" in
12061         ''|0)   d_getlogin_r=undef
12062                 getlogin_r_proto=0
12063                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12064         * )     case "$getlogin_r_proto" in
12065                 REENTRANT_PROTO*) ;;
12066                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12067                 esac
12068                 echo "Prototype: $try" ;;
12069         esac
12070         ;;
12071         *)      case "$usethreads" in
12072                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12073                 esac
12074                 d_getlogin_r=undef
12075                 getlogin_r_proto=0
12076                 ;;
12077         esac
12078         ;;
12079 *)      getlogin_r_proto=0
12080         ;;
12081 esac
12082
12083 : see if getmnt exists
12084 set getmnt d_getmnt
12085 eval $inlibc
12086
12087 : see if getmntent exists
12088 set getmntent d_getmntent
12089 eval $inlibc
12090
12091 : see if getnetbyaddr exists
12092 set getnetbyaddr d_getnbyaddr
12093 eval $inlibc
12094
12095 : see if getnetbyname exists
12096 set getnetbyname d_getnbyname
12097 eval $inlibc
12098
12099 : see if getnetent exists
12100 set getnetent d_getnent
12101 eval $inlibc
12102
12103 : see if getnetbyaddr_r exists
12104 set getnetbyaddr_r d_getnetbyaddr_r
12105 eval $inlibc
12106 case "$d_getnetbyaddr_r" in
12107 "$define")
12108         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12109         case "$d_getnetbyaddr_r_proto:$usethreads" in
12110         ":define")      d_getnetbyaddr_r_proto=define
12111                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12112                 eval $hasproto ;;
12113         *)      ;;
12114         esac
12115         case "$d_getnetbyaddr_r_proto" in
12116         define)
12117         case "$getnetbyaddr_r_proto" in
12118         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12119         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12120         esac
12121         case "$getnetbyaddr_r_proto" in
12122         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12123         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12124         esac
12125         case "$getnetbyaddr_r_proto" in
12126         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12127         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12128         esac
12129         case "$getnetbyaddr_r_proto" in
12130         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12131         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12132         esac
12133         case "$getnetbyaddr_r_proto" in
12134         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12135         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12136         esac
12137         case "$getnetbyaddr_r_proto" in
12138         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12139         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12140         esac
12141         case "$getnetbyaddr_r_proto" in
12142         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12143         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12144         esac
12145         case "$getnetbyaddr_r_proto" in
12146         ''|0)   d_getnetbyaddr_r=undef
12147                 getnetbyaddr_r_proto=0
12148                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12149         * )     case "$getnetbyaddr_r_proto" in
12150                 REENTRANT_PROTO*) ;;
12151                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12152                 esac
12153                 echo "Prototype: $try" ;;
12154         esac
12155         ;;
12156         *)      case "$usethreads" in
12157                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12158                 esac
12159                 d_getnetbyaddr_r=undef
12160                 getnetbyaddr_r_proto=0
12161                 ;;
12162         esac
12163         ;;
12164 *)      getnetbyaddr_r_proto=0
12165         ;;
12166 esac
12167
12168 : see if getnetbyname_r exists
12169 set getnetbyname_r d_getnetbyname_r
12170 eval $inlibc
12171 case "$d_getnetbyname_r" in
12172 "$define")
12173         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12174         case "$d_getnetbyname_r_proto:$usethreads" in
12175         ":define")      d_getnetbyname_r_proto=define
12176                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12177                 eval $hasproto ;;
12178         *)      ;;
12179         esac
12180         case "$d_getnetbyname_r_proto" in
12181         define)
12182         case "$getnetbyname_r_proto" in
12183         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12184         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12185         esac
12186         case "$getnetbyname_r_proto" in
12187         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12188         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12189         esac
12190         case "$getnetbyname_r_proto" in
12191         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
12192         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
12193         esac
12194         case "$getnetbyname_r_proto" in
12195         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
12196         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
12197         esac
12198         case "$getnetbyname_r_proto" in
12199         ''|0)   d_getnetbyname_r=undef
12200                 getnetbyname_r_proto=0
12201                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
12202         * )     case "$getnetbyname_r_proto" in
12203                 REENTRANT_PROTO*) ;;
12204                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
12205                 esac
12206                 echo "Prototype: $try" ;;
12207         esac
12208         ;;
12209         *)      case "$usethreads" in
12210                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
12211                 esac
12212                 d_getnetbyname_r=undef
12213                 getnetbyname_r_proto=0
12214                 ;;
12215         esac
12216         ;;
12217 *)      getnetbyname_r_proto=0
12218         ;;
12219 esac
12220
12221 : see if getnetent_r exists
12222 set getnetent_r d_getnetent_r
12223 eval $inlibc
12224 case "$d_getnetent_r" in
12225 "$define")
12226         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12227         case "$d_getnetent_r_proto:$usethreads" in
12228         ":define")      d_getnetent_r_proto=define
12229                 set d_getnetent_r_proto getnetent_r $hdrs
12230                 eval $hasproto ;;
12231         *)      ;;
12232         esac
12233         case "$d_getnetent_r_proto" in
12234         define)
12235         case "$getnetent_r_proto" in
12236         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
12237         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
12238         esac
12239         case "$getnetent_r_proto" in
12240         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
12241         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
12242         esac
12243         case "$getnetent_r_proto" in
12244         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
12245         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
12246         esac
12247         case "$getnetent_r_proto" in
12248         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
12249         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
12250         esac
12251         case "$getnetent_r_proto" in
12252         ''|0) try='int getnetent_r(struct netent*, char*, int);'
12253         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
12254         esac
12255         case "$getnetent_r_proto" in
12256         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
12257         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
12258         esac
12259         case "$getnetent_r_proto" in
12260         ''|0)   d_getnetent_r=undef
12261                 getnetent_r_proto=0
12262                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
12263         * )     case "$getnetent_r_proto" in
12264                 REENTRANT_PROTO*) ;;
12265                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
12266                 esac
12267                 echo "Prototype: $try" ;;
12268         esac
12269         ;;
12270         *)      case "$usethreads" in
12271                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
12272                 esac
12273                 d_getnetent_r=undef
12274                 getnetent_r_proto=0
12275                 ;;
12276         esac
12277         ;;
12278 *)      getnetent_r_proto=0
12279         ;;
12280 esac
12281
12282 : see if prototypes for various getnetxxx netdb.h functions are available
12283 echo " "
12284 set d_getnetprotos getnetent $i_netdb netdb.h
12285 eval $hasproto
12286
12287 : see if getpagesize exists
12288 set getpagesize d_getpagsz
12289 eval $inlibc
12290
12291
12292 : see if getprotobyname exists
12293 set getprotobyname d_getpbyname
12294 eval $inlibc
12295
12296 : see if getprotobynumber exists
12297 set getprotobynumber d_getpbynumber
12298 eval $inlibc
12299
12300 : see if getprotoent exists
12301 set getprotoent d_getpent
12302 eval $inlibc
12303
12304 : see if getpgid exists
12305 set getpgid d_getpgid
12306 eval $inlibc
12307
12308 : see if getpgrp2 exists
12309 set getpgrp2 d_getpgrp2
12310 eval $inlibc
12311
12312 : see if getppid exists
12313 set getppid d_getppid
12314 eval $inlibc
12315
12316 : see if getpriority exists
12317 set getpriority d_getprior
12318 eval $inlibc
12319
12320 : see if getprotobyname_r exists
12321 set getprotobyname_r d_getprotobyname_r
12322 eval $inlibc
12323 case "$d_getprotobyname_r" in
12324 "$define")
12325         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12326         case "$d_getprotobyname_r_proto:$usethreads" in
12327         ":define")      d_getprotobyname_r_proto=define
12328                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
12329                 eval $hasproto ;;
12330         *)      ;;
12331         esac
12332         case "$d_getprotobyname_r_proto" in
12333         define)
12334         case "$getprotobyname_r_proto" in
12335         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
12336         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
12337         esac
12338         case "$getprotobyname_r_proto" in
12339         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
12340         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
12341         esac
12342         case "$getprotobyname_r_proto" in
12343         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
12344         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
12345         esac
12346         case "$getprotobyname_r_proto" in
12347         ''|0)   d_getprotobyname_r=undef
12348                 getprotobyname_r_proto=0
12349                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
12350         * )     case "$getprotobyname_r_proto" in
12351                 REENTRANT_PROTO*) ;;
12352                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
12353                 esac
12354                 echo "Prototype: $try" ;;
12355         esac
12356         ;;
12357         *)      case "$usethreads" in
12358                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
12359                 esac
12360                 d_getprotobyname_r=undef
12361                 getprotobyname_r_proto=0
12362                 ;;
12363         esac
12364         ;;
12365 *)      getprotobyname_r_proto=0
12366         ;;
12367 esac
12368
12369 : see if getprotobynumber_r exists
12370 set getprotobynumber_r d_getprotobynumber_r
12371 eval $inlibc
12372 case "$d_getprotobynumber_r" in
12373 "$define")
12374         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12375         case "$d_getprotobynumber_r_proto:$usethreads" in
12376         ":define")      d_getprotobynumber_r_proto=define
12377                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
12378                 eval $hasproto ;;
12379         *)      ;;
12380         esac
12381         case "$d_getprotobynumber_r_proto" in
12382         define)
12383         case "$getprotobynumber_r_proto" in
12384         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
12385         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
12386         esac
12387         case "$getprotobynumber_r_proto" in
12388         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
12389         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
12390         esac
12391         case "$getprotobynumber_r_proto" in
12392         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
12393         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
12394         esac
12395         case "$getprotobynumber_r_proto" in
12396         ''|0)   d_getprotobynumber_r=undef
12397                 getprotobynumber_r_proto=0
12398                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
12399         * )     case "$getprotobynumber_r_proto" in
12400                 REENTRANT_PROTO*) ;;
12401                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
12402                 esac
12403                 echo "Prototype: $try" ;;
12404         esac
12405         ;;
12406         *)      case "$usethreads" in
12407                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
12408                 esac
12409                 d_getprotobynumber_r=undef
12410                 getprotobynumber_r_proto=0
12411                 ;;
12412         esac
12413         ;;
12414 *)      getprotobynumber_r_proto=0
12415         ;;
12416 esac
12417
12418 : see if getprotoent_r exists
12419 set getprotoent_r d_getprotoent_r
12420 eval $inlibc
12421 case "$d_getprotoent_r" in
12422 "$define")
12423         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12424         case "$d_getprotoent_r_proto:$usethreads" in
12425         ":define")      d_getprotoent_r_proto=define
12426                 set d_getprotoent_r_proto getprotoent_r $hdrs
12427                 eval $hasproto ;;
12428         *)      ;;
12429         esac
12430         case "$d_getprotoent_r_proto" in
12431         define)
12432         case "$getprotoent_r_proto" in
12433         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
12434         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
12435         esac
12436         case "$getprotoent_r_proto" in
12437         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
12438         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
12439         esac
12440         case "$getprotoent_r_proto" in
12441         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
12442         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
12443         esac
12444         case "$getprotoent_r_proto" in
12445         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
12446         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
12447         esac
12448         case "$getprotoent_r_proto" in
12449         ''|0)   d_getprotoent_r=undef
12450                 getprotoent_r_proto=0
12451                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
12452         * )     case "$getprotoent_r_proto" in
12453                 REENTRANT_PROTO*) ;;
12454                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
12455                 esac
12456                 echo "Prototype: $try" ;;
12457         esac
12458         ;;
12459         *)      case "$usethreads" in
12460                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
12461                 esac
12462                 d_getprotoent_r=undef
12463                 getprotoent_r_proto=0
12464                 ;;
12465         esac
12466         ;;
12467 *)      getprotoent_r_proto=0
12468         ;;
12469 esac
12470
12471 : see if prototypes for various getprotoxxx netdb.h functions are available
12472 echo " "
12473 set d_getprotoprotos getprotoent $i_netdb netdb.h
12474 eval $hasproto
12475
12476 : see if getprpwnam exists
12477 set getprpwnam d_getprpwnam
12478 eval $inlibc
12479
12480 : see if getpwent exists
12481 set getpwent d_getpwent
12482 eval $inlibc
12483
12484 : see if getpwent_r exists
12485 set getpwent_r d_getpwent_r
12486 eval $inlibc
12487 case "$d_getpwent_r" in
12488 "$define")
12489         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12490         case "$d_getpwent_r_proto:$usethreads" in
12491         ":define")      d_getpwent_r_proto=define
12492                 set d_getpwent_r_proto getpwent_r $hdrs
12493                 eval $hasproto ;;
12494         *)      ;;
12495         esac
12496         case "$d_getpwent_r_proto" in
12497         define)
12498         case "$getpwent_r_proto" in
12499         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
12500         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
12501         esac
12502         case "$getpwent_r_proto" in
12503         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
12504         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
12505         esac
12506         case "$getpwent_r_proto" in
12507         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
12508         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
12509         esac
12510         case "$getpwent_r_proto" in
12511         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
12512         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
12513         esac
12514         case "$getpwent_r_proto" in
12515         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
12516         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
12517         esac
12518         case "$getpwent_r_proto" in
12519         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
12520         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
12521         esac
12522         case "$getpwent_r_proto" in
12523         ''|0)   d_getpwent_r=undef
12524                 getpwent_r_proto=0
12525                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
12526         * )     case "$getpwent_r_proto" in
12527                 REENTRANT_PROTO*) ;;
12528                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
12529                 esac
12530                 echo "Prototype: $try" ;;
12531         esac
12532         ;;
12533         *)      case "$usethreads" in
12534                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
12535                 esac
12536                 d_getpwent_r=undef
12537                 getpwent_r_proto=0
12538                 ;;
12539         esac
12540         ;;
12541 *)      getpwent_r_proto=0
12542         ;;
12543 esac
12544
12545 : see if getpwnam_r exists
12546 set getpwnam_r d_getpwnam_r
12547 eval $inlibc
12548 case "$d_getpwnam_r" in
12549 "$define")
12550         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12551         case "$d_getpwnam_r_proto:$usethreads" in
12552         ":define")      d_getpwnam_r_proto=define
12553                 set d_getpwnam_r_proto getpwnam_r $hdrs
12554                 eval $hasproto ;;
12555         *)      ;;
12556         esac
12557         case "$d_getpwnam_r_proto" in
12558         define)
12559         case "$getpwnam_r_proto" in
12560         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
12561         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
12562         esac
12563         case "$getpwnam_r_proto" in
12564         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
12565         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
12566         esac
12567         case "$getpwnam_r_proto" in
12568         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
12569         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
12570         esac
12571         case "$getpwnam_r_proto" in
12572         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
12573         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
12574         esac
12575         case "$getpwnam_r_proto" in
12576         ''|0)   d_getpwnam_r=undef
12577                 getpwnam_r_proto=0
12578                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
12579         * )     case "$getpwnam_r_proto" in
12580                 REENTRANT_PROTO*) ;;
12581                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
12582                 esac
12583                 echo "Prototype: $try" ;;
12584         esac
12585         ;;
12586         *)      case "$usethreads" in
12587                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
12588                 esac
12589                 d_getpwnam_r=undef
12590                 getpwnam_r_proto=0
12591                 ;;
12592         esac
12593         ;;
12594 *)      getpwnam_r_proto=0
12595         ;;
12596 esac
12597
12598 : see if getpwuid_r exists
12599 set getpwuid_r d_getpwuid_r
12600 eval $inlibc
12601 case "$d_getpwuid_r" in
12602 "$define")
12603         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12604         case "$d_getpwuid_r_proto:$usethreads" in
12605         ":define")      d_getpwuid_r_proto=define
12606                 set d_getpwuid_r_proto getpwuid_r $hdrs
12607                 eval $hasproto ;;
12608         *)      ;;
12609         esac
12610         case "$d_getpwuid_r_proto" in
12611         define)
12612         case "$getpwuid_r_proto" in
12613         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
12614         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
12615         esac
12616         case "$getpwuid_r_proto" in
12617         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
12618         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
12619         esac
12620         case "$getpwuid_r_proto" in
12621         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
12622         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
12623         esac
12624         case "$getpwuid_r_proto" in
12625         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
12626         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
12627         esac
12628         case "$getpwuid_r_proto" in
12629         ''|0)   d_getpwuid_r=undef
12630                 getpwuid_r_proto=0
12631                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
12632         * )     case "$getpwuid_r_proto" in
12633                 REENTRANT_PROTO*) ;;
12634                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
12635                 esac
12636                 echo "Prototype: $try" ;;
12637         esac
12638         ;;
12639         *)      case "$usethreads" in
12640                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
12641                 esac
12642                 d_getpwuid_r=undef
12643                 getpwuid_r_proto=0
12644                 ;;
12645         esac
12646         ;;
12647 *)      getpwuid_r_proto=0
12648         ;;
12649 esac
12650
12651
12652 : see if getservbyname exists
12653 set getservbyname d_getsbyname
12654 eval $inlibc
12655
12656 : see if getservbyport exists
12657 set getservbyport d_getsbyport
12658 eval $inlibc
12659
12660 : see if getservent exists
12661 set getservent d_getsent
12662 eval $inlibc
12663
12664 : see if getservbyname_r exists
12665 set getservbyname_r d_getservbyname_r
12666 eval $inlibc
12667 case "$d_getservbyname_r" in
12668 "$define")
12669         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12670         case "$d_getservbyname_r_proto:$usethreads" in
12671         ":define")      d_getservbyname_r_proto=define
12672                 set d_getservbyname_r_proto getservbyname_r $hdrs
12673                 eval $hasproto ;;
12674         *)      ;;
12675         esac
12676         case "$d_getservbyname_r_proto" in
12677         define)
12678         case "$getservbyname_r_proto" in
12679         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
12680         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
12681         esac
12682         case "$getservbyname_r_proto" in
12683         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
12684         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
12685         esac
12686         case "$getservbyname_r_proto" in
12687         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
12688         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
12689         esac
12690         case "$getservbyname_r_proto" in
12691         ''|0)   d_getservbyname_r=undef
12692                 getservbyname_r_proto=0
12693                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
12694         * )     case "$getservbyname_r_proto" in
12695                 REENTRANT_PROTO*) ;;
12696                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
12697                 esac
12698                 echo "Prototype: $try" ;;
12699         esac
12700         ;;
12701         *)      case "$usethreads" in
12702                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
12703                 esac
12704                 d_getservbyname_r=undef
12705                 getservbyname_r_proto=0
12706                 ;;
12707         esac
12708         ;;
12709 *)      getservbyname_r_proto=0
12710         ;;
12711 esac
12712
12713 : see if getservbyport_r exists
12714 set getservbyport_r d_getservbyport_r
12715 eval $inlibc
12716 case "$d_getservbyport_r" in
12717 "$define")
12718         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12719         case "$d_getservbyport_r_proto:$usethreads" in
12720         ":define")      d_getservbyport_r_proto=define
12721                 set d_getservbyport_r_proto getservbyport_r $hdrs
12722                 eval $hasproto ;;
12723         *)      ;;
12724         esac
12725         case "$d_getservbyport_r_proto" in
12726         define)
12727         case "$getservbyport_r_proto" in
12728         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
12729         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
12730         esac
12731         case "$getservbyport_r_proto" in
12732         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
12733         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
12734         esac
12735         case "$getservbyport_r_proto" in
12736         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
12737         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
12738         esac
12739         case "$getservbyport_r_proto" in
12740         ''|0)   d_getservbyport_r=undef
12741                 getservbyport_r_proto=0
12742                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
12743         * )     case "$getservbyport_r_proto" in
12744                 REENTRANT_PROTO*) ;;
12745                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
12746                 esac
12747                 echo "Prototype: $try" ;;
12748         esac
12749         ;;
12750         *)      case "$usethreads" in
12751                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
12752                 esac
12753                 d_getservbyport_r=undef
12754                 getservbyport_r_proto=0
12755                 ;;
12756         esac
12757         ;;
12758 *)      getservbyport_r_proto=0
12759         ;;
12760 esac
12761
12762 : see if getservent_r exists
12763 set getservent_r d_getservent_r
12764 eval $inlibc
12765 case "$d_getservent_r" in
12766 "$define")
12767         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12768         case "$d_getservent_r_proto:$usethreads" in
12769         ":define")      d_getservent_r_proto=define
12770                 set d_getservent_r_proto getservent_r $hdrs
12771                 eval $hasproto ;;
12772         *)      ;;
12773         esac
12774         case "$d_getservent_r_proto" in
12775         define)
12776         case "$getservent_r_proto" in
12777         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
12778         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
12779         esac
12780         case "$getservent_r_proto" in
12781         ''|0) try='int getservent_r(struct servent*, char*, int);'
12782         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
12783         esac
12784         case "$getservent_r_proto" in
12785         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
12786         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
12787         esac
12788         case "$getservent_r_proto" in
12789         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
12790         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
12791         esac
12792         case "$getservent_r_proto" in
12793         ''|0)   d_getservent_r=undef
12794                 getservent_r_proto=0
12795                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
12796         * )     case "$getservent_r_proto" in
12797                 REENTRANT_PROTO*) ;;
12798                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
12799                 esac
12800                 echo "Prototype: $try" ;;
12801         esac
12802         ;;
12803         *)      case "$usethreads" in
12804                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
12805                 esac
12806                 d_getservent_r=undef
12807                 getservent_r_proto=0
12808                 ;;
12809         esac
12810         ;;
12811 *)      getservent_r_proto=0
12812         ;;
12813 esac
12814
12815 : see if prototypes for various getservxxx netdb.h functions are available
12816 echo " "
12817 set d_getservprotos getservent $i_netdb netdb.h
12818 eval $hasproto
12819
12820 : see if getspnam exists
12821 set getspnam d_getspnam
12822 eval $inlibc
12823
12824 : see if this is a shadow.h system
12825 set shadow.h i_shadow
12826 eval $inhdr
12827
12828 : see if getspnam_r exists
12829 set getspnam_r d_getspnam_r
12830 eval $inlibc
12831 case "$d_getspnam_r" in
12832 "$define")
12833         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
12834         case "$d_getspnam_r_proto:$usethreads" in
12835         ":define")      d_getspnam_r_proto=define
12836                 set d_getspnam_r_proto getspnam_r $hdrs
12837                 eval $hasproto ;;
12838         *)      ;;
12839         esac
12840         case "$d_getspnam_r_proto" in
12841         define)
12842         case "$getspnam_r_proto" in
12843         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
12844         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
12845         esac
12846         case "$getspnam_r_proto" in
12847         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
12848         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
12849         esac
12850         case "$getspnam_r_proto" in
12851         ''|0)   d_getspnam_r=undef
12852                 getspnam_r_proto=0
12853                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
12854         * )     case "$getspnam_r_proto" in
12855                 REENTRANT_PROTO*) ;;
12856                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
12857                 esac
12858                 echo "Prototype: $try" ;;
12859         esac
12860         ;;
12861         *)      case "$usethreads" in
12862                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
12863                 esac
12864                 d_getspnam_r=undef
12865                 getspnam_r_proto=0
12866                 ;;
12867         esac
12868         ;;
12869 *)      getspnam_r_proto=0
12870         ;;
12871 esac
12872
12873 : see if gettimeofday or ftime exists
12874 set gettimeofday d_gettimeod
12875 eval $inlibc
12876 case "$d_gettimeod" in
12877 "$undef")
12878         set ftime d_ftime 
12879         eval $inlibc
12880         ;;
12881 *)
12882         val="$undef"; set d_ftime; eval $setvar
12883         ;;
12884 esac
12885 case "$d_gettimeod$d_ftime" in
12886 "$undef$undef")
12887         echo " "
12888         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
12889         ;;
12890 esac
12891
12892 : see if gmtime_r exists
12893 set gmtime_r d_gmtime_r
12894 eval $inlibc
12895 case "$d_gmtime_r" in
12896 "$define")
12897         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
12898         case "$d_gmtime_r_proto:$usethreads" in
12899         ":define")      d_gmtime_r_proto=define
12900                 set d_gmtime_r_proto gmtime_r $hdrs
12901                 eval $hasproto ;;
12902         *)      ;;
12903         esac
12904         case "$d_gmtime_r_proto" in
12905         define)
12906         case "$gmtime_r_proto" in
12907         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
12908         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
12909         esac
12910         case "$gmtime_r_proto" in
12911         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
12912         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
12913         esac
12914         case "$gmtime_r_proto" in
12915         ''|0)   d_gmtime_r=undef
12916                 gmtime_r_proto=0
12917                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
12918         * )     case "$gmtime_r_proto" in
12919                 REENTRANT_PROTO*) ;;
12920                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
12921                 esac
12922                 echo "Prototype: $try" ;;
12923         esac
12924         ;;
12925         *)      case "$usethreads" in
12926                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
12927                 esac
12928                 d_gmtime_r=undef
12929                 gmtime_r_proto=0
12930                 ;;
12931         esac
12932         ;;
12933 *)      gmtime_r_proto=0
12934         ;;
12935 esac
12936
12937 : see if hasmntopt exists
12938 set hasmntopt d_hasmntopt
12939 eval $inlibc
12940
12941 : see if this is a netinet/in.h or sys/in.h system
12942 set netinet/in.h i_niin sys/in.h i_sysin
12943 eval $inhdr
12944
12945 : see if arpa/inet.h has to be included
12946 set arpa/inet.h i_arpainet
12947 eval $inhdr
12948
12949 : see if htonl --and friends-- exists
12950 val=''
12951 set htonl val
12952 eval $inlibc
12953
12954 : Maybe they are macros.
12955 case "$val" in
12956 $undef)
12957         $cat >htonl.c <<EOM
12958 #include <stdio.h>
12959 #include <sys/types.h>
12960 #$i_niin I_NETINET_IN
12961 #$i_sysin I_SYS_IN
12962 #$i_arpainet I_ARPA_INET
12963 #ifdef I_NETINET_IN
12964 #include <netinet/in.h>
12965 #endif
12966 #ifdef I_SYS_IN
12967 #include <sys/in.h>
12968 #endif
12969 #ifdef I_ARPA_INET
12970 #include <arpa/inet.h>
12971 #endif
12972 #ifdef htonl
12973 printf("Defined as a macro.");
12974 #endif
12975 EOM
12976         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
12977         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
12978                 val="$define"
12979                 echo "But it seems to be defined as a macro." >&4
12980         fi
12981         $rm -f htonl.?
12982         ;;
12983 esac
12984 set d_htonl
12985 eval $setvar
12986
12987 : index or strchr
12988 echo " "
12989 if set index val -f; eval $csym; $val; then
12990         if set strchr val -f d_strchr; eval $csym; $val; then
12991                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
12992                         val="$define"
12993                         vali="$undef"
12994                         echo "strchr() found." >&4
12995                 else
12996                         val="$undef"
12997                         vali="$define"
12998                         echo "index() found." >&4
12999                 fi
13000         else
13001                 val="$undef"
13002                 vali="$define"
13003                 echo "index() found." >&4
13004         fi
13005 else
13006         if set strchr val -f d_strchr; eval $csym; $val; then
13007                 val="$define"
13008                 vali="$undef"
13009                 echo "strchr() found." >&4
13010         else
13011                 echo "No index() or strchr() found!" >&4
13012                 val="$undef"
13013                 vali="$undef"
13014         fi
13015 fi
13016 set d_strchr; eval $setvar
13017 val="$vali"
13018 set d_index; eval $setvar
13019
13020 : check whether inet_aton exists
13021 set inet_aton d_inetaton
13022 eval $inlibc
13023
13024 : Look for isascii
13025 echo " "
13026 $cat >isascii.c <<'EOCP'
13027 #include <stdio.h>
13028 #include <ctype.h>
13029 int main() {
13030         int c = 'A';
13031         if (isascii(c))
13032                 exit(0);
13033         else
13034                 exit(1);
13035 }
13036 EOCP
13037 set isascii
13038 if eval $compile; then
13039         echo "isascii() found." >&4
13040         val="$define"
13041 else
13042         echo "isascii() NOT found." >&4
13043         val="$undef"
13044 fi
13045 set d_isascii
13046 eval $setvar
13047 $rm -f isascii*
13048
13049 : see if isfinite exists
13050 set isfinite d_isfinite
13051 eval $inlibc
13052
13053 : see if isinf exists
13054 set isinf d_isinf
13055 eval $inlibc
13056
13057 : see if isnan exists
13058 set isnan d_isnan
13059 eval $inlibc
13060
13061 : see if isnanl exists
13062 set isnanl d_isnanl
13063 eval $inlibc
13064
13065 : see if killpg exists
13066 set killpg d_killpg
13067 eval $inlibc
13068
13069 : see if lchown exists
13070 echo " "
13071 $cat > try.c <<'EOCP'
13072 /* System header to define __stub macros and hopefully few prototypes,
13073     which can conflict with char lchown(); below.  */
13074 #include <assert.h>
13075 /* Override any gcc2 internal prototype to avoid an error.  */
13076 /* We use char because int might match the return type of a gcc2
13077    builtin and then its argument prototype would still apply.  */
13078 char lchown();
13079 int main() {
13080     /*  The GNU C library defines this for functions which it implements
13081         to always fail with ENOSYS.  Some functions are actually named
13082         something starting with __ and the normal name is an alias.  */
13083 #if defined (__stub_lchown) || defined (__stub___lchown)
13084 choke me
13085 #else
13086 lchown();
13087 #endif
13088 ; return 0; }
13089 EOCP
13090 set try
13091 if eval $compile; then
13092     $echo "lchown() found." >&4
13093     val="$define"
13094 else
13095     $echo "lchown() NOT found." >&4
13096     val="$undef"
13097 fi
13098 set d_lchown
13099 eval $setvar
13100
13101 : See if number of significant digits in a double precision number is known
13102 echo " "
13103 $cat >ldbl_dig.c <<EOM
13104 #$i_limits I_LIMITS
13105 #$i_float I_FLOAT
13106 #ifdef I_LIMITS
13107 #include <limits.h>
13108 #endif
13109 #ifdef I_FLOAT
13110 #include <float.h>
13111 #endif
13112 #ifdef LDBL_DIG
13113 printf("Contains LDBL_DIG");
13114 #endif
13115 EOM
13116 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13117 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13118         echo "LDBL_DIG found." >&4
13119         val="$define"
13120 else
13121         echo "LDBL_DIG NOT found." >&4
13122         val="$undef"
13123 fi
13124 $rm -f ldbl_dig.?
13125 set d_ldbl_dig
13126 eval $setvar
13127
13128 : see if link exists
13129 set link d_link
13130 eval $inlibc
13131
13132 : see if localtime_r exists
13133 set localtime_r d_localtime_r
13134 eval $inlibc
13135 case "$d_localtime_r" in
13136 "$define")
13137         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13138         case "$d_localtime_r_proto:$usethreads" in
13139         ":define")      d_localtime_r_proto=define
13140                 set d_localtime_r_proto localtime_r $hdrs
13141                 eval $hasproto ;;
13142         *)      ;;
13143         esac
13144         case "$d_localtime_r_proto" in
13145         define)
13146         case "$localtime_r_proto" in
13147         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13148         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13149         esac
13150         case "$localtime_r_proto" in
13151         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13152         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13153         esac
13154         case "$localtime_r_proto" in
13155         ''|0)   d_localtime_r=undef
13156                 localtime_r_proto=0
13157                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13158         * )     case "$localtime_r_proto" in
13159                 REENTRANT_PROTO*) ;;
13160                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13161                 esac
13162                 echo "Prototype: $try" ;;
13163         esac
13164         ;;
13165         *)      case "$usethreads" in
13166                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13167                 esac
13168                 d_localtime_r=undef
13169                 localtime_r_proto=0
13170                 ;;
13171         esac
13172         ;;
13173 *)      localtime_r_proto=0
13174         ;;
13175 esac
13176
13177 : see if localeconv exists
13178 set localeconv d_locconv
13179 eval $inlibc
13180
13181 : see if lockf exists
13182 set lockf d_lockf
13183 eval $inlibc
13184
13185 : see if prototype for lseek is available
13186 echo " "
13187 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
13188 eval $hasproto
13189
13190 : see if lstat exists
13191 set lstat d_lstat
13192 eval $inlibc
13193
13194 : see if madvise exists
13195 set madvise d_madvise
13196 eval $inlibc
13197
13198 : see if mblen exists
13199 set mblen d_mblen
13200 eval $inlibc
13201
13202 : see if mbstowcs exists
13203 set mbstowcs d_mbstowcs
13204 eval $inlibc
13205
13206 : see if mbtowc exists
13207 set mbtowc d_mbtowc
13208 eval $inlibc
13209
13210 : see if memchr exists
13211 set memchr d_memchr
13212 eval $inlibc
13213
13214 : see if memcmp exists
13215 set memcmp d_memcmp
13216 eval $inlibc
13217
13218 : see if memcpy exists
13219 set memcpy d_memcpy
13220 eval $inlibc
13221
13222 : see if memmove exists
13223 set memmove d_memmove
13224 eval $inlibc
13225
13226 : see if memset exists
13227 set memset d_memset
13228 eval $inlibc
13229
13230 : see if mkdir exists
13231 set mkdir d_mkdir
13232 eval $inlibc
13233
13234 : see if mkdtemp exists
13235 set mkdtemp d_mkdtemp
13236 eval $inlibc
13237
13238 : see if mkfifo exists
13239 set mkfifo d_mkfifo
13240 eval $inlibc
13241
13242 : see if mkstemp exists
13243 set mkstemp d_mkstemp
13244 eval $inlibc
13245
13246 : see if mkstemps exists
13247 set mkstemps d_mkstemps
13248 eval $inlibc
13249
13250 : see if mktime exists
13251 set mktime d_mktime
13252 eval $inlibc
13253
13254 : see if this is a sys/mman.h system
13255 set sys/mman.h i_sysmman
13256 eval $inhdr
13257
13258 : see if mmap exists
13259 set mmap d_mmap
13260 eval $inlibc
13261 : see what shmat returns
13262 : default to something harmless
13263 mmaptype='void *'
13264 case "$i_sysmman$d_mmap" in
13265 "$define$define")
13266         $cat >mmap.c <<'END'
13267 #include <sys/mman.h>
13268 void *mmap();
13269 END
13270         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
13271                 mmaptype='void *'
13272         else
13273                 mmaptype='caddr_t'
13274         fi
13275         echo "and it returns ($mmaptype)." >&4
13276         ;;
13277 esac
13278
13279
13280
13281 : see if mprotect exists
13282 set mprotect d_mprotect
13283 eval $inlibc
13284
13285 : see if msgctl exists
13286 set msgctl d_msgctl
13287 eval $inlibc
13288
13289 : see if msgget exists
13290 set msgget d_msgget
13291 eval $inlibc
13292
13293 : see if msgsnd exists
13294 set msgsnd d_msgsnd
13295 eval $inlibc
13296
13297 : see if msgrcv exists
13298 set msgrcv d_msgrcv
13299 eval $inlibc
13300
13301 : see how much of the 'msg*(2)' library is present.
13302 h_msg=true
13303 echo " "
13304 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
13305 *"$undef"*) h_msg=false;;
13306 esac
13307 case "$osname" in
13308 freebsd)
13309     case "`ipcs 2>&1`" in
13310     "SVID messages"*"not configured"*)
13311         echo "Your $osname does not have the msg*(2) configured." >&4
13312         h_msg=false
13313         val="$undef"
13314         set msgctl d_msgctl
13315         eval $setvar
13316         set msgget d_msgget
13317         eval $setvar
13318         set msgsnd d_msgsnd
13319         eval $setvar
13320         set msgrcv d_msgrcv
13321         eval $setvar
13322         ;;
13323     esac
13324     ;;
13325 esac
13326 : we could also check for sys/ipc.h ...
13327 if $h_msg && $test `./findhdr sys/msg.h`; then
13328         echo "You have the full msg*(2) library." >&4
13329         val="$define"
13330 else
13331         echo "You don't have the full msg*(2) library." >&4
13332         val="$undef"
13333 fi
13334 set d_msg
13335 eval $setvar
13336
13337
13338 echo " "
13339 echo "Checking to see if your system supports struct msghdr..." >&4
13340 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
13341 eval $hasstruct
13342 case "$d_msghdr_s" in
13343 "$define")      echo "Yes, it does."   ;;
13344 *)              echo "No, it doesn't." ;;
13345 esac
13346
13347
13348 : see if msync exists
13349 set msync d_msync
13350 eval $inlibc
13351
13352 : see if munmap exists
13353 set munmap d_munmap
13354 eval $inlibc
13355
13356 : see if nice exists
13357 set nice d_nice
13358 eval $inlibc
13359
13360 : see if this is a langinfo.h system
13361 set langinfo.h i_langinfo
13362 eval $inhdr
13363
13364 : see if nl_langinfo exists
13365 set nl_langinfo d_nl_langinfo
13366 eval $inlibc
13367
13368 : check for length of character
13369 echo " "
13370 case "$charsize" in
13371 '')
13372         echo "Checking to see how big your characters are (hey, you never know)..." >&4
13373         $cat >try.c <<'EOCP'
13374 #include <stdio.h>
13375 int main()
13376 {
13377     printf("%d\n", (int)sizeof(char));
13378     exit(0);
13379 }
13380 EOCP
13381         set try
13382         if eval $compile_ok; then
13383                 dflt=`$run ./try`
13384         else
13385                 dflt='1'
13386                 echo "(I can't seem to compile the test program.  Guessing...)"
13387         fi
13388         ;;
13389 *)
13390         dflt="$charsize"
13391         ;;
13392 esac
13393 rp="What is the size of a character (in bytes)?"
13394 . ./myread
13395 charsize="$ans"
13396 $rm -f try.c try
13397
13398 : check for volatile keyword
13399 echo " "
13400 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
13401 $cat >try.c <<'EOCP'
13402 main()
13403 {
13404         typedef struct _goo_struct goo_struct;
13405         goo_struct * volatile goo = ((goo_struct *)0);
13406         struct _goo_struct {
13407                 long long_int;
13408                 int reg_int;
13409                 char char_var;
13410         };
13411         typedef unsigned short foo_t;
13412         char *volatile foo;
13413         volatile int bar;
13414         volatile foo_t blech;
13415         foo = foo;
13416 }
13417 EOCP
13418 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
13419         val="$define"
13420         echo "Yup, it does."
13421 else
13422         val="$undef"
13423         echo "Nope, it doesn't."
13424 fi
13425 set d_volatile
13426 eval $setvar
13427 $rm -f try.*
13428
13429
13430 echo " "
13431 $echo "Choosing the C types to be used for Perl's internal types..." >&4
13432
13433 case "$use64bitint:$d_quad:$quadtype" in
13434 define:define:?*)
13435         ivtype="$quadtype"
13436         uvtype="$uquadtype"
13437         ivsize=8
13438         uvsize=8
13439         ;;
13440 *)      ivtype="long"
13441         uvtype="unsigned long"
13442         ivsize=$longsize
13443         uvsize=$longsize
13444         ;;
13445 esac
13446
13447 case "$uselongdouble:$d_longdbl" in
13448 define:define)
13449         nvtype="long double"
13450         nvsize=$longdblsize
13451         ;;
13452 *)      nvtype=double
13453         nvsize=$doublesize
13454         ;;
13455 esac
13456
13457 $echo "(IV will be "$ivtype", $ivsize bytes)"
13458 $echo "(UV will be "$uvtype", $uvsize bytes)"
13459 $echo "(NV will be "$nvtype", $nvsize bytes)"
13460
13461 $cat >try.c <<EOCP
13462 #$i_inttypes I_INTTYPES
13463 #ifdef I_INTTYPES
13464 #include <inttypes.h>
13465 #endif
13466 #include <stdio.h>
13467 int main() {
13468 #ifdef INT8
13469    int8_t i =  INT8_MAX;
13470   uint8_t u = UINT8_MAX;
13471   printf("int8_t\n");
13472 #endif
13473 #ifdef INT16
13474    int16_t i =  INT16_MAX;
13475   uint16_t i = UINT16_MAX;
13476   printf("int16_t\n");
13477 #endif
13478 #ifdef INT32
13479    int32_t i =  INT32_MAX;
13480   uint32_t u = UINT32_MAX;
13481   printf("int32_t\n");
13482 #endif
13483 }
13484 EOCP
13485
13486 case "$i8type" in
13487 '')     case "$charsize" in
13488         1)      i8type=char
13489                 u8type="unsigned char"
13490                 i8size=$charsize
13491                 u8size=$charsize
13492                 ;;
13493         esac
13494         ;;
13495 esac
13496 case "$i8type" in
13497 '')     set try -DINT8
13498         if eval $compile; then
13499                 case "`$run ./try`" in
13500                 int8_t) i8type=int8_t
13501                         u8type=uint8_t
13502                         i8size=1
13503                         u8size=1
13504                         ;;
13505                 esac
13506         fi
13507         ;;
13508 esac
13509 case "$i8type" in
13510 '')     if $test $charsize -ge 1; then
13511                 i8type=char
13512                 u8type="unsigned char"
13513                 i8size=$charsize
13514                 u8size=$charsize
13515         fi
13516         ;;
13517 esac
13518
13519 case "$i16type" in
13520 '')     case "$shortsize" in
13521         2)      i16type=short
13522                 u16type="unsigned short"
13523                 i16size=$shortsize
13524                 u16size=$shortsize
13525                 ;;
13526         esac
13527         ;;
13528 esac
13529 case "$i16type" in
13530 '')     set try -DINT16
13531         if eval $compile; then
13532                 case "`$run ./try`" in
13533                 int16_t)
13534                         i16type=int16_t
13535                         u16type=uint16_t
13536                         i16size=2
13537                         u16size=2
13538                         ;;
13539                 esac
13540         fi
13541         ;;
13542 esac
13543 case "$i16type" in
13544 '')     if $test $shortsize -ge 2; then
13545                 i16type=short
13546                 u16type="unsigned short"
13547                 i16size=$shortsize
13548                 u16size=$shortsize
13549         fi
13550         ;;
13551 esac
13552
13553 case "$i32type" in
13554 '')     case "$longsize" in
13555         4)      i32type=long
13556                 u32type="unsigned long"
13557                 i32size=$longsize
13558                 u32size=$longsize
13559                 ;;
13560         *)      case "$intsize" in
13561                 4)      i32type=int
13562                         u32type="unsigned int"
13563                         i32size=$intsize
13564                         u32size=$intsize
13565                         ;;
13566                 esac
13567                 ;;
13568         esac
13569         ;;
13570 esac
13571 case "$i32type" in
13572 '')     set try -DINT32
13573         if eval $compile; then
13574                 case "`$run ./try`" in
13575                 int32_t)
13576                         i32type=int32_t
13577                         u32type=uint32_t
13578                         i32size=4
13579                         u32size=4
13580                         ;;
13581                 esac
13582         fi
13583         ;;
13584 esac
13585 case "$i32type" in
13586 '')     if $test $intsize -ge 4; then
13587                 i32type=int
13588                 u32type="unsigned int"
13589                 i32size=$intsize
13590                 u32size=$intsize
13591         fi
13592         ;;
13593 esac
13594
13595 case "$i64type" in
13596 '')     case "$d_quad:$quadtype" in
13597         define:?*)
13598                 i64type="$quadtype"
13599                 u64type="$uquadtype"
13600                 i64size=8
13601                 u64size=8
13602                 ;;
13603         esac
13604         ;;
13605 esac
13606
13607 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
13608 : volatile so that the compiler has to store it out to memory.
13609 if test X"$d_volatile" = X"$define"; then
13610         volatile=volatile
13611 fi
13612 $cat <<EOP >try.c
13613 #include <stdio.h>
13614 #include <sys/types.h>
13615 #include <signal.h>
13616 #ifdef SIGFPE
13617 $volatile int bletched = 0;
13618 $signal_t blech(s) int s; { bletched = 1; }
13619 #endif
13620 int main() {
13621     $uvtype u = 0;
13622     $nvtype d;
13623     int     n = 8 * $uvsize;
13624     int     i;
13625 #ifdef SIGFPE
13626     signal(SIGFPE, blech);
13627 #endif
13628
13629     for (i = 0; i < n; i++) {
13630       u = u << 1 | ($uvtype)1;
13631       d = ($nvtype)u;
13632       if (($uvtype)d != u)
13633         break;
13634       if (d <= 0)
13635         break;
13636       d = ($nvtype)(u - 1);
13637       if (($uvtype)d != (u - 1))
13638         break;
13639 #ifdef SIGFPE
13640       if (bletched) {
13641         break;
13642 #endif
13643       } 
13644     }
13645     printf("%d\n", ((i == n) ? -n : i));
13646     exit(0);
13647 }
13648 EOP
13649 set try
13650
13651 d_nv_preserves_uv="$undef"
13652 if eval $compile; then
13653         nv_preserves_uv_bits="`$run ./try`"
13654 fi
13655 case "$nv_preserves_uv_bits" in
13656 \-[1-9]*)       
13657         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
13658         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
13659         d_nv_preserves_uv="$define"
13660         ;;
13661 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
13662         d_nv_preserves_uv="$undef" ;;
13663 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
13664         nv_preserves_uv_bits="$undef" ;;
13665 esac
13666
13667 $rm -f try.* try
13668
13669
13670 : check for off64_t
13671 echo " "
13672 echo "Checking to see if you have off64_t..." >&4
13673 $cat >try.c <<EOCP
13674 #include <sys/types.h>
13675 #include <unistd.h>
13676 int main() { off64_t x = 7; }
13677 EOCP
13678 set try
13679 if eval $compile; then
13680         val="$define"
13681         echo "You have off64_t."
13682 else
13683         val="$undef"
13684         echo "You do not have off64_t."
13685         case "$lseeksize" in
13686         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
13687         esac
13688 fi
13689 $rm -f try.* try
13690 set d_off64_t
13691 eval $setvar
13692
13693 : how to create joinable pthreads
13694 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
13695         echo " "
13696         echo "Checking what constant to use for creating joinable pthreads..." >&4 
13697         $cat >try.c <<'EOCP'
13698 #include <pthread.h>
13699 int main() {
13700     int detachstate = JOINABLE;
13701 }
13702 EOCP
13703         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
13704         if eval $compile; then
13705                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
13706                 val="$undef" # Yes, undef.
13707                 set d_old_pthread_create_joinable
13708                 eval $setvar
13709                 val=""
13710                 set old_pthread_create_joinable
13711                 eval $setvar
13712         else
13713                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
13714                 if eval $compile; then
13715                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
13716                         val="$define"
13717                         set d_old_pthread_create_joinable
13718                         eval $setvar
13719                         val=PTHREAD_CREATE_UNDETACHED
13720                         set old_pthread_create_joinable
13721                         eval $setvar
13722                 else            
13723                         set try -DJOINABLE=__UNDETACHED
13724                         if eval $compile; then
13725                                 echo "You seem to use __UNDETACHED." >&4
13726                                 val="$define"
13727                                 set d_old_pthread_create_joinable
13728                                 eval $setvar
13729                                 val=__UNDETACHED
13730                                 set old_pthread_create_joinable
13731                                 eval $setvar
13732                         else
13733                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
13734                                 val="$define"
13735                                 set d_old_pthread_create_joinable
13736                                 eval $setvar
13737                                 val=0
13738                                 set old_pthread_create_joinable
13739                                 eval $setvar
13740                         fi
13741                 fi
13742         fi
13743         $rm -f try try.*
13744 else
13745     d_old_pthread_create_joinable="$undef"
13746     old_pthread_create_joinable=""
13747 fi
13748
13749 : see if pause exists
13750 set pause d_pause
13751 eval $inlibc
13752
13753 : see if pipe exists
13754 set pipe d_pipe
13755 eval $inlibc
13756
13757 : see if poll exists
13758 set poll d_poll
13759 eval $inlibc
13760
13761 : see if readlink exists
13762 set readlink d_readlink
13763 eval $inlibc
13764
13765 echo " "
13766 procselfexe=''
13767 val="$undef"
13768 case "$d_readlink" in
13769 "$define")
13770         if $issymlink /proc/self/exe ; then
13771                 $ls -l /proc/self/exe > reflect
13772                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
13773                         echo "You have Linux-like /proc/self/exe."
13774                         procselfexe='"/proc/self/exe"'
13775                         val="$define"
13776                 fi
13777         fi
13778         if $issymlink /proc/curproc/file ; then
13779                 $ls -l /proc/curproc/file > reflect
13780                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
13781                         echo "You have BSD-like /proc/curproc/file."
13782                         procselfexe='"/proc/curproc/file"'
13783                         val="$define"
13784                 fi
13785         fi
13786         ;;
13787 esac
13788 $rm -f reflect
13789 set d_procselfexe
13790 eval $setvar
13791
13792 : see whether the pthread_atfork exists
13793 $cat >try.c <<EOP
13794 #include <pthread.h>
13795 #include <stdio.h>
13796 int main() {
13797 #ifdef  PTHREAD_ATFORK
13798         pthread_atfork(NULL,NULL,NULL);
13799 #endif
13800 }
13801 EOP
13802
13803 : see if pthread_atfork exists
13804 set try -DPTHREAD_ATFORK
13805 if eval $compile; then
13806     val="$define"
13807 else
13808     val="$undef"
13809 fi
13810 case "$usethreads" in
13811 $define)
13812         case "$val" in
13813         $define) echo 'pthread_atfork found.' >&4        ;;
13814         *)       echo 'pthread_atfork NOT found.' >&4    ;;
13815         esac
13816 esac
13817 set d_pthread_atfork
13818 eval $setvar
13819
13820
13821 : see whether the various POSIXish _yields exist
13822 $cat >try.c <<EOP
13823 #include <pthread.h>
13824 #include <stdio.h>
13825 int main() {
13826 #ifdef SCHED_YIELD
13827         sched_yield();
13828 #else
13829 #ifdef PTHREAD_YIELD
13830         pthread_yield();
13831 #else
13832 #ifdef PTHREAD_YIELD_NULL
13833         pthread_yield(NULL);
13834 #endif
13835 #endif
13836 #endif
13837 }
13838 EOP
13839 : see if sched_yield exists
13840 set try -DSCHED_YIELD
13841 if eval $compile; then
13842     val="$define"
13843     sched_yield='sched_yield()'
13844 else
13845     val="$undef"
13846 fi
13847 case "$usethreads" in
13848 $define)
13849         case "$val" in
13850         $define) echo 'sched_yield() found.' >&4        ;;
13851         *)       echo 'sched_yield() NOT found.' >&4    ;;
13852         esac
13853 esac
13854 set d_sched_yield
13855 eval $setvar
13856
13857 : see if pthread_yield exists
13858 set try -DPTHREAD_YIELD
13859 if eval $compile; then
13860     val="$define"
13861     case "$sched_yield" in
13862     '') sched_yield='pthread_yield()' ;;
13863     esac
13864 else
13865     set try -DPTHREAD_YIELD_NULL
13866     if eval $compile; then
13867         val="$define"
13868         case "$sched_yield" in
13869         '') sched_yield='pthread_yield(NULL)' ;;
13870         esac
13871     else
13872         val="$undef"
13873     fi
13874 fi
13875 case "$usethreads" in
13876 $define)
13877         case "$val" in
13878         $define) echo 'pthread_yield() found.' >&4      ;;
13879         *)       echo 'pthread_yield() NOT found.' >&4  ;;
13880         esac
13881         ;;
13882 esac
13883 set d_pthread_yield
13884 eval $setvar
13885
13886 case "$sched_yield" in
13887 '') sched_yield=undef ;;
13888 esac
13889
13890 $rm -f try try.*
13891
13892 : see if random_r exists
13893 set random_r d_random_r
13894 eval $inlibc
13895 case "$d_random_r" in
13896 "$define")
13897         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
13898         case "$d_random_r_proto:$usethreads" in
13899         ":define")      d_random_r_proto=define
13900                 set d_random_r_proto random_r $hdrs
13901                 eval $hasproto ;;
13902         *)      ;;
13903         esac
13904         case "$d_random_r_proto" in
13905         define)
13906         case "$random_r_proto" in
13907         ''|0) try='int random_r(int*, struct random_data*);'
13908         ./protochk "extern $try" $hdrs && random_r_proto=I_TS ;;
13909         esac
13910         case "$random_r_proto" in
13911         ''|0)   d_random_r=undef
13912                 random_r_proto=0
13913                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
13914         * )     case "$random_r_proto" in
13915                 REENTRANT_PROTO*) ;;
13916                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
13917                 esac
13918                 echo "Prototype: $try" ;;
13919         esac
13920         ;;
13921         *)      case "$usethreads" in
13922                 define) echo "random_r has no prototype, not using it." >&4 ;;
13923                 esac
13924                 d_random_r=undef
13925                 random_r_proto=0
13926                 ;;
13927         esac
13928         ;;
13929 *)      random_r_proto=0
13930         ;;
13931 esac
13932
13933 : see if readdir and friends exist
13934 set readdir d_readdir
13935 eval $inlibc
13936 set seekdir d_seekdir
13937 eval $inlibc
13938 set telldir d_telldir
13939 eval $inlibc
13940 set rewinddir d_rewinddir
13941 eval $inlibc
13942
13943 : see if readdir64_r exists
13944 set readdir64_r d_readdir64_r
13945 eval $inlibc
13946 case "$d_readdir64_r" in
13947 "$define")
13948         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
13949         case "$d_readdir64_r_proto:$usethreads" in
13950         ":define")      d_readdir64_r_proto=define
13951                 set d_readdir64_r_proto readdir64_r $hdrs
13952                 eval $hasproto ;;
13953         *)      ;;
13954         esac
13955         case "$d_readdir64_r_proto" in
13956         define)
13957         case "$readdir64_r_proto" in
13958         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
13959         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
13960         esac
13961         case "$readdir64_r_proto" in
13962         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
13963         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
13964         esac
13965         case "$readdir64_r_proto" in
13966         ''|0)   d_readdir64_r=undef
13967                 readdir64_r_proto=0
13968                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
13969         * )     case "$readdir64_r_proto" in
13970                 REENTRANT_PROTO*) ;;
13971                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
13972                 esac
13973                 echo "Prototype: $try" ;;
13974         esac
13975         ;;
13976         *)      case "$usethreads" in
13977                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
13978                 esac
13979                 d_readdir64_r=undef
13980                 readdir64_r_proto=0
13981                 ;;
13982         esac
13983         ;;
13984 *)      readdir64_r_proto=0
13985         ;;
13986 esac
13987
13988 : see if readdir_r exists
13989 set readdir_r d_readdir_r
13990 eval $inlibc
13991 case "$d_readdir_r" in
13992 "$define")
13993         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
13994         case "$d_readdir_r_proto:$usethreads" in
13995         ":define")      d_readdir_r_proto=define
13996                 set d_readdir_r_proto readdir_r $hdrs
13997                 eval $hasproto ;;
13998         *)      ;;
13999         esac
14000         case "$d_readdir_r_proto" in
14001         define)
14002         case "$readdir_r_proto" in
14003         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14004         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14005         esac
14006         case "$readdir_r_proto" in
14007         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14008         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14009         esac
14010         case "$readdir_r_proto" in
14011         ''|0)   d_readdir_r=undef
14012                 readdir_r_proto=0
14013                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14014         * )     case "$readdir_r_proto" in
14015                 REENTRANT_PROTO*) ;;
14016                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14017                 esac
14018                 echo "Prototype: $try" ;;
14019         esac
14020         ;;
14021         *)      case "$usethreads" in
14022                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14023                 esac
14024                 d_readdir_r=undef
14025                 readdir_r_proto=0
14026                 ;;
14027         esac
14028         ;;
14029 *)      readdir_r_proto=0
14030         ;;
14031 esac
14032
14033 : see if readv exists
14034 set readv d_readv
14035 eval $inlibc
14036
14037 : see if recvmsg exists
14038 set recvmsg d_recvmsg
14039 eval $inlibc
14040
14041 : see if rename exists
14042 set rename d_rename
14043 eval $inlibc
14044
14045 : see if rmdir exists
14046 set rmdir d_rmdir
14047 eval $inlibc
14048
14049 : see if memory.h is available.
14050 val=''
14051 set memory.h val
14052 eval $inhdr
14053
14054 : See if it conflicts with string.h
14055 case "$val" in
14056 $define)
14057         case "$strings" in
14058         '') ;;
14059         *)
14060                 $cppstdin $cppflags $cppminus < $strings > mem.h
14061                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
14062                         echo " "
14063                         echo "We won't be including <memory.h>."
14064                         val="$undef"
14065                 fi
14066                 $rm -f mem.h
14067                 ;;
14068         esac
14069 esac
14070 set i_memory
14071 eval $setvar
14072
14073 : can bcopy handle overlapping blocks?
14074 echo " "
14075 val="$undef"
14076 case "$d_memmove" in
14077 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
14078 *)      case "$d_bcopy" in
14079         "$define")
14080                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
14081                 $cat >try.c <<EOCP
14082 #$i_memory I_MEMORY
14083 #$i_stdlib I_STDLIB
14084 #$i_string I_STRING
14085 #$i_unistd I_UNISTD
14086 EOCP
14087         $cat >>try.c <<'EOCP'
14088 #include <stdio.h>
14089 #ifdef I_MEMORY
14090 #  include <memory.h>
14091 #endif
14092 #ifdef I_STDLIB
14093 #  include <stdlib.h>
14094 #endif
14095 #ifdef I_STRING
14096 #  include <string.h>
14097 #else
14098 #  include <strings.h>
14099 #endif
14100 #ifdef I_UNISTD
14101 #  include <unistd.h>  /* Needed for NetBSD */
14102 #endif
14103 int main()
14104 {
14105 char buf[128], abc[128];
14106 char *b;
14107 int len;
14108 int off;
14109 int align;
14110
14111 /* Copy "abcde..." string to char abc[] so that gcc doesn't
14112    try to store the string in read-only memory. */
14113 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
14114
14115 for (align = 7; align >= 0; align--) {
14116         for (len = 36; len; len--) {
14117                 b = buf+align;
14118                 bcopy(abc, b, len);
14119                 for (off = 1; off <= len; off++) {
14120                         bcopy(b, b+off, len);
14121                         bcopy(b+off, b, len);
14122                         if (bcmp(b, abc, len))
14123                                 exit(1);
14124                 }
14125         }
14126 }
14127 exit(0);
14128 }
14129 EOCP
14130                 set try
14131                 if eval $compile_ok; then
14132                         if ./try 2>/dev/null; then
14133                                 echo "Yes, it can."
14134                                 val="$define"
14135                         else
14136                                 echo "It can't, sorry."
14137                         fi
14138                 else
14139                         echo "(I can't compile the test program, so we'll assume not...)"
14140                 fi
14141                 ;;
14142         esac
14143         $rm -f try.* try core
14144         ;;
14145 esac
14146 set d_safebcpy
14147 eval $setvar
14148
14149 : can memcpy handle overlapping blocks?
14150 echo " "
14151 val="$undef"
14152 case "$d_memmove" in
14153 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
14154 *)      case "$d_memcpy" in
14155         "$define")
14156                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
14157                 $cat >try.c <<EOCP
14158 #$i_memory I_MEMORY
14159 #$i_stdlib I_STDLIB
14160 #$i_string I_STRING
14161 #$i_unistd I_UNISTD
14162 EOCP
14163         $cat >>try.c <<'EOCP'
14164 #include <stdio.h>
14165 #ifdef I_MEMORY
14166 #  include <memory.h>
14167 #endif
14168 #ifdef I_STDLIB
14169 #  include <stdlib.h>
14170 #endif
14171 #ifdef I_STRING
14172 #  include <string.h>
14173 #else
14174 #  include <strings.h>
14175 #endif
14176 #ifdef I_UNISTD
14177 #  include <unistd.h>  /* Needed for NetBSD */
14178 #endif
14179 int main()
14180 {
14181 char buf[128], abc[128];
14182 char *b;
14183 int len;
14184 int off;
14185 int align;
14186
14187 /* Copy "abcde..." string to char abc[] so that gcc doesn't
14188    try to store the string in read-only memory. */
14189 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
14190
14191 for (align = 7; align >= 0; align--) {
14192         for (len = 36; len; len--) {
14193                 b = buf+align;
14194                 memcpy(b, abc, len);
14195                 for (off = 1; off <= len; off++) {
14196                         memcpy(b+off, b, len);
14197                         memcpy(b, b+off, len);
14198                         if (memcmp(b, abc, len))
14199                                 exit(1);
14200                 }
14201         }
14202 }
14203 exit(0);
14204 }
14205 EOCP
14206                 set try
14207                 if eval $compile_ok; then
14208                         if ./try 2>/dev/null; then
14209                                 echo "Yes, it can."
14210                                 val="$define"
14211                         else
14212                                 echo "It can't, sorry."
14213                         fi
14214                 else
14215                         echo "(I can't compile the test program, so we'll assume not...)"
14216                 fi
14217                 ;;
14218         esac
14219         $rm -f try.* try core
14220         ;;
14221 esac
14222 set d_safemcpy
14223 eval $setvar
14224
14225 : can memcmp be trusted to compare relative magnitude?
14226 val="$undef"
14227 case "$d_memcmp" in
14228 "$define")
14229         echo " "
14230         echo "Checking if your memcmp() can compare relative magnitude..." >&4
14231         $cat >try.c <<EOCP
14232 #$i_memory I_MEMORY
14233 #$i_stdlib I_STDLIB
14234 #$i_string I_STRING
14235 #$i_unistd I_UNISTD
14236 EOCP
14237         $cat >>try.c <<'EOCP'
14238 #include <stdio.h>
14239 #ifdef I_MEMORY
14240 #  include <memory.h>
14241 #endif
14242 #ifdef I_STDLIB
14243 #  include <stdlib.h>
14244 #endif
14245 #ifdef I_STRING
14246 #  include <string.h>
14247 #else
14248 #  include <strings.h>
14249 #endif
14250 #ifdef I_UNISTD
14251 #  include <unistd.h>  /* Needed for NetBSD */
14252 #endif
14253 int main()
14254 {
14255 char a = -1;
14256 char b = 0;
14257 if ((a < b) && memcmp(&a, &b, 1) < 0)
14258         exit(1);
14259 exit(0);
14260 }
14261 EOCP
14262         set try
14263         if eval $compile_ok; then
14264                 if $run ./try 2>/dev/null; then
14265                         echo "Yes, it can."
14266                         val="$define"
14267                 else
14268                         echo "No, it can't (it uses signed chars)."
14269                 fi
14270         else
14271                 echo "(I can't compile the test program, so we'll assume not...)"
14272         fi
14273         ;;
14274 esac
14275 $rm -f try.* try core
14276 set d_sanemcmp
14277 eval $setvar
14278
14279 : see if prototype for sbrk is available
14280 echo " "
14281 set d_sbrkproto sbrk $i_unistd unistd.h
14282 eval $hasproto
14283
14284 : see if select exists
14285 set select d_select
14286 eval $inlibc
14287
14288 : see if semctl exists
14289 set semctl d_semctl
14290 eval $inlibc
14291
14292 : see if semget exists
14293 set semget d_semget
14294 eval $inlibc
14295
14296 : see if semop exists
14297 set semop d_semop
14298 eval $inlibc
14299
14300 : see how much of the 'sem*(2)' library is present.
14301 h_sem=true
14302 echo " "
14303 case "$d_semctl$d_semget$d_semop" in
14304 *"$undef"*) h_sem=false;;
14305 esac
14306 case "$osname" in
14307 freebsd)
14308     case "`ipcs 2>&1`" in
14309     "SVID messages"*"not configured"*)
14310         echo "Your $osname does not have the sem*(2) configured." >&4
14311         h_sem=false
14312         val="$undef"
14313         set semctl d_semctl
14314         eval $setvar
14315         set semget d_semget
14316         eval $setvar
14317         set semop d_semop
14318         eval $setvar
14319         ;;
14320     esac
14321     ;;
14322 esac
14323 : we could also check for sys/ipc.h ...
14324 if $h_sem && $test `./findhdr sys/sem.h`; then
14325         echo "You have the full sem*(2) library." >&4
14326         val="$define"
14327 else
14328         echo "You don't have the full sem*(2) library." >&4
14329         val="$undef"
14330 fi
14331 set d_sem
14332 eval $setvar
14333
14334 : see whether sys/sem.h defines union semun
14335 echo " "
14336 $cat > try.c <<'END'
14337 #include <sys/types.h>
14338 #include <sys/ipc.h>
14339 #include <sys/sem.h>
14340 int main () { union semun semun; semun.buf = 0; }
14341 END
14342 set try
14343 if eval $compile; then
14344     echo "You have union semun in <sys/sem.h>." >&4
14345     val="$define"
14346 else
14347     echo "You do not have union semun in <sys/sem.h>." >&4
14348     val="$undef"
14349 fi
14350 $rm -f try try.c try.h
14351 set d_union_semun
14352 eval $setvar
14353
14354 : see how to do semctl IPC_STAT
14355 case "$d_sem" in
14356 $define)
14357     : see whether semctl IPC_STAT can use union semun
14358     echo " "
14359     $cat > try.h <<END
14360 #ifndef S_IRUSR
14361 #   ifdef S_IREAD
14362 #       define S_IRUSR S_IREAD
14363 #       define S_IWUSR S_IWRITE
14364 #       define S_IXUSR S_IEXEC
14365 #   else
14366 #       define S_IRUSR 0400
14367 #       define S_IWUSR 0200
14368 #       define S_IXUSR 0100
14369 #   endif
14370 #   define S_IRGRP (S_IRUSR>>3)
14371 #   define S_IWGRP (S_IWUSR>>3)
14372 #   define S_IXGRP (S_IXUSR>>3)
14373 #   define S_IROTH (S_IRUSR>>6)
14374 #   define S_IWOTH (S_IWUSR>>6)
14375 #   define S_IXOTH (S_IXUSR>>6)
14376 #endif
14377 #ifndef S_IRWXU
14378 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
14379 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
14380 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
14381 #endif
14382 END
14383
14384     $cat > try.c <<END
14385 #include <sys/types.h>
14386 #include <sys/ipc.h>
14387 #include <sys/sem.h>
14388 #include <sys/stat.h>
14389 #include <stdio.h>
14390 #include <errno.h>
14391 #include "try.h"
14392 #ifndef errno
14393 extern int errno;
14394 #endif
14395 #$d_union_semun HAS_UNION_SEMUN
14396 int main() {
14397     union semun
14398 #ifndef HAS_UNION_SEMUN
14399     {
14400         int val;
14401         struct semid_ds *buf;
14402         unsigned short *array;
14403     }
14404 #endif
14405     arg;
14406     int sem, st;
14407
14408 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
14409     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
14410     if (sem > -1) {
14411         struct semid_ds argbuf;
14412         arg.buf = &argbuf;
14413 #       ifdef IPC_STAT
14414         st = semctl(sem, 0, IPC_STAT, arg);
14415         if (st == 0)
14416             printf("semun\n");
14417         else
14418 #       endif /* IPC_STAT */
14419             printf("semctl IPC_STAT failed: errno = %d\n", errno);
14420 #       ifdef IPC_RMID
14421         if (semctl(sem, 0, IPC_RMID, arg) != 0)
14422 #       endif /* IPC_RMID */
14423             printf("semctl IPC_RMID failed: errno = %d\n", errno);
14424     } else
14425 #endif /* IPC_PRIVATE && ... */
14426         printf("semget failed: errno = %d\n", errno);
14427   return 0;
14428 }
14429 END
14430     val="$undef"
14431     set try
14432     if eval $compile; then
14433         xxx=`$run ./try`
14434         case "$xxx" in
14435         semun) val="$define" ;;
14436         esac
14437     fi
14438     $rm -f try try.c
14439     set d_semctl_semun
14440     eval $setvar
14441     case "$d_semctl_semun" in
14442     $define)
14443         echo "You can use union semun for semctl IPC_STAT." >&4
14444         also='also'
14445         ;;
14446     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
14447         also=''
14448         ;;
14449     esac
14450
14451     : see whether semctl IPC_STAT can use struct semid_ds pointer
14452     $cat > try.c <<'END'
14453 #include <sys/types.h>
14454 #include <sys/ipc.h>
14455 #include <sys/sem.h>
14456 #include <sys/stat.h>
14457 #include "try.h"
14458 #include <stdio.h>
14459 #include <errno.h>
14460 #ifndef errno
14461 extern int errno;
14462 #endif
14463 int main() {
14464     struct semid_ds arg;
14465     int sem, st;
14466
14467 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
14468     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
14469     if (sem > -1) {
14470 #       ifdef IPC_STAT
14471         st = semctl(sem, 0, IPC_STAT, &arg);
14472         if (st == 0)
14473             printf("semid_ds\n");
14474         else
14475 #       endif /* IPC_STAT */
14476             printf("semctl IPC_STAT failed: errno = %d\n", errno);
14477 #       ifdef IPC_RMID
14478         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
14479 #       endif /* IPC_RMID */
14480             printf("semctl IPC_RMID failed: errno = %d\n", errno);
14481     } else
14482 #endif /* IPC_PRIVATE && ... */
14483         printf("semget failed: errno = %d\n", errno);
14484
14485     return 0;
14486 }
14487 END
14488     val="$undef"
14489     set try
14490     if eval $compile; then
14491         xxx=`$run ./try`
14492         case "$xxx" in
14493         semid_ds) val="$define" ;;
14494         esac
14495     fi
14496     $rm -f try try.c
14497     set d_semctl_semid_ds
14498     eval $setvar
14499     case "$d_semctl_semid_ds" in
14500     $define)
14501         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
14502         ;;
14503     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
14504         ;;
14505     esac
14506     $rm -f try.h
14507     ;;
14508 *)  val="$undef"
14509
14510     # We do not have the full sem*(2) library, so assume we can not
14511     # use either.
14512
14513     set d_semctl_semun
14514     eval $setvar
14515
14516     set d_semctl_semid_ds
14517     eval $setvar
14518     ;;
14519 esac
14520
14521 : see if sendmsg exists
14522 set sendmsg d_sendmsg
14523 eval $inlibc
14524
14525 : see if setegid exists
14526 set setegid d_setegid
14527 eval $inlibc
14528
14529 : see if seteuid exists
14530 set seteuid d_seteuid
14531 eval $inlibc
14532
14533 : see if setgrent exists
14534 set setgrent d_setgrent
14535 eval $inlibc
14536
14537 : see if setgrent_r exists
14538 set setgrent_r d_setgrent_r
14539 eval $inlibc
14540 case "$d_setgrent_r" in
14541 "$define")
14542         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
14543         case "$d_setgrent_r_proto:$usethreads" in
14544         ":define")      d_setgrent_r_proto=define
14545                 set d_setgrent_r_proto setgrent_r $hdrs
14546                 eval $hasproto ;;
14547         *)      ;;
14548         esac
14549         case "$d_setgrent_r_proto" in
14550         define)
14551         case "$setgrent_r_proto" in
14552         ''|0) try='int setgrent_r(FILE**);'
14553         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
14554         esac
14555         case "$setgrent_r_proto" in
14556         ''|0) try='void setgrent_r(FILE**);'
14557         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
14558         esac
14559         case "$setgrent_r_proto" in
14560         ''|0)   d_setgrent_r=undef
14561                 setgrent_r_proto=0
14562                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
14563         * )     case "$setgrent_r_proto" in
14564                 REENTRANT_PROTO*) ;;
14565                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
14566                 esac
14567                 echo "Prototype: $try" ;;
14568         esac
14569         ;;
14570         *)      case "$usethreads" in
14571                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
14572                 esac
14573                 d_setgrent_r=undef
14574                 setgrent_r_proto=0
14575                 ;;
14576         esac
14577         ;;
14578 *)      setgrent_r_proto=0
14579         ;;
14580 esac
14581
14582 : see if sethostent exists
14583 set sethostent d_sethent
14584 eval $inlibc
14585
14586 : see if sethostent_r exists
14587 set sethostent_r d_sethostent_r
14588 eval $inlibc
14589 case "$d_sethostent_r" in
14590 "$define")
14591         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14592         case "$d_sethostent_r_proto:$usethreads" in
14593         ":define")      d_sethostent_r_proto=define
14594                 set d_sethostent_r_proto sethostent_r $hdrs
14595                 eval $hasproto ;;
14596         *)      ;;
14597         esac
14598         case "$d_sethostent_r_proto" in
14599         define)
14600         case "$sethostent_r_proto" in
14601         ''|0) try='int sethostent_r(int, struct hostent_data*);'
14602         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
14603         esac
14604         case "$sethostent_r_proto" in
14605         ''|0) try='void sethostent_r(int, struct hostent_data*);'
14606         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
14607         esac
14608         case "$sethostent_r_proto" in
14609         ''|0)   d_sethostent_r=undef
14610                 sethostent_r_proto=0
14611                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
14612         * )     case "$sethostent_r_proto" in
14613                 REENTRANT_PROTO*) ;;
14614                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
14615                 esac
14616                 echo "Prototype: $try" ;;
14617         esac
14618         ;;
14619         *)      case "$usethreads" in
14620                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
14621                 esac
14622                 d_sethostent_r=undef
14623                 sethostent_r_proto=0
14624                 ;;
14625         esac
14626         ;;
14627 *)      sethostent_r_proto=0
14628         ;;
14629 esac
14630
14631 : see if setitimer exists
14632 set setitimer d_setitimer
14633 eval $inlibc
14634
14635 : see if setlinebuf exists
14636 set setlinebuf d_setlinebuf
14637 eval $inlibc
14638
14639 : see if setlocale exists
14640 set setlocale d_setlocale
14641 eval $inlibc
14642
14643 : see if locale.h is available
14644 set locale.h i_locale
14645 eval $inhdr
14646
14647 : see if setlocale_r exists
14648 set setlocale_r d_setlocale_r
14649 eval $inlibc
14650 case "$d_setlocale_r" in
14651 "$define")
14652         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
14653         case "$d_setlocale_r_proto:$usethreads" in
14654         ":define")      d_setlocale_r_proto=define
14655                 set d_setlocale_r_proto setlocale_r $hdrs
14656                 eval $hasproto ;;
14657         *)      ;;
14658         esac
14659         case "$d_setlocale_r_proto" in
14660         define)
14661         case "$setlocale_r_proto" in
14662         ''|0) try='int setlocale_r(int, const char*, char*, int);'
14663         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
14664         esac
14665         case "$setlocale_r_proto" in
14666         ''|0)   d_setlocale_r=undef
14667                 setlocale_r_proto=0
14668                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
14669         * )     case "$setlocale_r_proto" in
14670                 REENTRANT_PROTO*) ;;
14671                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
14672                 esac
14673                 echo "Prototype: $try" ;;
14674         esac
14675         ;;
14676         *)      case "$usethreads" in
14677                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
14678                 esac
14679                 d_setlocale_r=undef
14680                 setlocale_r_proto=0
14681                 ;;
14682         esac
14683         ;;
14684 *)      setlocale_r_proto=0
14685         ;;
14686 esac
14687
14688 : see if setnetent exists
14689 set setnetent d_setnent
14690 eval $inlibc
14691
14692 : see if setnetent_r exists
14693 set setnetent_r d_setnetent_r
14694 eval $inlibc
14695 case "$d_setnetent_r" in
14696 "$define")
14697         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14698         case "$d_setnetent_r_proto:$usethreads" in
14699         ":define")      d_setnetent_r_proto=define
14700                 set d_setnetent_r_proto setnetent_r $hdrs
14701                 eval $hasproto ;;
14702         *)      ;;
14703         esac
14704         case "$d_setnetent_r_proto" in
14705         define)
14706         case "$setnetent_r_proto" in
14707         ''|0) try='int setnetent_r(int, struct netent_data*);'
14708         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
14709         esac
14710         case "$setnetent_r_proto" in
14711         ''|0) try='void setnetent_r(int, struct netent_data*);'
14712         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
14713         esac
14714         case "$setnetent_r_proto" in
14715         ''|0)   d_setnetent_r=undef
14716                 setnetent_r_proto=0
14717                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
14718         * )     case "$setnetent_r_proto" in
14719                 REENTRANT_PROTO*) ;;
14720                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
14721                 esac
14722                 echo "Prototype: $try" ;;
14723         esac
14724         ;;
14725         *)      case "$usethreads" in
14726                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
14727                 esac
14728                 d_setnetent_r=undef
14729                 setnetent_r_proto=0
14730                 ;;
14731         esac
14732         ;;
14733 *)      setnetent_r_proto=0
14734         ;;
14735 esac
14736
14737 : see if setprotoent exists
14738 set setprotoent d_setpent
14739 eval $inlibc
14740
14741 : see if setpgid exists
14742 set setpgid d_setpgid
14743 eval $inlibc
14744
14745 : see if setpgrp2 exists
14746 set setpgrp2 d_setpgrp2
14747 eval $inlibc
14748
14749 : see if setpriority exists
14750 set setpriority d_setprior
14751 eval $inlibc
14752
14753 : see if setproctitle exists
14754 set setproctitle d_setproctitle
14755 eval $inlibc
14756
14757 : see if setprotoent_r exists
14758 set setprotoent_r d_setprotoent_r
14759 eval $inlibc
14760 case "$d_setprotoent_r" in
14761 "$define")
14762         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14763         case "$d_setprotoent_r_proto:$usethreads" in
14764         ":define")      d_setprotoent_r_proto=define
14765                 set d_setprotoent_r_proto setprotoent_r $hdrs
14766                 eval $hasproto ;;
14767         *)      ;;
14768         esac
14769         case "$d_setprotoent_r_proto" in
14770         define)
14771         case "$setprotoent_r_proto" in
14772         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
14773         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
14774         esac
14775         case "$setprotoent_r_proto" in
14776         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
14777         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
14778         esac
14779         case "$setprotoent_r_proto" in
14780         ''|0)   d_setprotoent_r=undef
14781                 setprotoent_r_proto=0
14782                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
14783         * )     case "$setprotoent_r_proto" in
14784                 REENTRANT_PROTO*) ;;
14785                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
14786                 esac
14787                 echo "Prototype: $try" ;;
14788         esac
14789         ;;
14790         *)      case "$usethreads" in
14791                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
14792                 esac
14793                 d_setprotoent_r=undef
14794                 setprotoent_r_proto=0
14795                 ;;
14796         esac
14797         ;;
14798 *)      setprotoent_r_proto=0
14799         ;;
14800 esac
14801
14802 : see if setpwent exists
14803 set setpwent d_setpwent
14804 eval $inlibc
14805
14806 : see if setpwent_r exists
14807 set setpwent_r d_setpwent_r
14808 eval $inlibc
14809 case "$d_setpwent_r" in
14810 "$define")
14811         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
14812         case "$d_setpwent_r_proto:$usethreads" in
14813         ":define")      d_setpwent_r_proto=define
14814                 set d_setpwent_r_proto setpwent_r $hdrs
14815                 eval $hasproto ;;
14816         *)      ;;
14817         esac
14818         case "$d_setpwent_r_proto" in
14819         define)
14820         case "$setpwent_r_proto" in
14821         ''|0) try='int setpwent_r(FILE**);'
14822         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
14823         esac
14824         case "$setpwent_r_proto" in
14825         ''|0) try='void setpwent_r(FILE**);'
14826         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
14827         esac
14828         case "$setpwent_r_proto" in
14829         ''|0)   d_setpwent_r=undef
14830                 setpwent_r_proto=0
14831                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
14832         * )     case "$setpwent_r_proto" in
14833                 REENTRANT_PROTO*) ;;
14834                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
14835                 esac
14836                 echo "Prototype: $try" ;;
14837         esac
14838         ;;
14839         *)      case "$usethreads" in
14840                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
14841                 esac
14842                 d_setpwent_r=undef
14843                 setpwent_r_proto=0
14844                 ;;
14845         esac
14846         ;;
14847 *)      setpwent_r_proto=0
14848         ;;
14849 esac
14850
14851 : see if setregid exists
14852 set setregid d_setregid
14853 eval $inlibc
14854 set setresgid d_setresgid
14855 eval $inlibc
14856
14857 : see if setreuid exists
14858 set setreuid d_setreuid
14859 eval $inlibc
14860 set setresuid d_setresuid
14861 eval $inlibc
14862
14863 : see if setrgid exists
14864 set setrgid d_setrgid
14865 eval $inlibc
14866
14867 : see if setruid exists
14868 set setruid d_setruid
14869 eval $inlibc
14870
14871 : see if setservent exists
14872 set setservent d_setsent
14873 eval $inlibc
14874
14875 : see if setservent_r exists
14876 set setservent_r d_setservent_r
14877 eval $inlibc
14878 case "$d_setservent_r" in
14879 "$define")
14880         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14881         case "$d_setservent_r_proto:$usethreads" in
14882         ":define")      d_setservent_r_proto=define
14883                 set d_setservent_r_proto setservent_r $hdrs
14884                 eval $hasproto ;;
14885         *)      ;;
14886         esac
14887         case "$d_setservent_r_proto" in
14888         define)
14889         case "$setservent_r_proto" in
14890         ''|0) try='int setservent_r(int, struct servent_data*);'
14891         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
14892         esac
14893         case "$setservent_r_proto" in
14894         ''|0) try='void setservent_r(int, struct servent_data*);'
14895         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
14896         esac
14897         case "$setservent_r_proto" in
14898         ''|0)   d_setservent_r=undef
14899                 setservent_r_proto=0
14900                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
14901         * )     case "$setservent_r_proto" in
14902                 REENTRANT_PROTO*) ;;
14903                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
14904                 esac
14905                 echo "Prototype: $try" ;;
14906         esac
14907         ;;
14908         *)      case "$usethreads" in
14909                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
14910                 esac
14911                 d_setservent_r=undef
14912                 setservent_r_proto=0
14913                 ;;
14914         esac
14915         ;;
14916 *)      setservent_r_proto=0
14917         ;;
14918 esac
14919
14920 : see if setsid exists
14921 set setsid d_setsid
14922 eval $inlibc
14923
14924 : see if setvbuf exists
14925 set setvbuf d_setvbuf
14926 eval $inlibc
14927
14928 : see if sfio.h is available
14929 set sfio.h i_sfio
14930 eval $inhdr
14931
14932
14933 : see if sfio library is available
14934 case "$i_sfio" in
14935 $define)
14936         val=''
14937         set sfreserve val
14938         eval $inlibc
14939         ;;
14940 *)
14941         val="$undef"
14942         ;;
14943 esac
14944 : Ok, but do we want to use it.
14945 case "$val" in
14946 $define)
14947         case "$usesfio" in
14948         true|$define|[yY]*) dflt='y';;
14949         *) dflt='n';;
14950         esac
14951         echo "$package can use the sfio library, but it is experimental."
14952         case "$useperlio" in
14953         "$undef")
14954             echo "For sfio also the PerlIO abstraction layer is needed."
14955             echo "Earlier you said you wouldn't want that."
14956             ;;
14957         esac
14958         rp="You seem to have sfio available, do you want to try using it?"
14959         . ./myread
14960         case "$ans" in
14961         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
14962                 useperlio="$define"
14963                 val="$define"
14964                 ;;
14965         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
14966                 val="$undef"
14967                 ;;
14968         esac
14969         ;;
14970 *)      case "$usesfio" in
14971         true|$define|[yY]*)
14972                 echo "Sorry, cannot find sfio on this machine." >&4
14973                 echo "Ignoring your setting of usesfio=$usesfio." >&4
14974                 val="$undef"
14975                 ;;
14976         esac
14977         ;;
14978 esac
14979 set d_sfio
14980 eval $setvar
14981 case "$d_sfio" in
14982 $define) usesfio='true';;
14983 *) usesfio='false';;
14984 esac
14985 case "$d_sfio" in
14986 $define) ;;
14987 *)      : Remove sfio from list of libraries to use
14988         case "$libs" in
14989         *-lsfio*)
14990                 echo "Removing unneeded -lsfio from library list" >&4
14991                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
14992                 shift
14993                 libs="$*"
14994                 echo "libs = $libs" >&4
14995                 ;;
14996         esac
14997 ;;
14998 esac
14999
15000
15001 : see if shmctl exists
15002 set shmctl d_shmctl
15003 eval $inlibc
15004
15005 : see if shmget exists
15006 set shmget d_shmget
15007 eval $inlibc
15008
15009 : see if shmat exists
15010 set shmat d_shmat
15011 eval $inlibc
15012 : see what shmat returns
15013 case "$d_shmat" in
15014 "$define")
15015         $cat >shmat.c <<'END'
15016 #include <sys/shm.h>
15017 void *shmat();
15018 END
15019         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15020                 shmattype='void *'
15021         else
15022                 shmattype='char *'
15023         fi
15024         echo "and it returns ($shmattype)." >&4
15025         : see if a prototype for shmat is available
15026         xxx=`./findhdr sys/shm.h`
15027         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15028         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15029                 val="$define"
15030         else
15031                 val="$undef"
15032         fi
15033         $rm -f shmat.[co]
15034         ;;
15035 *)
15036         val="$undef"
15037         ;;
15038 esac
15039 set d_shmatprototype
15040 eval $setvar
15041
15042 : see if shmdt exists
15043 set shmdt d_shmdt
15044 eval $inlibc
15045
15046 : see how much of the 'shm*(2)' library is present.
15047 h_shm=true
15048 echo " "
15049 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
15050 *"$undef"*) h_shm=false;;
15051 esac
15052 case "$osname" in
15053 freebsd)
15054     case "`ipcs 2>&1`" in
15055     "SVID shared memory"*"not configured"*)
15056         echo "Your $osname does not have the shm*(2) configured." >&4
15057         h_shm=false
15058         val="$undef"
15059         set shmctl d_shmctl
15060         evat $setvar
15061         set shmget d_shmget
15062         evat $setvar
15063         set shmat d_shmat
15064         evat $setvar
15065         set shmdt d_shmdt
15066         evat $setvar
15067         ;;
15068     esac
15069     ;;
15070 esac
15071 : we could also check for sys/ipc.h ...
15072 if $h_shm && $test `./findhdr sys/shm.h`; then
15073         echo "You have the full shm*(2) library." >&4
15074         val="$define"
15075 else
15076         echo "You don't have the full shm*(2) library." >&4
15077         val="$undef"
15078 fi
15079 set d_shm
15080 eval $setvar
15081
15082 echo " "
15083 : see if we have sigaction
15084 if set sigaction val -f d_sigaction; eval $csym; $val; then
15085         echo 'sigaction() found.' >&4
15086         $cat > try.c <<'EOP'
15087 #include <stdio.h>
15088 #include <sys/types.h>
15089 #include <signal.h>
15090 int main()
15091 {
15092     struct sigaction act, oact;
15093     act.sa_flags = 0;
15094     oact.sa_handler = 0;
15095     /* so that act and oact are used */
15096     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
15097 }
15098 EOP
15099         set try
15100         if eval $compile_ok; then
15101                 val="$define"
15102         else
15103                 echo "But you don't seem to have a useable struct sigaction." >&4
15104                 val="$undef"
15105         fi
15106 else
15107         echo 'sigaction NOT found.' >&4
15108         val="$undef"
15109 fi
15110 set d_sigaction; eval $setvar
15111 $rm -f try try$_o try.c
15112
15113 : see if sigprocmask exists
15114 set sigprocmask d_sigprocmask
15115 eval $inlibc
15116
15117 : see if sigsetjmp exists
15118 echo " "
15119 case "$d_sigsetjmp" in
15120 '')
15121         $cat >try.c <<'EOP'
15122 #include <setjmp.h>
15123 sigjmp_buf env;
15124 int set = 1;
15125 int main()
15126 {
15127         if (sigsetjmp(env,1))
15128                 exit(set);
15129         set = 0;
15130         siglongjmp(env, 1);
15131         exit(1);
15132 }
15133 EOP
15134         set try
15135         if eval $compile; then
15136                 if $run ./try >/dev/null 2>&1; then
15137                         echo "POSIX sigsetjmp found." >&4
15138                         val="$define"
15139                 else
15140                         $cat >&4 <<EOM
15141 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
15142 I'll ignore them.
15143 EOM
15144                         val="$undef"
15145                 fi
15146         else
15147                 echo "sigsetjmp not found." >&4
15148                 val="$undef"
15149         fi
15150         ;;
15151 *) val="$d_sigsetjmp"
15152         case "$d_sigsetjmp" in
15153         $define) echo "POSIX sigsetjmp found." >&4;;
15154         $undef) echo "sigsetjmp not found." >&4;;
15155         esac
15156         ;;
15157 esac
15158 set d_sigsetjmp
15159 eval $setvar
15160 $rm -f try.c try
15161
15162 : see if sockatmark exists
15163 set sockatmark d_sockatmark
15164 eval $inlibc
15165
15166 : see if prototype for sockatmark is available
15167 echo " "
15168 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
15169 eval $hasproto
15170
15171 : see if socks5_init exists
15172 set socks5_init d_socks5_init
15173 eval $inlibc
15174
15175 : see if srand48_r exists
15176 set srand48_r d_srand48_r
15177 eval $inlibc
15178 case "$d_srand48_r" in
15179 "$define")
15180         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
15181         case "$d_srand48_r_proto:$usethreads" in
15182         ":define")      d_srand48_r_proto=define
15183                 set d_srand48_r_proto srand48_r $hdrs
15184                 eval $hasproto ;;
15185         *)      ;;
15186         esac
15187         case "$d_srand48_r_proto" in
15188         define)
15189         case "$srand48_r_proto" in
15190         ''|0) try='int srand48_r(long, struct drand48_data*);'
15191         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
15192         esac
15193         case "$srand48_r_proto" in
15194         ''|0)   d_srand48_r=undef
15195                 srand48_r_proto=0
15196                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
15197         * )     case "$srand48_r_proto" in
15198                 REENTRANT_PROTO*) ;;
15199                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
15200                 esac
15201                 echo "Prototype: $try" ;;
15202         esac
15203         ;;
15204         *)      case "$usethreads" in
15205                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
15206                 esac
15207                 d_srand48_r=undef
15208                 srand48_r_proto=0
15209                 ;;
15210         esac
15211         ;;
15212 *)      srand48_r_proto=0
15213         ;;
15214 esac
15215
15216 : see if srandom_r exists
15217 set srandom_r d_srandom_r
15218 eval $inlibc
15219 case "$d_srandom_r" in
15220 "$define")
15221         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
15222         case "$d_srandom_r_proto:$usethreads" in
15223         ":define")      d_srandom_r_proto=define
15224                 set d_srandom_r_proto srandom_r $hdrs
15225                 eval $hasproto ;;
15226         *)      ;;
15227         esac
15228         case "$d_srandom_r_proto" in
15229         define)
15230         case "$srandom_r_proto" in
15231         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
15232         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
15233         esac
15234         case "$srandom_r_proto" in
15235         ''|0)   d_srandom_r=undef
15236                 srandom_r_proto=0
15237                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
15238         * )     case "$srandom_r_proto" in
15239                 REENTRANT_PROTO*) ;;
15240                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
15241                 esac
15242                 echo "Prototype: $try" ;;
15243         esac
15244         ;;
15245         *)      case "$usethreads" in
15246                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
15247                 esac
15248                 d_srandom_r=undef
15249                 srandom_r_proto=0
15250                 ;;
15251         esac
15252         ;;
15253 *)      srandom_r_proto=0
15254         ;;
15255 esac
15256
15257 : see if prototype for setresgid is available
15258 echo " "
15259 set d_sresgproto setresgid $i_unistd unistd.h
15260 eval $hasproto
15261
15262 : see if prototype for setresuid is available
15263 echo " "
15264 set d_sresuproto setresuid $i_unistd unistd.h
15265 eval $hasproto
15266
15267 : see if sys/stat.h is available
15268 set sys/stat.h i_sysstat
15269 eval $inhdr
15270
15271
15272 : see if stat knows about block sizes
15273 echo " "
15274 echo "Checking to see if your struct stat has st_blocks field..." >&4
15275 set d_statblks stat st_blocks $i_sysstat sys/stat.h
15276 eval $hasfield
15277
15278
15279 : see if this is a sys/vfs.h system
15280 set sys/vfs.h i_sysvfs
15281 eval $inhdr
15282
15283
15284 : see if this is a sys/statfs.h system
15285 set sys/statfs.h i_sysstatfs
15286 eval $inhdr
15287
15288
15289 echo " "
15290 echo "Checking to see if your system supports struct statfs..." >&4
15291 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
15292 eval $hasstruct
15293 case "$d_statfs_s" in
15294 "$define")      echo "Yes, it does."   ;;
15295 *)              echo "No, it doesn't." ;;
15296 esac
15297
15298
15299
15300 : see if struct statfs knows about f_flags
15301 case "$d_statfs_s" in
15302 define) 
15303         echo " "
15304         echo "Checking to see if your struct statfs has f_flags field..." >&4
15305         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
15306         eval $hasfield
15307         ;;
15308 *)      val="$undef"
15309         set d_statfs_f_flags
15310         eval $setvar
15311         ;;
15312 esac
15313 case "$d_statfs_f_flags" in
15314 "$define")      echo "Yes, it does."   ;;
15315 *)              echo "No, it doesn't." ;;
15316 esac
15317
15318 : see if _ptr and _cnt from stdio act std
15319 echo " "
15320
15321 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
15322         echo "(Looks like you have stdio.h from BSD.)"
15323         case "$stdio_ptr" in
15324         '') stdio_ptr='((fp)->_p)'
15325                 ptr_lval=$define
15326                 ;;
15327         *)      ptr_lval=$d_stdio_ptr_lval;;
15328         esac
15329         case "$stdio_cnt" in
15330         '') stdio_cnt='((fp)->_r)'
15331                 cnt_lval=$define
15332                 ;;
15333         *)      cnt_lval=$d_stdio_cnt_lval;;
15334         esac
15335         case "$stdio_base" in
15336         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
15337         esac
15338         case "$stdio_bufsiz" in
15339         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
15340         esac
15341 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
15342         echo "(Looks like you have stdio.h from Linux.)"
15343         case "$stdio_ptr" in
15344         '') stdio_ptr='((fp)->_IO_read_ptr)'
15345                 ptr_lval=$define
15346                 ;;
15347         *)      ptr_lval=$d_stdio_ptr_lval;;
15348         esac
15349         case "$stdio_cnt" in
15350         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
15351                 cnt_lval=$undef
15352                 ;;
15353         *)      cnt_lval=$d_stdio_cnt_lval;;
15354         esac
15355         case "$stdio_base" in
15356         '') stdio_base='((fp)->_IO_read_base)';;
15357         esac
15358         case "$stdio_bufsiz" in
15359         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
15360         esac
15361 else
15362         case "$stdio_ptr" in
15363         '') stdio_ptr='((fp)->_ptr)'
15364                 ptr_lval=$define
15365                 ;;
15366         *)      ptr_lval=$d_stdio_ptr_lval;;
15367         esac
15368         case "$stdio_cnt" in
15369         '') stdio_cnt='((fp)->_cnt)'
15370                 cnt_lval=$define
15371                 ;;
15372         *)      cnt_lval=$d_stdio_cnt_lval;;
15373         esac
15374         case "$stdio_base" in
15375         '') stdio_base='((fp)->_base)';;
15376         esac
15377         case "$stdio_bufsiz" in
15378         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
15379         esac
15380 fi
15381
15382 : test whether _ptr and _cnt really work
15383 echo "Checking how std your stdio is..." >&4
15384 $cat >try.c <<EOP
15385 #include <stdio.h>
15386 #define FILE_ptr(fp)    $stdio_ptr
15387 #define FILE_cnt(fp)    $stdio_cnt
15388 int main() {
15389         FILE *fp = fopen("try.c", "r");
15390         char c = getc(fp);
15391         if (
15392                 18 <= FILE_cnt(fp) &&
15393                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
15394         )
15395                 exit(0);
15396         exit(1);
15397 }
15398 EOP
15399 val="$undef"
15400 set try
15401 if eval $compile && $to try.c; then
15402         if $run ./try; then
15403                 echo "Your stdio acts pretty std."
15404                 val="$define"
15405         else
15406                 echo "Your stdio isn't very std."
15407         fi
15408 else
15409         echo "Your stdio doesn't appear very std."
15410 fi
15411 $rm -f try.c try
15412
15413 # glibc 2.2.90 and above apparently change stdio streams so Perl's
15414 # direct buffer manipulation no longer works.  The Configure tests
15415 # should be changed to correctly detect this, but until then,
15416 # the following check should at least let perl compile and run.
15417 # (This quick fix should be updated before 5.8.1.)
15418 # To be defensive, reject all unknown versions, and all versions  > 2.2.9.
15419 # A. Dougherty, June 3, 2002.
15420 case "$d_gnulibc" in
15421 $define)
15422         case "$gnulibc_version" in
15423         2.[01]*)  ;;
15424         2.2) ;;
15425         2.2.[0-9]) ;;
15426         *)  echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
15427                 val="$undef"
15428                 ;;
15429         esac
15430         ;;
15431 esac
15432 set d_stdstdio
15433 eval $setvar
15434
15435 : Can _ptr be used as an lvalue?
15436 case "$d_stdstdio$ptr_lval" in
15437 $define$define) val=$define ;;
15438 *) val=$undef ;;
15439 esac
15440 set d_stdio_ptr_lval
15441 eval $setvar
15442
15443 : Can _cnt be used as an lvalue?
15444 case "$d_stdstdio$cnt_lval" in
15445 $define$define) val=$define ;;
15446 *) val=$undef ;;
15447 esac
15448 set d_stdio_cnt_lval
15449 eval $setvar
15450
15451
15452 : test whether setting _ptr sets _cnt as a side effect
15453 d_stdio_ptr_lval_sets_cnt="$undef"
15454 d_stdio_ptr_lval_nochange_cnt="$undef"
15455 case "$d_stdio_ptr_lval$d_stdstdio" in
15456 $define$define)
15457         echo "Checking to see what happens if we set the stdio ptr..." >&4
15458 $cat >try.c <<EOP
15459 #include <stdio.h>
15460 /* Can we scream? */
15461 /* Eat dust sed :-) */
15462 /* In the buffer space, no one can hear you scream. */
15463 #define FILE_ptr(fp)    $stdio_ptr
15464 #define FILE_cnt(fp)    $stdio_cnt
15465 #include <sys/types.h>
15466 int main() {
15467         FILE *fp = fopen("try.c", "r");
15468         int c;
15469         char *ptr;
15470         size_t cnt;
15471         if (!fp) {
15472             puts("Fail even to read");
15473             exit(1);
15474         }
15475         c = getc(fp); /* Read away the first # */
15476         if (c == EOF) {
15477             puts("Fail even to read");
15478             exit(1);
15479         }
15480         if (!(
15481                 18 <= FILE_cnt(fp) &&
15482                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
15483         )) {
15484                 puts("Fail even to read");
15485                 exit (1);
15486         }
15487         ptr = (char*) FILE_ptr(fp);
15488         cnt = (size_t)FILE_cnt(fp);
15489
15490         FILE_ptr(fp) += 42;
15491
15492         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
15493                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
15494                 exit (1);
15495         }
15496         if (FILE_cnt(fp) <= 20) {
15497                 printf ("Fail (<20 chars to test)");
15498                 exit (1);
15499         }
15500         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
15501                 puts("Fail compare");
15502                 exit (1);
15503         }
15504         if (cnt == FILE_cnt(fp)) {
15505                 puts("Pass_unchanged");
15506                 exit (0);
15507         }       
15508         if (FILE_cnt(fp) == (cnt - 42)) {
15509                 puts("Pass_changed");
15510                 exit (0);
15511         }
15512         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
15513         return 1;
15514
15515 }
15516 EOP
15517         set try
15518         if eval $compile && $to try.c; then
15519                 case `$run ./try` in
15520                 Pass_changed)
15521                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
15522                         d_stdio_ptr_lval_sets_cnt="$define" ;;
15523                 Pass_unchanged)
15524                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
15525                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
15526                 Fail*)
15527                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
15528                 *)
15529                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
15530         esac
15531         else
15532                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
15533         fi
15534         $rm -f try.c try
15535         ;;
15536 esac
15537
15538 : see if _base is also standard
15539 val="$undef"
15540 case "$d_stdstdio" in
15541 $define)
15542         $cat >try.c <<EOP
15543 #include <stdio.h>
15544 #define FILE_base(fp)   $stdio_base
15545 #define FILE_bufsiz(fp) $stdio_bufsiz
15546 int main() {
15547         FILE *fp = fopen("try.c", "r");
15548         char c = getc(fp);
15549         if (
15550                 19 <= FILE_bufsiz(fp) &&
15551                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
15552         )
15553                 exit(0);
15554         exit(1);
15555 }
15556 EOP
15557         set try
15558         if eval $compile && $to try.c; then
15559                 if $run ./try; then
15560                         echo "And its _base field acts std."
15561                         val="$define"
15562                 else
15563                         echo "But its _base field isn't std."
15564                 fi
15565         else
15566                 echo "However, it seems to be lacking the _base field."
15567         fi
15568         $rm -f try.c try
15569         ;;
15570 esac
15571 set d_stdiobase
15572 eval $setvar
15573
15574 $cat >&4 <<EOM
15575 Checking how to access stdio streams by file descriptor number...
15576 EOM
15577 case "$stdio_stream_array" in
15578 '')     $cat >try.c <<EOCP
15579 #include <stdio.h>
15580 int main() {
15581   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
15582     printf("yes\n");
15583 }
15584 EOCP
15585         for s in _iob __iob __sF
15586         do
15587                 set try -DSTDIO_STREAM_ARRAY=$s
15588                 if eval $compile; then
15589                         case "`$run ./try`" in
15590                         yes)    stdio_stream_array=$s; break ;;
15591                         esac
15592                 fi
15593         done
15594         $rm -f try.* try$exe_ext
15595 esac
15596 case "$stdio_stream_array" in
15597 '')     $cat >&4 <<EOM
15598 I can't figure out how to access stdio streams by file descriptor number.
15599 EOM
15600         d_stdio_stream_array="$undef"
15601         ;;
15602 *)      $cat >&4 <<EOM
15603 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
15604 EOM
15605         d_stdio_stream_array="$define"
15606         ;;
15607 esac
15608
15609 : see if strcoll exists
15610 set strcoll d_strcoll
15611 eval $inlibc
15612
15613 : check for structure copying
15614 echo " "
15615 echo "Checking to see if your C compiler can copy structs..." >&4
15616 $cat >try.c <<'EOCP'
15617 main()
15618 {
15619         struct blurfl {
15620                 int dyick;
15621         } foo, bar;
15622
15623         foo = bar;
15624 }
15625 EOCP
15626 if $cc -c try.c >/dev/null 2>&1 ; then
15627         val="$define"
15628         echo "Yup, it can."
15629 else
15630         val="$undef"
15631         echo "Nope, it can't."
15632 fi
15633 set d_strctcpy
15634 eval $setvar
15635 $rm -f try.*
15636
15637 : see if strerror and/or sys_errlist[] exist
15638 echo " "
15639 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
15640     if set strerror val -f d_strerror; eval $csym; $val; then
15641                 echo 'strerror() found.' >&4
15642                 d_strerror="$define"
15643                 d_strerrm='strerror(e)'
15644                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
15645                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
15646                         d_syserrlst="$define"
15647                 else
15648                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
15649                         d_syserrlst="$undef"
15650                 fi
15651     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
15652                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
15653                 echo 'strerror() found in string header.' >&4
15654                 d_strerror="$define"
15655                 d_strerrm='strerror(e)'
15656                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
15657                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
15658                                 d_syserrlst="$define"
15659                 else
15660                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
15661                         d_syserrlst="$undef"
15662                 fi
15663     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
15664                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
15665                 d_strerror="$undef"
15666                 d_syserrlst="$define"
15667                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
15668     else
15669                 echo 'strerror() and sys_errlist[] NOT found.' >&4
15670                 d_strerror="$undef"
15671                 d_syserrlst="$undef"
15672                 d_strerrm='"unknown"'
15673     fi
15674 fi
15675
15676 : see if strerror_r exists
15677 set strerror_r d_strerror_r
15678 eval $inlibc
15679 case "$d_strerror_r" in
15680 "$define")
15681         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
15682         case "$d_strerror_r_proto:$usethreads" in
15683         ":define")      d_strerror_r_proto=define
15684                 set d_strerror_r_proto strerror_r $hdrs
15685                 eval $hasproto ;;
15686         *)      ;;
15687         esac
15688         case "$d_strerror_r_proto" in
15689         define)
15690         case "$strerror_r_proto" in
15691         ''|0) try='int strerror_r(int, char*, size_t);'
15692         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
15693         esac
15694         case "$strerror_r_proto" in
15695         ''|0) try='int strerror_r(int, char*, int);'
15696         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
15697         esac
15698         case "$strerror_r_proto" in
15699         ''|0) try='char* strerror_r(int, char*, size_t);'
15700         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
15701         esac
15702         case "$strerror_r_proto" in
15703         ''|0)   d_strerror_r=undef
15704                 strerror_r_proto=0
15705                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
15706         * )     case "$strerror_r_proto" in
15707                 REENTRANT_PROTO*) ;;
15708                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
15709                 esac
15710                 echo "Prototype: $try" ;;
15711         esac
15712         ;;
15713         *)      case "$usethreads" in
15714                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
15715                 esac
15716                 d_strerror_r=undef
15717                 strerror_r_proto=0
15718                 ;;
15719         esac
15720         ;;
15721 *)      strerror_r_proto=0
15722         ;;
15723 esac
15724
15725 : see if strftime exists
15726 set strftime d_strftime
15727 eval $inlibc
15728
15729 : see if strtod exists
15730 set strtod d_strtod
15731 eval $inlibc
15732
15733 : see if strtol exists
15734 set strtol d_strtol
15735 eval $inlibc
15736
15737 : see if strtold exists
15738 set strtold d_strtold
15739 eval $inlibc
15740
15741 : see if strtoll exists
15742 set strtoll d_strtoll
15743 eval $inlibc
15744
15745 case "$d_longlong-$d_strtoll" in
15746 "$define-$define")
15747         $cat <<EOM
15748 Checking whether your strtoll() works okay...
15749 EOM
15750         $cat >try.c <<'EOCP'
15751 #include <errno.h>
15752 #ifdef __hpux
15753 #define strtoll __strtoll
15754 #endif
15755 #ifdef __EMX__
15756 #define strtoll _strtoll
15757 #endif
15758 #include <stdio.h>
15759 extern long long int strtoll(char *s, char **, int); 
15760 static int bad = 0;
15761 int check(char *s, long long ell, int een) {
15762         long long gll;
15763         errno = 0;
15764         gll = strtoll(s, 0, 10);
15765         if (!((gll == ell) && (errno == een)))
15766                 bad++;
15767 }
15768 int main() {
15769         check(" 1",                                      1LL, 0);
15770         check(" 0",                                      0LL, 0);
15771         check("-1",                                     -1LL, 0);
15772         check("-9223372036854775808", -9223372036854775808LL, 0);
15773         check("-9223372036854775808", -9223372036854775808LL, 0);
15774         check(" 9223372036854775807",  9223372036854775807LL, 0);
15775         check("-9223372036854775808", -9223372036854775808LL, 0);
15776         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
15777         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
15778         if (!bad)
15779                 printf("ok\n");
15780 }
15781 EOCP
15782         set try
15783         if eval $compile; then
15784                 yyy=`$run ./try`
15785                 case "$yyy" in
15786                 ok) echo "Your strtoll() seems to be working okay." ;;
15787                 *) cat <<EOM >&4
15788 Your strtoll() doesn't seem to be working okay.
15789 EOM
15790                    d_strtoll="$undef"
15791                    ;;
15792                 esac
15793         else
15794                 echo "(I can't seem to compile the test program--assuming it doesn't)"
15795                 d_strtoll="$undef"
15796         fi
15797         ;;
15798 esac
15799
15800 : see if strtoq exists
15801 set strtoq d_strtoq
15802 eval $inlibc
15803
15804 : see if strtoul exists
15805 set strtoul d_strtoul
15806 eval $inlibc
15807
15808 case "$d_strtoul" in
15809 "$define")
15810         $cat <<EOM
15811 Checking whether your strtoul() works okay...
15812 EOM
15813         $cat >try.c <<'EOCP'
15814 #include <errno.h>
15815 #include <stdio.h>
15816 extern unsigned long int strtoul(char *s, char **, int); 
15817 static int bad = 0;
15818 void check(char *s, unsigned long eul, int een) {
15819         unsigned long gul;
15820         errno = 0;
15821         gul = strtoul(s, 0, 10);
15822         if (!((gul == eul) && (errno == een)))
15823                 bad++;
15824 }
15825 int main() {
15826         check(" 1", 1L, 0);
15827         check(" 0", 0L, 0);
15828 EOCP
15829         case "$longsize" in
15830         8)
15831             $cat >>try.c <<'EOCP'
15832         check("18446744073709551615", 18446744073709551615UL, 0);
15833         check("18446744073709551616", 18446744073709551615UL, ERANGE);
15834 #if 0 /* strtoul() for /^-/ strings is undefined. */
15835         check("-1", 18446744073709551615UL, 0);
15836         check("-18446744073709551614", 2, 0);
15837         check("-18446744073709551615", 1, 0);
15838         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
15839         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
15840 #endif
15841 EOCP
15842                 ;;
15843         4)
15844                     $cat >>try.c <<'EOCP'
15845         check("4294967295", 4294967295UL, 0);
15846         check("4294967296", 4294967295UL, ERANGE);
15847 #if 0 /* strtoul() for /^-/ strings is undefined. */
15848         check("-1", 4294967295UL, 0);
15849         check("-4294967294", 2, 0);
15850         check("-4294967295", 1, 0);
15851         check("-4294967296", 4294967295UL, ERANGE);
15852         check("-4294967297", 4294967295UL, ERANGE);
15853 #endif
15854 EOCP
15855                 ;;
15856         *)
15857 : Should we write these tests to be more portable by sprintf-ing
15858 : ~0 and then manipulating that char string as input for strtol?
15859                 ;;
15860         esac
15861         $cat >>try.c <<'EOCP'
15862         if (!bad)
15863                 printf("ok\n");
15864         return 0;
15865 }
15866 EOCP
15867         set try
15868         if eval $compile; then
15869                 case "`$run ./try`" in
15870                 ok) echo "Your strtoul() seems to be working okay." ;;
15871                 *) cat <<EOM >&4
15872 Your strtoul() doesn't seem to be working okay.
15873 EOM
15874                    d_strtoul="$undef"
15875                    ;;
15876                 esac
15877         fi
15878         ;;
15879 esac
15880
15881 : see if strtoull exists
15882 set strtoull d_strtoull
15883 eval $inlibc
15884
15885 case "$d_longlong-$d_strtoull" in
15886 "$define-$define")
15887         $cat <<EOM
15888 Checking whether your strtoull() works okay...
15889 EOM
15890         $cat >try.c <<'EOCP'
15891 #include <errno.h>
15892 #ifdef __hpux
15893 #define strtoull __strtoull
15894 #endif
15895 #include <stdio.h>
15896 extern unsigned long long int strtoull(char *s, char **, int); 
15897 static int bad = 0;
15898 int check(char *s, long long eull, int een) {
15899         long long gull;
15900         errno = 0;
15901         gull = strtoull(s, 0, 10);
15902         if (!((gull == eull) && (errno == een)))
15903                 bad++;
15904 }
15905 int main() {
15906         check(" 1",                                        1LL, 0);
15907         check(" 0",                                        0LL, 0);
15908         check("18446744073709551615",  18446744073709551615ULL, 0);
15909         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
15910 #if 0 /* strtoull() for /^-/ strings is undefined. */
15911         check("-1",                    18446744073709551615ULL, 0);
15912         check("-18446744073709551614",                     2LL, 0);
15913         check("-18446744073709551615",                     1LL, 0);
15914         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
15915         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
15916 #endif
15917         if (!bad)
15918                 printf("ok\n");
15919 }
15920 EOCP
15921         set try
15922         if eval $compile; then
15923                 case "`$run ./try`" in
15924                 ok) echo "Your strtoull() seems to be working okay." ;;
15925                 *) cat <<EOM >&4
15926 Your strtoull() doesn't seem to be working okay.
15927 EOM
15928                    d_strtoull="$undef"
15929                    ;;
15930                 esac
15931         fi
15932         ;;
15933 esac
15934
15935 : see if strtouq exists
15936 set strtouq d_strtouq
15937 eval $inlibc
15938
15939 case "$d_strtouq" in
15940 "$define")
15941         $cat <<EOM
15942 Checking whether your strtouq() works okay...
15943 EOM
15944         $cat >try.c <<'EOCP'
15945 #include <errno.h>
15946 #include <stdio.h>
15947 extern unsigned long long int strtouq(char *s, char **, int); 
15948 static int bad = 0;
15949 void check(char *s, unsigned long long eull, int een) {
15950         unsigned long long gull;
15951         errno = 0;
15952         gull = strtouq(s, 0, 10);
15953         if (!((gull == eull) && (errno == een)))
15954                 bad++;
15955 }
15956 int main() {
15957         check(" 1",                                        1LL, 0);
15958         check(" 0",                                        0LL, 0);
15959         check("18446744073709551615",  18446744073709551615ULL, 0);
15960         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
15961 #if 0 /* strtouq() for /^-/ strings is undefined. */
15962         check("-1",                    18446744073709551615ULL, 0);
15963         check("-18446744073709551614",                     2LL, 0);
15964         check("-18446744073709551615",                     1LL, 0);
15965         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
15966         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
15967 #endif
15968         if (!bad)
15969                 printf("ok\n");
15970         return 0;
15971 }
15972 EOCP
15973         set try
15974         if eval $compile; then
15975                 case "`$run ./try`" in
15976                 ok) echo "Your strtouq() seems to be working okay." ;;
15977                 *) cat <<EOM >&4
15978 Your strtouq() doesn't seem to be working okay.
15979 EOM
15980                    d_strtouq="$undef"
15981                    ;;
15982                 esac
15983         fi
15984         ;;
15985 esac
15986
15987 : see if strxfrm exists
15988 set strxfrm d_strxfrm
15989 eval $inlibc
15990
15991 : see if symlink exists
15992 set symlink d_symlink
15993 eval $inlibc
15994
15995 : see if syscall exists
15996 set syscall d_syscall
15997 eval $inlibc
15998
15999 : see if prototype for syscall is available
16000 echo " "
16001 set d_syscallproto syscall $i_unistd unistd.h
16002 eval $hasproto
16003
16004 : see if sysconf exists
16005 set sysconf d_sysconf
16006 eval $inlibc
16007
16008 : see if system exists
16009 set system d_system
16010 eval $inlibc
16011
16012 : see if tcgetpgrp exists
16013 set tcgetpgrp d_tcgetpgrp
16014 eval $inlibc
16015
16016 : see if tcsetpgrp exists
16017 set tcsetpgrp d_tcsetpgrp
16018 eval $inlibc
16019
16020 : see if prototype for telldir is available
16021 echo " "
16022 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16023 eval $hasproto
16024
16025 : see if time exists
16026 echo " "
16027 if test "X$d_time" = X -o X"$timetype" = X; then
16028     if set time val -f d_time; eval $csym; $val; then
16029                 echo 'time() found.' >&4
16030                 val="$define"
16031                 rp="What is the type returned by time() on this system?"
16032                 set time_t timetype long stdio.h sys/types.h
16033                 eval $typedef_ask
16034     else
16035                 echo 'time() not found, hope that will do.' >&4
16036                 val="$undef"
16037                 timetype='int';
16038     fi
16039     set d_time
16040     eval $setvar
16041 fi
16042
16043 : see if this is a sys/times.h system
16044 set sys/times.h i_systimes
16045 eval $inhdr
16046
16047 : see if times exists
16048 echo " "
16049 if set times val -f d_times; eval $csym; $val; then
16050         echo 'times() found.' >&4
16051         d_times="$define"
16052         inc=''
16053         case "$i_systimes" in
16054         "$define") inc='sys/times.h';;
16055         esac
16056         rp="What is the type returned by times() on this system?"
16057         set clock_t clocktype long stdio.h sys/types.h $inc
16058         eval $typedef_ask
16059 else
16060         echo 'times() NOT found, hope that will do.' >&4
16061         d_times="$undef"
16062         clocktype='int'
16063 fi
16064
16065 : see if tmpnam_r exists
16066 set tmpnam_r d_tmpnam_r
16067 eval $inlibc
16068 case "$d_tmpnam_r" in
16069 "$define")
16070         hdrs="$i_systypes sys/types.h define stdio.h "
16071         case "$d_tmpnam_r_proto:$usethreads" in
16072         ":define")      d_tmpnam_r_proto=define
16073                 set d_tmpnam_r_proto tmpnam_r $hdrs
16074                 eval $hasproto ;;
16075         *)      ;;
16076         esac
16077         case "$d_tmpnam_r_proto" in
16078         define)
16079         case "$tmpnam_r_proto" in
16080         ''|0) try='char* tmpnam_r(char*);'
16081         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16082         esac
16083         case "$tmpnam_r_proto" in
16084         ''|0)   d_tmpnam_r=undef
16085                 tmpnam_r_proto=0
16086                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16087         * )     case "$tmpnam_r_proto" in
16088                 REENTRANT_PROTO*) ;;
16089                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16090                 esac
16091                 echo "Prototype: $try" ;;
16092         esac
16093         ;;
16094         *)      case "$usethreads" in
16095                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16096                 esac
16097                 d_tmpnam_r=undef
16098                 tmpnam_r_proto=0
16099                 ;;
16100         esac
16101         ;;
16102 *)      tmpnam_r_proto=0
16103         ;;
16104 esac
16105
16106 : see if truncate exists
16107 set truncate d_truncate
16108 eval $inlibc
16109
16110 : see if ttyname_r exists
16111 set ttyname_r d_ttyname_r
16112 eval $inlibc
16113 case "$d_ttyname_r" in
16114 "$define")
16115         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16116         case "$d_ttyname_r_proto:$usethreads" in
16117         ":define")      d_ttyname_r_proto=define
16118                 set d_ttyname_r_proto ttyname_r $hdrs
16119                 eval $hasproto ;;
16120         *)      ;;
16121         esac
16122         case "$d_ttyname_r_proto" in
16123         define)
16124         case "$ttyname_r_proto" in
16125         ''|0) try='int ttyname_r(int, char*, size_t);'
16126         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16127         esac
16128         case "$ttyname_r_proto" in
16129         ''|0) try='int ttyname_r(int, char*, int);'
16130         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16131         esac
16132         case "$ttyname_r_proto" in
16133         ''|0) try='char* ttyname_r(int, char*, int);'
16134         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16135         esac
16136         case "$ttyname_r_proto" in
16137         ''|0)   d_ttyname_r=undef
16138                 ttyname_r_proto=0
16139                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16140         * )     case "$ttyname_r_proto" in
16141                 REENTRANT_PROTO*) ;;
16142                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16143                 esac
16144                 echo "Prototype: $try" ;;
16145         esac
16146         ;;
16147         *)      case "$usethreads" in
16148                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16149                 esac
16150                 d_ttyname_r=undef
16151                 ttyname_r_proto=0
16152                 ;;
16153         esac
16154         ;;
16155 *)      ttyname_r_proto=0
16156         ;;
16157 esac
16158
16159 : see if tzname[] exists
16160 echo " "
16161 if set tzname val -a d_tzname; eval $csym; $val; then
16162         val="$define"
16163         echo 'tzname[] found.' >&4
16164 else
16165         val="$undef"
16166         echo 'tzname[] NOT found.' >&4
16167 fi
16168 set d_tzname
16169 eval $setvar
16170
16171 case "$osname" in
16172 next|rhapsody|darwin) multiarch="$define" ;;
16173 esac
16174 case "$multiarch" in
16175 ''|[nN]*) multiarch="$undef" ;;
16176 esac
16177
16178 : check for ordering of bytes in a UV
16179 echo " "
16180 case "$usecrosscompile$multiarch" in
16181 *$define*)
16182         $cat <<EOM
16183 You seem to be either cross-compiling or doing a multiarchitecture build,
16184 skipping the byteorder check.
16185
16186 EOM
16187         byteorder='ffff'
16188         ;;
16189 *)
16190         case "$byteorder" in
16191         '')
16192                 $cat <<'EOM'
16193 In the following, larger digits indicate more significance.  A big-endian
16194 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16195 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16196 machines may have weird orders like 3412.  A Cray will report 87654321,
16197 an Alpha will report 12345678. If the test program works the default is
16198 probably right.
16199 I'm now running the test program...
16200 EOM
16201                 $cat >try.c <<EOCP
16202 #include <stdio.h>
16203 #include <sys/types.h>
16204 typedef $uvtype UV;
16205 int main()
16206 {
16207         int i;
16208         union {
16209                 UV l;
16210                 char c[$uvsize];
16211         } u;
16212
16213         if ($uvsize > 4)
16214                 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
16215         else
16216                 u.l = (UV)0x04030201;
16217         for (i = 0; i < $uvsize; i++)
16218                 printf("%c", u.c[i]+'0');
16219         printf("\n");
16220         exit(0);
16221 }
16222 EOCP
16223                 xxx_prompt=y
16224                 set try
16225                 if eval $compile && ./try > /dev/null; then
16226                         dflt=`$run ./try`
16227                         case "$dflt" in
16228                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16229                                 echo "(The test program ran ok.)"
16230                                 echo "byteorder=$dflt"
16231                                 xxx_prompt=n
16232                         ;;
16233                         ????|????????) echo "(The test program ran ok.)" ;;
16234                         *) echo "(The test program didn't run right for some reason.)" ;;
16235                         esac
16236                 else
16237                         dflt='4321'
16238                         cat <<'EOM'
16239 (I can't seem to compile the test program.  Guessing big-endian...)
16240 EOM
16241                 fi
16242                 case "$xxx_prompt" in
16243                 y)
16244                         rp="What is the order of bytes in $uvtype?"
16245                         . ./myread
16246                         byteorder="$ans"
16247                         ;;
16248                 *)      byteorder=$dflt
16249                         ;;
16250                 esac
16251                 ;;
16252         esac
16253         $rm -f try.c try
16254         ;;
16255 esac
16256
16257
16258 $cat <<EOM
16259
16260 Checking to see whether you can access character data unalignedly...
16261 EOM
16262 case "$d_u32align" in
16263 '')   $cat >try.c <<EOCP
16264 #include <stdio.h>
16265 #define U32 $u32type
16266 #define BYTEORDER 0x$byteorder
16267 #define U8 $u8type
16268 #include <signal.h>
16269 #ifdef SIGBUS
16270 $signal_t bletch(s) int s; { exit(4); }
16271 #endif
16272 int main() {
16273 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
16274     U8 buf[8];
16275     U32 *up;
16276     int i;
16277
16278     if (sizeof(U32) != 4) {
16279         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
16280         exit(1);
16281     }
16282
16283     fflush(stdout);
16284
16285 #ifdef SIGBUS
16286     signal(SIGBUS, bletch);
16287 #endif
16288
16289     buf[0] = 0;
16290     buf[1] = 0;
16291     buf[2] = 0;
16292     buf[3] = 1;
16293     buf[5] = 0;
16294     buf[6] = 0;
16295     buf[7] = 0;
16296     buf[8] = 1;
16297
16298     for (i = 0; i < 4; i++) {
16299         up = (U32*)(buf + i);
16300         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
16301                (*up == 1 << (8*(3-i)))  /* little-endian */
16302               )
16303            )
16304         {
16305             printf("read failed (%x)\n", *up);
16306             exit(2);
16307         }
16308     }
16309
16310     /* write test */
16311     for (i = 0; i < 4; i++) {
16312         up = (U32*)(buf + i);
16313         *up = 0xBeef;
16314         if (*up != 0xBeef) {
16315             printf("write failed (%x)\n", *up);
16316             exit(3);
16317         }
16318     }
16319
16320     exit(0);
16321 #else
16322     printf("1\n");
16323     exit(1);
16324 #endif
16325     return 0;
16326 }
16327 EOCP
16328 set try
16329 if eval $compile_ok; then
16330         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
16331         $run ./try 2>&1 >/dev/null
16332         case "$?" in
16333         0)      cat >&4 <<EOM
16334 You can access character data pretty unalignedly.
16335 EOM
16336                 d_u32align="$undef"
16337                 ;;
16338         *)      cat >&4 <<EOM
16339 It seems that you must access character data in an aligned manner.
16340 EOM
16341                 d_u32align="$define"
16342                 ;;
16343         esac
16344 else
16345         rp='Can you access character data at unaligned addresses?'
16346         dflt='n'
16347         . ./myread
16348         case "$ans" in
16349         [yY]*)  d_u32align="$undef"  ;;
16350         *)      d_u32align="$define" ;;
16351         esac
16352 fi
16353 $rm -f core core.try.* try.core
16354 ;;
16355 esac
16356
16357 : see if ualarm exists
16358 set ualarm d_ualarm
16359 eval $inlibc
16360
16361 : see if umask exists
16362 set umask d_umask
16363 eval $inlibc
16364
16365 : see if unordered exists
16366 set unordered d_unordered
16367 eval $inlibc
16368
16369 : see if usleep exists
16370 set usleep d_usleep
16371 eval $inlibc
16372
16373 : see if prototype for usleep is available
16374 echo " "
16375 set d_usleepproto usleep $i_unistd unistd.h
16376 eval $hasproto
16377
16378 : see if ustat exists
16379 set ustat d_ustat
16380 eval $inlibc
16381
16382 : backward compatibility for d_hvfork
16383 if test X$d_hvfork != X; then
16384         d_vfork="$d_hvfork"
16385         d_hvfork=''
16386 fi
16387 : see if there is a vfork
16388 val=''
16389 set vfork val
16390 eval $inlibc
16391
16392 : Ok, but do we want to use it. vfork is reportedly unreliable in 
16393 : perl on Solaris 2.x, and probably elsewhere.
16394 case "$val" in
16395 $define)
16396         echo " "
16397         case "$usevfork" in
16398         false) dflt='n';;
16399         *) dflt='y';;
16400         esac
16401         cat <<'EOM'
16402  
16403 Perl can only use a vfork() that doesn't suffer from strict
16404 restrictions on calling functions or modifying global data in
16405 the child.  For example, glibc-2.1 contains such a vfork()
16406 that is unsuitable.  If your system provides a proper fork()
16407 call, chances are that you do NOT want perl to use vfork().
16408
16409 EOM
16410         rp="Do you still want to use vfork()?"
16411         . ./myread
16412         case "$ans" in
16413         y|Y) ;;
16414         *)
16415                 echo "Ok, we won't use vfork()."
16416                 val="$undef"
16417                 ;;
16418         esac
16419         ;;
16420 esac
16421 set d_vfork
16422 eval $setvar
16423 case "$d_vfork" in
16424 $define) usevfork='true';;
16425 *) usevfork='false';;
16426 esac
16427
16428 : see if closedir exists
16429 set closedir d_closedir
16430 eval $inlibc
16431
16432 case "$d_closedir" in
16433 "$define")
16434         echo " "
16435         echo "Checking whether closedir() returns a status..." >&4
16436         cat > try.c <<EOM
16437 #$i_dirent I_DIRENT             /**/
16438 #$i_sysdir I_SYS_DIR            /**/
16439 #$i_sysndir I_SYS_NDIR          /**/
16440 #$i_systypes I_SYS_TYPES        /**/
16441
16442 #if defined(I_SYS_TYPES)
16443 #include <sys/types.h>
16444 #endif
16445 #if defined(I_DIRENT)
16446 #include <dirent.h>
16447 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
16448 #include <sys/dir.h>
16449 #endif
16450 #else
16451 #ifdef I_SYS_NDIR
16452 #include <sys/ndir.h>
16453 #else
16454 #ifdef I_SYS_DIR
16455 #ifdef hp9000s500
16456 #include <ndir.h>       /* may be wrong in the future */
16457 #else
16458 #include <sys/dir.h>
16459 #endif
16460 #endif
16461 #endif
16462 #endif 
16463 int main() { return closedir(opendir(".")); }
16464 EOM
16465         set try
16466         if eval $compile_ok; then
16467                 if $run ./try > /dev/null 2>&1 ; then
16468                         echo "Yes, it does."
16469                         val="$undef"
16470                 else
16471                         echo "No, it doesn't."
16472                         val="$define"
16473                 fi
16474         else
16475                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16476                 val="$define"
16477         fi
16478         ;;
16479 *)
16480         val="$undef";
16481         ;;
16482 esac
16483 set d_void_closedir
16484 eval $setvar
16485 $rm -f try try.*
16486 : see if there is a wait4
16487 set wait4 d_wait4
16488 eval $inlibc
16489
16490 : see if waitpid exists
16491 set waitpid d_waitpid
16492 eval $inlibc
16493
16494 : see if wcstombs exists
16495 set wcstombs d_wcstombs
16496 eval $inlibc
16497
16498 : see if wctomb exists
16499 set wctomb d_wctomb
16500 eval $inlibc
16501
16502 : see if writev exists
16503 set writev d_writev
16504 eval $inlibc
16505
16506 : preserve RCS keywords in files with variable substitution, grrr
16507 Date='$Date'
16508 Id='$Id'
16509 Log='$Log'
16510 RCSfile='$RCSfile'
16511 Revision='$Revision'
16512
16513 : check for alignment requirements
16514 echo " "
16515 case "$usecrosscompile$multiarch" in
16516 *$define*)
16517         $cat <<EOM
16518 You seem to be either cross-compiling or doing a multiarchitecture build,
16519 skipping the memory alignment check.
16520
16521 EOM
16522         case "$alignbytes" in
16523         '') alignbytes=8 ;;
16524         esac
16525         ;;
16526 *)
16527         case "$alignbytes" in
16528         '') echo "Checking alignment constraints..." >&4
16529                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
16530                         $cat >try.c <<'EOCP'
16531 typedef long double NV;
16532 EOCP
16533                 else
16534                         $cat >try.c <<'EOCP'
16535 typedef double NV;
16536 EOCP
16537                 fi
16538                 $cat >>try.c <<'EOCP'
16539 #include <stdio.h>
16540 struct foobar {
16541         char foo;
16542         NV bar;
16543 } try_algn;
16544 int main()
16545 {
16546     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
16547     return(0);
16548 }
16549 EOCP
16550                 set try
16551                 if eval $compile_ok; then
16552                         dflt=`$run ./try`
16553                 else
16554                         dflt='8'
16555                         echo "(I can't seem to compile the test program...)"
16556                 fi
16557                 ;;
16558         *) dflt="$alignbytes"
16559                 ;;
16560         esac
16561         rp="Doubles must be aligned on a how-many-byte boundary?"
16562         . ./myread
16563         alignbytes="$ans"
16564         $rm -f try.c try
16565         ;;
16566 esac
16567
16568
16569 : set the base revision
16570 baserev=5.0
16571
16572 : how do we catenate cpp tokens here?
16573 echo " "
16574 echo "Checking to see how your cpp does stuff like catenate tokens..." >&4
16575 $cat >cpp_stuff.c <<'EOCP'
16576 #define RCAT(a,b)a/**/b
16577 #define ACAT(a,b)a ## b
16578 RCAT(Rei,ser)
16579 ACAT(Cir,cus)
16580 EOCP
16581 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
16582 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
16583         echo "Oh!  Smells like ANSI's been here." >&4
16584         echo "We can catify or stringify, separately or together!"
16585         cpp_stuff=42
16586 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
16587         echo "Ah, yes!  The good old days!" >&4
16588         echo "However, in the good old days we don't know how to stringify and"
16589         echo "catify at the same time."
16590         cpp_stuff=1
16591 else
16592         $cat >&4 <<EOM
16593 Hmm, I don't seem to be able to catenate tokens with your cpp.  You're going
16594 to have to edit the values of CAT[2-5] in config.h...
16595 EOM
16596         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
16597 fi
16598 $rm -f cpp_stuff.*
16599
16600 : see if this is a db.h system
16601 set db.h i_db
16602 eval $inhdr
16603
16604 case "$i_db" in
16605 $define)
16606         : Check db version.
16607         echo " "
16608         echo "Checking Berkeley DB version ..." >&4
16609         $cat >try.c <<EOCP
16610 #$d_const HASCONST
16611 #ifndef HASCONST
16612 #define const
16613 #endif
16614 #include <sys/types.h>
16615 #include <stdio.h>
16616 #include <db.h>
16617 int main(int argc, char *argv[])
16618 {
16619 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
16620     int Major, Minor, Patch ;
16621     unsigned long Version ;
16622     (void)db_version(&Major, &Minor, &Patch) ;
16623     if (argc == 2) {
16624         printf("%d %d %d %d %d %d\n",
16625                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
16626                Major, Minor, Patch);
16627         exit(0);
16628     }
16629     printf("You have Berkeley DB Version 2 or greater.\n");
16630
16631     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
16632                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
16633     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
16634                 Major, Minor, Patch) ;
16635
16636     /* check that db.h & libdb are compatible */
16637     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
16638         printf("db.h and libdb are incompatible.\n") ;
16639         exit(3);        
16640     }
16641
16642     printf("db.h and libdb are compatible.\n") ;
16643
16644     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
16645                 + DB_VERSION_PATCH ;
16646
16647     /* needs to be >= 2.3.4 */
16648     if (Version < 2003004) {
16649     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
16650         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
16651         exit(2);        
16652     }
16653
16654     exit(0);
16655 #else
16656 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
16657     if (argc == 2) {
16658         printf("1 0 0\n");
16659         exit(0);
16660     }
16661     printf("You have Berkeley DB Version 1.\n");
16662     exit(0);    /* DB version < 2: the coast is clear. */
16663 #else
16664     exit(1);    /* <db.h> not Berkeley DB? */
16665 #endif
16666 #endif
16667 }
16668 EOCP
16669         set try
16670         if eval $compile_ok && $run ./try; then
16671                 echo 'Looks OK.' >&4
16672                 set `$run ./try 1`
16673                 db_version_major=$1
16674                 db_version_minor=$2
16675                 db_version_patch=$3
16676         else
16677                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
16678                 i_db=$undef
16679                 case " $libs " in
16680                 *"-ldb "*)
16681                         : Remove db from list of libraries to use
16682                         echo "Removing unusable -ldb from library list" >&4
16683                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
16684                         shift
16685                         libs="$*"
16686                         echo "libs = $libs" >&4
16687                         ;;
16688                 esac
16689         fi
16690         $rm -f try.*
16691         ;;
16692 esac
16693
16694 case "$i_db" in
16695 define)
16696         : Check the return type needed for hash 
16697         echo " "
16698         echo "Checking return type needed for hash for Berkeley DB ..." >&4
16699         $cat >try.c <<EOCP
16700 #$d_const HASCONST
16701 #ifndef HASCONST
16702 #define const
16703 #endif
16704 #include <sys/types.h>
16705 #include <db.h>
16706
16707 #ifndef DB_VERSION_MAJOR
16708 u_int32_t hash_cb (ptr, size)
16709 const void *ptr;
16710 size_t size;
16711 {
16712 }
16713 HASHINFO info;
16714 int main()
16715 {
16716         info.hash = hash_cb;
16717 }
16718 #endif
16719 EOCP
16720         if $cc $ccflags -c try.c >try.out 2>&1 ; then
16721                 if $contains warning try.out >>/dev/null 2>&1 ; then
16722                         db_hashtype='int'
16723                 else
16724                         db_hashtype='u_int32_t'
16725                 fi
16726         else
16727                 : XXX Maybe we should just give up here.
16728                 db_hashtype=u_int32_t
16729                 $cat try.out >&4
16730                 echo "Help:  I can't seem to compile the db test program." >&4
16731                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
16732         fi
16733         $rm -f try.*
16734         echo "Your version of Berkeley DB uses $db_hashtype for hash."
16735         ;;
16736 *)      db_hashtype=u_int32_t
16737         ;;
16738 esac
16739 case "$i_db" in
16740 define)
16741         : Check the return type needed for prefix 
16742         echo " "
16743         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
16744         cat >try.c <<EOCP
16745 #$d_const HASCONST
16746 #ifndef HASCONST
16747 #define const
16748 #endif
16749 #include <sys/types.h>
16750 #include <db.h>
16751
16752 #ifndef DB_VERSION_MAJOR
16753 size_t prefix_cb (key1, key2)
16754 const DBT *key1;
16755 const DBT *key2;
16756 {
16757 }
16758 BTREEINFO info;
16759 int main()
16760 {
16761         info.prefix = prefix_cb;
16762 }
16763 #endif
16764 EOCP
16765         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
16766                 if $contains warning try.out >>/dev/null 2>&1 ; then
16767                         db_prefixtype='int'
16768                 else
16769                         db_prefixtype='size_t'
16770                 fi
16771         else
16772                 db_prefixtype='size_t'
16773                 : XXX Maybe we should just give up here.
16774                 $cat try.out >&4
16775                 echo "Help:  I can't seem to compile the db test program." >&4
16776                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
16777         fi
16778         $rm -f try.*
16779         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
16780         ;;
16781 *)      db_prefixtype='size_t'
16782         ;;
16783 esac
16784
16785
16786 : How can we generate normalized random numbers ?
16787 echo " "
16788 echo "Looking for a random number function..." >&4
16789 case "$randfunc" in
16790 '')
16791         if set drand48 val -f; eval $csym; $val; then
16792                 dflt="drand48"
16793                 echo "Good, found drand48()." >&4
16794         elif set random val -f; eval $csym; $val; then
16795                 dflt="random"
16796                 echo "OK, found random()." >&4
16797         else
16798                 dflt="rand"
16799                 echo "Yick, looks like I have to use rand()." >&4
16800         fi
16801         echo " "
16802         ;;
16803 *)
16804         dflt="$randfunc"
16805         ;;
16806 esac
16807 cont=true
16808
16809 case "$ccflags" in
16810 *-Dmy_rand=*|*-Dmy_srand=*)
16811         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
16812         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
16813         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
16814         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
16815         ;;
16816 esac
16817
16818 while $test "$cont"; do
16819         rp="Use which function to generate random numbers?"
16820         . ./myread
16821         if $test "$ans" = "$dflt"; then
16822                 : null
16823         else
16824                 randbits=''
16825         fi
16826         randfunc="$ans"
16827         if set $ans val -f; eval $csym; $val; then
16828                 cont=''
16829         else
16830                 dflt=y
16831                 rp="I cannot find function $ans. Use that name anyway?"
16832                 . ./myread
16833                 dflt=rand
16834                 case "$ans" in
16835                         [yY]*) cont='';;
16836                 esac
16837         fi
16838         case "$cont" in
16839         '')
16840                 case "$randfunc" in
16841                 drand48)
16842                         drand01="drand48()"
16843                         seedfunc="srand48"
16844                         randbits=48
16845                         randseedtype=long
16846                         ;;
16847                 rand|random)
16848                         case "$randbits" in
16849                         '')
16850 echo "Checking to see how many bits your $randfunc() function produces..." >&4
16851                                 $cat >try.c <<EOCP
16852 #$i_unistd I_UNISTD
16853 #$i_stdlib I_STDLIB
16854 #include <stdio.h>
16855 #ifdef I_UNISTD
16856 #  include <unistd.h>
16857 #endif
16858 #ifdef I_STDLIB
16859 #  include <stdlib.h>
16860 #endif
16861 int main()
16862 {
16863         register int i;
16864         register unsigned long tmp;
16865         register unsigned long max = 0L;
16866
16867         for (i = 1000; i; i--) {
16868                 tmp = (unsigned long) $randfunc();
16869                 if (tmp > max) max = tmp;
16870         }
16871         for (i = 0; max; i++)
16872                 max /= 2;
16873         printf("%d\n",i);
16874 }
16875 EOCP
16876                                 set try
16877                                 if eval $compile_ok; then
16878                                         dflt=`try`
16879                                 else
16880                                         dflt='?'
16881                                         echo "(I can't seem to compile the test program...)"
16882                                 fi
16883                                 ;;
16884                         *)
16885                                 dflt="$randbits"
16886                                 ;;
16887                         esac
16888                         rp="How many bits does your $randfunc() function produce?"
16889                         . ./myread
16890                         randbits="$ans"
16891                         $rm -f try.c try
16892                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
16893                         seedfunc="s$randfunc"
16894                         randseedtype=unsigned
16895                         ;;
16896                 *)
16897                         dflt="31"
16898                         rp="How many bits does your $randfunc() function produce?"
16899                         . ./myread
16900                         randbits="$ans"
16901                         seedfunc="s$randfunc"
16902                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
16903                         if set $seedfunc val -f; eval $csym; $val; then
16904                                 echo "(Using $seedfunc() to seed random generator)"
16905                         else
16906                                 echo "(Warning: no $seedfunc() to seed random generator)"
16907                                 seedfunc=rand
16908                         fi
16909                         randseedtype=unsigned
16910                         ;;
16911                 esac
16912                 ;;
16913         esac
16914 done
16915
16916 echo " "
16917 echo "Determining whether or not we are on an EBCDIC system..." >&4
16918 $cat >try.c <<'EOM'
16919 int main()
16920 {
16921   if ('M'==0xd4) return 0;
16922   return 1;
16923 }
16924 EOM
16925
16926 val=$undef
16927 set try
16928 if eval $compile_ok; then
16929         if $run ./try; then
16930                 echo "You seem to speak EBCDIC." >&4
16931                 val="$define"
16932         else
16933                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
16934         fi
16935 else
16936         echo "I'm unable to compile the test program." >&4
16937         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
16938 fi
16939 $rm -f try try.*
16940 set ebcdic
16941 eval $setvar
16942
16943 echo " "
16944 $cat >&4 <<EOM
16945 Checking how to flush all pending stdio output...
16946 EOM
16947 # I only know how to find the first 32 possibly open files on SunOS.
16948 # See also hints/sunos_4_1.sh and util.c  --AD
16949 case "$osname" in
16950 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
16951 esac
16952 $cat >>try.c <<EOCP
16953 #include <stdio.h>
16954 #$i_unistd I_UNISTD
16955 #ifdef I_UNISTD
16956 # include <unistd.h>
16957 #endif
16958 #$d_sysconf HAS_SYSCONF
16959 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
16960 #ifdef HAS_STDIO_STREAM_ARRAY
16961 # define STDIO_STREAM_ARRAY $stdio_stream_array
16962 #endif
16963 int main() {
16964   FILE* p;
16965   unlink("try.out");
16966   p = fopen("try.out", "w");
16967 #ifdef TRY_FPUTC
16968   fputc('x', p);
16969 #else
16970 # ifdef TRY_FPRINTF
16971   fprintf(p, "x");
16972 # endif
16973 #endif
16974 #ifdef TRY_FFLUSH_NULL
16975   fflush(NULL);
16976 #endif
16977 #ifdef TRY_FFLUSH_ALL
16978   {
16979     long open_max = -1;
16980 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
16981     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
16982 # else
16983 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
16984     open_max = sysconf(_SC_OPEN_MAX);
16985 #  else
16986 #   ifdef FOPEN_MAX
16987     open_max = FOPEN_MAX;
16988 #   else
16989 #    ifdef OPEN_MAX
16990     open_max = OPEN_MAX;
16991 #    else
16992 #     ifdef _NFILE
16993     open_max = _NFILE;
16994 #     endif
16995 #    endif
16996 #   endif
16997 #  endif
16998 # endif 
16999 # ifdef HAS_STDIO_STREAM_ARRAY
17000     if (open_max > 0) {
17001       long i;
17002       for (i = 0; i < open_max; i++)
17003             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17004                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17005                 STDIO_STREAM_ARRAY[i]._flag)
17006                 fflush(&STDIO_STREAM_ARRAY[i]);
17007     }   
17008   }
17009 # endif
17010 #endif
17011   _exit(42);
17012 }
17013 EOCP
17014 : first we have to find out how _not_ to flush
17015 $to try.c
17016 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17017     output=''
17018     set try -DTRY_FPUTC
17019     if eval $compile; then
17020             $run ./try 2>/dev/null
17021             code="$?"
17022             $from try.out
17023             if $test ! -s try.out -a "X$code" = X42; then
17024                 output=-DTRY_FPUTC
17025             fi
17026     fi
17027     case "$output" in
17028     '')
17029             set try -DTRY_FPRINTF
17030             if eval $compile; then
17031                     $run ./try 2>/dev/null
17032                     code="$?"
17033                     $from try.out
17034                     if $test ! -s try.out -a "X$code" = X42; then
17035                         output=-DTRY_FPRINTF
17036                     fi
17037             fi
17038         ;;
17039     esac
17040 fi
17041 : check for fflush NULL behaviour
17042 case "$fflushNULL" in
17043 '')     set try -DTRY_FFLUSH_NULL $output
17044         if eval $compile; then
17045                 $run ./try 2>/dev/null
17046                 code="$?"
17047                 $from try.out
17048                 if $test -s try.out -a "X$code" = X42; then
17049                         fflushNULL="`$cat try.out`"
17050                 else
17051                         if $test "X$code" != X42; then
17052                                 $cat >&4 <<EOM
17053 (If this test failed, don't worry, we'll try another method shortly.)
17054 EOM
17055                         fi
17056                 fi
17057         fi
17058         $rm -f core try.core core.try.*
17059         case "$fflushNULL" in
17060         x)      $cat >&4 <<EOM
17061 Your fflush(NULL) works okay for output streams.
17062 Let's see if it clobbers input pipes...
17063 EOM
17064 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17065 # bug that improperly flushes the input end of pipes.  So we avoid the
17066 # autoflush on fork/system/exec support for now. :-(
17067 $cat >tryp.c <<EOCP
17068 #include <stdio.h>
17069 int
17070 main(int argc, char **argv)
17071 {
17072     char buf[1024];
17073     int i;
17074     char *bp = buf;
17075     while (1) {
17076         while ((i = getc(stdin)) != -1
17077                && (*bp++ = i) != '\n'
17078                && bp < &buf[1024])
17079         /* DO NOTHING */ ;
17080         *bp = '\0';
17081         fprintf(stdout, "%s", buf);
17082         fflush(NULL);
17083         if (i == -1)
17084             return 0;
17085         bp = buf;
17086     }
17087 }
17088 EOCP
17089                 fflushNULL="$define"
17090                 set tryp
17091                 if eval $compile; then
17092                     $rm -f tryp.out
17093                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17094                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17095                        $cat >&4 <<EOM
17096 fflush(NULL) seems to behave okay with input streams.
17097 EOM
17098                         fflushNULL="$define"
17099                     else
17100                         $cat >&4 <<EOM
17101 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17102 EOM
17103                         fflushNULL="$undef"
17104                     fi
17105                 fi
17106                 $rm -f core tryp.c tryp.core core.tryp.*
17107                 ;;
17108         '')     $cat >&4 <<EOM
17109 Your fflush(NULL) isn't working (contrary to ANSI C).
17110 EOM
17111                 fflushNULL="$undef"
17112                 ;;
17113         *)      $cat >&4 <<EOM
17114 Cannot figure out whether your fflush(NULL) works or not.
17115 I'm assuming it doesn't (contrary to ANSI C).
17116 EOM
17117                 fflushNULL="$undef"
17118                 ;;
17119         esac
17120         ;;
17121 $define|true|[yY]*)
17122         fflushNULL="$define"
17123         ;;
17124 *)
17125         fflushNULL="$undef"
17126         ;;
17127 esac
17128 : check explicit looping only if NULL did not work, and if the pipe
17129 : bug does not show up on an explicit flush too
17130 case "$fflushNULL" in
17131 "$undef")
17132         $cat >tryp.c <<EOCP
17133 #include <stdio.h>
17134 int
17135 main(int argc, char **argv)
17136 {
17137     char buf[1024];
17138     int i;
17139     char *bp = buf;
17140     while (1) {
17141         while ((i = getc(stdin)) != -1
17142                && (*bp++ = i) != '\n'
17143                && bp < &buf[1024])
17144         /* DO NOTHING */ ;
17145         *bp = '\0';
17146         fprintf(stdout, "%s", buf);
17147         fflush(stdin);
17148         if (i == -1)
17149             return 0;
17150         bp = buf;
17151     }
17152 }
17153 EOCP
17154         set tryp
17155         if eval $compile; then
17156             $rm -f tryp.out
17157             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17158             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17159                $cat >&4 <<EOM
17160 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17161 EOM
17162                 : now check for fflushall behaviour
17163                 case "$fflushall" in
17164                 '')     set try -DTRY_FFLUSH_ALL $output
17165                         if eval $compile; then
17166                                 $cat >&4 <<EOM
17167 (Now testing the other method--but note that this also may fail.)
17168 EOM
17169                                 $run ./try 2>/dev/null
17170                                 code=$?
17171                                 $from try.out
17172                                 if $test -s try.out -a "X$code" = X42; then
17173                                         fflushall="`$cat try.out`"
17174                                 fi
17175                         fi
17176                         $rm -f core try.core core.try.*
17177                         case "$fflushall" in
17178                         x)      $cat >&4 <<EOM
17179 Whew. Flushing explicitly all the stdio streams works.
17180 EOM
17181                                 fflushall="$define"
17182                                 ;;
17183                         '')     $cat >&4 <<EOM
17184 Sigh. Flushing explicitly all the stdio streams doesn't work.
17185 EOM
17186                                 fflushall="$undef"
17187                                 ;;
17188                         *)      $cat >&4 <<EOM
17189 Cannot figure out whether flushing stdio streams explicitly works or not.
17190 I'm assuming it doesn't.
17191 EOM
17192                                 fflushall="$undef"
17193                                 ;;
17194                         esac
17195                         ;;
17196                 "$define"|true|[yY]*)
17197                         fflushall="$define"
17198                         ;;
17199                 *)
17200                         fflushall="$undef"
17201                         ;;
17202                 esac
17203             else
17204                 $cat >&4 <<EOM
17205 All is futile.  Even fflush(stdin) clobbers input pipes!
17206 EOM
17207                 fflushall="$undef"
17208             fi
17209         else
17210             fflushall="$undef"
17211         fi
17212         $rm -f core tryp.c tryp.core core.tryp.*
17213         ;;
17214 *)      fflushall="$undef"
17215         ;;
17216 esac
17217
17218 case "$fflushNULL$fflushall" in
17219 undefundef)
17220         $cat <<EOM
17221 OK, I give up.  I cannot figure out how to flush pending stdio output.
17222 We won't be flushing handles at all before fork/exec/popen.
17223 EOM
17224         ;;
17225 esac
17226 $rm -f try.* try$exe_ext
17227
17228 : Store the full pathname to the ar program for use in the C program
17229 : Respect a hint or command line value for full_ar.
17230 case "$full_ar" in
17231 '') full_ar=$ar ;;
17232 esac
17233
17234 : Store the full pathname to the sed program for use in the C program
17235 full_sed=$sed
17236
17237 : see what type gids are declared as in the kernel
17238 echo " "
17239 echo "Looking for the type for group ids returned by getgid()."
17240 set gid_t gidtype xxx stdio.h sys/types.h
17241 eval $typedef
17242 case "$gidtype" in
17243 xxx)
17244         xxx=`./findhdr sys/user.h`
17245         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17246         case $1 in
17247         unsigned) dflt="$1 $2" ;;
17248         *) dflt="$1" ;;
17249         esac
17250         ;;
17251 *) dflt="$gidtype";;
17252 esac
17253 case "$gidtype" in
17254 gid_t) echo "gid_t found." ;;
17255 *)      rp="What is the type for group ids returned by getgid()?"
17256         . ./myread
17257         gidtype="$ans"
17258         ;;
17259 esac
17260
17261 echo " "
17262 case "$gidtype" in
17263 *_t) zzz="$gidtype"     ;;
17264 *)   zzz="gid"          ;;
17265 esac
17266 echo "Checking the size of $zzz..." >&4 
17267 cat > try.c <<EOCP
17268 #include <sys/types.h>
17269 #include <stdio.h>
17270 int main() {
17271     printf("%d\n", (int)sizeof($gidtype));
17272     exit(0);
17273 }
17274 EOCP
17275 set try
17276 if eval $compile_ok; then
17277         yyy=`$run ./try`
17278         case "$yyy" in
17279         '')     gidsize=4
17280                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
17281                 ;;
17282         *)      gidsize=$yyy
17283                 echo "Your $zzz is $gidsize bytes long."
17284                 ;;
17285         esac
17286 else
17287         gidsize=4
17288         echo "(I can't compile the test program--guessing $gidsize.)" >&4
17289 fi
17290
17291
17292 echo " "
17293 case "$gidtype" in
17294 *_t) zzz="$gidtype"     ;;
17295 *)   zzz="gid"          ;;
17296 esac
17297 echo "Checking the sign of $zzz..." >&4 
17298 cat > try.c <<EOCP
17299 #include <sys/types.h>
17300 #include <stdio.h>
17301 int main() {
17302         $gidtype foo = -1;
17303         if (foo < 0)
17304                 printf("-1\n");
17305         else
17306                 printf("1\n");
17307 }
17308 EOCP
17309 set try
17310 if eval $compile; then
17311         yyy=`$run ./try`
17312         case "$yyy" in
17313         '')     gidsign=1
17314                 echo "(I can't execute the test program--guessing unsigned.)" >&4
17315                 ;;
17316         *)      gidsign=$yyy
17317                 case "$gidsign" in
17318                  1) echo "Your $zzz is unsigned." ;;
17319                 -1) echo "Your $zzz is signed."   ;;
17320                 esac
17321                 ;;
17322         esac
17323 else
17324         gidsign=1
17325         echo "(I can't compile the test program--guessing unsigned.)" >&4
17326 fi
17327
17328
17329 echo " "
17330
17331 if $test X"$quadtype" != X; then
17332
17333 echo "Checking how to print 64-bit integers..." >&4
17334
17335 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
17336         $cat >try.c <<'EOCP'
17337 #include <sys/types.h>
17338 #include <stdio.h>
17339 int main() {
17340   int q = 12345678901;
17341   printf("%ld\n", q);
17342 }
17343 EOCP
17344         set try
17345         if eval $compile; then
17346                 yyy=`$run ./try`
17347                 case "$yyy" in
17348                 12345678901)
17349                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
17350                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
17351                         echo "We will use %d."
17352                         ;;
17353                 esac
17354         fi
17355 fi
17356
17357 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
17358         $cat >try.c <<'EOCP'
17359 #include <sys/types.h>
17360 #include <stdio.h>
17361 int main() {
17362   long q = 12345678901;
17363   printf("%ld\n", q);
17364 }
17365 EOCP
17366         set try
17367         if eval $compile; then
17368                 yyy=`$run ./try`
17369                 case "$yyy" in
17370                 12345678901)
17371                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
17372                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
17373                         echo "We will use %ld."
17374                         ;;
17375                 esac
17376         fi
17377 fi
17378
17379 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
17380         $cat >try.c <<'EOCP'
17381 #include <sys/types.h>
17382 #include <inttypes.h>
17383 #include <stdio.h>
17384 int main() {
17385   int64_t q = 12345678901;
17386   printf("%" PRId64 "\n", q);
17387 }
17388 EOCP
17389         set try
17390         if eval $compile; then
17391                 yyy=`$run ./try`
17392                 case "$yyy" in
17393                 12345678901)
17394                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
17395                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
17396                         echo "We will use the C9X style."
17397                         ;;
17398                 esac
17399         fi
17400 fi
17401
17402 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
17403         $cat >try.c <<EOCP
17404 #include <sys/types.h>
17405 #include <stdio.h>
17406 int main() {
17407   $quadtype q = 12345678901;
17408   printf("%Ld\n", q);
17409 }
17410 EOCP
17411         set try
17412         if eval $compile; then
17413                 yyy=`$run ./try`
17414                 case "$yyy" in
17415                 12345678901)
17416                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
17417                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
17418                         echo "We will use %Ld."
17419                         ;;
17420                 esac
17421         fi
17422 fi
17423
17424 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
17425         $cat >try.c <<'EOCP'
17426 #include <sys/types.h>
17427 #include <stdio.h>
17428 int main() {
17429   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
17430   printf("%lld\n", q);
17431 }
17432 EOCP
17433         set try
17434         if eval $compile; then
17435                 yyy=`$run ./try`
17436                 case "$yyy" in
17437                 12345678901)
17438                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
17439                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
17440                         echo "We will use the %lld style."
17441                         ;;
17442                 esac
17443         fi
17444 fi
17445
17446 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
17447         $cat >try.c <<EOCP
17448 #include <sys/types.h>
17449 #include <stdio.h>
17450 int main() {
17451   $quadtype q = 12345678901;
17452   printf("%qd\n", q);
17453 }
17454 EOCP
17455         set try
17456         if eval $compile; then
17457                 yyy=`$run ./try`
17458                 case "$yyy" in
17459                 12345678901)
17460                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
17461                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
17462                         echo "We will use %qd."
17463                         ;;
17464                 esac
17465         fi
17466 fi
17467
17468 if $test X"$sPRId64" = X; then
17469         echo "Cannot figure out how to print 64-bit integers." >&4
17470 fi
17471
17472 $rm -f try try.*
17473
17474 fi
17475
17476 case "$sPRId64" in
17477 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
17478         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
17479         ;;
17480 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
17481         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
17482         ;;
17483 esac
17484
17485
17486 echo " "
17487 $echo "Checking the format strings to be used for Perl's internal types..." >&4
17488
17489 if $test X"$ivsize" = X8; then
17490         ivdformat="$sPRId64"
17491         uvuformat="$sPRIu64"
17492         uvoformat="$sPRIo64"
17493         uvxformat="$sPRIx64"
17494         uvXUformat="$sPRIXU64"
17495 else
17496         if $test X"$ivsize" = X"$longsize"; then
17497                 ivdformat='"ld"'
17498                 uvuformat='"lu"'
17499                 uvoformat='"lo"'
17500                 uvxformat='"lx"'
17501                 uvXUformat='"lX"'
17502         else
17503                 if $test X"$ivsize" = X"$intsize"; then
17504                         ivdformat='"d"'
17505                         uvuformat='"u"'
17506                         uvoformat='"o"'
17507                         uvxformat='"x"'
17508                         uvXUformat='"X"'
17509                 else
17510                         : far out
17511                         if $test X"$ivsize" = X"$shortsize"; then
17512                                 ivdformat='"hd"'
17513                                 uvuformat='"hu"'
17514                                 uvoformat='"ho"'
17515                                 uvxformat='"hx"'
17516                                 uvXUformat='"hX"'
17517                         fi
17518                 fi
17519         fi
17520 fi
17521
17522 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
17523         nveformat="$sPRIeldbl"
17524         nvfformat="$sPRIfldbl"
17525         nvgformat="$sPRIgldbl"
17526         nvEUformat="$sPRIEUldbl"
17527         nvFUformat="$sPRIFUldbl"
17528         nvGUformat="$sPRIGUldbl"
17529 else
17530         nveformat='"e"'
17531         nvfformat='"f"'
17532         nvgformat='"g"'
17533         nvEUformat='"E"'
17534         nvFUformat='"F"'
17535         nvGUformat='"G"'
17536 fi
17537
17538 case "$ivdformat" in
17539 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
17540     exit 1
17541     ;;
17542 esac
17543
17544
17545 echo " "
17546 $echo "Checking the format string to be used for gids..." >&4
17547
17548 case "$gidsign" in
17549 -1)     if $test X"$gidsize" = X"$ivsize"; then
17550                 gidformat="$ivdformat"
17551         else
17552                 if $test X"$gidsize" = X"$longsize"; then
17553                         gidformat='"ld"'
17554                 else
17555                         if $test X"$gidsize" = X"$intsize"; then
17556                                 gidformat='"d"'
17557                         else
17558                                 if $test X"$gidsize" = X"$shortsize"; then
17559                                         gidformat='"hd"'
17560                                 fi
17561                         fi
17562                 fi
17563         fi
17564         ;;
17565 *)      if $test X"$gidsize" = X"$uvsize"; then
17566                 gidformat="$uvuformat"
17567         else
17568                 if $test X"$gidsize" = X"$longsize"; then
17569                         gidformat='"lu"'
17570                 else
17571                         if $test X"$gidsize" = X"$intsize"; then
17572                                 gidformat='"u"'
17573                         else
17574                                 if $test X"$gidsize" = X"$shortsize"; then
17575                                         gidformat='"hu"'
17576                                 fi
17577                         fi
17578                 fi
17579         fi
17580         ;;
17581 esac
17582
17583 : see if getgroups exists
17584 set getgroups d_getgrps
17585 eval $inlibc
17586
17587 : see if setgroups exists
17588 set setgroups d_setgrps
17589 eval $inlibc
17590
17591
17592 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
17593 echo " "
17594 case "$d_getgrps$d_setgrps" in
17595 *define*)
17596         case "$groupstype" in
17597         '') dflt="$gidtype" ;;
17598         *)  dflt="$groupstype" ;;
17599         esac
17600         $cat <<EOM
17601 What type of pointer is the second argument to getgroups() and setgroups()?
17602 Usually this is the same as group ids, $gidtype, but not always.
17603
17604 EOM
17605         rp='What type pointer is the second argument to getgroups() and setgroups()?'
17606         . ./myread
17607         groupstype="$ans"
17608         ;;
17609 *)  groupstype="$gidtype";;
17610 esac
17611
17612 echo " "
17613 echo "Checking if your $make program sets \$(MAKE)..." >&4
17614 case "$make_set_make" in
17615 '')
17616         $sed 's/^X //' > testmake.mak << 'EOF'
17617 Xall:
17618 X       @echo 'maketemp="$(MAKE)"'
17619 EOF
17620         case "`$make -f testmake.mak 2>/dev/null`" in
17621         *maketemp=*) make_set_make='#' ;;
17622         *)      make_set_make="MAKE=$make" ;;
17623         esac
17624         $rm -f testmake.mak
17625         ;;
17626 esac
17627 case "$make_set_make" in
17628 '#') echo "Yup, it does.";;
17629 *) echo "Nope, it doesn't.";;
17630 esac
17631
17632 : see what type is used for mode_t
17633 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
17634 set mode_t modetype int stdio.h sys/types.h
17635 eval $typedef_ask
17636
17637 : see if stdarg is available
17638 echo " "
17639 if $test `./findhdr stdarg.h`; then
17640         echo "<stdarg.h> found." >&4
17641         valstd="$define"
17642 else
17643         echo "<stdarg.h> NOT found." >&4
17644         valstd="$undef"
17645 fi
17646
17647 : see if varags is available
17648 echo " "
17649 if $test `./findhdr varargs.h`; then
17650         echo "<varargs.h> found." >&4
17651 else
17652         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
17653 fi
17654
17655 : set up the varargs testing programs
17656 $cat > varargs.c <<EOP
17657 #ifdef I_STDARG
17658 #include <stdarg.h>
17659 #endif
17660 #ifdef I_VARARGS
17661 #include <varargs.h>
17662 #endif
17663
17664 #ifdef I_STDARG
17665 int f(char *p, ...)
17666 #else
17667 int f(va_alist)
17668 va_dcl
17669 #endif
17670 {
17671         va_list ap;
17672 #ifndef I_STDARG
17673         char *p;
17674 #endif
17675 #ifdef I_STDARG
17676         va_start(ap,p);
17677 #else
17678         va_start(ap);
17679         p = va_arg(ap, char *);
17680 #endif
17681         va_end(ap);
17682 }
17683 EOP
17684 $cat > varargs <<EOP
17685 $startsh
17686 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
17687         echo "true"
17688 else
17689         echo "false"
17690 fi
17691 $rm -f varargs$_o
17692 EOP
17693 chmod +x varargs
17694
17695 : now check which varargs header should be included
17696 echo " "
17697 i_varhdr=''
17698 case "$valstd" in
17699 "$define")
17700         if `./varargs I_STDARG`; then
17701                 val='stdarg.h'
17702         elif `./varargs I_VARARGS`; then
17703                 val='varargs.h'
17704         fi
17705         ;;
17706 *)
17707         if `./varargs I_VARARGS`; then
17708                 val='varargs.h'
17709         fi
17710         ;;
17711 esac
17712 case "$val" in
17713 '')
17714 echo "I could not find the definition for va_dcl... You have problems..." >&4
17715         val="$undef"; set i_stdarg; eval $setvar
17716         val="$undef"; set i_varargs; eval $setvar
17717         ;;
17718 *) 
17719         set i_varhdr
17720         eval $setvar
17721         case "$i_varhdr" in
17722         stdarg.h)
17723                 val="$define"; set i_stdarg; eval $setvar
17724                 val="$undef"; set i_varargs; eval $setvar
17725                 ;;
17726         varargs.h)
17727                 val="$undef"; set i_stdarg; eval $setvar
17728                 val="$define"; set i_varargs; eval $setvar
17729                 ;;
17730         esac
17731         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
17732 esac
17733 $rm -f varargs*
17734
17735 : see if we need va_copy
17736 echo " "
17737 case "$i_stdarg" in
17738 "$define")
17739         $cat >try.c <<EOCP
17740 #include <stdarg.h>
17741 #include <stdio.h>
17742 #$i_stdlib I_STDLIB
17743 #ifdef I_STDLIB
17744 #include <stdlib.h>
17745 #endif
17746 #include <signal.h>
17747
17748 int
17749 ivfprintf(FILE *f, const char *fmt, va_list *valp)
17750 {
17751   return vfprintf(f, fmt, *valp);
17752 }
17753  
17754 int    
17755 myvfprintf(FILE *f, const  char *fmt, va_list val)
17756 {
17757   return ivfprintf(f, fmt, &val);
17758 }
17759       
17760 int
17761 myprintf(char *fmt, ...) 
17762 {
17763   va_list val;
17764   va_start(val, fmt);
17765   return myvfprintf(stdout, fmt, val); 
17766 }         
17767
17768 int
17769 main(int ac, char **av)
17770 {
17771   signal(SIGSEGV, exit);
17772
17773   myprintf("%s%cs all right, then\n", "that", '\'');                            
17774   exit(0);      
17775 }
17776 EOCP
17777         set try
17778         if eval $compile && $run ./try 2>&1 >/dev/null; then
17779                 case "`$run ./try`" in
17780                 "that's all right, then")
17781                         okay=yes
17782                         ;;
17783                 esac
17784         fi
17785         case "$okay" in
17786         yes)    echo "It seems that you don't need va_copy()." >&4
17787                 need_va_copy="$undef"
17788                 ;;
17789         *)      echo "It seems that va_copy() or similar will be needed." >&4
17790                 need_va_copy="$define"
17791                 ;;
17792         esac
17793         $rm -f try.* core core.* *.core *.core.*
17794         ;;
17795 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
17796         ;;
17797 esac
17798
17799 : see what type is used for size_t
17800 rp="What is the type used for the length parameter for string functions?"
17801 set size_t sizetype 'unsigned int' stdio.h sys/types.h
17802 eval $typedef_ask
17803
17804 : check for type of arguments to gethostbyaddr. 
17805 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
17806         case "$d_gethbyaddr" in
17807         $define)
17808                 $cat <<EOM
17809
17810 Checking to see what type of arguments are accepted by gethostbyaddr().
17811 EOM
17812                 hdrs="$define sys/types.h
17813                         $d_socket sys/socket.h 
17814                         $i_niin netinet/in.h 
17815                         $i_netdb netdb.h
17816                         $i_unistd unistd.h"
17817                 : The first arg can 'char *' or 'void *'
17818                 : The second arg is some of integral type
17819                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
17820                         for yyy in size_t long int; do
17821                                 case "$netdb_host_type" in
17822                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
17823                                         if ./protochk "$try" $hdrs; then
17824                                                 echo "Your system accepts $xxx for the first arg."
17825                                                 echo "...and $yyy for the second arg."
17826                                                 netdb_host_type="$xxx"
17827                                                 netdb_hlen_type="$yyy"
17828                                         fi
17829                                         ;;
17830                                 esac
17831                         done
17832                 done
17833                 : In case none of those worked, prompt the user.
17834                 case "$netdb_host_type" in
17835                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
17836                         dflt='char *'
17837                         . ./myread
17838                         netdb_host_type=$ans
17839                         rp='What is the type for the 2nd argument to gethostbyaddr?'
17840                         dflt="$sizetype"
17841                         . ./myread
17842                         netdb_hlen_type=$ans
17843                         ;;
17844                 esac
17845                 ;;
17846         *)      : no gethostbyaddr, so pick harmless defaults
17847                 netdb_host_type='char *'
17848                 netdb_hlen_type="$sizetype"
17849                 ;;
17850         esac
17851         # Remove the "const" if needed. -- but then we'll have a 
17852         # prototype clash!
17853         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
17854 fi
17855
17856 : check for type of argument to gethostbyname. 
17857 if test "X$netdb_name_type" = X ; then
17858         case "$d_gethbyname" in
17859         $define)
17860                 $cat <<EOM
17861
17862 Checking to see what type of argument is accepted by gethostbyname().
17863 EOM
17864                 hdrs="$define sys/types.h
17865                         $d_socket sys/socket.h 
17866                         $i_niin netinet/in.h 
17867                         $i_netdb netdb.h
17868                         $i_unistd unistd.h"
17869                 for xxx in "const char *" "char *"; do
17870                         case "$netdb_name_type" in
17871                         '')     try="extern struct hostent *gethostbyname($xxx);"
17872                                 if ./protochk "$try" $hdrs; then
17873                                         echo "Your system accepts $xxx."
17874                                         netdb_name_type="$xxx"
17875                                 fi
17876                                 ;;
17877                         esac
17878                 done
17879                 : In case none of those worked, prompt the user.
17880                 case "$netdb_name_type" in
17881                 '')     rp='What is the type for the 1st argument to gethostbyname?'
17882                         dflt='char *'
17883                         . ./myread
17884                         netdb_name_type=$ans
17885                         ;;
17886                 esac
17887                 ;;
17888         *)      : no gethostbyname, so pick harmless default
17889                 netdb_name_type='char *'
17890                 ;;
17891         esac
17892 fi
17893
17894 : check for type of 1st argument to getnetbyaddr. 
17895 if test "X$netdb_net_type" = X ; then
17896         case "$d_getnbyaddr" in
17897         $define)
17898                 $cat <<EOM
17899
17900 Checking to see what type of 1st argument is accepted by getnetbyaddr().
17901 EOM
17902                 hdrs="$define sys/types.h
17903                         $d_socket sys/socket.h 
17904                         $i_niin netinet/in.h 
17905                         $i_netdb netdb.h
17906                         $i_unistd unistd.h"
17907                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
17908                         case "$netdb_net_type" in
17909                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
17910                                 if ./protochk "$try" $hdrs; then
17911                                         echo "Your system accepts $xxx."
17912                                         netdb_net_type="$xxx"
17913                                 fi
17914                                 ;;
17915                         esac
17916                 done
17917                 : In case none of those worked, prompt the user.
17918                 case "$netdb_net_type" in
17919                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
17920                         dflt='long'
17921                         . ./myread
17922                         netdb_net_type=$ans
17923                         ;;
17924                 esac
17925                 ;;
17926         *)      : no getnetbyaddr, so pick harmless default
17927                 netdb_net_type='long'
17928                 ;;
17929         esac
17930 fi
17931 : locate the preferred pager for this system
17932 fn=f/
17933 case "$pager" in
17934 '')
17935         dflt=''
17936         case "$pg" in
17937         /*) dflt=$pg;;
17938         [a-zA-Z]:/*) dflt=$pg;;
17939         esac
17940         case "$more" in
17941         /*) dflt=$more;;
17942         [a-zA-Z]:/*) dflt=$more;;
17943         esac
17944         case "$less" in
17945         /*) dflt=$less;;
17946         [a-zA-Z]:/*) dflt=$less;;
17947         esac
17948         case "$dflt" in
17949         '') dflt=/usr/ucb/more;;
17950         esac
17951         ;;
17952 *)      dflt="$pager"
17953         : Instruct ./getfile to trust the hinted or previous pager value,
17954         : even if it does not begin with a slash.  For example, on os2,
17955         : pager might be cmd /c more.  See comments in UU/getfile.
17956         fn="f/($pager)"
17957         ;;
17958 esac
17959 echo " "
17960 rp='What pager is used on your system?'
17961 . ./getfile
17962 pager="$ans"
17963
17964 : see what type pids are declared as in the kernel
17965 rp="What is the type of process ids on this system?"
17966 set pid_t pidtype int stdio.h sys/types.h
17967 eval $typedef_ask
17968
17969 : Find earliest binary compatible site_perl subdirectory perl can use.
17970 xs_apiversion=$version # The current site_perl version.
17971 : Find earliest pure perl site_perl subdirectory perl can use.
17972 : The versioned directories started at 5.005.
17973 pm_apiversion='5.005'
17974
17975 : see if ar generates random libraries by itself
17976 echo " "
17977 echo "Checking how to generate random libraries on your machine..." >&4
17978 echo 'int bar1() { return bar2(); }' > bar1.c
17979 echo 'int bar2() { return 2; }' > bar2.c
17980 $cat > foo.c <<'EOP'
17981 int main() { printf("%d\n", bar1()); exit(0); }
17982 EOP
17983 $cc $ccflags -c bar1.c >/dev/null 2>&1
17984 $cc $ccflags -c bar2.c >/dev/null 2>&1
17985 $cc $ccflags -c foo.c >/dev/null 2>&1
17986 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
17987 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
17988         $run ./foobar >/dev/null 2>&1; then
17989         echo "$ar appears to generate random libraries itself."
17990         orderlib=false
17991         ranlib=":"
17992 elif $ar ts bar$_a >/dev/null 2>&1 &&
17993         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
17994         $run ./foobar >/dev/null 2>&1; then
17995                 echo "a table of contents needs to be added with '$ar ts'."
17996                 orderlib=false
17997                 ranlib="$ar ts"
17998 else
17999         case "$ranlib" in
18000         :) ranlib='';;
18001         '')
18002                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18003                 $test -f $ranlib || ranlib=''
18004                 ;;
18005         esac
18006         if $test -n "$ranlib"; then
18007                 echo "your system has '$ranlib'; we'll use that."
18008                 orderlib=false
18009         else
18010                 echo "your system doesn't seem to support random libraries"
18011                 echo "so we'll use lorder and tsort to order the libraries."
18012                 orderlib=true
18013                 ranlib=":"
18014         fi
18015 fi
18016 $rm -f foo* bar* 
18017
18018 : check for type of arguments to select. 
18019 case "$selecttype" in
18020 '') case "$d_select" in
18021         $define)
18022                 echo " "
18023                 $cat <<EOM
18024 Checking to see what type of arguments are accepted by select().
18025 EOM
18026                 hdrs="$define sys/types.h
18027                         $i_systime sys/time.h 
18028                         $i_sysselct sys/select.h
18029                         $d_socket sys/socket.h"
18030                 : The first arg can be int, unsigned, or size_t
18031                 : The last arg may or may not be 'const'
18032                 val=''
18033                 : void pointer has been seen but using that
18034                 : breaks the selectminbits test
18035                 for xxx in 'fd_set *' 'int *'; do
18036                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18037                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18038                                         case "$val" in
18039                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18040                                                 if ./protochk "$try" $hdrs; then
18041                                                         echo "Your system accepts $xxx."
18042                                                         val="$xxx"
18043                                                 fi
18044                                                 ;;
18045                                         esac
18046                                 done
18047                         done
18048                 done
18049                 case "$val" in
18050                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18051                         case "$d_fd_set" in
18052                                 $define) dflt="fd_set *" ;;
18053                                 *)              dflt="int *" ;;
18054                         esac
18055                         . ./myread
18056                         val=$ans
18057                         ;;
18058                 esac
18059                 selecttype="$val"
18060                 ;;
18061         *)      : no select, so pick a harmless default
18062                 selecttype='int *'
18063                 ;;
18064         esac
18065         ;;
18066 esac
18067
18068 : check for the select 'width'
18069 case "$selectminbits" in
18070 '') case "$d_select" in
18071         $define)
18072                 $cat <<EOM
18073
18074 Checking to see on how many bits at a time your select() operates...
18075 EOM
18076                 $cat >try.c <<EOCP
18077 #include <sys/types.h>
18078 #$i_time I_TIME
18079 #$i_systime I_SYS_TIME
18080 #$i_systimek I_SYS_TIME_KERNEL
18081 #ifdef I_TIME
18082 #   include <time.h>
18083 #endif
18084 #ifdef I_SYS_TIME
18085 #   ifdef I_SYS_TIME_KERNEL
18086 #       define KERNEL
18087 #   endif
18088 #   include <sys/time.h>
18089 #   ifdef I_SYS_TIME_KERNEL
18090 #       undef KERNEL
18091 #   endif
18092 #endif
18093 #$i_sysselct I_SYS_SELECT
18094 #ifdef I_SYS_SELECT
18095 #include <sys/select.h>
18096 #endif
18097 #$d_socket HAS_SOCKET
18098 #ifdef HAS_SOCKET
18099 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18100 #endif
18101 #include <stdio.h>
18102 $selecttype b;
18103 #define S sizeof(*(b))
18104 #define MINBITS 64
18105 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18106 #define NBITS  (NBYTES * 8)
18107 int main() {
18108     char s[NBYTES];
18109     struct timeval t;
18110     int i;
18111     FILE* fp;
18112     int fd;
18113
18114     fclose(stdin);
18115     fp = fopen("try.c", "r");
18116     if (fp == 0)
18117       exit(1);
18118     fd = fileno(fp);
18119     if (fd < 0)
18120       exit(2);
18121     b = ($selecttype)s;
18122     for (i = 0; i < NBITS; i++)
18123         FD_SET(i, b);
18124     t.tv_sec  = 0;
18125     t.tv_usec = 0;
18126     select(fd + 1, b, 0, 0, &t);
18127     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18128     printf("%d\n", i + 1);
18129     return 0;
18130 }
18131 EOCP
18132                 set try
18133                 if eval $compile_ok; then
18134                         selectminbits=`$run ./try`
18135                         case "$selectminbits" in
18136                         '')     cat >&4 <<EOM
18137 Cannot figure out on how many bits at a time your select() operates.
18138 I'll play safe and guess it is 32 bits.
18139 EOM
18140                                 selectminbits=32
18141                                 bits="32 bits"
18142                                 ;;
18143                         1)      bits="1 bit" ;;
18144                         *)      bits="$selectminbits bits" ;;
18145                         esac
18146                         echo "Your select() operates on $bits at a time." >&4
18147                 else
18148                         rp='What is the minimum number of bits your select() operates on?'
18149                         case "$byteorder" in
18150                         1234|12345678)  dflt=32 ;;
18151                         *)              dflt=1  ;;
18152                         esac
18153                         . ./myread
18154                         val=$ans
18155                         selectminbits="$val"
18156                 fi
18157                 $rm -f try.* try
18158                 ;;
18159         *)      : no select, so pick a harmless default
18160                 selectminbits='32'
18161                 ;;
18162         esac
18163         ;;
18164 esac
18165
18166 : Trace out the files included by signal.h, then look for SIGxxx names.
18167 : Remove SIGARRAYSIZE used by HPUX.
18168 : Remove SIGSTKSIZE used by Linux.
18169 : Remove SIGSTKSZ used by Posix.
18170 : Remove SIGTYP void lines used by OS2.
18171 : Some cpps, like os390, dont give the file name anywhere
18172 if [ "X$fieldn" = X ]; then
18173         : Just make some guesses.  We check them later.
18174         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18175 else
18176         xxx=`echo '#include <signal.h>' |
18177         $cppstdin $cppminus $cppflags 2>/dev/null |
18178         $grep '^[       ]*#.*include' | 
18179         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18180 fi
18181 : Check this list of files to be sure we have parsed the cpp output ok.
18182 : This will also avoid potentially non-existent files, such 
18183 : as ../foo/bar.h
18184 xxxfiles=''
18185 for xx in $xxx /dev/null ; do
18186         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18187 done
18188 : If we have found no files, at least try signal.h
18189 case "$xxxfiles" in
18190 '')     xxxfiles=`./findhdr signal.h` ;;
18191 esac
18192 xxx=`awk '
18193 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18194         print substr($2, 4, 20)
18195 }
18196 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18197         print substr($3, 4, 20)
18198 }' $xxxfiles`
18199 : Append some common names just in case the awk scan failed.
18200 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18201 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18202 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18203 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18204 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18205
18206 : generate a few handy files for later
18207 $cat > signal.c <<'EOCP'
18208 #include <sys/types.h>
18209 #include <signal.h>
18210 #include <stdio.h>
18211 int main() {
18212
18213 /* Strange style to avoid deeply-nested #if/#else/#endif */
18214 #ifndef NSIG
18215 #  ifdef _NSIG
18216 #    define NSIG (_NSIG)
18217 #  endif
18218 #endif
18219
18220 #ifndef NSIG
18221 #  ifdef SIGMAX
18222 #    define NSIG (SIGMAX+1)
18223 #  endif
18224 #endif
18225
18226 #ifndef NSIG
18227 #  ifdef SIG_MAX
18228 #    define NSIG (SIG_MAX+1)
18229 #  endif
18230 #endif
18231
18232 #ifndef NSIG
18233 #  ifdef MAXSIG
18234 #    define NSIG (MAXSIG+1)
18235 #  endif
18236 #endif
18237
18238 #ifndef NSIG
18239 #  ifdef MAX_SIG
18240 #    define NSIG (MAX_SIG+1)
18241 #  endif
18242 #endif
18243
18244 #ifndef NSIG
18245 #  ifdef SIGARRAYSIZE
18246 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18247 #  endif
18248 #endif
18249
18250 #ifndef NSIG
18251 #  ifdef _sys_nsig
18252 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
18253 #  endif
18254 #endif
18255
18256 /* Default to some arbitrary number that's big enough to get most
18257    of the common signals.
18258 */
18259 #ifndef NSIG
18260 #    define NSIG 50
18261 #endif
18262
18263 printf("NSIG %d\n", NSIG);
18264
18265 #ifndef JUST_NSIG
18266
18267 EOCP
18268
18269 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
18270 {
18271         printf "#ifdef SIG"; printf $1; printf "\n"
18272         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
18273         printf $1; printf ");\n"
18274         printf "#endif\n"
18275 }
18276 END {
18277         printf "#endif /* JUST_NSIG */\n";
18278         printf "exit(0);\n}\n";
18279 }
18280 ' >>signal.c
18281 $cat >signal.awk <<'EOP'
18282 BEGIN { ndups = 0 }
18283 $1 ~ /^NSIG$/ { nsig = $2 }
18284 ($1 !~ /^NSIG$/) && (NF == 2) {
18285     if ($2 > maxsig) { maxsig = $2 }
18286     if (sig_name[$2]) {
18287         dup_name[ndups] = $1
18288         dup_num[ndups] = $2
18289         ndups++ 
18290     }
18291     else {
18292         sig_name[$2] = $1
18293         sig_num[$2] = $2
18294     }
18295 }
18296 END { 
18297     if (nsig == 0) {
18298         nsig = maxsig + 1
18299     }
18300     printf("NSIG %d\n", nsig);
18301     for (n = 1; n < nsig; n++) {
18302         if (sig_name[n]) {
18303             printf("%s %d\n", sig_name[n], sig_num[n])
18304         }
18305         else {
18306             printf("NUM%d %d\n", n, n) 
18307         }
18308     }
18309     for (n = 0; n < ndups; n++) {
18310         printf("%s %d\n", dup_name[n], dup_num[n])
18311     }
18312 }
18313 EOP
18314 $cat >signal_cmd <<EOS
18315 $startsh
18316 if $test -s signal.lst; then
18317     echo "Using your existing signal.lst file"
18318         exit 0
18319 fi
18320 xxx="$xxx"
18321 EOS
18322 $cat >>signal_cmd <<'EOS'
18323
18324 set signal
18325 if eval $compile_ok; then
18326         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
18327 else
18328         echo "(I can't seem be able to compile the whole test program)" >&4
18329         echo "(I'll try it in little pieces.)" >&4
18330         set signal -DJUST_NSIG
18331         if eval $compile_ok; then
18332                 $run ./signal$_exe > signal.nsg
18333                 $cat signal.nsg
18334         else
18335                 echo "I can't seem to figure out how many signals you have." >&4
18336                 echo "Guessing 50." >&4
18337                 echo 'NSIG 50' > signal.nsg
18338         fi
18339         : Now look at all the signal names, one at a time.
18340         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
18341                 $cat > signal.c <<EOCP
18342 #include <sys/types.h>
18343 #include <signal.h>
18344 #include <stdio.h>
18345 int main() {
18346 printf("$xx %d\n", SIG${xx});
18347 return 0;
18348 }
18349 EOCP
18350                 set signal
18351                 if eval $compile; then
18352                         echo "SIG${xx} found."
18353                         $run ./signal$_exe  >> signal.ls1
18354                 else
18355                         echo "SIG${xx} NOT found."
18356                 fi
18357         done
18358         if $test -s signal.ls1; then
18359                 $cat signal.nsg signal.ls1 |
18360                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
18361         fi
18362
18363 fi
18364 if $test -s signal.lst; then
18365         :
18366 else
18367         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
18368         echo 'kill -l' >signal
18369         set X `csh -f <signal`
18370         $rm -f signal
18371         shift
18372         case $# in
18373         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
18374         esac
18375         echo $@ | $tr ' ' $trnl | \
18376             $awk '{ printf "%s %d\n", $1, ++s; }
18377                   END { printf "NSIG %d\n", ++s }' >signal.lst
18378 fi
18379 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
18380 EOS
18381 chmod a+x signal_cmd
18382 $eunicefix signal_cmd
18383
18384 : generate list of signal names
18385 echo " "
18386 case "$sig_name_init" in
18387 '') doinit=yes ;;
18388 *)  case "$sig_num_init" in
18389     ''|*,*) doinit=yes ;;
18390     esac ;;
18391 esac
18392 case "$doinit" in
18393 yes)
18394         echo "Generating a list of signal names and numbers..." >&4
18395         . ./signal_cmd
18396         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
18397         sig_name=`$awk 'BEGIN { printf "ZERO " }
18398                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
18399         sig_num=`$awk  'BEGIN { printf "0 " }
18400                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
18401         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
18402                              !/^NSIG/   { printf "\"%s\", ", $1 }
18403                              END        { printf "0\n" }' signal.lst`
18404         sig_num_init=`$awk  'BEGIN      { printf "0, " }
18405                              !/^NSIG/   { printf "%d, ", $2}
18406                              END        { printf "0\n"}' signal.lst`
18407         ;;
18408 esac
18409 echo "The following $sig_count signals are available:"
18410 echo " "
18411 echo $sig_name | $awk \
18412 'BEGIN { linelen = 0 }
18413 {
18414         for (i = 1; i <= NF; i++) {
18415                 name = "SIG" $i " "
18416                 linelen = linelen + length(name)
18417                 if (linelen > 70) {
18418                         printf "\n"
18419                         linelen = length(name)
18420                 }
18421                 printf "%s", name
18422         }
18423         printf "\n"
18424 }'
18425 sig_size=`echo $sig_name | awk '{print NF}'`
18426 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
18427
18428 echo " "
18429 case "$sizetype" in
18430 *_t) zzz="$sizetype"    ;;
18431 *)   zzz="filesize"     ;;
18432 esac
18433 echo "Checking the size of $zzz..." >&4 
18434 cat > try.c <<EOCP
18435 #include <sys/types.h>
18436 #include <stdio.h>
18437 int main() {
18438     printf("%d\n", (int)sizeof($sizetype));
18439     exit(0);
18440 }
18441 EOCP
18442 set try
18443 if eval $compile_ok; then
18444         yyy=`$run ./try`
18445         case "$yyy" in
18446         '')     sizesize=4
18447                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
18448                 ;;
18449         *)      sizesize=$yyy
18450                 echo "Your $zzz size is $sizesize bytes."
18451                 ;;
18452         esac
18453 else
18454         sizesize=4
18455         echo "(I can't compile the test program--guessing $sizesize.)" >&4
18456 fi
18457
18458
18459 : check for socklen_t
18460 echo " "
18461 echo "Checking to see if you have socklen_t..." >&4
18462 $cat >try.c <<EOCP
18463 #include <sys/types.h>
18464 #$d_socket HAS_SOCKET
18465 #ifdef HAS_SOCKET
18466 #include <sys/socket.h>
18467 #endif
18468 int main() { socklen_t x = 16; }
18469 EOCP
18470 set try
18471 if eval $compile; then
18472         val="$define"
18473         echo "You have socklen_t."
18474 else
18475         val="$undef"
18476         echo "You do not have socklen_t."
18477         case "$sizetype" in
18478         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
18479         esac
18480 fi
18481 $rm -f try try.*
18482 set d_socklen_t
18483 eval $setvar
18484
18485 : see if this is a socks.h system
18486 set socks.h i_socks
18487 eval $inhdr
18488
18489 : check for type of the size argument to socket calls
18490 case "$d_socket" in
18491 "$define")
18492         $cat <<EOM
18493
18494 Checking to see what type is the last argument of accept().
18495 EOM
18496         yyy=''
18497         case "$d_socklen_t" in
18498         "$define") yyy="$yyy socklen_t"
18499         esac
18500         yyy="$yyy $sizetype int long unsigned"
18501         for xxx in $yyy; do
18502                 case "$socksizetype" in
18503                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
18504                         case "$usesocks" in
18505                         "$define")
18506                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
18507                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
18508                                         socksizetype="$xxx"
18509                                 fi
18510                                 ;;
18511                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
18512                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
18513                                         socksizetype="$xxx"
18514                                 fi
18515                                 ;;
18516                         esac
18517                         ;;
18518                 esac
18519         done
18520 : In case none of those worked, prompt the user.
18521         case "$socksizetype" in
18522         '')     rp='What is the type for socket address structure sizes?'
18523                 dflt='int'
18524                 . ./myread
18525                 socksizetype=$ans
18526                 ;;
18527         esac
18528         ;;
18529 *)      : no sockets, so pick relatively harmless default
18530         socksizetype='int'
18531         ;;
18532 esac
18533
18534 : see what type is used for signed size_t
18535 set ssize_t ssizetype int stdio.h sys/types.h
18536 eval $typedef
18537 dflt="$ssizetype"
18538 $cat > try.c <<EOM
18539 #include <stdio.h>
18540 #include <sys/types.h>
18541 #define Size_t $sizetype
18542 #define SSize_t $dflt
18543 int main()
18544 {
18545         if (sizeof(Size_t) == sizeof(SSize_t))
18546                 printf("$dflt\n");
18547         else if (sizeof(Size_t) == sizeof(int))
18548                 printf("int\n");
18549         else 
18550                 printf("long\n");
18551         exit(0);
18552 }
18553 EOM
18554 echo " "
18555 set try
18556 if eval $compile_ok && $run ./try > /dev/null; then
18557         ssizetype=`$run ./try`
18558         echo "I'll be using $ssizetype for functions returning a byte count." >&4
18559 else
18560         $cat >&4 <<EOM
18561 Help! I can't compile and run the ssize_t test program: please enlighten me!
18562 (This is probably a misconfiguration in your system or libraries, and
18563 you really ought to fix it.  Still, I'll try anyway.)
18564
18565 I need a type that is the same size as $sizetype, but is guaranteed to
18566 be signed.  Common values are ssize_t, int and long.
18567
18568 EOM
18569         rp="What signed type is the same size as $sizetype?"
18570         . ./myread
18571         ssizetype="$ans"
18572 fi
18573 $rm -f try try.*
18574
18575 : see what type of char stdio uses.
18576 echo " "
18577 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
18578 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
18579         echo "Your stdio uses unsigned chars." >&4
18580         stdchar="unsigned char"
18581 else
18582         echo "Your stdio uses signed chars." >&4
18583         stdchar="char"
18584 fi
18585 $rm -f stdioh
18586
18587
18588
18589 : see what type uids are declared as in the kernel
18590 echo " "
18591 echo "Looking for the type for user ids returned by getuid()."
18592 set uid_t uidtype xxx stdio.h sys/types.h
18593 eval $typedef
18594 case "$uidtype" in
18595 xxx)
18596         xxx=`./findhdr sys/user.h`
18597         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
18598         case $1 in
18599         unsigned) dflt="$1 $2" ;;
18600         *) dflt="$1" ;;
18601         esac
18602         ;;
18603 *) dflt="$uidtype";;
18604 esac
18605 case "$uidtype" in
18606 uid_t)  echo "uid_t found." ;;
18607 *)      rp="What is the type for user ids returned by getuid()?"
18608         . ./myread
18609         uidtype="$ans"
18610         ;;
18611 esac
18612
18613 echo " "
18614 case "$uidtype" in
18615 *_t) zzz="$uidtype"     ;;
18616 *)   zzz="uid"          ;;
18617 esac
18618 echo "Checking the size of $zzz..." >&4 
18619 cat > try.c <<EOCP
18620 #include <sys/types.h>
18621 #include <stdio.h>
18622 int main() {
18623     printf("%d\n", (int)sizeof($uidtype));
18624     exit(0);
18625 }
18626 EOCP
18627 set try
18628 if eval $compile_ok; then
18629         yyy=`$run ./try`
18630         case "$yyy" in
18631         '')     uidsize=4
18632                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
18633                 ;;
18634         *)      uidsize=$yyy
18635                 echo "Your $zzz is $uidsize bytes long."
18636                 ;;
18637         esac
18638 else
18639         uidsize=4
18640         echo "(I can't compile the test program--guessing $uidsize.)" >&4
18641 fi
18642
18643 echo " "
18644 case "$uidtype" in
18645 *_t) zzz="$uidtype"     ;;
18646 *)   zzz="uid"          ;;
18647 esac
18648 echo "Checking the sign of $zzz..." >&4
18649 cat > try.c <<EOCP
18650 #include <sys/types.h>
18651 #include <stdio.h>
18652 int main() {
18653         $uidtype foo = -1;
18654         if (foo < 0)
18655                 printf("-1\n");
18656         else
18657                 printf("1\n");
18658 }
18659 EOCP
18660 set try
18661 if eval $compile; then
18662         yyy=`$run ./try`
18663         case "$yyy" in
18664         '')     uidsign=1
18665                 echo "(I can't execute the test program--guessing unsigned.)" >&4
18666                 ;;
18667         *)      uidsign=$yyy
18668                 case "$uidsign" in
18669                  1) echo "Your $zzz is unsigned." ;;
18670                 -1) echo "Your $zzz is signed."   ;;
18671                 esac
18672                 ;;
18673         esac
18674 else
18675         uidsign=1
18676         echo "(I can't compile the test program--guessing unsigned.)" >&4
18677 fi
18678
18679
18680
18681 echo " "
18682 $echo "Checking the format string to be used for uids..." >&4
18683
18684 case "$uidsign" in
18685 -1)     if $test X"$uidsize" = X"$ivsize"; then
18686                 uidformat="$ivdformat"
18687         else
18688                 if $test X"$uidsize" = X"$longsize"; then
18689                         uidformat='"ld"'
18690                 else
18691                         if $test X"$uidsize" = X"$intsize"; then
18692                                 uidformat='"d"'
18693                         else
18694                                 if $test X"$uidsize" = X"$shortsize"; then
18695                                         uidformat='"hd"'
18696                                 fi
18697                         fi
18698                 fi
18699         fi
18700         ;;
18701 *)      if $test X"$uidsize" = X"$uvsize"; then
18702                 uidformat="$uvuformat"
18703         else
18704                 if $test X"$uidsize" = X"$longsize"; then
18705                         uidformat='"lu"'
18706                 else
18707                         if $test X"$uidsize" = X"$intsize"; then
18708                                 uidformat='"u"'
18709                         else
18710                                 if $test X"$uidsize" = X"$shortsize"; then
18711                                         uidformat='"hu"'
18712                                 fi
18713                         fi
18714                 fi
18715         fi
18716         ;;
18717 esac
18718
18719 : determine compiler compiler
18720 case "$yacc" in
18721 '')
18722         dflt=yacc;;
18723 *)
18724         dflt="$yacc";;
18725 esac
18726 echo " "
18727 comp='yacc'
18728 if $test -f "$byacc$_exe"; then
18729         dflt="$byacc"
18730         comp="byacc or $comp"
18731 fi
18732 if $test -f "$bison$_exe"; then
18733         comp="$comp or bison -y"
18734 fi
18735 rp="Which compiler compiler ($comp) shall I use?"
18736 . ./myread
18737 yacc="$ans"
18738 case "$yacc" in
18739 *bis*)
18740         case "$yacc" in
18741         *-y*) ;;
18742         *)
18743                 yacc="$yacc -y"
18744                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
18745                 ;;
18746         esac
18747         ;;
18748 esac
18749
18750 : see if this is a fp.h system
18751 set fp.h i_fp
18752 eval $inhdr
18753
18754 : see if this is a fp_class.h system
18755 set fp_class.h i_fp_class
18756 eval $inhdr
18757
18758 : see if this is a ieeefp.h system
18759 case "$i_ieeefp" in
18760 '' ) set ieeefp.h i_ieeefp
18761      eval $inhdr
18762      ;;
18763 esac
18764
18765 : see if this is a libutil.h system
18766 set libutil.h i_libutil
18767 eval $inhdr
18768
18769 : see if mach cthreads are available
18770 if test "X$usethreads" = "X$define"; then
18771         set mach/cthreads.h i_machcthr
18772         eval $inhdr
18773 else
18774         i_machcthr="$undef"
18775 fi
18776
18777
18778
18779 : see if this is a math.h system
18780 set math.h i_math
18781 eval $inhdr
18782
18783 : see if this is a mntent.h system
18784 set mntent.h i_mntent
18785 eval $inhdr
18786
18787 : see if ndbm.h is available
18788 set ndbm.h t_ndbm
18789 eval $inhdr
18790
18791 case "$t_ndbm" in
18792 $undef)
18793     # Some Linux distributions such as RedHat 7.1 put the
18794     # ndbm.h header in /usr/include/gdbm/ndbm.h.
18795     if $test -f /usr/include/gdbm/ndbm.h; then
18796         echo '<gdbm/ndbm.h> found.'
18797         ccflags="$ccflags -I/usr/include/gdbm"
18798         cppflags="$cppflags -I/usr/include/gdbm"
18799         t_ndbm=$define
18800     fi
18801     ;;
18802 esac
18803
18804 case "$t_ndbm" in
18805 $define)
18806         : see if dbm_open exists
18807         set dbm_open d_dbm_open
18808         eval $inlibc
18809         case "$d_dbm_open" in
18810         $undef)
18811                 t_ndbm="$undef"
18812                 echo "We won't be including <ndbm.h>"
18813                 ;;
18814         esac
18815         ;;
18816 esac
18817 val="$t_ndbm"
18818 set i_ndbm
18819 eval $setvar
18820
18821 : see if net/errno.h is available
18822 val=''
18823 set net/errno.h val
18824 eval $inhdr
18825
18826 : Unfortunately, it causes problems on some systems.  Arrgh.
18827 case "$val" in
18828 $define)
18829         cat > try.c <<'EOM'
18830 #include <stdio.h>
18831 #include <errno.h>
18832 #include <net/errno.h>
18833 int func()
18834 {
18835         return ENOTSOCK;
18836 }
18837 EOM
18838         if $cc $ccflags -c try.c >/dev/null 2>&1; then
18839                 echo "We'll be including <net/errno.h>." >&4
18840         else
18841                 echo "We won't be including <net/errno.h>." >&4
18842                 val="$undef"
18843         fi
18844         $rm -f try.* try
18845         ;;
18846 esac
18847 set i_neterrno
18848 eval $setvar
18849
18850 : see if netinet/tcp.h is available
18851 set netinet/tcp.h i_netinettcp
18852 eval $inhdr
18853
18854 : see if this is a poll.h system
18855 set poll.h i_poll
18856 eval $inhdr
18857
18858 : see if this is a prot.h system
18859 set prot.h i_prot
18860 eval $inhdr
18861
18862 echo " "
18863 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
18864 $cat <<'EOSH' > Cppsym.know
18865 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
18866 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
18867 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
18868 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
18869 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
18870 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
18871 bull c cadmus clipper CMU COFF COMPILER_VERSION
18872 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
18873 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
18874 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
18875 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
18876 GLIBC GLIBC_MINOR
18877 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
18878 H3050R H3050RX hbullx20 hcx host_mips
18879 hp200 hp300 hp700 HP700 hp800 hp9000
18880 hp9000s200 hp9000s300 hp9000s400 hp9000s500
18881 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
18882 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
18883 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
18884 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
18885 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
18886 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
18887 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
18888 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
18889 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
18890 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
18891 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
18892 MATH_HAS_NO_SIDE_EFFECTS
18893 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
18894 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
18895 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
18896 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
18897 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
18898 NetBSD news1500 news1700 news1800 news1900 news3700
18899 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
18900 ns32016 ns32332 ns32k nsc32000
18901 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
18902 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
18903 pc532 pdp11 PGC PIC plexus PORTAR posix
18904 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
18905 POSIX_C_SOURCE POSIX_SOURCE POWER
18906 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
18907 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
18908 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
18909 sony sony_news sonyrisc sparc sparclite spectrum
18910 stardent stdc STDC_EXT stratos sun sun3 sun386
18911 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
18912 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
18913 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
18914 sysV68 sysV88 Tek4132 Tek4300 titan
18915 TM3200 TM5400 TM5600
18916 tower tower32 tower32_200 tower32_600 tower32_700
18917 tower32_800 tower32_850 tss
18918 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
18919 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
18920 unix UNIX95 UNIX99 unixpc unos
18921 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
18922 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
18923 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
18924 USGr4 USGr4_2
18925 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
18926 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
18927 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
18928 z8000
18929 EOSH
18930 # Maybe put other stuff here too.
18931 cat <<EOSH >>Cppsym.know
18932 $osname
18933 EOSH
18934 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
18935 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
18936 $cat Cppsym.know > Cppsym.c
18937 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
18938 $rm -f Cppsym.a Cppsym.b Cppsym.c
18939 cat <<EOSH > Cppsym
18940 $startsh
18941 if $test \$# -gt 0; then
18942     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
18943     if $test -s Cppsym.got; then
18944         $rm -f Cppsym.got
18945         exit 0
18946     fi
18947     $rm -f Cppsym.got
18948     exit 1
18949 else
18950     $tr " " "$trnl" | ./Cppsym.try
18951     exit 0
18952 fi
18953 EOSH
18954 chmod +x Cppsym
18955 $eunicefix Cppsym
18956 cat <<EOSH > Cppsym.try
18957 $startsh
18958 cat <<'EOCP' > try.c
18959 #include <stdio.h>
18960 int main() {
18961 EOCP
18962 $awk \\
18963 EOSH
18964 cat <<'EOSH' >> Cppsym.try
18965 'length($1) > 0 {
18966     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
18967     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
18968     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
18969     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
18970 }'       >> try.c
18971 echo 'return 0;}' >> try.c
18972 EOSH
18973 cat <<EOSH >> Cppsym.try
18974 ccflags="$ccflags"
18975 case "$osname-$gccversion" in
18976 irix-) ccflags="\$ccflags -woff 1178" ;;
18977 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
18978 esac
18979 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
18980 EOSH
18981 chmod +x Cppsym.try
18982 $eunicefix Cppsym.try
18983 ./Cppsym < Cppsym.know > Cppsym.true
18984 : now check the C compiler for additional symbols
18985 postprocess_cc_v=''
18986 case "$osname" in
18987 aix) postprocess_cc_v="|$tr , ' '" ;;
18988 esac
18989 $cat >ccsym <<EOS
18990 $startsh
18991 $cat >tmp.c <<EOF
18992 extern int foo;
18993 EOF
18994 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
18995 do
18996         case "\$i" in
18997         -D*) echo "\$i" | $sed 's/^-D//';;
18998         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
18999         esac
19000 done
19001 $rm -f try.c
19002 EOS
19003 postprocess_cc_v=''
19004 chmod +x ccsym
19005 $eunicefix ccsym
19006 ./ccsym > ccsym1.raw
19007 if $test -s ccsym1.raw; then
19008        $sort ccsym1.raw | $uniq >ccsym.raw
19009 else
19010        mv ccsym1.raw ccsym.raw
19011 fi
19012
19013 $awk '/\=/ { print $0; next }
19014         { print $0"=1" }' ccsym.raw >ccsym.list
19015 $awk '/\=/ { print $0; next }
19016         { print $0"=1" }' Cppsym.true >ccsym.true
19017 $comm -13 ccsym.true ccsym.list >ccsym.own
19018 $comm -12 ccsym.true ccsym.list >ccsym.com
19019 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19020 also=''
19021 if $test -z ccsym.raw; then
19022         echo "Your C compiler doesn't seem to define any symbols!" >&4
19023         echo " "
19024         echo "However, your C preprocessor defines the following symbols:"
19025         $cat Cppsym.true
19026         ccsymbols=''
19027         cppsymbols=`$cat Cppsym.true`
19028         cppsymbols=`echo $cppsymbols`
19029         cppccsymbols="$cppsymbols"
19030 else
19031         if $test -s ccsym.com; then
19032                 echo "Your C compiler and pre-processor define these symbols:"
19033                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19034                 also='also '
19035                 symbols='ones'
19036                 cppccsymbols=`$cat ccsym.com`
19037                 cppccsymbols=`echo $cppccsymbols`
19038                 $test "$silent" || sleep 1
19039         fi
19040         if $test -s ccsym.cpp; then
19041                 $test "$also" && echo " "
19042                 echo "Your C pre-processor ${also}defines the following symbols:"
19043                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19044                 also='further '
19045                 cppsymbols=`$cat ccsym.cpp`
19046                 cppsymbols=`echo $cppsymbols`
19047                 $test "$silent" || sleep 1
19048         fi
19049         if $test -s ccsym.own; then
19050                 $test "$also" && echo " "
19051                 echo "Your C compiler ${also}defines the following cpp symbols:"
19052                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19053                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19054                 ccsymbols=`$cat ccsym.own`
19055                 ccsymbols=`echo $ccsymbols`
19056                 $test "$silent" || sleep 1
19057         fi
19058 fi
19059
19060 : see if this is a termio system
19061 val="$undef"
19062 val2="$undef"
19063 val3="$undef"
19064 if $test `./findhdr termios.h`; then
19065         set tcsetattr i_termios
19066         eval $inlibc
19067         val3="$i_termios"
19068 fi
19069 echo " "
19070 case "$val3" in
19071 "$define") echo "You have POSIX termios.h... good!" >&4;;
19072 *) if ./Cppsym pyr; then
19073                 case "`/bin/universe`" in
19074                 ucb) if $test `./findhdr sgtty.h`; then
19075                                 val2="$define"
19076                                 echo "<sgtty.h> found." >&4
19077                         else
19078                                 echo "System is pyramid with BSD universe."
19079                                 echo "<sgtty.h> not found--you could have problems." >&4
19080                         fi;;
19081                 *) if $test `./findhdr termio.h`; then
19082                                 val="$define"
19083                                 echo "<termio.h> found." >&4
19084                         else
19085                                 echo "System is pyramid with USG universe."
19086                                 echo "<termio.h> not found--you could have problems." >&4
19087                         fi;;
19088                 esac
19089         elif ./usg; then
19090                 if $test `./findhdr termio.h`; then
19091                         echo "<termio.h> found." >&4
19092                         val="$define"
19093                 elif $test `./findhdr sgtty.h`; then
19094                         echo "<sgtty.h> found." >&4
19095                         val2="$define"
19096                 else
19097 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19098                 fi
19099         else
19100                 if $test `./findhdr sgtty.h`; then
19101                         echo "<sgtty.h> found." >&4
19102                         val2="$define"
19103                 elif $test `./findhdr termio.h`; then
19104                         echo "<termio.h> found." >&4
19105                         val="$define"
19106                 else
19107 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19108                 fi
19109         fi;;
19110 esac
19111 set i_termio; eval $setvar
19112 val=$val2; set i_sgtty; eval $setvar
19113 val=$val3; set i_termios; eval $setvar
19114
19115 : see if stddef is available
19116 set stddef.h i_stddef
19117 eval $inhdr
19118
19119 : see if this is a sunmath.h system
19120 set sunmath.h i_sunmath
19121 eval $inhdr
19122
19123 : see if sys/access.h is available
19124 set sys/access.h i_sysaccess
19125 eval $inhdr
19126
19127 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19128 set sys/filio.h i_sysfilio
19129 eval $inhdr
19130 echo " "
19131 if $test `./findhdr sys/ioctl.h`; then
19132         val="$define"
19133         echo '<sys/ioctl.h> found.' >&4
19134 else
19135         val="$undef"
19136         if $test $i_sysfilio = "$define"; then
19137             echo '<sys/ioctl.h> NOT found.' >&4
19138         else
19139                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19140                 $test $i_termio = "$define" && xxx="termio.h"
19141                 $test $i_termios = "$define" && xxx="termios.h"
19142 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19143         fi
19144 fi
19145 set i_sysioctl
19146 eval $setvar
19147
19148 : see if socket ioctl defs are in sys/sockio.h
19149 echo " "
19150 xxx=`./findhdr sys/sockio.h`
19151 if $test "$xxx"; then
19152         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19153                 val="$define"
19154                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19155         else
19156                 val="$undef"
19157                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19158         fi
19159 else
19160         val="$undef"
19161         $cat <<EOM
19162 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19163 EOM
19164 fi
19165 set i_syssockio
19166 eval $setvar
19167
19168
19169 : see if this is a syslog.h system
19170 set syslog.h i_syslog
19171 eval $inhdr
19172
19173
19174 : see if this is a sys/mode.h system
19175 set sys/mode.h i_sysmode
19176 eval $inhdr
19177
19178 : see if sys/resource.h has to be included
19179 set sys/resource.h i_sysresrc
19180 eval $inhdr
19181
19182 : see if sys/security.h is available
19183 set sys/security.h i_syssecrt
19184 eval $inhdr
19185
19186 : see if this is a sys/statvfs.h system
19187 set sys/statvfs.h i_sysstatvfs
19188 eval $inhdr
19189
19190 : see if this is a sys/un.h system
19191 set sys/un.h i_sysun
19192 eval $inhdr
19193
19194
19195 : see if this is a sys/utsname.h system
19196 set sys/utsname.h i_sysutsname
19197 eval $inhdr
19198
19199 : see if this is a syswait system
19200 set sys/wait.h i_syswait
19201 eval $inhdr
19202
19203 : see if this is a ustat.h system
19204 set ustat.h i_ustat
19205 eval $inhdr
19206
19207 : see if this is an utime system
19208 set utime.h i_utime
19209 eval $inhdr
19210
19211 : see if this is a values.h system
19212 set values.h i_values
19213 eval $inhdr
19214
19215 : see if this is a vfork system
19216 case "$d_vfork" in
19217 "$define")
19218         set vfork.h i_vfork
19219         eval $inhdr
19220         ;;
19221 *)
19222         i_vfork="$undef"
19223         ;;
19224 esac
19225
19226 : see if gdbm.h is available
19227 set gdbm.h t_gdbm
19228 eval $inhdr
19229 case "$t_gdbm" in
19230 $define)
19231         : see if gdbm_open exists
19232         set gdbm_open d_gdbm_open
19233         eval $inlibc
19234         case "$d_gdbm_open" in
19235         $undef)
19236                 t_gdbm="$undef"
19237                 echo "We won't be including <gdbm.h>"
19238                 ;;
19239         esac
19240         ;;
19241 esac
19242 val="$t_gdbm"
19243 set i_gdbm
19244 eval $setvar
19245
19246 echo " "
19247 echo "Looking for extensions..." >&4
19248 : If we are using the old config.sh, known_extensions may contain
19249 : old or inaccurate or duplicate values.
19250 known_extensions=''
19251 nonxs_extensions=''
19252 : We do not use find because it might not be available.
19253 : We do not just use MANIFEST because the user may have dropped
19254 : some additional extensions into the source tree and expect them
19255 : to be built.
19256
19257 : Function to recursively find available extensions, ignoring DynaLoader
19258 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
19259 find_extensions='
19260     for xxx in *; do
19261        case "$xxx" in
19262            DynaLoader|dynaload) ;;
19263            *)
19264            if $test -f $xxx/$xxx.xs; then
19265                known_extensions="$known_extensions $1$xxx";
19266            elif $test -f $xxx/Makefile.PL; then
19267                nonxs_extensions="$nonxs_extensions $1$xxx";
19268            else
19269                if $test -d $xxx -a $# -lt 10; then
19270                    set $1$xxx/ $*;
19271                    cd "$xxx";
19272                    eval $find_extensions;
19273                    cd ..;
19274                    shift;
19275                fi;
19276            fi
19277            ;;
19278        esac;
19279     done'
19280 tdir=`pwd`
19281 cd "$rsrc/ext"
19282 set X
19283 shift
19284 eval $find_extensions
19285 # Special case:  Add in threads/shared since it is not picked up by the
19286 # recursive find above (and adding in general recursive finding breaks
19287 # SDBM_File/sdbm).  A.D.  10/25/2001.
19288 known_extensions="$known_extensions threads/shared"
19289 set X $nonxs_extensions
19290 shift
19291 nonxs_extensions="$*"
19292 set X $known_extensions
19293 shift
19294 known_extensions="$*"
19295 cd "$tdir"
19296
19297 : Now see which are supported on this system.
19298 avail_ext=''
19299 for xxx in $known_extensions ; do
19300         case "$xxx" in
19301         DB_File|db_file)
19302                 case "$i_db" in
19303                 $define) avail_ext="$avail_ext $xxx" ;;
19304                 esac
19305                 ;;
19306         GDBM_File|gdbm_fil)
19307                 case "$i_gdbm" in 
19308                 $define) avail_ext="$avail_ext $xxx" ;;
19309                 esac
19310                 ;;
19311         I18N/Langinfo|i18n_lan)
19312                 case "$i_langinfo$d_nl_langinfo" in 
19313                 $define$define) avail_ext="$avail_ext $xxx" ;;
19314                 esac
19315                 ;;
19316         NDBM_File|ndbm_fil)
19317                 case "$i_ndbm" in
19318                 $define)
19319                     case "$osname-$use64bitint" in
19320                     hpux-define)
19321                         case "$libs" in
19322                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
19323                         esac
19324                         ;;
19325                     *) avail_ext="$avail_ext $xxx" ;;
19326                     esac
19327                     ;;
19328                 esac
19329                 ;;
19330         ODBM_File|odbm_fil) 
19331                 case "${i_dbm}${i_rpcsvcdbm}" in
19332                 *"${define}"*)
19333                     case "$osname-$use64bitint" in
19334                     hpux-define)
19335                         case "$libs" in
19336                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
19337                         esac
19338                         ;;
19339                     *) avail_ext="$avail_ext $xxx" ;;
19340                     esac
19341                     ;;
19342                 esac
19343                 ;;
19344         POSIX|posix)
19345                 case "$useposix" in
19346                 true|define|y) avail_ext="$avail_ext $xxx" ;;
19347                 esac
19348                 ;;
19349         Opcode|opcode)
19350                 case "$useopcode" in
19351                 true|define|y) avail_ext="$avail_ext $xxx" ;;
19352                 esac
19353                 ;;
19354         Socket|socket)
19355                 case "$d_socket" in 
19356                 true|$define|y)
19357                     case "$osname" in
19358                     beos) ;; # not unless BONE
19359                     *) avail_ext="$avail_ext $xxx" ;;
19360                     esac
19361                     ;;
19362                 esac
19363                 ;;
19364         Sys/Syslog|sys/syslog)
19365                 : XXX syslog requires socket
19366                 case "$d_socket" in 
19367                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
19368                 esac
19369                 ;;
19370         Thread|thread)
19371                 case "$usethreads" in
19372                 true|$define|y)
19373                         case "$useithreads" in
19374                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
19375                         esac
19376                 esac
19377                 ;;
19378         XS/APItest|xs/apitest)
19379                 # This is just for testing.  Skip it unless we have dynamic loading.
19380
19381                 case "$usedl" in
19382                 $define) avail_ext="$avail_ext $xxx" ;;
19383                 esac
19384                 ;;
19385         XS/Typemap|xs/typemap)
19386                 # This is just for testing.  Skip it unless we have dynamic loading.
19387                 case "$usedl" in
19388                 $define) avail_ext="$avail_ext $xxx" ;;
19389                 esac
19390                 ;;
19391         threads|threads/shared)
19392                 # threads and threads::shared are special cases.
19393                 # To stop people from asking "Perl 5.8.0 was supposed
19394                 # to have this new fancy threads implementation but my
19395                 # perl doesn't have it" and from people trying to
19396                 # (re)install the threads module using CPAN.pm and
19397                 # CPAN.pm then offering to reinstall Perl 5.8.0,
19398                 # the threads.pm and threads/shared.pm will always be
19399                 # there, croaking informatively ("you need to rebuild
19400                 # all of Perl with threads, sorry") when threads haven't
19401                 # been compiled in.
19402                 # --jhi
19403                 avail_ext="$avail_ext $xxx"
19404                 ;;
19405         IPC/SysV|ipc/sysv)
19406                 : XXX Do we need a useipcsysv variable here
19407                 case "${d_msg}${d_sem}${d_shm}" in 
19408                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
19409                 esac
19410                 ;;
19411         *)      avail_ext="$avail_ext $xxx"
19412                 ;;
19413         esac
19414 done
19415
19416 set X $avail_ext
19417 shift
19418 avail_ext="$*"
19419
19420 : Now see which nonxs extensions are supported on this system.
19421 : For now assume all are.
19422 nonxs_ext=''
19423 for xxx in $nonxs_extensions ; do
19424         case "$xxx" in
19425         *)      nonxs_ext="$nonxs_ext $xxx"
19426                 ;;
19427         esac
19428 done
19429
19430 set X $nonxs_ext
19431 shift
19432 nonxs_ext="$*"
19433
19434 case $usedl in
19435 $define)
19436         $cat <<EOM
19437 A number of extensions are supplied with $package.  You may choose to
19438 compile these extensions for dynamic loading (the default), compile
19439 them into the $package executable (static loading), or not include
19440 them at all.  Answer "none" to include no extensions.
19441 Note that DynaLoader is always built and need not be mentioned here.
19442
19443 EOM
19444         case "$dynamic_ext" in
19445         '')
19446                 : Exclude those listed in static_ext
19447                 dflt=''
19448                 for xxx in $avail_ext; do
19449                         case " $static_ext " in
19450                         *" $xxx "*) ;;
19451                         *) dflt="$dflt $xxx" ;;
19452                         esac
19453                 done
19454                 set X $dflt
19455                 shift
19456                 dflt="$*"
19457                 ;;
19458         *)      dflt="$dynamic_ext"
19459                 # Perhaps we are reusing an old out-of-date config.sh.
19460                 case "$hint" in
19461                 previous)
19462                         if test X"$dynamic_ext" != X"$avail_ext"; then
19463                                 $cat <<EOM
19464 NOTICE:  Your previous config.sh list may be incorrect. 
19465 The extensions now available to you are 
19466         ${avail_ext}
19467 but the default list from your previous config.sh is
19468         ${dynamic_ext} 
19469
19470 EOM
19471                         fi
19472                         ;;
19473                 esac
19474                 ;;
19475         esac
19476         case "$dflt" in
19477         '')     dflt=none;;
19478         esac
19479         rp="What extensions do you wish to load dynamically?"
19480         . ./myread
19481         case "$ans" in
19482         none) dynamic_ext=' ' ;;
19483         *) dynamic_ext="$ans" ;;
19484         esac
19485
19486         case "$static_ext" in
19487         '')
19488                 : Exclude those already listed in dynamic linking
19489                 dflt=''
19490                 for xxx in $avail_ext; do
19491                         case " $dynamic_ext " in
19492                         *" $xxx "*) ;;
19493                         *) dflt="$dflt $xxx" ;;
19494                         esac
19495                 done
19496                 set X $dflt
19497                 shift
19498                 dflt="$*"
19499                 ;;
19500         *)  dflt="$static_ext" 
19501                 ;;
19502         esac
19503
19504         case "$dflt" in
19505         '')     dflt=none;;
19506         esac
19507         rp="What extensions do you wish to load statically?"
19508         . ./myread
19509         case "$ans" in
19510         none) static_ext=' ' ;;
19511         *) static_ext="$ans" ;;
19512         esac
19513         ;;
19514 *)
19515         $cat <<EOM
19516 A number of extensions are supplied with $package.  Answer "none" 
19517 to include no extensions. 
19518 Note that DynaLoader is always built and need not be mentioned here.
19519
19520 EOM
19521         case "$static_ext" in
19522         '') dflt="$avail_ext" ;;
19523         *)      dflt="$static_ext"
19524                 # Perhaps we are reusing an old out-of-date config.sh.
19525                 case "$hint" in
19526                 previous)
19527                         if test X"$static_ext" != X"$avail_ext"; then
19528                                 $cat <<EOM
19529 NOTICE:  Your previous config.sh list may be incorrect. 
19530 The extensions now available to you are 
19531         ${avail_ext}
19532 but the default list from your previous config.sh is
19533         ${static_ext} 
19534
19535 EOM
19536                         fi
19537                         ;;
19538                 esac
19539                 ;;
19540         esac
19541         : Exclude those that are not xs extensions
19542         case "$dflt" in
19543         '')     dflt=none;;
19544         esac
19545         rp="What extensions do you wish to include?"
19546         . ./myread
19547         case "$ans" in
19548         none) static_ext=' ' ;;
19549         *) static_ext="$ans" ;;
19550         esac
19551         ;;
19552 esac
19553 #        
19554 # Encode is a special case.  If we are building Encode as a static
19555 # extension, we need to explicitly list its subextensions as well.
19556 # For other nested extensions, this is handled automatically by
19557 # the appropriate Makefile.PL.
19558 case " $static_ext " in
19559         *" Encode "*) # Add the subextensions of Encode
19560         cd "$rsrc/ext"
19561         for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
19562                 static_ext="$static_ext Encode/$xxx"
19563         done
19564         cd "$tdir"
19565         ;;
19566 esac
19567
19568 set X $dynamic_ext $static_ext $nonxs_ext
19569 shift
19570 extensions="$*"
19571
19572 : Remove libraries needed only for extensions
19573 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
19574 : The exception is SunOS 4.x, which needs them.
19575 case "${osname}X${osvers}" in
19576 sunos*X4*)
19577     perllibs="$libs"
19578     ;;
19579 *) case "$usedl" in
19580     $define|true|[yY]*)
19581             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
19582             shift
19583             perllibs="$*"
19584             ;;
19585     *)  perllibs="$libs"
19586             ;;
19587     esac
19588     ;;
19589 esac
19590
19591 : Remove build directory name from cppstdin so it can be used from
19592 : either the present location or the final installed location.
19593 echo " "
19594 : Get out of the UU directory to get correct path name.
19595 cd ..
19596 case "$cppstdin" in
19597 `pwd`/cppstdin)
19598         echo "Stripping down cppstdin path name"
19599         cppstdin=cppstdin
19600         ;;
19601 esac
19602 cd UU
19603
19604 : end of configuration questions
19605 echo " "
19606 echo "End of configuration questions."
19607 echo " "
19608
19609 : back to where it started
19610 if test -d ../UU; then
19611         cd ..
19612 fi
19613
19614 : configuration may be patched via a 'config.arch' file
19615 if $test -f config.arch; then
19616         echo "I see a config.arch file, loading it."
19617         . ./config.arch
19618 fi
19619
19620 : configuration may be patched via a 'config.over' file
19621 if $test -f config.over; then
19622         echo " "
19623         dflt=y
19624         rp='I see a config.over file.  Do you wish to load it?'
19625         . UU/myread
19626         case "$ans" in
19627         n*) echo "OK, I'll ignore it.";;
19628         *)      . ./config.over
19629                 echo "Configuration override changes have been loaded."
19630                 ;;
19631         esac
19632 fi
19633
19634 : in case they want portability, strip down executable paths
19635 case "$d_portable" in
19636 "$define")
19637         echo " "
19638         echo "Stripping down executable paths..." >&4
19639         for file in $loclist $trylist; do
19640                 eval temp=\$$file
19641                 eval $file=`basename $temp`
19642         done
19643         ;;
19644 esac
19645
19646 : create config.sh file
19647 echo " "
19648 echo "Creating config.sh..." >&4
19649 $spitshell <<EOT >config.sh
19650 $startsh
19651 #
19652 # This file was produced by running the Configure script. It holds all the
19653 # definitions figured out by Configure. Should you modify one of these values,
19654 # do not forget to propagate your changes by running "Configure -der". You may
19655 # instead choose to run each of the .SH files by yourself, or "Configure -S".
19656 #
19657
19658 # Package name      : $package
19659 # Source directory  : $src
19660 # Configuration time: $cf_time
19661 # Configured by     : $cf_by
19662 # Target system     : $myuname
19663
19664 Author='$Author'
19665 Date='$Date'
19666 Header='$Header'
19667 Id='$Id'
19668 Locker='$Locker'
19669 Log='$Log'
19670 Mcc='$Mcc'
19671 RCSfile='$RCSfile'
19672 Revision='$Revision'
19673 Source='$Source'
19674 State='$State'
19675 _a='$_a'
19676 _exe='$_exe'
19677 _o='$_o'
19678 afs='$afs'
19679 afsroot='$afsroot'
19680 alignbytes='$alignbytes'
19681 ansi2knr='$ansi2knr'
19682 aphostname='$aphostname'
19683 api_revision='$api_revision'
19684 api_subversion='$api_subversion'
19685 api_version='$api_version'
19686 api_versionstring='$api_versionstring'
19687 ar='$ar'
19688 archlib='$archlib'
19689 archlibexp='$archlibexp'
19690 archname64='$archname64'
19691 archname='$archname'
19692 archobjs='$archobjs'
19693 asctime_r_proto='$asctime_r_proto'
19694 awk='$awk'
19695 baserev='$baserev'
19696 bash='$bash'
19697 bin='$bin'
19698 binexp='$binexp'
19699 bison='$bison'
19700 byacc='$byacc'
19701 byteorder='$byteorder'
19702 c='$c'
19703 castflags='$castflags'
19704 cat='$cat'
19705 cc='$cc'
19706 cccdlflags='$cccdlflags'
19707 ccdlflags='$ccdlflags'
19708 ccflags='$ccflags'
19709 ccflags_uselargefiles='$ccflags_uselargefiles'
19710 ccname='$ccname'
19711 ccsymbols='$ccsymbols'
19712 ccversion='$ccversion'
19713 cf_by='$cf_by'
19714 cf_email='$cf_email'
19715 cf_time='$cf_time'
19716 charsize='$charsize'
19717 chgrp='$chgrp'
19718 chmod='$chmod'
19719 chown='$chown'
19720 clocktype='$clocktype'
19721 comm='$comm'
19722 compress='$compress'
19723 contains='$contains'
19724 cp='$cp'
19725 cpio='$cpio'
19726 cpp='$cpp'
19727 cpp_stuff='$cpp_stuff'
19728 cppccsymbols='$cppccsymbols'
19729 cppflags='$cppflags'
19730 cpplast='$cpplast'
19731 cppminus='$cppminus'
19732 cpprun='$cpprun'
19733 cppstdin='$cppstdin'
19734 cppsymbols='$cppsymbols'
19735 crypt_r_proto='$crypt_r_proto'
19736 cryptlib='$cryptlib'
19737 csh='$csh'
19738 ctermid_r_proto='$ctermid_r_proto'
19739 ctime_r_proto='$ctime_r_proto'
19740 d_Gconvert='$d_Gconvert'
19741 d_PRIEUldbl='$d_PRIEUldbl'
19742 d_PRIFUldbl='$d_PRIFUldbl'
19743 d_PRIGUldbl='$d_PRIGUldbl'
19744 d_PRIXU64='$d_PRIXU64'
19745 d_PRId64='$d_PRId64'
19746 d_PRIeldbl='$d_PRIeldbl'
19747 d_PRIfldbl='$d_PRIfldbl'
19748 d_PRIgldbl='$d_PRIgldbl'
19749 d_PRIi64='$d_PRIi64'
19750 d_PRIo64='$d_PRIo64'
19751 d_PRIu64='$d_PRIu64'
19752 d_PRIx64='$d_PRIx64'
19753 d_SCNfldbl='$d_SCNfldbl'
19754 d__fwalk='$d__fwalk'
19755 d_access='$d_access'
19756 d_accessx='$d_accessx'
19757 d_alarm='$d_alarm'
19758 d_archlib='$d_archlib'
19759 d_asctime_r='$d_asctime_r'
19760 d_atolf='$d_atolf'
19761 d_atoll='$d_atoll'
19762 d_attribut='$d_attribut'
19763 d_bcmp='$d_bcmp'
19764 d_bcopy='$d_bcopy'
19765 d_bsd='$d_bsd'
19766 d_bsdgetpgrp='$d_bsdgetpgrp'
19767 d_bsdsetpgrp='$d_bsdsetpgrp'
19768 d_bzero='$d_bzero'
19769 d_casti32='$d_casti32'
19770 d_castneg='$d_castneg'
19771 d_charvspr='$d_charvspr'
19772 d_chown='$d_chown'
19773 d_chroot='$d_chroot'
19774 d_chsize='$d_chsize'
19775 d_class='$d_class'
19776 d_closedir='$d_closedir'
19777 d_cmsghdr_s='$d_cmsghdr_s'
19778 d_const='$d_const'
19779 d_crypt='$d_crypt'
19780 d_crypt_r='$d_crypt_r'
19781 d_csh='$d_csh'
19782 d_ctermid_r='$d_ctermid_r'
19783 d_ctime_r='$d_ctime_r'
19784 d_cuserid='$d_cuserid'
19785 d_dbl_dig='$d_dbl_dig'
19786 d_dbminitproto='$d_dbminitproto'
19787 d_difftime='$d_difftime'
19788 d_dirfd='$d_dirfd'
19789 d_dirnamlen='$d_dirnamlen'
19790 d_dlerror='$d_dlerror'
19791 d_dlopen='$d_dlopen'
19792 d_dlsymun='$d_dlsymun'
19793 d_dosuid='$d_dosuid'
19794 d_drand48_r='$d_drand48_r'
19795 d_drand48proto='$d_drand48proto'
19796 d_dup2='$d_dup2'
19797 d_eaccess='$d_eaccess'
19798 d_endgrent='$d_endgrent'
19799 d_endgrent_r='$d_endgrent_r'
19800 d_endhent='$d_endhent'
19801 d_endhostent_r='$d_endhostent_r'
19802 d_endnent='$d_endnent'
19803 d_endnetent_r='$d_endnetent_r'
19804 d_endpent='$d_endpent'
19805 d_endprotoent_r='$d_endprotoent_r'
19806 d_endpwent='$d_endpwent'
19807 d_endpwent_r='$d_endpwent_r'
19808 d_endsent='$d_endsent'
19809 d_endservent_r='$d_endservent_r'
19810 d_eofnblk='$d_eofnblk'
19811 d_eunice='$d_eunice'
19812 d_fchdir='$d_fchdir'
19813 d_fchmod='$d_fchmod'
19814 d_fchown='$d_fchown'
19815 d_fcntl='$d_fcntl'
19816 d_fcntl_can_lock='$d_fcntl_can_lock'
19817 d_fd_macros='$d_fd_macros'
19818 d_fd_set='$d_fd_set'
19819 d_fds_bits='$d_fds_bits'
19820 d_fgetpos='$d_fgetpos'
19821 d_finite='$d_finite'
19822 d_finitel='$d_finitel'
19823 d_flexfnam='$d_flexfnam'
19824 d_flock='$d_flock'
19825 d_flockproto='$d_flockproto'
19826 d_fork='$d_fork'
19827 d_fp_class='$d_fp_class'
19828 d_fpathconf='$d_fpathconf'
19829 d_fpclass='$d_fpclass'
19830 d_fpclassify='$d_fpclassify'
19831 d_fpclassl='$d_fpclassl'
19832 d_fpos64_t='$d_fpos64_t'
19833 d_frexpl='$d_frexpl'
19834 d_fs_data_s='$d_fs_data_s'
19835 d_fseeko='$d_fseeko'
19836 d_fsetpos='$d_fsetpos'
19837 d_fstatfs='$d_fstatfs'
19838 d_fstatvfs='$d_fstatvfs'
19839 d_fsync='$d_fsync'
19840 d_ftello='$d_ftello'
19841 d_ftime='$d_ftime'
19842 d_getcwd='$d_getcwd'
19843 d_getespwnam='$d_getespwnam'
19844 d_getfsstat='$d_getfsstat'
19845 d_getgrent='$d_getgrent'
19846 d_getgrent_r='$d_getgrent_r'
19847 d_getgrgid_r='$d_getgrgid_r'
19848 d_getgrnam_r='$d_getgrnam_r'
19849 d_getgrps='$d_getgrps'
19850 d_gethbyaddr='$d_gethbyaddr'
19851 d_gethbyname='$d_gethbyname'
19852 d_gethent='$d_gethent'
19853 d_gethname='$d_gethname'
19854 d_gethostbyaddr_r='$d_gethostbyaddr_r'
19855 d_gethostbyname_r='$d_gethostbyname_r'
19856 d_gethostent_r='$d_gethostent_r'
19857 d_gethostprotos='$d_gethostprotos'
19858 d_getitimer='$d_getitimer'
19859 d_getlogin='$d_getlogin'
19860 d_getlogin_r='$d_getlogin_r'
19861 d_getmnt='$d_getmnt'
19862 d_getmntent='$d_getmntent'
19863 d_getnbyaddr='$d_getnbyaddr'
19864 d_getnbyname='$d_getnbyname'
19865 d_getnent='$d_getnent'
19866 d_getnetbyaddr_r='$d_getnetbyaddr_r'
19867 d_getnetbyname_r='$d_getnetbyname_r'
19868 d_getnetent_r='$d_getnetent_r'
19869 d_getnetprotos='$d_getnetprotos'
19870 d_getpagsz='$d_getpagsz'
19871 d_getpbyname='$d_getpbyname'
19872 d_getpbynumber='$d_getpbynumber'
19873 d_getpent='$d_getpent'
19874 d_getpgid='$d_getpgid'
19875 d_getpgrp2='$d_getpgrp2'
19876 d_getpgrp='$d_getpgrp'
19877 d_getppid='$d_getppid'
19878 d_getprior='$d_getprior'
19879 d_getprotobyname_r='$d_getprotobyname_r'
19880 d_getprotobynumber_r='$d_getprotobynumber_r'
19881 d_getprotoent_r='$d_getprotoent_r'
19882 d_getprotoprotos='$d_getprotoprotos'
19883 d_getprpwnam='$d_getprpwnam'
19884 d_getpwent='$d_getpwent'
19885 d_getpwent_r='$d_getpwent_r'
19886 d_getpwnam_r='$d_getpwnam_r'
19887 d_getpwuid_r='$d_getpwuid_r'
19888 d_getsbyname='$d_getsbyname'
19889 d_getsbyport='$d_getsbyport'
19890 d_getsent='$d_getsent'
19891 d_getservbyname_r='$d_getservbyname_r'
19892 d_getservbyport_r='$d_getservbyport_r'
19893 d_getservent_r='$d_getservent_r'
19894 d_getservprotos='$d_getservprotos'
19895 d_getspnam='$d_getspnam'
19896 d_getspnam_r='$d_getspnam_r'
19897 d_gettimeod='$d_gettimeod'
19898 d_gmtime_r='$d_gmtime_r'
19899 d_gnulibc='$d_gnulibc'
19900 d_grpasswd='$d_grpasswd'
19901 d_hasmntopt='$d_hasmntopt'
19902 d_htonl='$d_htonl'
19903 d_index='$d_index'
19904 d_inetaton='$d_inetaton'
19905 d_int64_t='$d_int64_t'
19906 d_isascii='$d_isascii'
19907 d_isfinite='$d_isfinite'
19908 d_isinf='$d_isinf'
19909 d_isnan='$d_isnan'
19910 d_isnanl='$d_isnanl'
19911 d_killpg='$d_killpg'
19912 d_lchown='$d_lchown'
19913 d_ldbl_dig='$d_ldbl_dig'
19914 d_link='$d_link'
19915 d_localtime_r='$d_localtime_r'
19916 d_locconv='$d_locconv'
19917 d_lockf='$d_lockf'
19918 d_longdbl='$d_longdbl'
19919 d_longlong='$d_longlong'
19920 d_lseekproto='$d_lseekproto'
19921 d_lstat='$d_lstat'
19922 d_madvise='$d_madvise'
19923 d_mblen='$d_mblen'
19924 d_mbstowcs='$d_mbstowcs'
19925 d_mbtowc='$d_mbtowc'
19926 d_memchr='$d_memchr'
19927 d_memcmp='$d_memcmp'
19928 d_memcpy='$d_memcpy'
19929 d_memmove='$d_memmove'
19930 d_memset='$d_memset'
19931 d_mkdir='$d_mkdir'
19932 d_mkdtemp='$d_mkdtemp'
19933 d_mkfifo='$d_mkfifo'
19934 d_mkstemp='$d_mkstemp'
19935 d_mkstemps='$d_mkstemps'
19936 d_mktime='$d_mktime'
19937 d_mmap='$d_mmap'
19938 d_modfl='$d_modfl'
19939 d_modfl_pow32_bug='$d_modfl_pow32_bug'
19940 d_modflproto='$d_modflproto'
19941 d_mprotect='$d_mprotect'
19942 d_msg='$d_msg'
19943 d_msg_ctrunc='$d_msg_ctrunc'
19944 d_msg_dontroute='$d_msg_dontroute'
19945 d_msg_oob='$d_msg_oob'
19946 d_msg_peek='$d_msg_peek'
19947 d_msg_proxy='$d_msg_proxy'
19948 d_msgctl='$d_msgctl'
19949 d_msgget='$d_msgget'
19950 d_msghdr_s='$d_msghdr_s'
19951 d_msgrcv='$d_msgrcv'
19952 d_msgsnd='$d_msgsnd'
19953 d_msync='$d_msync'
19954 d_munmap='$d_munmap'
19955 d_mymalloc='$d_mymalloc'
19956 d_nice='$d_nice'
19957 d_nl_langinfo='$d_nl_langinfo'
19958 d_nv_preserves_uv='$d_nv_preserves_uv'
19959 d_off64_t='$d_off64_t'
19960 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
19961 d_oldpthreads='$d_oldpthreads'
19962 d_oldsock='$d_oldsock'
19963 d_open3='$d_open3'
19964 d_pathconf='$d_pathconf'
19965 d_pause='$d_pause'
19966 d_perl_otherlibdirs='$d_perl_otherlibdirs'
19967 d_phostname='$d_phostname'
19968 d_pipe='$d_pipe'
19969 d_poll='$d_poll'
19970 d_portable='$d_portable'
19971 d_procselfexe='$d_procselfexe'
19972 d_pthread_atfork='$d_pthread_atfork'
19973 d_pthread_yield='$d_pthread_yield'
19974 d_pwage='$d_pwage'
19975 d_pwchange='$d_pwchange'
19976 d_pwclass='$d_pwclass'
19977 d_pwcomment='$d_pwcomment'
19978 d_pwexpire='$d_pwexpire'
19979 d_pwgecos='$d_pwgecos'
19980 d_pwpasswd='$d_pwpasswd'
19981 d_pwquota='$d_pwquota'
19982 d_qgcvt='$d_qgcvt'
19983 d_quad='$d_quad'
19984 d_random_r='$d_random_r'
19985 d_readdir64_r='$d_readdir64_r'
19986 d_readdir='$d_readdir'
19987 d_readdir_r='$d_readdir_r'
19988 d_readlink='$d_readlink'
19989 d_readv='$d_readv'
19990 d_recvmsg='$d_recvmsg'
19991 d_rename='$d_rename'
19992 d_rewinddir='$d_rewinddir'
19993 d_rmdir='$d_rmdir'
19994 d_safebcpy='$d_safebcpy'
19995 d_safemcpy='$d_safemcpy'
19996 d_sanemcmp='$d_sanemcmp'
19997 d_sbrkproto='$d_sbrkproto'
19998 d_sched_yield='$d_sched_yield'
19999 d_scm_rights='$d_scm_rights'
20000 d_seekdir='$d_seekdir'
20001 d_select='$d_select'
20002 d_sem='$d_sem'
20003 d_semctl='$d_semctl'
20004 d_semctl_semid_ds='$d_semctl_semid_ds'
20005 d_semctl_semun='$d_semctl_semun'
20006 d_semget='$d_semget'
20007 d_semop='$d_semop'
20008 d_sendmsg='$d_sendmsg'
20009 d_setegid='$d_setegid'
20010 d_seteuid='$d_seteuid'
20011 d_setgrent='$d_setgrent'
20012 d_setgrent_r='$d_setgrent_r'
20013 d_setgrps='$d_setgrps'
20014 d_sethent='$d_sethent'
20015 d_sethostent_r='$d_sethostent_r'
20016 d_setitimer='$d_setitimer'
20017 d_setlinebuf='$d_setlinebuf'
20018 d_setlocale='$d_setlocale'
20019 d_setlocale_r='$d_setlocale_r'
20020 d_setnent='$d_setnent'
20021 d_setnetent_r='$d_setnetent_r'
20022 d_setpent='$d_setpent'
20023 d_setpgid='$d_setpgid'
20024 d_setpgrp2='$d_setpgrp2'
20025 d_setpgrp='$d_setpgrp'
20026 d_setprior='$d_setprior'
20027 d_setproctitle='$d_setproctitle'
20028 d_setprotoent_r='$d_setprotoent_r'
20029 d_setpwent='$d_setpwent'
20030 d_setpwent_r='$d_setpwent_r'
20031 d_setregid='$d_setregid'
20032 d_setresgid='$d_setresgid'
20033 d_setresuid='$d_setresuid'
20034 d_setreuid='$d_setreuid'
20035 d_setrgid='$d_setrgid'
20036 d_setruid='$d_setruid'
20037 d_setsent='$d_setsent'
20038 d_setservent_r='$d_setservent_r'
20039 d_setsid='$d_setsid'
20040 d_setvbuf='$d_setvbuf'
20041 d_sfio='$d_sfio'
20042 d_shm='$d_shm'
20043 d_shmat='$d_shmat'
20044 d_shmatprototype='$d_shmatprototype'
20045 d_shmctl='$d_shmctl'
20046 d_shmdt='$d_shmdt'
20047 d_shmget='$d_shmget'
20048 d_sigaction='$d_sigaction'
20049 d_sigprocmask='$d_sigprocmask'
20050 d_sigsetjmp='$d_sigsetjmp'
20051 d_sockatmark='$d_sockatmark'
20052 d_sockatmarkproto='$d_sockatmarkproto'
20053 d_socket='$d_socket'
20054 d_socklen_t='$d_socklen_t'
20055 d_sockpair='$d_sockpair'
20056 d_socks5_init='$d_socks5_init'
20057 d_sqrtl='$d_sqrtl'
20058 d_srand48_r='$d_srand48_r'
20059 d_srandom_r='$d_srandom_r'
20060 d_sresgproto='$d_sresgproto'
20061 d_sresuproto='$d_sresuproto'
20062 d_statblks='$d_statblks'
20063 d_statfs_f_flags='$d_statfs_f_flags'
20064 d_statfs_s='$d_statfs_s'
20065 d_statvfs='$d_statvfs'
20066 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20067 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20068 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20069 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20070 d_stdio_stream_array='$d_stdio_stream_array'
20071 d_stdiobase='$d_stdiobase'
20072 d_stdstdio='$d_stdstdio'
20073 d_strchr='$d_strchr'
20074 d_strcoll='$d_strcoll'
20075 d_strctcpy='$d_strctcpy'
20076 d_strerrm='$d_strerrm'
20077 d_strerror='$d_strerror'
20078 d_strerror_r='$d_strerror_r'
20079 d_strftime='$d_strftime'
20080 d_strtod='$d_strtod'
20081 d_strtol='$d_strtol'
20082 d_strtold='$d_strtold'
20083 d_strtoll='$d_strtoll'
20084 d_strtoq='$d_strtoq'
20085 d_strtoul='$d_strtoul'
20086 d_strtoull='$d_strtoull'
20087 d_strtouq='$d_strtouq'
20088 d_strxfrm='$d_strxfrm'
20089 d_suidsafe='$d_suidsafe'
20090 d_symlink='$d_symlink'
20091 d_syscall='$d_syscall'
20092 d_syscallproto='$d_syscallproto'
20093 d_sysconf='$d_sysconf'
20094 d_sysernlst='$d_sysernlst'
20095 d_syserrlst='$d_syserrlst'
20096 d_system='$d_system'
20097 d_tcgetpgrp='$d_tcgetpgrp'
20098 d_tcsetpgrp='$d_tcsetpgrp'
20099 d_telldir='$d_telldir'
20100 d_telldirproto='$d_telldirproto'
20101 d_time='$d_time'
20102 d_times='$d_times'
20103 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20104 d_tm_tm_zone='$d_tm_tm_zone'
20105 d_tmpnam_r='$d_tmpnam_r'
20106 d_truncate='$d_truncate'
20107 d_ttyname_r='$d_ttyname_r'
20108 d_tzname='$d_tzname'
20109 d_u32align='$d_u32align'
20110 d_ualarm='$d_ualarm'
20111 d_umask='$d_umask'
20112 d_uname='$d_uname'
20113 d_union_semun='$d_union_semun'
20114 d_unordered='$d_unordered'
20115 d_usleep='$d_usleep'
20116 d_usleepproto='$d_usleepproto'
20117 d_ustat='$d_ustat'
20118 d_vendorarch='$d_vendorarch'
20119 d_vendorbin='$d_vendorbin'
20120 d_vendorlib='$d_vendorlib'
20121 d_vfork='$d_vfork'
20122 d_void_closedir='$d_void_closedir'
20123 d_voidsig='$d_voidsig'
20124 d_voidtty='$d_voidtty'
20125 d_volatile='$d_volatile'
20126 d_vprintf='$d_vprintf'
20127 d_wait4='$d_wait4'
20128 d_waitpid='$d_waitpid'
20129 d_wcstombs='$d_wcstombs'
20130 d_wctomb='$d_wctomb'
20131 d_writev='$d_writev'
20132 d_xenix='$d_xenix'
20133 date='$date'
20134 db_hashtype='$db_hashtype'
20135 db_prefixtype='$db_prefixtype'
20136 db_version_major='$db_version_major'
20137 db_version_minor='$db_version_minor'
20138 db_version_patch='$db_version_patch'
20139 defvoidused='$defvoidused'
20140 direntrytype='$direntrytype'
20141 dlext='$dlext'
20142 dlsrc='$dlsrc'
20143 doublesize='$doublesize'
20144 drand01='$drand01'
20145 drand48_r_proto='$drand48_r_proto'
20146 dynamic_ext='$dynamic_ext'
20147 eagain='$eagain'
20148 ebcdic='$ebcdic'
20149 echo='$echo'
20150 egrep='$egrep'
20151 emacs='$emacs'
20152 endgrent_r_proto='$endgrent_r_proto'
20153 endhostent_r_proto='$endhostent_r_proto'
20154 endnetent_r_proto='$endnetent_r_proto'
20155 endprotoent_r_proto='$endprotoent_r_proto'
20156 endpwent_r_proto='$endpwent_r_proto'
20157 endservent_r_proto='$endservent_r_proto'
20158 eunicefix='$eunicefix'
20159 exe_ext='$exe_ext'
20160 expr='$expr'
20161 extensions='$extensions'
20162 extras='$extras'
20163 fflushNULL='$fflushNULL'
20164 fflushall='$fflushall'
20165 find='$find'
20166 firstmakefile='$firstmakefile'
20167 flex='$flex'
20168 fpossize='$fpossize'
20169 fpostype='$fpostype'
20170 freetype='$freetype'
20171 from='$from'
20172 full_ar='$full_ar'
20173 full_csh='$full_csh'
20174 full_sed='$full_sed'
20175 gccosandvers='$gccosandvers'
20176 gccversion='$gccversion'
20177 getgrent_r_proto='$getgrent_r_proto'
20178 getgrgid_r_proto='$getgrgid_r_proto'
20179 getgrnam_r_proto='$getgrnam_r_proto'
20180 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
20181 gethostbyname_r_proto='$gethostbyname_r_proto'
20182 gethostent_r_proto='$gethostent_r_proto'
20183 getlogin_r_proto='$getlogin_r_proto'
20184 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
20185 getnetbyname_r_proto='$getnetbyname_r_proto'
20186 getnetent_r_proto='$getnetent_r_proto'
20187 getprotobyname_r_proto='$getprotobyname_r_proto'
20188 getprotobynumber_r_proto='$getprotobynumber_r_proto'
20189 getprotoent_r_proto='$getprotoent_r_proto'
20190 getpwent_r_proto='$getpwent_r_proto'
20191 getpwnam_r_proto='$getpwnam_r_proto'
20192 getpwuid_r_proto='$getpwuid_r_proto'
20193 getservbyname_r_proto='$getservbyname_r_proto'
20194 getservbyport_r_proto='$getservbyport_r_proto'
20195 getservent_r_proto='$getservent_r_proto'
20196 getspnam_r_proto='$getspnam_r_proto'
20197 gidformat='$gidformat'
20198 gidsign='$gidsign'
20199 gidsize='$gidsize'
20200 gidtype='$gidtype'
20201 glibpth='$glibpth'
20202 gmake='$gmake'
20203 gmtime_r_proto='$gmtime_r_proto'
20204 gnulibc_version='$gnulibc_version'
20205 grep='$grep'
20206 groupcat='$groupcat'
20207 groupstype='$groupstype'
20208 gzip='$gzip'
20209 h_fcntl='$h_fcntl'
20210 h_sysfile='$h_sysfile'
20211 hint='$hint'
20212 hostcat='$hostcat'
20213 i16size='$i16size'
20214 i16type='$i16type'
20215 i32size='$i32size'
20216 i32type='$i32type'
20217 i64size='$i64size'
20218 i64type='$i64type'
20219 i8size='$i8size'
20220 i8type='$i8type'
20221 i_arpainet='$i_arpainet'
20222 i_bsdioctl='$i_bsdioctl'
20223 i_crypt='$i_crypt'
20224 i_db='$i_db'
20225 i_dbm='$i_dbm'
20226 i_dirent='$i_dirent'
20227 i_dld='$i_dld'
20228 i_dlfcn='$i_dlfcn'
20229 i_fcntl='$i_fcntl'
20230 i_float='$i_float'
20231 i_fp='$i_fp'
20232 i_fp_class='$i_fp_class'
20233 i_gdbm='$i_gdbm'
20234 i_grp='$i_grp'
20235 i_ieeefp='$i_ieeefp'
20236 i_inttypes='$i_inttypes'
20237 i_langinfo='$i_langinfo'
20238 i_libutil='$i_libutil'
20239 i_limits='$i_limits'
20240 i_locale='$i_locale'
20241 i_machcthr='$i_machcthr'
20242 i_malloc='$i_malloc'
20243 i_math='$i_math'
20244 i_memory='$i_memory'
20245 i_mntent='$i_mntent'
20246 i_ndbm='$i_ndbm'
20247 i_netdb='$i_netdb'
20248 i_neterrno='$i_neterrno'
20249 i_netinettcp='$i_netinettcp'
20250 i_niin='$i_niin'
20251 i_poll='$i_poll'
20252 i_prot='$i_prot'
20253 i_pthread='$i_pthread'
20254 i_pwd='$i_pwd'
20255 i_rpcsvcdbm='$i_rpcsvcdbm'
20256 i_sfio='$i_sfio'
20257 i_sgtty='$i_sgtty'
20258 i_shadow='$i_shadow'
20259 i_socks='$i_socks'
20260 i_stdarg='$i_stdarg'
20261 i_stddef='$i_stddef'
20262 i_stdlib='$i_stdlib'
20263 i_string='$i_string'
20264 i_sunmath='$i_sunmath'
20265 i_sysaccess='$i_sysaccess'
20266 i_sysdir='$i_sysdir'
20267 i_sysfile='$i_sysfile'
20268 i_sysfilio='$i_sysfilio'
20269 i_sysin='$i_sysin'
20270 i_sysioctl='$i_sysioctl'
20271 i_syslog='$i_syslog'
20272 i_sysmman='$i_sysmman'
20273 i_sysmode='$i_sysmode'
20274 i_sysmount='$i_sysmount'
20275 i_sysndir='$i_sysndir'
20276 i_sysparam='$i_sysparam'
20277 i_sysresrc='$i_sysresrc'
20278 i_syssecrt='$i_syssecrt'
20279 i_sysselct='$i_sysselct'
20280 i_syssockio='$i_syssockio'
20281 i_sysstat='$i_sysstat'
20282 i_sysstatfs='$i_sysstatfs'
20283 i_sysstatvfs='$i_sysstatvfs'
20284 i_systime='$i_systime'
20285 i_systimek='$i_systimek'
20286 i_systimes='$i_systimes'
20287 i_systypes='$i_systypes'
20288 i_sysuio='$i_sysuio'
20289 i_sysun='$i_sysun'
20290 i_sysutsname='$i_sysutsname'
20291 i_sysvfs='$i_sysvfs'
20292 i_syswait='$i_syswait'
20293 i_termio='$i_termio'
20294 i_termios='$i_termios'
20295 i_time='$i_time'
20296 i_unistd='$i_unistd'
20297 i_ustat='$i_ustat'
20298 i_utime='$i_utime'
20299 i_values='$i_values'
20300 i_varargs='$i_varargs'
20301 i_varhdr='$i_varhdr'
20302 i_vfork='$i_vfork'
20303 ignore_versioned_solibs='$ignore_versioned_solibs'
20304 inc_version_list='$inc_version_list'
20305 inc_version_list_init='$inc_version_list_init'
20306 incpath='$incpath'
20307 inews='$inews'
20308 installarchlib='$installarchlib'
20309 installbin='$installbin'
20310 installman1dir='$installman1dir'
20311 installman3dir='$installman3dir'
20312 installprefix='$installprefix'
20313 installprefixexp='$installprefixexp'
20314 installprivlib='$installprivlib'
20315 installscript='$installscript'
20316 installsitearch='$installsitearch'
20317 installsitebin='$installsitebin'
20318 installsitelib='$installsitelib'
20319 installstyle='$installstyle'
20320 installusrbinperl='$installusrbinperl'
20321 installvendorarch='$installvendorarch'
20322 installvendorbin='$installvendorbin'
20323 installvendorlib='$installvendorlib'
20324 intsize='$intsize'
20325 issymlink='$issymlink'
20326 ivdformat='$ivdformat'
20327 ivsize='$ivsize'
20328 ivtype='$ivtype'
20329 known_extensions='$known_extensions'
20330 ksh='$ksh'
20331 ld='$ld'
20332 lddlflags='$lddlflags'
20333 ldflags='$ldflags'
20334 ldflags_uselargefiles='$ldflags_uselargefiles'
20335 ldlibpthname='$ldlibpthname'
20336 less='$less'
20337 lib_ext='$lib_ext'
20338 libc='$libc'
20339 libperl='$libperl'
20340 libpth='$libpth'
20341 libs='$libs'
20342 libsdirs='$libsdirs'
20343 libsfiles='$libsfiles'
20344 libsfound='$libsfound'
20345 libspath='$libspath'
20346 libswanted='$libswanted'
20347 libswanted_uselargefiles='$libswanted_uselargefiles'
20348 line='$line'
20349 lint='$lint'
20350 lkflags='$lkflags'
20351 ln='$ln'
20352 lns='$lns'
20353 localtime_r_proto='$localtime_r_proto'
20354 locincpth='$locincpth'
20355 loclibpth='$loclibpth'
20356 longdblsize='$longdblsize'
20357 longlongsize='$longlongsize'
20358 longsize='$longsize'
20359 lp='$lp'
20360 lpr='$lpr'
20361 ls='$ls'
20362 lseeksize='$lseeksize'
20363 lseektype='$lseektype'
20364 mail='$mail'
20365 mailx='$mailx'
20366 make='$make'
20367 make_set_make='$make_set_make'
20368 mallocobj='$mallocobj'
20369 mallocsrc='$mallocsrc'
20370 malloctype='$malloctype'
20371 man1dir='$man1dir'
20372 man1direxp='$man1direxp'
20373 man1ext='$man1ext'
20374 man3dir='$man3dir'
20375 man3direxp='$man3direxp'
20376 man3ext='$man3ext'
20377 mips_type='$mips_type'
20378 mkdir='$mkdir'
20379 mmaptype='$mmaptype'
20380 modetype='$modetype'
20381 more='$more'
20382 multiarch='$multiarch'
20383 mv='$mv'
20384 myarchname='$myarchname'
20385 mydomain='$mydomain'
20386 myhostname='$myhostname'
20387 myuname='$myuname'
20388 n='$n'
20389 need_va_copy='$need_va_copy'
20390 netdb_hlen_type='$netdb_hlen_type'
20391 netdb_host_type='$netdb_host_type'
20392 netdb_name_type='$netdb_name_type'
20393 netdb_net_type='$netdb_net_type'
20394 nm='$nm'
20395 nm_opt='$nm_opt'
20396 nm_so_opt='$nm_so_opt'
20397 nonxs_ext='$nonxs_ext'
20398 nroff='$nroff'
20399 nvEUformat='$nvEUformat'
20400 nvFUformat='$nvFUformat'
20401 nvGUformat='$nvGUformat'
20402 nv_preserves_uv_bits='$nv_preserves_uv_bits'
20403 nveformat='$nveformat'
20404 nvfformat='$nvfformat'
20405 nvgformat='$nvgformat'
20406 nvsize='$nvsize'
20407 nvtype='$nvtype'
20408 o_nonblock='$o_nonblock'
20409 obj_ext='$obj_ext'
20410 old_pthread_create_joinable='$old_pthread_create_joinable'
20411 optimize='$optimize'
20412 orderlib='$orderlib'
20413 osname='$osname'
20414 osvers='$osvers'
20415 otherlibdirs='$otherlibdirs'
20416 package='$package'
20417 pager='$pager'
20418 passcat='$passcat'
20419 patchlevel='$patchlevel'
20420 path_sep='$path_sep'
20421 perl5='$perl5'
20422 perl='$perl'
20423 perl_patchlevel='$perl_patchlevel'
20424 perladmin='$perladmin'
20425 perllibs='$perllibs'
20426 perlpath='$perlpath'
20427 pg='$pg'
20428 phostname='$phostname'
20429 pidtype='$pidtype'
20430 plibpth='$plibpth'
20431 pm_apiversion='$pm_apiversion'
20432 pmake='$pmake'
20433 pr='$pr'
20434 prefix='$prefix'
20435 prefixexp='$prefixexp'
20436 privlib='$privlib'
20437 privlibexp='$privlibexp'
20438 procselfexe='$procselfexe'
20439 prototype='$prototype'
20440 ptrsize='$ptrsize'
20441 quadkind='$quadkind'
20442 quadtype='$quadtype'
20443 randbits='$randbits'
20444 randfunc='$randfunc'
20445 random_r_proto='$random_r_proto'
20446 randseedtype='$randseedtype'
20447 ranlib='$ranlib'
20448 rd_nodata='$rd_nodata'
20449 readdir64_r_proto='$readdir64_r_proto'
20450 readdir_r_proto='$readdir_r_proto'
20451 revision='$revision'
20452 rm='$rm'
20453 rmail='$rmail'
20454 run='$run'
20455 runnm='$runnm'
20456 sPRIEUldbl='$sPRIEUldbl'
20457 sPRIFUldbl='$sPRIFUldbl'
20458 sPRIGUldbl='$sPRIGUldbl'
20459 sPRIXU64='$sPRIXU64'
20460 sPRId64='$sPRId64'
20461 sPRIeldbl='$sPRIeldbl'
20462 sPRIfldbl='$sPRIfldbl'
20463 sPRIgldbl='$sPRIgldbl'
20464 sPRIi64='$sPRIi64'
20465 sPRIo64='$sPRIo64'
20466 sPRIu64='$sPRIu64'
20467 sPRIx64='$sPRIx64'
20468 sSCNfldbl='$sSCNfldbl'
20469 sched_yield='$sched_yield'
20470 scriptdir='$scriptdir'
20471 scriptdirexp='$scriptdirexp'
20472 sed='$sed'
20473 seedfunc='$seedfunc'
20474 selectminbits='$selectminbits'
20475 selecttype='$selecttype'
20476 sendmail='$sendmail'
20477 setgrent_r_proto='$setgrent_r_proto'
20478 sethostent_r_proto='$sethostent_r_proto'
20479 setlocale_r_proto='$setlocale_r_proto'
20480 setnetent_r_proto='$setnetent_r_proto'
20481 setprotoent_r_proto='$setprotoent_r_proto'
20482 setpwent_r_proto='$setpwent_r_proto'
20483 setservent_r_proto='$setservent_r_proto'
20484 sh='$sh'
20485 shar='$shar'
20486 sharpbang='$sharpbang'
20487 shmattype='$shmattype'
20488 shortsize='$shortsize'
20489 shrpenv='$shrpenv'
20490 shsharp='$shsharp'
20491 sig_count='$sig_count'
20492 sig_name='$sig_name'
20493 sig_name_init='$sig_name_init'
20494 sig_num='$sig_num'
20495 sig_num_init='$sig_num_init'
20496 sig_size='$sig_size'
20497 signal_t='$signal_t'
20498 sitearch='$sitearch'
20499 sitearchexp='$sitearchexp'
20500 sitebin='$sitebin'
20501 sitebinexp='$sitebinexp'
20502 sitelib='$sitelib'
20503 sitelib_stem='$sitelib_stem'
20504 sitelibexp='$sitelibexp'
20505 siteprefix='$siteprefix'
20506 siteprefixexp='$siteprefixexp'
20507 sizesize='$sizesize'
20508 sizetype='$sizetype'
20509 sleep='$sleep'
20510 smail='$smail'
20511 so='$so'
20512 sockethdr='$sockethdr'
20513 socketlib='$socketlib'
20514 socksizetype='$socksizetype'
20515 sort='$sort'
20516 spackage='$spackage'
20517 spitshell='$spitshell'
20518 srand48_r_proto='$srand48_r_proto'
20519 srandom_r_proto='$srandom_r_proto'
20520 src='$src'
20521 ssizetype='$ssizetype'
20522 startperl='$startperl'
20523 startsh='$startsh'
20524 static_ext='$static_ext'
20525 stdchar='$stdchar'
20526 stdio_base='$stdio_base'
20527 stdio_bufsiz='$stdio_bufsiz'
20528 stdio_cnt='$stdio_cnt'
20529 stdio_filbuf='$stdio_filbuf'
20530 stdio_ptr='$stdio_ptr'
20531 stdio_stream_array='$stdio_stream_array'
20532 strerror_r_proto='$strerror_r_proto'
20533 strings='$strings'
20534 submit='$submit'
20535 subversion='$subversion'
20536 sysman='$sysman'
20537 tail='$tail'
20538 tar='$tar'
20539 targetarch='$targetarch'
20540 tbl='$tbl'
20541 tee='$tee'
20542 test='$test'
20543 timeincl='$timeincl'
20544 timetype='$timetype'
20545 tmpnam_r_proto='$tmpnam_r_proto'
20546 to='$to'
20547 touch='$touch'
20548 tr='$tr'
20549 trnl='$trnl'
20550 troff='$troff'
20551 ttyname_r_proto='$ttyname_r_proto'
20552 u16size='$u16size'
20553 u16type='$u16type'
20554 u32size='$u32size'
20555 u32type='$u32type'
20556 u64size='$u64size'
20557 u64type='$u64type'
20558 u8size='$u8size'
20559 u8type='$u8type'
20560 uidformat='$uidformat'
20561 uidsign='$uidsign'
20562 uidsize='$uidsize'
20563 uidtype='$uidtype'
20564 uname='$uname'
20565 uniq='$uniq'
20566 uquadtype='$uquadtype'
20567 use5005threads='$use5005threads'
20568 use64bitall='$use64bitall'
20569 use64bitint='$use64bitint'
20570 usecrosscompile='$usecrosscompile'
20571 usedl='$usedl'
20572 useithreads='$useithreads'
20573 uselargefiles='$uselargefiles'
20574 uselongdouble='$uselongdouble'
20575 usemorebits='$usemorebits'
20576 usemultiplicity='$usemultiplicity'
20577 usemymalloc='$usemymalloc'
20578 usenm='$usenm'
20579 useopcode='$useopcode'
20580 useperlio='$useperlio'
20581 useposix='$useposix'
20582 usereentrant='$usereentrant'
20583 usesfio='$usesfio'
20584 useshrplib='$useshrplib'
20585 usesocks='$usesocks'
20586 usethreads='$usethreads'
20587 usevendorprefix='$usevendorprefix'
20588 usevfork='$usevfork'
20589 usrinc='$usrinc'
20590 uuname='$uuname'
20591 uvXUformat='$uvXUformat'
20592 uvoformat='$uvoformat'
20593 uvsize='$uvsize'
20594 uvtype='$uvtype'
20595 uvuformat='$uvuformat'
20596 uvxformat='$uvxformat'
20597 vendorarch='$vendorarch'
20598 vendorarchexp='$vendorarchexp'
20599 vendorbin='$vendorbin'
20600 vendorbinexp='$vendorbinexp'
20601 vendorlib='$vendorlib'
20602 vendorlib_stem='$vendorlib_stem'
20603 vendorlibexp='$vendorlibexp'
20604 vendorprefix='$vendorprefix'
20605 vendorprefixexp='$vendorprefixexp'
20606 version='$version'
20607 version_patchlevel_string='$version_patchlevel_string'
20608 versiononly='$versiononly'
20609 vi='$vi'
20610 voidflags='$voidflags'
20611 xlibpth='$xlibpth'
20612 xs_apiversion='$xs_apiversion'
20613 yacc='$yacc'
20614 yaccflags='$yaccflags'
20615 zcat='$zcat'
20616 zip='$zip'
20617 EOT
20618
20619 : Add in command line options if available
20620 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
20621
20622 : add special variables
20623 $test -f $src/patchlevel.h && \
20624 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
20625 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
20626 echo "PERL_CONFIG_SH=true" >>config.sh
20627
20628 : propagate old symbols
20629 if $test -f UU/config.sh; then
20630         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
20631         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
20632         $sort | $uniq -u >UU/oldsyms
20633         set X `cat UU/oldsyms`
20634         shift
20635         case $# in
20636         0) ;;
20637         *)
20638                 cat <<EOM
20639 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
20640 EOM
20641                 echo "# Variables propagated from previous config.sh file." >>config.sh
20642                 for sym in `cat UU/oldsyms`; do
20643                         echo "    Propagating $hint variable "'$'"$sym..."
20644                         eval 'tmp="$'"${sym}"'"'
20645                         echo "$tmp" | \
20646                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
20647                 done
20648                 ;;
20649         esac
20650 fi
20651
20652 : Finish up by extracting the .SH files
20653 case "$alldone" in
20654 exit)
20655         $rm -rf UU
20656         echo "Extraction done."
20657         exit 0
20658         ;;
20659 cont)
20660         ;;
20661 '')
20662         dflt=''
20663         nostick=true
20664         $cat <<EOM
20665
20666 If you'd like to make any changes to the config.sh file before I begin
20667 to configure things, do it as a shell escape now (e.g. !vi config.sh).
20668
20669 EOM
20670         rp="Press return or use a shell escape to edit config.sh:"
20671         . UU/myread
20672         nostick=''
20673         case "$ans" in
20674         '') ;;
20675         *) : in case they cannot read
20676                 sh 1>&4 -c "$ans";;
20677         esac
20678         ;;
20679 esac
20680
20681 : if this fails, just run all the .SH files by hand
20682 . ./config.sh
20683
20684 echo " "
20685 exec 1>&4
20686 pwd=`pwd`
20687 . ./UU/extract
20688 cd "$pwd"
20689
20690 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
20691         dflt=y
20692         case "$silent" in
20693         true) ;;
20694         *)
20695                 $cat <<EOM
20696
20697 Now you need to generate make dependencies by running "$make depend".
20698 You might prefer to run it in background: "$make depend > makedepend.out &"
20699 It can take a while, so you might not want to run it right now.
20700
20701 EOM
20702                 ;;
20703         esac
20704         rp="Run $make depend now?"
20705         . UU/myread
20706         case "$ans" in
20707         y*)
20708                 $make depend && echo "Now you must run '$make'."
20709                 ;;
20710         *)
20711                 echo "You must run '$make depend' then '$make'."
20712                 ;;
20713         esac
20714 elif test -f [Mm]akefile; then
20715         echo " "
20716         echo "Now you must run a $make."
20717 else
20718         echo "Configure done."
20719 fi
20720
20721 if $test -f Policy.sh; then
20722     $cat <<EOM
20723
20724 If you compile $package on a different machine or from a different object
20725 directory, copy the Policy.sh file from this object directory to the
20726 new one before you run Configure -- this will help you with most of
20727 the policy defaults.
20728
20729 EOM
20730 fi
20731 if $test -f config.msg; then
20732     echo "Hmm.  I also noted the following information while running:"
20733     echo " "
20734     $cat config.msg >&4
20735     $rm -f config.msg
20736 fi
20737 $rm -f kit*isdone ark*isdone
20738 $rm -rf UU
20739
20740 : End of Configure
20741