Add investigating self tie segfaults to the TODO
[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 Sat Oct 30 18:24:58 METDST 2004 [metaconfig 3.0 PL70]
24 # (with additional metaconfig patches by perlbug@perl.org)
25
26 cat >c1$$ <<EOF
27 ARGGGHHHH!!!!!
28
29 SCO csh still thinks true is false.  Write to SCO today and tell them that next
30 year Configure ought to "rm /bin/csh" unless they fix their blasted shell. :-)
31
32 (Actually, Configure ought to just patch csh in place.  Hmm.  Hmmmmm.  All
33 we'd have to do is go in and swap the && and || tokens, wherever they are.)
34
35 [End of diatribe. We now return you to your regularly scheduled programming...]
36 EOF
37 cat >c2$$ <<EOF
38
39 OOPS!  You naughty creature!  You didn't run Configure with sh!
40 I will attempt to remedy the situation by running sh for you...
41 EOF
42
43 true || cat c1$$ c2$$
44 true || exec sh $0 $argv:q
45
46 (exit $?0) || cat c2$$
47 (exit $?0) || exec sh $0 $argv:q
48 rm -f c1$$ c2$$
49
50 if test -f /dev/cputype -a -f /dev/drivers -a -f /dev/osversion; then
51         cat >&4 <<EOF
52 ***
53 *** I'm sorry but this system looks like Plan 9 and Plan 9 doesn't do
54 *** Configure that well.  (Plan 9 is close to UNIX but not close enough.)
55 *** Please read the README.plan9 for further instructions.
56 *** Cannot continue, aborting.
57 ***
58 EOF
59         exit 1
60 fi
61
62 : compute my invocation name
63 me=$0
64 case "$0" in
65 */*)
66         me=`echo $0 | sed -e 's!.*/\(.*\)!\1!' 2>/dev/null`
67         test "$me" || me=$0
68         ;;
69 esac
70
71 : Proper separator for the PATH environment variable
72 p_=:
73 : On OS/2 this directory should exist if this is not floppy only system :-]
74 if test -d c:/. || ( uname -a | grep -i 'os\(/\|\)2' ) 2>&1 >/dev/null ; then
75     if test -n "$OS2_SHELL"; then
76                 p_=\;
77                 PATH=`cmd /c "echo %PATH%" | tr '\\\\' / `
78                 OS2_SHELL=`cmd /c "echo %OS2_SHELL%" | tr '\\\\' / | tr '[A-Z]' '[a-z]'`
79                 is_os2=yes
80         elif test -n "$DJGPP"; then
81                 case "X${MACHTYPE:-nonesuchmach}" in
82                 *cygwin) ;;
83                 *) p_=\; ;;
84                 esac
85         fi
86 fi
87
88 : Proper PATH setting
89 paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin'
90 paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin"
91 paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin"
92 paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
93 paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
94 paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /opt/ansic/bin /usr/ccs/bin"
95 paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
96 paths="$paths /sbin /usr/sbin /usr/libexec"
97 paths="$paths /system/gnu_library/bin"
98
99 for p in $paths
100 do
101         case "$p_$PATH$p_" in
102         *$p_$p$p_*) ;;
103         *) test -d $p && PATH=$PATH$p_$p ;;
104         esac
105 done
106
107 PATH=.$p_$PATH
108 export PATH
109
110 : shall we be using ksh?
111 inksh=''
112 needksh=''
113 avoidksh=''
114 newsh=/bin/ksh
115 changesh=''
116 if (PATH=.; alias -x) >/dev/null 2>&1; then
117                 inksh=true
118 fi
119 if test -f /hp-ux -a -f /bin/ksh; then
120         needksh='to avoid sh bug in "here document" expansion'
121 fi
122 if test -d /usr/lpp -a -f /usr/bin/bsh -a -f /usr/bin/uname; then
123         if test X`/usr/bin/uname -v` = X4; then
124                 avoidksh="to avoid AIX 4's /bin/sh"
125                 newsh=/usr/bin/bsh
126         fi
127 fi
128 if test -f /osf_boot -a -f /usr/sbin/setld; then
129         if test X`/usr/bin/uname -s` = XOSF1; then
130                 avoidksh="to avoid Digital UNIX' ksh"
131                 newsh=/bin/sh
132                 unset BIN_SH # if this is 'xpg4' sh will start up ksh
133         fi
134 fi
135 case "$inksh/$needksh" in
136 /[a-z]*)
137                 ENV=''
138                 changesh=true
139                 reason="$needksh"
140         ;;
141 esac
142 case "$inksh/$avoidksh" in
143 true/[a-z]*)
144         changesh=true
145         reason="$avoidksh"
146         ;;
147 esac
148 case "$inksh/$needksh-$avoidksh-" in
149 true/--)
150                 cat <<EOM
151 (I see you are using the Korn shell.  Some ksh's blow up on $me,
152 mainly on older exotic systems.  If yours does, try the Bourne shell instead.)
153 EOM
154         ;;
155 esac
156 case "$changesh" in
157 true)
158         export newsh
159         echo "(Feeding myself to $newsh $reason.)"
160         case "$0" in
161         Configure|*/Configure) exec $newsh $0 "$@";;
162         *) exec $newsh Configure "$@";;
163         esac
164         ;;
165 esac
166
167 : if needed set CDPATH to a harmless value that is not chatty
168 : avoid bash 2.02 problems with empty CDPATH.
169 case "$CDPATH" in
170 '')     ;;
171 *)      case "$SHELL" in
172         *bash*) CDPATH='.' ;;
173         *)              CDPATH='' ;;
174         esac
175         ;;
176 esac
177 : Configure runs within the UU subdirectory
178 test -d UU || mkdir UU
179 cd UU && rm -f ./*
180
181 ccname=''
182 ccversion=''
183 ccsymbols=''
184 cppccsymbols=''
185 cppsymbols=''
186 from=''
187 run=''
188 targetarch=''
189 to=''
190 usecrosscompile=''
191 mistrustnm=''
192 perllibs=''
193 dynamic_ext=''
194 extensions=''
195 known_extensions=''
196 nonxs_ext=''
197 static_ext=''
198 useopcode=''
199 useposix=''
200 extras=''
201 d_bsd=''
202 d_eunice=''
203 d_xenix=''
204 eunicefix=''
205 Mcc=''
206 ar=''
207 awk=''
208 bash=''
209 bison=''
210 byacc=''
211 cat=''
212 chgrp=''
213 chmod=''
214 chown=''
215 comm=''
216 compress=''
217 cp=''
218 cpio=''
219 cpp=''
220 csh=''
221 date=''
222 echo=''
223 egrep=''
224 emacs=''
225 expr=''
226 find=''
227 flex=''
228 gmake=''
229 grep=''
230 gzip=''
231 inews=''
232 ksh=''
233 less=''
234 line=''
235 lint=''
236 ln=''
237 lp=''
238 lpr=''
239 ls=''
240 mail=''
241 mailx=''
242 make=''
243 mkdir=''
244 more=''
245 mv=''
246 nm=''
247 nroff=''
248 perl=''
249 pg=''
250 pmake=''
251 pr=''
252 rm=''
253 rmail=''
254 sed=''
255 sendmail=''
256 shar=''
257 sleep=''
258 smail=''
259 sort=''
260 submit=''
261 tail=''
262 tar=''
263 tbl=''
264 tee=''
265 test=''
266 touch=''
267 tr=''
268 troff=''
269 uname=''
270 uniq=''
271 uuname=''
272 vi=''
273 zcat=''
274 zip=''
275 full_ar=''
276 full_sed=''
277 libswanted=''
278 hint=''
279 myuname=''
280 osname=''
281 osvers=''
282 Author=''
283 Date=''
284 Header=''
285 Id=''
286 Locker=''
287 Log=''
288 RCSfile=''
289 Revision=''
290 Source=''
291 State=''
292 _a=''
293 _exe=''
294 _o=''
295 archobjs=''
296 exe_ext=''
297 firstmakefile=''
298 lib_ext=''
299 obj_ext=''
300 path_sep=''
301 afs=''
302 afsroot=''
303 alignbytes=''
304 ansi2knr=''
305 archlib=''
306 archlibexp=''
307 d_archlib=''
308 installarchlib=''
309 archname=''
310 myarchname=''
311 d_atolf=''
312 d_atoll=''
313 baserev=''
314 bin=''
315 binexp=''
316 installbin=''
317 byteorder=''
318 cc=''
319 ccflags=''
320 cppflags=''
321 ldflags=''
322 lkflags=''
323 locincpth=''
324 optimize=''
325 cf_email=''
326 cf_by=''
327 cf_time=''
328 charsize=''
329 contains=''
330 cpp_stuff=''
331 cpplast=''
332 cppminus=''
333 cpprun=''
334 cppstdin=''
335 d__fwalk=''
336 d_access=''
337 d_accessx=''
338 d_aintl=''
339 d_alarm=''
340 asctime_r_proto=''
341 d_asctime_r=''
342 d_attribut=''
343 d_bcmp=''
344 d_bcopy=''
345 d_bzero=''
346 d_casti32=''
347 castflags=''
348 d_castneg=''
349 d_chown=''
350 d_chroot=''
351 d_chsize=''
352 d_class=''
353 d_closedir=''
354 d_void_closedir=''
355 d_cmsghdr_s=''
356 d_const=''
357 d_copysignl=''
358 cryptlib=''
359 d_crypt=''
360 crypt_r_proto=''
361 d_crypt_r=''
362 d_csh=''
363 full_csh=''
364 ctermid_r_proto=''
365 d_ctermid_r=''
366 ctime_r_proto=''
367 d_ctime_r=''
368 d_cuserid=''
369 d_dbl_dig=''
370 d_dbminitproto=''
371 d_difftime=''
372 d_dirfd=''
373 d_dlerror=''
374 d_dlopen=''
375 d_dlsymun=''
376 d_dosuid=''
377 d_suidsafe=''
378 d_drand48_r=''
379 drand48_r_proto=''
380 d_drand48proto=''
381 d_dup2=''
382 d_eaccess=''
383 d_endgrent=''
384 d_endgrent_r=''
385 endgrent_r_proto=''
386 d_endhent=''
387 d_endhostent_r=''
388 endhostent_r_proto=''
389 d_endnent=''
390 d_endnetent_r=''
391 endnetent_r_proto=''
392 d_endpent=''
393 d_endprotoent_r=''
394 endprotoent_r_proto=''
395 d_endpwent=''
396 d_endpwent_r=''
397 endpwent_r_proto=''
398 d_endsent=''
399 d_endservent_r=''
400 endservent_r_proto=''
401 d_faststdio=''
402 d_fchdir=''
403 d_fchmod=''
404 d_fchown=''
405 d_fcntl=''
406 d_fcntl_can_lock=''
407 d_fd_macros=''
408 d_fd_set=''
409 d_fds_bits=''
410 d_fgetpos=''
411 d_finite=''
412 d_finitel=''
413 d_flexfnam=''
414 d_flock=''
415 d_flockproto=''
416 d_fork=''
417 d_fp_class=''
418 d_fpclass=''
419 d_fpclassify=''
420 d_fpclassl=''
421 d_fpos64_t=''
422 d_frexpl=''
423 d_fs_data_s=''
424 d_fseeko=''
425 d_fsetpos=''
426 d_fstatfs=''
427 d_fsync=''
428 d_ftello=''
429 d_ftime=''
430 d_gettimeod=''
431 d_Gconvert=''
432 d_getcwd=''
433 d_getespwnam=''
434 d_getfsstat=''
435 d_getgrent=''
436 d_getgrent_r=''
437 getgrent_r_proto=''
438 d_getgrgid_r=''
439 getgrgid_r_proto=''
440 d_getgrnam_r=''
441 getgrnam_r_proto=''
442 d_getgrps=''
443 d_gethbyaddr=''
444 d_gethbyname=''
445 d_gethent=''
446 aphostname=''
447 d_gethname=''
448 d_phostname=''
449 d_uname=''
450 d_gethostbyaddr_r=''
451 gethostbyaddr_r_proto=''
452 d_gethostbyname_r=''
453 gethostbyname_r_proto=''
454 d_gethostent_r=''
455 gethostent_r_proto=''
456 d_gethostprotos=''
457 d_getitimer=''
458 d_getlogin=''
459 d_getlogin_r=''
460 getlogin_r_proto=''
461 d_getmnt=''
462 d_getmntent=''
463 d_getnbyaddr=''
464 d_getnbyname=''
465 d_getnent=''
466 d_getnetbyaddr_r=''
467 getnetbyaddr_r_proto=''
468 d_getnetbyname_r=''
469 getnetbyname_r_proto=''
470 d_getnetent_r=''
471 getnetent_r_proto=''
472 d_getnetprotos=''
473 d_getpagsz=''
474 d_getpent=''
475 d_getpgid=''
476 d_getpgrp2=''
477 d_bsdgetpgrp=''
478 d_getpgrp=''
479 d_getppid=''
480 d_getprior=''
481 d_getpbyname=''
482 d_getpbynumber=''
483 d_getprotobyname_r=''
484 getprotobyname_r_proto=''
485 d_getprotobynumber_r=''
486 getprotobynumber_r_proto=''
487 d_getprotoent_r=''
488 getprotoent_r_proto=''
489 d_getprotoprotos=''
490 d_getprpwnam=''
491 d_getpwent=''
492 d_getpwent_r=''
493 getpwent_r_proto=''
494 d_getpwnam_r=''
495 getpwnam_r_proto=''
496 d_getpwuid_r=''
497 getpwuid_r_proto=''
498 d_getsent=''
499 d_getservbyname_r=''
500 getservbyname_r_proto=''
501 d_getservbyport_r=''
502 getservbyport_r_proto=''
503 d_getservent_r=''
504 getservent_r_proto=''
505 d_getservprotos=''
506 d_getspnam=''
507 d_getspnam_r=''
508 getspnam_r_proto=''
509 d_getsbyname=''
510 d_getsbyport=''
511 d_gmtime_r=''
512 gmtime_r_proto=''
513 d_gnulibc=''
514 gnulibc_version=''
515 d_hasmntopt=''
516 d_htonl=''
517 d_ilogbl=''
518 d_inetaton=''
519 d_int64_t=''
520 d_isascii=''
521 d_isfinite=''
522 d_isinf=''
523 d_isnan=''
524 d_isnanl=''
525 d_killpg=''
526 d_lchown=''
527 d_ldbl_dig=''
528 d_link=''
529 d_localtime_r=''
530 localtime_r_proto=''
531 d_locconv=''
532 d_lockf=''
533 d_longdbl=''
534 longdblsize=''
535 d_longlong=''
536 longlongsize=''
537 d_lseekproto=''
538 d_lstat=''
539 d_madvise=''
540 d_mblen=''
541 d_mbstowcs=''
542 d_mbtowc=''
543 d_memchr=''
544 d_memcmp=''
545 d_memcpy=''
546 d_memmove=''
547 d_memset=''
548 d_mkdir=''
549 d_mkdtemp=''
550 d_mkfifo=''
551 d_mkstemp=''
552 d_mkstemps=''
553 d_mktime=''
554 d_mmap=''
555 mmaptype=''
556 d_modfl=''
557 d_modfl_pow32_bug=''
558 d_modflproto=''
559 d_mprotect=''
560 d_msg=''
561 d_msgctl=''
562 d_msgget=''
563 d_msghdr_s=''
564 d_msgrcv=''
565 d_msgsnd=''
566 d_msync=''
567 d_munmap=''
568 d_nice=''
569 d_nl_langinfo=''
570 d_off64_t=''
571 d_open3=''
572 d_fpathconf=''
573 d_pathconf=''
574 d_pause=''
575 d_pipe=''
576 d_poll=''
577 d_portable=''
578 d_procselfexe=''
579 procselfexe=''
580 d_old_pthread_create_joinable=''
581 old_pthread_create_joinable=''
582 d_pthread_atfork=''
583 d_pthread_attr_setscope=''
584 d_pthread_yield=''
585 d_sched_yield=''
586 sched_yield=''
587 d_qgcvt=''
588 d_random_r=''
589 random_r_proto=''
590 d_readdir64_r=''
591 readdir64_r_proto=''
592 d_readdir=''
593 d_rewinddir=''
594 d_seekdir=''
595 d_telldir=''
596 d_readdir_r=''
597 readdir_r_proto=''
598 d_readlink=''
599 d_readv=''
600 d_recvmsg=''
601 d_rename=''
602 d_rmdir=''
603 d_safebcpy=''
604 d_safemcpy=''
605 d_sanemcmp=''
606 d_sbrkproto=''
607 d_scalbnl=''
608 d_select=''
609 d_sem=''
610 d_semctl=''
611 d_semget=''
612 d_semop=''
613 d_sendmsg=''
614 d_setegid=''
615 d_seteuid=''
616 d_setgrent=''
617 d_setgrent_r=''
618 setgrent_r_proto=''
619 d_setgrps=''
620 d_sethent=''
621 d_sethostent_r=''
622 sethostent_r_proto=''
623 d_setitimer=''
624 d_setlinebuf=''
625 d_setlocale=''
626 d_setlocale_r=''
627 setlocale_r_proto=''
628 d_setnent=''
629 d_setnetent_r=''
630 setnetent_r_proto=''
631 d_setpent=''
632 d_setpgid=''
633 d_setpgrp2=''
634 d_bsdsetpgrp=''
635 d_setpgrp=''
636 d_setprior=''
637 d_setproctitle=''
638 d_setprotoent_r=''
639 setprotoent_r_proto=''
640 d_setpwent=''
641 d_setpwent_r=''
642 setpwent_r_proto=''
643 d_setregid=''
644 d_setresgid=''
645 d_setresuid=''
646 d_setreuid=''
647 d_setrgid=''
648 d_setruid=''
649 d_setsent=''
650 d_setservent_r=''
651 setservent_r_proto=''
652 d_setsid=''
653 d_setvbuf=''
654 d_sfio=''
655 usesfio=''
656 d_shm=''
657 d_shmat=''
658 d_shmatprototype=''
659 shmattype=''
660 d_shmctl=''
661 d_shmdt=''
662 d_shmget=''
663 d_sigaction=''
664 d_sigprocmask=''
665 d_sigsetjmp=''
666 d_sockatmark=''
667 d_sockatmarkproto=''
668 d_msg_ctrunc=''
669 d_msg_dontroute=''
670 d_msg_oob=''
671 d_msg_peek=''
672 d_msg_proxy=''
673 d_oldsock=''
674 d_scm_rights=''
675 d_socket=''
676 d_sockpair=''
677 sockethdr=''
678 socketlib=''
679 d_socklen_t=''
680 d_socks5_init=''
681 d_sqrtl=''
682 d_srand48_r=''
683 srand48_r_proto=''
684 d_srandom_r=''
685 srandom_r_proto=''
686 d_sresgproto=''
687 d_sresuproto=''
688 d_statblks=''
689 d_statfs_f_flags=''
690 d_statfs_s=''
691 d_fstatvfs=''
692 d_statvfs=''
693 d_stdio_cnt_lval=''
694 d_stdio_ptr_lval=''
695 d_stdio_ptr_lval_nochange_cnt=''
696 d_stdio_ptr_lval_sets_cnt=''
697 d_stdiobase=''
698 d_stdstdio=''
699 stdio_base=''
700 stdio_bufsiz=''
701 stdio_cnt=''
702 stdio_filbuf=''
703 stdio_ptr=''
704 d_index=''
705 d_strchr=''
706 d_strcoll=''
707 d_strctcpy=''
708 d_strerrm=''
709 d_strerror=''
710 d_sysernlst=''
711 d_syserrlst=''
712 d_strerror_r=''
713 strerror_r_proto=''
714 d_strftime=''
715 d_strlcat=''
716 d_strlcpy=''
717 d_strtod=''
718 d_strtol=''
719 d_strtold=''
720 d_strtoll=''
721 d_strtoq=''
722 d_strtoul=''
723 d_strtoull=''
724 d_strtouq=''
725 d_strxfrm=''
726 d_symlink=''
727 d_syscall=''
728 d_syscallproto=''
729 d_sysconf=''
730 d_system=''
731 d_tcgetpgrp=''
732 d_tcsetpgrp=''
733 d_telldirproto=''
734 d_time=''
735 timetype=''
736 clocktype=''
737 d_times=''
738 d_tmpnam_r=''
739 tmpnam_r_proto=''
740 d_truncate=''
741 d_ttyname_r=''
742 ttyname_r_proto=''
743 d_tzname=''
744 d_u32align=''
745 d_ualarm=''
746 d_umask=''
747 d_semctl_semid_ds=''
748 d_semctl_semun=''
749 d_union_semun=''
750 d_unordered=''
751 d_usleep=''
752 d_usleepproto=''
753 d_ustat=''
754 d_vfork=''
755 usevfork=''
756 d_voidsig=''
757 signal_t=''
758 d_volatile=''
759 d_charvspr=''
760 d_vprintf=''
761 d_wait4=''
762 d_waitpid=''
763 d_wcstombs=''
764 d_wctomb=''
765 d_writev=''
766 dlext=''
767 cccdlflags=''
768 ccdlflags=''
769 dlsrc=''
770 ld=''
771 lddlflags=''
772 usedl=''
773 doublesize=''
774 ebcdic=''
775 fflushNULL=''
776 fflushall=''
777 fpossize=''
778 fpostype=''
779 gccansipedantic=''
780 gccosandvers=''
781 gccversion=''
782 gidformat=''
783 gidsign=''
784 gidsize=''
785 gidtype=''
786 groupstype=''
787 h_fcntl=''
788 h_sysfile=''
789 html1dir=''
790 html1direxp=''
791 installhtml1dir=''
792 html3dir=''
793 html3direxp=''
794 installhtml3dir=''
795 i_arpainet=''
796 i_crypt=''
797 db_hashtype=''
798 db_prefixtype=''
799 db_version_major=''
800 db_version_minor=''
801 db_version_patch=''
802 i_db=''
803 i_dbm=''
804 i_rpcsvcdbm=''
805 d_dirnamlen=''
806 direntrytype=''
807 i_dirent=''
808 i_dld=''
809 i_dlfcn=''
810 i_fcntl=''
811 i_float=''
812 i_fp=''
813 i_fp_class=''
814 i_gdbm=''
815 d_grpasswd=''
816 i_grp=''
817 i_ieeefp=''
818 i_inttypes=''
819 i_langinfo=''
820 i_libutil=''
821 i_limits=''
822 i_locale=''
823 i_machcthr=''
824 i_malloc=''
825 i_math=''
826 i_memory=''
827 i_mntent=''
828 i_ndbm=''
829 i_netdb=''
830 i_neterrno=''
831 i_netinettcp=''
832 i_niin=''
833 i_sysin=''
834 i_poll=''
835 i_prot=''
836 i_pthread=''
837 d_pwage=''
838 d_pwchange=''
839 d_pwclass=''
840 d_pwcomment=''
841 d_pwexpire=''
842 d_pwgecos=''
843 d_pwpasswd=''
844 d_pwquota=''
845 i_pwd=''
846 i_sfio=''
847 i_shadow=''
848 i_socks=''
849 i_stddef=''
850 i_stdlib=''
851 i_string=''
852 strings=''
853 i_sunmath=''
854 i_sysaccess=''
855 i_sysdir=''
856 i_sysfile=''
857 d_voidtty=''
858 i_bsdioctl=''
859 i_sysfilio=''
860 i_sysioctl=''
861 i_syssockio=''
862 i_syslog=''
863 i_sysmman=''
864 i_sysmode=''
865 i_sysmount=''
866 i_sysndir=''
867 i_sysparam=''
868 i_sysresrc=''
869 i_syssecrt=''
870 i_sysselct=''
871 i_sysstat=''
872 i_sysstatfs=''
873 i_sysstatvfs=''
874 i_systimes=''
875 i_systypes=''
876 i_sysuio=''
877 i_sysun=''
878 i_sysutsname=''
879 i_sysvfs=''
880 i_syswait=''
881 i_sgtty=''
882 i_termio=''
883 i_termios=''
884 d_tm_tm_gmtoff=''
885 d_tm_tm_zone=''
886 i_systime=''
887 i_systimek=''
888 i_time=''
889 timeincl=''
890 i_unistd=''
891 i_ustat=''
892 i_utime=''
893 i_values=''
894 i_stdarg=''
895 i_varargs=''
896 i_varhdr=''
897 i_vfork=''
898 inc_version_list=''
899 inc_version_list_init=''
900 installprefix=''
901 installprefixexp=''
902 installstyle=''
903 installusrbinperl=''
904 intsize=''
905 longsize=''
906 shortsize=''
907 issymlink=''
908 libc=''
909 ldlibpthname=''
910 libperl=''
911 shrpenv=''
912 useshrplib=''
913 glibpth=''
914 libpth=''
915 loclibpth=''
916 plibpth=''
917 xlibpth=''
918 ignore_versioned_solibs=''
919 libs=''
920 libsdirs=''
921 libsfiles=''
922 libsfound=''
923 libspath=''
924 lns=''
925 d_PRIEUldbl=''
926 d_PRIFUldbl=''
927 d_PRIGUldbl=''
928 d_PRIeldbl=''
929 d_PRIfldbl=''
930 d_PRIgldbl=''
931 d_SCNfldbl=''
932 sPRIEUldbl=''
933 sPRIFUldbl=''
934 sPRIGUldbl=''
935 sPRIeldbl=''
936 sPRIfldbl=''
937 sPRIgldbl=''
938 sSCNfldbl=''
939 lseeksize=''
940 lseektype=''
941 make_set_make=''
942 d_mymalloc=''
943 freetype=''
944 mallocobj=''
945 mallocsrc=''
946 malloctype=''
947 usemallocwrap=''
948 usemymalloc=''
949 installman1dir=''
950 man1dir=''
951 man1direxp=''
952 man1ext=''
953 installman3dir=''
954 man3dir=''
955 man3direxp=''
956 man3ext=''
957 modetype=''
958 multiarch=''
959 mydomain=''
960 myhostname=''
961 phostname=''
962 c=''
963 n=''
964 d_eofnblk=''
965 eagain=''
966 o_nonblock=''
967 rd_nodata=''
968 need_va_copy=''
969 netdb_hlen_type=''
970 netdb_host_type=''
971 netdb_name_type=''
972 netdb_net_type=''
973 groupcat=''
974 hostcat=''
975 passcat=''
976 orderlib=''
977 ranlib=''
978 d_perl_otherlibdirs=''
979 otherlibdirs=''
980 package=''
981 spackage=''
982 pager=''
983 api_revision=''
984 api_subversion=''
985 api_version=''
986 api_versionstring=''
987 patchlevel=''
988 perl_patchlevel=''
989 revision=''
990 subversion=''
991 version=''
992 version_patchlevel_string=''
993 perl5=''
994 perladmin=''
995 perlpath=''
996 d_nv_preserves_uv=''
997 i16size=''
998 i16type=''
999 i32size=''
1000 i32type=''
1001 i64size=''
1002 i64type=''
1003 i8size=''
1004 i8type=''
1005 ivsize=''
1006 ivtype=''
1007 nv_preserves_uv_bits=''
1008 nvsize=''
1009 nvtype=''
1010 u16size=''
1011 u16type=''
1012 u32size=''
1013 u32type=''
1014 u64size=''
1015 u64type=''
1016 u8size=''
1017 u8type=''
1018 uvsize=''
1019 uvtype=''
1020 ivdformat=''
1021 nvEUformat=''
1022 nvFUformat=''
1023 nvGUformat=''
1024 nveformat=''
1025 nvfformat=''
1026 nvgformat=''
1027 uvXUformat=''
1028 uvoformat=''
1029 uvuformat=''
1030 uvxformat=''
1031 pidtype=''
1032 prefix=''
1033 prefixexp=''
1034 installprivlib=''
1035 privlib=''
1036 privlibexp=''
1037 prototype=''
1038 ptrsize=''
1039 d_PRIXU64=''
1040 d_PRId64=''
1041 d_PRIi64=''
1042 d_PRIo64=''
1043 d_PRIu64=''
1044 d_PRIx64=''
1045 sPRIXU64=''
1046 sPRId64=''
1047 sPRIi64=''
1048 sPRIo64=''
1049 sPRIu64=''
1050 sPRIx64=''
1051 d_quad=''
1052 quadkind=''
1053 quadtype=''
1054 uquadtype=''
1055 drand01=''
1056 randbits=''
1057 randfunc=''
1058 randseedtype=''
1059 seedfunc=''
1060 installscript=''
1061 scriptdir=''
1062 scriptdirexp=''
1063 selectminbits=''
1064 selecttype=''
1065 sh=''
1066 sig_count=''
1067 sig_name=''
1068 sig_name_init=''
1069 sig_num=''
1070 sig_num_init=''
1071 sig_size=''
1072 installsitearch=''
1073 sitearch=''
1074 sitearchexp=''
1075 installsitebin=''
1076 sitebin=''
1077 sitebinexp=''
1078 installsitehtml1dir=''
1079 sitehtml1dir=''
1080 sitehtml1direxp=''
1081 installsitehtml3dir=''
1082 sitehtml3dir=''
1083 sitehtml3direxp=''
1084 installsitelib=''
1085 sitelib=''
1086 sitelib_stem=''
1087 sitelibexp=''
1088 installsiteman1dir=''
1089 siteman1dir=''
1090 siteman1direxp=''
1091 installsiteman3dir=''
1092 siteman3dir=''
1093 siteman3direxp=''
1094 siteprefix=''
1095 siteprefixexp=''
1096 installsitescript=''
1097 sitescript=''
1098 sitescriptexp=''
1099 sizesize=''
1100 sizetype=''
1101 so=''
1102 socksizetype=''
1103 sharpbang=''
1104 shsharp=''
1105 spitshell=''
1106 src=''
1107 ssizetype=''
1108 startperl=''
1109 startsh=''
1110 stdchar=''
1111 d_stdio_stream_array=''
1112 stdio_stream_array=''
1113 sysman=''
1114 trnl=''
1115 uidformat=''
1116 uidsign=''
1117 uidsize=''
1118 uidtype=''
1119 archname64=''
1120 use64bitall=''
1121 use64bitint=''
1122 usefaststdio=''
1123 ccflags_uselargefiles=''
1124 ldflags_uselargefiles=''
1125 libswanted_uselargefiles=''
1126 uselargefiles=''
1127 uselongdouble=''
1128 usemorebits=''
1129 usemultiplicity=''
1130 nm_opt=''
1131 nm_so_opt=''
1132 runnm=''
1133 usenm=''
1134 useperlio=''
1135 usesocks=''
1136 d_oldpthreads=''
1137 use5005threads=''
1138 useithreads=''
1139 usereentrant=''
1140 userelocatableinc=undef
1141 usethreads=''
1142 incpath=''
1143 mips_type=''
1144 usrinc=''
1145 d_vendorarch=''
1146 installvendorarch=''
1147 vendorarch=''
1148 vendorarchexp=''
1149 d_vendorbin=''
1150 installvendorbin=''
1151 vendorbin=''
1152 vendorbinexp=''
1153 installvendorhtml1dir=''
1154 vendorhtml1dir=''
1155 vendorhtml1direxp=''
1156 installvendorhtml3dir=''
1157 vendorhtml3dir=''
1158 vendorhtml3direxp=''
1159 d_vendorlib=''
1160 installvendorlib=''
1161 vendorlib=''
1162 vendorlib_stem=''
1163 vendorlibexp=''
1164 installvendorman1dir=''
1165 vendorman1dir=''
1166 vendorman1direxp=''
1167 installvendorman3dir=''
1168 vendorman3dir=''
1169 vendorman3direxp=''
1170 usevendorprefix=''
1171 vendorprefix=''
1172 vendorprefixexp=''
1173 d_vendorscript=''
1174 installvendorscript=''
1175 vendorscript=''
1176 vendorscriptexp=''
1177 versiononly=''
1178 defvoidused=''
1179 voidflags=''
1180 yacc=''
1181 yaccflags=''
1182 CONFIG=''
1183
1184 define='define'
1185 undef='undef'
1186 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
1187 rmlist=''
1188
1189 : We must find out about Eunice early
1190 eunicefix=':'
1191 if test -f /etc/unixtovms; then
1192         eunicefix=/etc/unixtovms
1193 fi
1194 if test -f /etc/unixtovms.exe; then
1195         eunicefix=/etc/unixtovms.exe
1196 fi
1197
1198 : Set executable suffix now -- needed before hints available
1199 if test -f "/libs/version.library"; then
1200 : Amiga OS
1201     _exe=""
1202 elif test -f "/system/gnu_library/bin/ar.pm"; then
1203 : Stratus VOS
1204     _exe=".pm"
1205 elif test -n "$DJGPP"; then
1206 : DOS DJGPP
1207     _exe=".exe"
1208 elif test -d c:/. -o -n "$is_os2" ; then
1209 : OS/2 or cygwin
1210     _exe=".exe"
1211 fi
1212
1213 i_whoami=''
1214 ccname=''
1215 ccversion=''
1216 perllibs=''
1217 : set useposix=false in your hint file to disable the POSIX extension.
1218 useposix=true
1219 : set useopcode=false in your hint file to disable the Opcode extension.
1220 useopcode=true
1221 : Trailing extension.  Override this in a hint file, if needed.
1222 : Extra object files, if any, needed on this platform.
1223 archobjs=''
1224 archname=''
1225 : Possible local include directories to search.
1226 : Set locincpth to "" in a hint file to defeat local include searches.
1227 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1228 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1229 :
1230 : no include file wanted by default
1231 inclwanted=''
1232
1233 groupstype=''
1234 libnames=''
1235 : change the next line if compiling for Xenix/286 on Xenix/386
1236 xlibpth='/usr/lib/386 /lib/386'
1237 : Possible local library directories to search.
1238 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1239 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1240
1241 : general looking path for locating libraries
1242 glibpth="/lib /usr/lib $xlibpth"
1243 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1244 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1245 test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1246
1247 : Private path used by Configure to find libraries.  Its value
1248 : is prepended to libpth. This variable takes care of special
1249 : machines, like the mips.  Usually, it should be empty.
1250 plibpth=''
1251
1252 : default library list
1253 libswanted=''
1254 : some systems want to use only the non-versioned libso:s
1255 ignore_versioned_solibs=''
1256 siteman1dir=''
1257 siteman3dir=''
1258 sitescript=''
1259 archname64=''
1260 ccflags_uselargefiles=''
1261 ldflags_uselargefiles=''
1262 libswanted_uselargefiles=''
1263 : set usemultiplicity on the Configure command line to enable multiplicity.
1264 : set usesocks on the Configure command line to enable socks.
1265 : set usethreads on the Configure command line to enable threads.
1266 usereentrant='undef'
1267 : full support for void wanted by default
1268 defvoidused=15
1269
1270 : List of libraries we want.
1271 : If anyone needs extra -lxxx, put those in a hint file.
1272 libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun"
1273 libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD"
1274 : We probably want to search /usr/shlib before most other libraries.
1275 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1276 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1277 glibpth="/usr/shlib $glibpth"
1278 : Do not use vfork unless overridden by a hint file.
1279 usevfork=false
1280
1281 : Find the basic shell for Bourne shell scripts
1282 case "$sh" in
1283 '')
1284         case "$SYSTYPE" in
1285         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1286         *) xxx='/bin/sh';;
1287         esac
1288         if test -f "$xxx"; then
1289                 sh="$xxx"
1290         else
1291                 : Build up a list and do a single loop so we can 'break' out.
1292                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1293                 for xxx in sh bash ksh pdksh ash; do
1294                         for p in $pth; do
1295                                 try="$try ${p}/${xxx}"
1296                         done
1297                 done
1298                 for xxx in $try; do
1299                         if test -f "$xxx"; then
1300                                 sh="$xxx";
1301                                 break
1302                         elif test "X$_exe" != X -a -f "$xxx$_exe"; then
1303                                 sh="$xxx";
1304                                 break
1305                         elif test -f "$xxx.exe"; then
1306                                 sh="$xxx";
1307                                 break
1308                         fi
1309                 done
1310         fi
1311         ;;
1312 esac
1313
1314 case "$sh" in
1315 '')     cat >&2 <<EOM
1316 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
1317
1318 Usually it's in /bin/sh.  How did you even get this far?
1319 Please contact me (Perl Maintainers) at perlbug@perl.org and 
1320 we'll try to straighten this all out.
1321 EOM
1322         exit 1
1323         ;;
1324 esac
1325
1326 : see if sh knows # comments
1327 if `$sh -c '#' >/dev/null 2>&1`; then
1328         shsharp=true
1329         spitshell=cat
1330         xcat=/bin/cat
1331         test -f $xcat$_exe || xcat=/usr/bin/cat
1332         if test ! -f $xcat$_exe; then
1333                 for p in `echo $PATH | sed -e "s/$p_/ /g"` $paths; do
1334                         if test -f $p/cat$_exe; then
1335                                 xcat=$p/cat
1336                                 break
1337                         fi
1338                 done
1339                 if test ! -f $xcat$_exe; then
1340                         echo "Can't find cat anywhere!"
1341                         exit 1
1342                 fi
1343         fi
1344         echo "#!$xcat" >sharp
1345         $eunicefix sharp
1346         chmod +x sharp
1347         ./sharp > today
1348         if test -s today; then
1349                 sharpbang='#!'
1350         else
1351                 echo "#! $xcat" > sharp
1352                 $eunicefix sharp
1353                 chmod +x sharp
1354                 ./sharp > today
1355                 if test -s today; then
1356                         sharpbang='#! '
1357                 else
1358                         sharpbang=': use '
1359                 fi
1360         fi
1361 else
1362         echo " "
1363         echo "Your $sh doesn't grok # comments--I will strip them later on."
1364         shsharp=false
1365         cd ..
1366         echo "exec grep -v '^[  ]*#'" >spitshell
1367         chmod +x spitshell
1368         $eunicefix spitshell
1369         spitshell=`pwd`/spitshell
1370         cd UU
1371         echo "I presume that if # doesn't work, #! won't work either!"
1372         sharpbang=': use '
1373 fi
1374 rm -f sharp today
1375
1376 : figure out how to guarantee sh startup
1377 case "$startsh" in
1378 '') startsh=${sharpbang}${sh} ;;
1379 *)
1380 esac
1381 cat >sharp <<EOSS
1382 $startsh
1383 set abc
1384 test "$?abc" != 1
1385 EOSS
1386
1387 chmod +x sharp
1388 $eunicefix sharp
1389 if ./sharp; then
1390         : echo "Yup, it does."
1391 else
1392         echo "Hmm... '$startsh' does not guarantee sh startup..."
1393         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1394 fi
1395 rm -f sharp
1396
1397
1398 : Save command line options in file UU/cmdline.opt for later use in
1399 : generating config.sh.
1400 cat > cmdline.opt <<EOSH
1401 # Configure command line arguments.
1402 config_arg0='$0'
1403 config_args='$*'
1404 config_argc=$#
1405 EOSH
1406 argn=1
1407 args_exp=''
1408 args_sep=''
1409 for arg in "$@"; do
1410         cat >>cmdline.opt <<EOSH
1411 config_arg$argn='$arg'
1412 EOSH
1413         # Extreme backslashitis: replace each ' by '"'"'
1414         cat <<EOC | sed -e "s/'/'"'"'"'"'"'"'/g" > cmdl.opt
1415 $arg
1416 EOC
1417         arg_exp=`cat cmdl.opt`
1418         args_exp="$args_exp$args_sep'$arg_exp'"
1419         argn=`expr $argn + 1`
1420         args_sep=' '
1421 done
1422 # args_exp is good for restarting self: eval "set X $args_exp"; shift; $0 "$@"
1423 # used by ./hints/os2.sh
1424 rm -f cmdl.opt
1425
1426 : produce awk script to parse command line options
1427 cat >options.awk <<'EOF'
1428 BEGIN {
1429         optstr = "A:dD:eEf:hKOrsSU:V";  # getopt-style specification
1430
1431         len = length(optstr);
1432         for (i = 1; i <= len; i++) {
1433                 c = substr(optstr, i, 1);
1434                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1435                 if (a == ":") {
1436                         arg[c] = 1;
1437                         i++;
1438                 }
1439                 opt[c] = 1;
1440         }
1441 }
1442 {
1443         expect = 0;
1444         str = $0;
1445         if (substr(str, 1, 1) != "-") {
1446                 printf("'%s'\n", str);
1447                 next;
1448         }
1449         len = length($0);
1450         for (i = 2; i <= len; i++) {
1451                 c = substr(str, i, 1);
1452                 if (!opt[c]) {
1453                         printf("-%s\n", substr(str, i));
1454                         next;
1455                 }
1456                 printf("-%s\n", c);
1457                 if (arg[c]) {
1458                         if (i < len)
1459                                 printf("'%s'\n", substr(str, i + 1));
1460                         else
1461                                 expect = 1;
1462                         next;
1463                 }
1464         }
1465 }
1466 END {
1467         if (expect)
1468                 print "?";
1469 }
1470 EOF
1471
1472 : process the command line options
1473 set X `for arg in "$@"; do echo "X$arg"; done |
1474         sed -e s/X// | awk -f options.awk`
1475 eval "set $*"
1476 shift
1477 rm -f options.awk
1478
1479 : set up default values
1480 fastread=''
1481 reuseval=false
1482 config_sh=''
1483 alldone=''
1484 error=''
1485 silent=''
1486 extractsh=''
1487 override=''
1488 knowitall=''
1489 rm -f optdef.sh posthint.sh
1490 cat >optdef.sh <<EOS
1491 $startsh
1492 EOS
1493
1494
1495 : option parsing
1496 while test $# -gt 0; do
1497         case "$1" in
1498         -d) shift; fastread=yes;;
1499         -e) shift; alldone=cont;;
1500         -f)
1501                 shift
1502                 cd ..
1503                 if test -r "$1"; then
1504                         config_sh="$1"
1505                 else
1506                         echo "$me: cannot read config file $1." >&2
1507                         error=true
1508                 fi
1509                 cd UU
1510                 shift;;
1511         -h) shift; error=true;;
1512         -r) shift; reuseval=true;;
1513         -s) shift; silent=true; realsilent=true;;
1514         -E) shift; alldone=exit;;
1515         -K) shift; knowitall=true;;
1516         -O) shift; override=true;;
1517         -S) shift; silent=true; extractsh=true;;
1518         -D)
1519                 shift
1520                 case "$1" in
1521                 *=)
1522                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1523                         echo "$me: ignoring -D $1" >&2
1524                         ;;
1525                 *=*) echo "$1" | \
1526                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1527                 *) echo "$1='define'" >> optdef.sh;;
1528                 esac
1529                 shift
1530                 ;;
1531         -U)
1532                 shift
1533                 case "$1" in
1534                 *=) echo "$1" >> optdef.sh;;
1535                 *=*)
1536                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1537                         echo "$me: ignoring -U $1" >&2
1538                         ;;
1539                 *) echo "$1='undef'" >> optdef.sh;;
1540                 esac
1541                 shift
1542                 ;;
1543         -A)
1544             shift
1545             xxx=''
1546             yyy="$1"
1547             zzz=''
1548             uuu=undef
1549             case "$yyy" in
1550             *=*) zzz=`echo "$yyy"|sed 's!=.*!!'`
1551                  case "$zzz" in
1552                  *:*) zzz='' ;;
1553                  *)   xxx=append
1554                       zzz=" "`echo "$yyy"|sed 's!^[^=]*=!!'` 
1555                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1556                  esac
1557                  ;;
1558             esac
1559             case "$xxx" in
1560             '')  case "$yyy" in
1561                  *:*) xxx=`echo "$yyy"|sed 's!:.*!!'`
1562                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'`
1563                       zzz=`echo "$yyy"|sed 's!^[^=]*=!!'`
1564                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1565                  *)   xxx=`echo "$yyy"|sed 's!:.*!!'`
1566                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'` ;;
1567                  esac
1568                  ;;       
1569             esac
1570             case "$xxx" in
1571             append)
1572                 echo "$yyy=\"\${$yyy}$zzz\""    >> posthint.sh ;;
1573             clear)
1574                 echo "$yyy=''"                  >> posthint.sh ;;
1575             define)
1576                 case "$zzz" in
1577                 '') zzz=define ;;
1578                 esac
1579                 echo "$yyy='$zzz'"              >> posthint.sh ;;
1580             eval)
1581                 echo "eval \"$yyy=$zzz\""       >> posthint.sh ;;
1582             prepend)
1583                 echo "$yyy=\"$zzz\${$yyy}\""    >> posthint.sh ;;
1584             undef)
1585                 case "$zzz" in
1586                 '') zzz="$uuu" ;;
1587                 esac
1588                 echo "$yyy=$zzz"                >> posthint.sh ;;
1589             *)  echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1590             esac
1591             shift
1592             ;;
1593         -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1594             exit 0;;
1595         --) break;;
1596         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1597         *) break;;
1598         esac
1599 done
1600
1601 case "$error" in
1602 true)
1603         cat >&2 <<EOM
1604 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1605                  [-U symbol] [-U symbol=] [-A command:symbol...]
1606   -d : use defaults for all answers.
1607   -e : go on without questioning past the production of config.sh.
1608   -f : specify an alternate default configuration file.
1609   -h : print this help message and exit (with an error status).
1610   -r : reuse C symbols value if possible (skips costly nm extraction).
1611   -s : silent mode, only echoes questions and essential information.
1612   -D : define symbol to have some value:
1613          -D symbol         symbol gets the value 'define'
1614          -D symbol=value   symbol gets the value 'value'
1615   -E : stop at the end of questions, after having produced config.sh.
1616   -K : do not use unless you know what you are doing.
1617   -O : let -D and -U override definitions from loaded configuration file.
1618   -S : perform variable substitutions on all .SH files (can mix with -f)
1619   -U : undefine symbol:
1620          -U symbol    symbol gets the value 'undef'
1621          -U symbol=   symbol gets completely empty
1622   -A : manipulate symbol after the platform specific hints have been applied:
1623          -A symbol=value                append " "value to symbol
1624          -A append:symbol=value         append value to symbol
1625          -A define:symbol=value         define symbol to have value
1626          -A clear:symbol                define symbol to be ''
1627          -A define:symbol               define symbol to be 'define'
1628          -A eval:symbol=value           define symbol to be eval of value
1629          -A prepend:symbol=value        prepend value to symbol
1630          -A undef:symbol                define symbol to be 'undef'
1631          -A undef:symbol=               define symbol to be ''
1632   -V : print version number and exit (with a zero status).
1633 EOM
1634         exit 1
1635         ;;
1636 esac
1637
1638 : Sanity checks
1639 case "$fastread$alldone" in
1640 yescont|yesexit) ;;
1641 *)
1642         case "$extractsh" in
1643         true) ;;
1644         *)
1645                 if test ! -t 0; then
1646                         echo "Say 'sh Configure', not 'sh <Configure'"
1647                         exit 1
1648                 fi
1649                 ;;
1650         esac
1651         ;;
1652 esac
1653
1654 exec 4>&1
1655 case "$silent" in
1656 true) exec 1>/dev/null;;
1657 esac
1658
1659 : run the defines and the undefines, if any, but leave the file out there...
1660 touch optdef.sh
1661 . ./optdef.sh
1662 : create the posthint manipulation script and leave the file out there...
1663 touch posthint.sh
1664
1665 : set package name
1666 package=perl5
1667 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1668 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1669 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1670 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1671 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1672 esac
1673
1674 : Some greps do not return status, grrr.
1675 echo "grimblepritz" >grimble
1676 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1677         contains=contains
1678 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1679         contains=grep
1680 else
1681         contains=contains
1682 fi
1683 rm -f grimble
1684 : the following should work in any shell
1685 case "$contains" in
1686 contains*)
1687         echo " "
1688         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1689         cat >contains <<'EOSS'
1690 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1691 EOSS
1692 chmod +x contains
1693 esac
1694
1695 : Find the path to the source tree
1696 case "$src" in
1697 '') case "$0" in
1698     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1699          case "$src" in
1700          /*)    ;;
1701          .)     ;;
1702          *)     src=`cd ../$src && pwd` ;;
1703          esac
1704          ;;
1705     *)   src='.';;
1706     esac;;
1707 esac
1708 case "$src" in
1709 '')     src=/
1710         rsrc=/
1711         ;;
1712 /*) rsrc="$src";;
1713 *) rsrc="../$src";;
1714 esac
1715 if test -f $rsrc/Configure && \
1716         $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1717 then
1718    : found it, so we are ok.
1719 else
1720         rsrc=''
1721         for src in . .. ../.. ../../.. ../../../..; do
1722                 if test -f ../$src/Configure && \
1723                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1724                 then
1725                         rsrc=../$src
1726                         break
1727                 fi
1728         done
1729 fi
1730 case "$rsrc" in
1731 '')
1732         cat <<EOM >&4
1733
1734 Sorry, I can't seem to locate the source dir for $package.  Please start
1735 Configure with an explicit path -- i.e. /some/path/Configure.
1736
1737 EOM
1738         exit 1
1739         ;;
1740 ../.)   rsrc='..';;
1741 *)
1742         echo " "
1743         echo "Sources for $package found in \"$src\"." >&4
1744         ;;
1745 esac
1746
1747 : script used to extract .SH files with variable substitutions
1748 cat >extract <<'EOS'
1749 PERL_CONFIG_SH=true
1750 echo "Doing variable substitutions on .SH files..."
1751 if test -f MANIFEST; then
1752         set x `awk '{print $1}' < MANIFEST | grep '\.SH$'`
1753 else
1754         echo "(Looking for .SH files under the source directory.)"
1755         set x `(cd "$src"; find . -name "*.SH" -print)`
1756 fi
1757 shift
1758 case $# in
1759 0) set x `(cd "$src"; echo *.SH)`; shift;;
1760 esac
1761 if test ! -f "$src/$1"; then
1762         shift
1763 fi
1764 mkdir_p='
1765 name=$1;
1766 create="";
1767 while test $name; do
1768         if test ! -d "$name"; then
1769                 create="$name $create";
1770                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1771                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1772         else
1773                 name="";
1774         fi;
1775 done;
1776 for file in $create; do
1777         mkdir $file;
1778 done
1779 '
1780 for file in $*; do
1781         case "$src" in
1782         ".")
1783                 case "$file" in
1784                 */*)
1785                         dir=`expr X$file : 'X\(.*\)/'`
1786                         file=`expr X$file : 'X.*/\(.*\)'`
1787                         (cd "$dir" && . ./$file)
1788                         ;;
1789                 *)
1790                         . ./$file
1791                         ;;
1792                 esac
1793                 ;;
1794         *)
1795                 case "$file" in
1796                 */*)
1797                         dir=`expr X$file : 'X\(.*\)/'`
1798                         file=`expr X$file : 'X.*/\(.*\)'`
1799                         (set x $dir; shift; eval $mkdir_p)
1800                         sh <"$src/$dir/$file"
1801                         ;;
1802                 *)
1803                         sh <"$src/$file"
1804                         ;;
1805                 esac
1806                 ;;
1807         esac
1808 done
1809 if test -f "$src/config_h.SH"; then
1810         if test ! -f config.h; then
1811         : oops, they left it out of MANIFEST, probably, so do it anyway.
1812         . "$src/config_h.SH"
1813         fi
1814 fi
1815 EOS
1816
1817 : extract files and exit if asked to do so
1818 case "$extractsh" in
1819 true)
1820         case "$realsilent" in
1821         true) ;;
1822         *) exec 1>&4;;
1823         esac
1824         case "$config_sh" in
1825         '') config_sh='config.sh';;
1826         esac
1827         echo " "
1828         echo "Fetching answers from $config_sh..."
1829         cd ..
1830         . $config_sh
1831         test "$override" && . ./optdef.sh
1832         echo " "
1833         . UU/extract
1834         rm -rf UU
1835         echo "Extraction done."
1836         exit 0
1837         ;;
1838 esac
1839
1840 : Eunice requires " " instead of "", can you believe it
1841 echo " "
1842 : Here we go...
1843 echo "Beginning of configuration questions for $package."
1844
1845 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1846
1847 : first determine how to suppress newline on echo command
1848 echo " "
1849 echo "Checking echo to see how to suppress newlines..."
1850 (echo "hi there\c" ; echo " ") >.echotmp
1851 if $contains c .echotmp >/dev/null 2>&1 ; then
1852         echo "...using -n."
1853         n='-n'
1854         c=''
1855 else
1856         cat <<'EOM'
1857 ...using \c
1858 EOM
1859         n=''
1860         c='\c'
1861 fi
1862 echo $n "The star should be here-->$c"
1863 echo '*'
1864 rm -f .echotmp
1865
1866 : Now test for existence of everything in MANIFEST
1867 echo " "
1868 if test -f "$rsrc/MANIFEST"; then
1869         echo "First let's make sure your kit is complete.  Checking..." >&4
1870         awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | (split -l 50 2>/dev/null || split -50)
1871         rm -f missing
1872         tmppwd=`pwd`
1873         for filelist in x??; do
1874                 (cd "$rsrc"; ls `cat "$tmppwd/$filelist"` >/dev/null 2>>"$tmppwd/missing")
1875         done
1876         if test -s missing; then
1877                 cat missing >&4
1878                 cat >&4 <<'EOM'
1879
1880 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1881
1882 You have the option of continuing the configuration process, despite the
1883 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1884 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1885 and contact the author (perlbug@perl.org).
1886
1887 EOM
1888                 echo $n "Continue? [n] $c" >&4
1889                 read ans
1890                 case "$ans" in
1891                 y*)
1892                         echo "Continuing..." >&4
1893                         rm -f missing
1894                         ;;
1895                 *)
1896                         echo "ABORTING..." >&4
1897                         kill $$
1898                         ;;
1899                 esac
1900         else
1901                 echo "Looks good..."
1902         fi
1903 else
1904         echo "There is no MANIFEST file.  I hope your kit is complete !"
1905 fi
1906 rm -f missing x??
1907
1908 echo " "
1909 : Find the appropriate value for a newline for tr
1910 if test -n "$DJGPP"; then
1911        trnl='\012'
1912 fi
1913 if test X"$trnl" = X; then
1914         case "`echo foo|tr '\n' x 2>/dev/null`" in
1915         foox) trnl='\n' ;;
1916         esac
1917 fi
1918 if test X"$trnl" = X; then
1919         case "`echo foo|tr '\012' x 2>/dev/null`" in
1920         foox) trnl='\012' ;;
1921         esac
1922 fi
1923 if test X"$trnl" = X; then
1924        case "`echo foo|tr '\r\n' xy 2>/dev/null`" in
1925        fooxy) trnl='\n\r' ;;
1926        esac
1927 fi
1928 if test X"$trnl" = X; then
1929         cat <<EOM >&2
1930
1931 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1932
1933 EOM
1934         exit 1
1935 fi
1936
1937 : compute the number of columns on the terminal for proper question formatting
1938 case "$COLUMNS" in
1939 '') COLUMNS='80';;
1940 esac
1941
1942 : set up the echo used in my read
1943 myecho="case \"\$xxxm\" in
1944 '') echo $n \"\$rp $c\" >&4;;
1945 *) case \"\$rp\" in
1946         '') echo $n \"[\$xxxm] $c\";;
1947         *)
1948                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
1949                         echo \"\$rp\" >&4
1950                         echo $n \"[\$xxxm] $c\" >&4
1951                 else
1952                         echo $n \"\$rp [\$xxxm] $c\" >&4
1953                 fi
1954                 ;;
1955         esac;;
1956 esac"
1957
1958 : now set up to do reads with possible shell escape and default assignment
1959 cat <<EOSC >myread
1960 $startsh
1961 xxxm=\$dflt
1962 $myecho
1963 ans='!'
1964 case "\$fastread" in
1965 yes) case "\$dflt" in
1966         '') ;;
1967         *) ans='';
1968                 case "\$silent-\$rp" in
1969                 true-) ;;
1970                 *) echo " " >&4;;
1971                 esac;;
1972         esac;;
1973 *) case "\$silent" in
1974         true) case "\$rp" in
1975                 '') ans='';;
1976                 esac;;
1977         esac;;
1978 esac
1979 while expr "X\$ans" : "X!" >/dev/null; do
1980         read answ
1981         set x \$xxxm
1982         shift
1983         aok=''; eval "ans=\\"\$answ\\"" && aok=y
1984         case  "\$answ" in
1985         "!")
1986                 sh 1>&4
1987                 echo " "
1988                 $myecho
1989                 ;;
1990         !*)
1991                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
1992                 shift
1993                 sh 1>&4 -c "\$*"
1994                 echo " "
1995                 $myecho
1996                 ;;
1997         "\$ans")
1998                 case "\$ans" in
1999                 \\&*)
2000                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
2001                         shift
2002                         case "\$1" in
2003                         -d)
2004                                 fastread=yes
2005                                 echo "(OK, I'll run with -d after this question.)" >&4
2006                                 ;;
2007                         -*)
2008                                 echo "*** Sorry, \$1 not supported yet." >&4
2009                                 ;;
2010                         esac
2011                         $myecho
2012                         ans=!
2013                         ;;
2014                 esac;;
2015         *)
2016                 case "\$aok" in
2017                 y)
2018                         echo "*** Substitution done -- please confirm."
2019                         xxxm="\$ans"
2020                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
2021                         xxxm="\$ans"
2022                         ans=!
2023                         ;;
2024                 *)
2025                         echo "*** Error -- try again."
2026                         ans=!
2027                         ;;
2028                 esac
2029                 $myecho
2030                 ;;
2031         esac
2032         case "\$ans\$xxxm\$nostick" in
2033         '')
2034                 ans=!
2035                 $myecho
2036                 ;;
2037         esac
2038 done
2039 case "\$ans" in
2040 '') ans="\$xxxm";;
2041 esac
2042 EOSC
2043
2044 : create .config dir to save info across Configure sessions
2045 test -d ../.config || mkdir ../.config
2046 cat >../.config/README <<EOF
2047 This directory created by Configure to save information that should
2048 persist across sessions for $package.
2049
2050 You may safely delete it if you wish.
2051 EOF
2052
2053 xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
2054 case "$usedevel" in
2055 $define|true|[yY]*) ;;
2056 *) case "$xversion" in
2057    *[13579])
2058         cat >&4 <<EOH
2059 *** WHOA THERE!!! ***
2060
2061     This is an UNSTABLE DEVELOPMENT release.
2062     The version of this $package distribution is $xversion, that is, odd,
2063     (as opposed to even) and that signifies a development release.
2064     If you want a maintenance release, you want an even-numbered version.
2065
2066     Do ***NOT*** install this into production use.
2067     Data corruption and crashes are possible.
2068
2069     It is most seriously suggested that you do not continue any further
2070     unless you want to help in developing and debugging Perl.
2071
2072     If you *still* want to build perl, you can answer 'y' now,
2073     or pass -Dusedevel to Configure.
2074
2075 EOH
2076         rp='Do you really want to continue?'
2077         dflt='n'
2078         . ./myread
2079         case "$ans" in
2080         [yY]) echo >&4 "Okay, continuing."
2081               usedevel="$define" ;;
2082         *) echo >&4 "Okay, bye."
2083            exit 1
2084            ;;
2085         esac
2086         ;;
2087     esac
2088     ;;
2089 esac
2090 case "$usedevel" in
2091 $define|true|[yY]*)
2092         case "$versiononly" in
2093         '') versiononly="$define" ;;
2094         esac
2095         case "$installusrbinperl" in
2096         '') installusrbinperl="$undef" ;;
2097         esac
2098         ;;
2099 esac
2100
2101 : general instructions
2102 needman=true
2103 firsttime=true
2104 user=`(logname) 2>/dev/null`
2105 case "$user" in
2106 '') user=`whoami 2>&1`;;
2107 esac
2108 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2109         firsttime=false
2110         echo " "
2111         rp='Would you like to see the instructions?'
2112         dflt=n
2113         . ./myread
2114         case "$ans" in
2115         [yY]*) ;;
2116         *) needman=false;;
2117         esac
2118 fi
2119 if $needman; then
2120         cat <<EOH
2121
2122 This installation shell script will examine your system and ask you questions
2123 to determine how the perl5 package should be installed. If you get
2124 stuck on a question, you may use a ! shell escape to start a subshell or
2125 execute a command.  Many of the questions will have default answers in square
2126 brackets; typing carriage return will give you the default.
2127
2128 On some of the questions which ask for file or directory names you are allowed
2129 to use the ~name construct to specify the login directory belonging to "name",
2130 even if you don't have a shell which knows about that.  Questions where this is
2131 allowed will be marked "(~name ok)".
2132
2133 EOH
2134         rp=''
2135         dflt='Type carriage return to continue'
2136         . ./myread
2137         cat <<'EOH'
2138
2139 The prompter used in this script allows you to use shell variables and
2140 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
2141 in the default answer, as if the default line was a set of arguments given to a
2142 script shell.  This means you may also use $* to repeat the whole default line,
2143 so you do not have to re-type everything to add something to the default.
2144
2145 Everytime there is a substitution, you will have to confirm.  If there is an
2146 error (e.g. an unmatched backtick), the default answer will remain unchanged
2147 and you will be prompted again.
2148
2149 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
2150 the questions and use the computed defaults (or the previous answers if there
2151 was already a config.sh file). Type 'Configure -h' for a list of options.
2152 You may also start interactively and then answer '& -d' at any prompt to turn
2153 on the non-interactive behaviour for the remainder of the execution.
2154
2155 EOH
2156         . ./myread
2157         cat <<EOH
2158
2159 Much effort has been expended to ensure that this shell script will run on any
2160 Unix system.  If despite that it blows up on yours, your best bet is to edit
2161 Configure and run it again.  If you can't run Configure for some reason,
2162 you'll have to generate a config.sh file by hand.  Whatever problems you
2163 have, let me (perlbug@perl.org) know how I blew it.
2164
2165 This installation script affects things in two ways:
2166
2167 1) it may do direct variable substitutions on some of the files included
2168    in this kit.
2169 2) it builds a config.h file for inclusion in C programs.  You may edit
2170    any of these files as the need arises after running this script.
2171
2172 If you make a mistake on a question, there is no easy way to back up to it
2173 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
2174 files.  Configure will offer to let you do this before it runs the SH files.
2175
2176 EOH
2177         dflt='Type carriage return to continue'
2178         . ./myread
2179         case "$firsttime" in
2180         true) echo $user >>../.config/instruct;;
2181         esac
2182 fi
2183
2184 : find out where common programs are
2185 echo " "
2186 echo "Locating common programs..." >&4
2187 cat <<EOSC >loc
2188 $startsh
2189 case \$# in
2190 0) exit 1;;
2191 esac
2192 thing=\$1
2193 shift
2194 dflt=\$1
2195 shift
2196 for dir in \$*; do
2197         case "\$thing" in
2198         .)
2199         if test -d \$dir/\$thing; then
2200                 echo \$dir
2201                 exit 0
2202         fi
2203         ;;
2204         *)
2205         for thisthing in \$dir/\$thing; do
2206                 : just loop through to pick last item
2207         done
2208         if test -f \$thisthing; then
2209                 echo \$thisthing
2210                 exit 0
2211         elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2212                 echo \$thisthing
2213                 exit 0
2214         elif test -f \$dir/\$thing.exe; then
2215                 if test -n "$DJGPP"; then
2216                         echo \$dir/\$thing.exe
2217                 elif test "$eunicefix" != ":"; then
2218                         : on Eunice apparently
2219                         echo \$dir/\$thing
2220                         exit 0
2221                 fi
2222                 exit 0
2223         fi
2224         ;;
2225         esac
2226 done
2227 echo \$dflt
2228 exit 1
2229 EOSC
2230 chmod +x loc
2231 $eunicefix loc
2232 loclist="
2233 awk
2234 cat
2235 chmod
2236 comm
2237 cp
2238 echo
2239 expr
2240 grep
2241 ls
2242 mkdir
2243 rm
2244 sed
2245 sort
2246 touch
2247 tr
2248 uniq
2249 "
2250 trylist="
2251 Mcc
2252 ar
2253 bison
2254 byacc
2255 cpp
2256 csh
2257 date
2258 egrep
2259 gmake
2260 gzip
2261 less
2262 ln
2263 make
2264 more
2265 nm
2266 nroff
2267 pg
2268 test
2269 uname
2270 zip
2271 "
2272 pth=`echo $PATH | sed -e "s/$p_/ /g"`
2273 pth="$pth /lib /usr/lib"
2274 for file in $loclist; do
2275         eval xxx=\$$file
2276         case "$xxx" in
2277         /*|?:[\\/]*)
2278                 if test -f "$xxx"; then
2279                         : ok
2280                 else
2281                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2282                         xxx=`./loc $file $file $pth`
2283                 fi
2284                 ;;
2285         '') xxx=`./loc $file $file $pth`;;
2286         *) xxx=`./loc $xxx $xxx $pth`;;
2287         esac
2288         eval $file=$xxx$_exe
2289         eval _$file=$xxx
2290         case "$xxx" in
2291         /*)
2292                 echo $file is in $xxx.
2293                 ;;
2294         ?:[\\/]*)
2295                 echo $file is in $xxx.
2296                 ;;
2297         *)
2298                 echo "I don't know where '$file' is, and my life depends on it." >&4
2299                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2300                 exit 1
2301                 ;;
2302         esac
2303 done
2304 echo " "
2305 echo "Don't worry if any of the following aren't found..."
2306 say=offhand
2307 for file in $trylist; do
2308         eval xxx=\$$file
2309         case "$xxx" in
2310         /*|?:[\\/]*)
2311                 if test -f "$xxx"; then
2312                         : ok
2313                 else
2314                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2315                         xxx=`./loc $file $file $pth`
2316                 fi
2317                 ;;
2318         '') xxx=`./loc $file $file $pth`;;
2319         *) xxx=`./loc $xxx $xxx $pth`;;
2320         esac
2321         eval $file=$xxx$_exe
2322         eval _$file=$xxx
2323         case "$xxx" in
2324         /*)
2325                 echo $file is in $xxx.
2326                 ;;
2327         ?:[\\/]*)
2328                 echo $file is in $xxx.
2329                 ;;
2330         *)
2331                 echo "I don't see $file out there, $say."
2332                 say=either
2333                 ;;
2334         esac
2335 done
2336 case "$egrep" in
2337 egrep)
2338         echo "Substituting grep for egrep."
2339         egrep=$grep
2340         _egrep=$grep
2341         ;;
2342 esac
2343 case "$ln" in
2344 ln)
2345         echo "Substituting cp for ln."
2346         ln=$cp
2347         _ln=$cp
2348         ;;
2349 esac
2350 case "$make" in
2351 make)   
2352         case "$gmake" in
2353         gmake)
2354         echo "I can't find make or gmake, and my life depends on it." >&4
2355         echo "Go find a public domain implementation or fix your PATH setting!" >&4
2356         exit 1
2357         ;;
2358         esac
2359         ;;
2360 esac    
2361 case "$gmake" in
2362 gmake)  ;;
2363 *)      # We can't have osname yet.
2364         if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2365                 # Assume that gmake, if found, is definitely GNU make
2366                 # and prefer it over the system make.
2367                 echo "Substituting gmake for make."
2368                 make=$gmake
2369                 _make=$gmake
2370         fi
2371         ;;
2372 esac
2373 case "$test" in
2374 test)
2375         echo "Hopefully test is built into your sh."
2376         ;;
2377 *)
2378         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2379                 echo "Using the test built into your sh."
2380                 test=test
2381                 _test=test
2382         fi
2383         ;;
2384 esac
2385 case "$echo" in
2386 echo)
2387         echo "Hopefully echo is built into your sh."
2388         ;;
2389 '') ;;
2390 *)
2391         echo " "
2392 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2393         $echo $n "hi there$c" >foo1
2394         echo $n "hi there$c" >foo2
2395         if cmp foo1 foo2 >/dev/null 2>&1; then
2396                 echo "They are compatible.  In fact, they may be identical."
2397         else
2398                 case "$n" in
2399                 '-n') n='' c='\c';;
2400                 *) n='-n' c='';;
2401                 esac
2402                 cat <<FOO
2403 They are not compatible!  You are probably running ksh on a non-USG system.
2404 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2405 have echo built in and we may have to run some Bourne shell scripts.  That
2406 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2407
2408 FOO
2409                 $echo $n "The star should be here-->$c"
2410                 $echo "*"
2411         fi
2412         $rm -f foo1 foo2
2413         ;;
2414 esac
2415
2416 cat <<EOS >trygcc
2417 $startsh
2418 EOS
2419 cat <<'EOSC' >>trygcc
2420 case "$cc" in
2421 '') ;;
2422 *)  $rm -f try try.*
2423     $cat >try.c <<EOM
2424 int main(int argc, char *argv[]) {
2425   return 0;
2426 }
2427 EOM
2428     if $cc -o try $ccflags $ldflags try.c; then
2429        :
2430     else
2431         echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2432         despair=yes
2433         trygcc=yes
2434         case "$cc" in
2435         *gcc*) trygcc=no ;;
2436         esac
2437         case "`$cc -v -c try.c 2>&1`" in
2438         *gcc*) trygcc=no ;;
2439         esac
2440         if $test X"$trygcc" = Xyes; then
2441             if gcc -o try -c try.c; then
2442                 echo " "
2443                 echo "You seem to have a working gcc, though." >&4
2444                 rp="Would you like to use it?"
2445                 dflt=y
2446                 if $test -f myread; then
2447                     . ./myread
2448                 else
2449                     if $test -f UU/myread; then
2450                         . ./UU/myread
2451                     else
2452                         echo "Cannot find myread, sorry.  Aborting." >&2
2453                         exit 1
2454                     fi
2455                 fi  
2456                 case "$ans" in
2457                 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2458                        if $test -f usethreads.cbu; then
2459                            $cat >&4 <<EOM 
2460
2461 *** However, any setting of the C compiler flags (e.g. for thread support)
2462 *** has been lost.  It may be necessary to pass -Dcc=gcc to Configure
2463 *** (together with e.g. -Dusethreads).
2464
2465 EOM
2466                        fi;;
2467                 esac
2468             fi
2469         fi
2470     fi
2471     $rm -f try try.*
2472     ;;
2473 esac
2474 EOSC
2475
2476 cat <<EOS >checkcc
2477 $startsh
2478 EOS
2479 cat <<'EOSC' >>checkcc
2480 case "$cc" in        
2481 '') ;;
2482 *)  $rm -f try try.*              
2483     $cat >try.c <<EOM
2484 int main(int argc, char *argv[]) {
2485   return 0;
2486 }
2487 EOM
2488     if $cc -o try $ccflags $ldflags try.c; then
2489        :
2490     else
2491         if $test X"$despair" = Xyes; then
2492            echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2493         fi
2494         $cat >&4 <<EOM         
2495 You need to find a working C compiler.
2496 Either (purchase and) install the C compiler supplied by your OS vendor,
2497 or for a free C compiler try http://gcc.gnu.org/
2498 I cannot continue any further, aborting.
2499 EOM
2500         exit 1
2501     fi
2502     $rm -f try try.*
2503     ;;
2504 esac
2505 EOSC
2506
2507 : determine whether symbolic links are supported
2508 echo " "
2509 $touch blurfl
2510 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2511         echo "Symbolic links are supported." >&4
2512         lns="$ln -s"
2513 else
2514         echo "Symbolic links are NOT supported." >&4
2515         lns="$ln"
2516 fi
2517 $rm -f blurfl sym
2518
2519 : determine whether symbolic links are supported
2520 echo " "
2521 case "$lns" in
2522 *"ln"*" -s")
2523         echo "Checking how to test for symbolic links..." >&4
2524         $lns blurfl sym
2525         if $test "X$issymlink" = X; then
2526                 case "$newsh" in
2527                 '') sh     -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2528                 *)  $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2529                 esac
2530                 if test $? = 0; then
2531                         issymlink="test -h"
2532                 else
2533                         echo "Your builtin 'test -h' may be broken." >&4
2534                         case "$test" in
2535                         /*)     ;;
2536                         *)      pth=`echo $PATH | sed -e "s/$p_/ /g"`
2537                                 for p in $pth
2538                                 do
2539                                         if test -f "$p/$test"; then
2540                                                 test="$p/$test"
2541                                                 break
2542                                         fi
2543                                 done
2544                                 ;;
2545                         esac
2546                         case "$test" in
2547                         /*)
2548                                 echo "Trying external '$test -h'." >&4
2549                                 issymlink="$test -h"
2550                                 if $test ! -h sym >/dev/null 2>&1; then
2551                                         echo "External '$test -h' is broken, too." >&4
2552                                         issymlink=''
2553                                 fi
2554                                 ;;
2555                         *)      issymlink='' ;;
2556                         esac
2557                 fi              
2558         fi
2559         if $test "X$issymlink" = X; then
2560                 if $test -L sym 2>/dev/null; then
2561                         issymlink="$test -L"
2562                         echo "The builtin '$test -L' worked." >&4
2563                 fi
2564         fi
2565         if $test "X$issymlink" != X; then
2566                 echo "You can test for symbolic links with '$issymlink'." >&4
2567         else
2568                 echo "I do not know how you can test for symbolic links." >&4
2569         fi
2570         $rm -f blurfl sym
2571         ;;
2572 *)      echo "No symbolic links, so not testing for their testing..." >&4
2573         ;;
2574 esac
2575 echo " "
2576
2577
2578 case "$mksymlinks" in
2579 $define|true|[yY]*)
2580         case "$src" in
2581         ''|'.') echo "Cannot create symlinks in the original directory." >&4
2582                 exit 1
2583                 ;;
2584         *)      case "$lns:$issymlink" in
2585                 *"ln"*" -s:"*"test -"?)
2586                         echo "Creating the symbolic links..." >&4
2587                         echo "(First creating the subdirectories...)" >&4
2588                         cd ..
2589                         awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2590                                 read directory
2591                                 test -z "$directory" && break
2592                                 mkdir -p $directory
2593                         done
2594                         # Sanity check 1.
2595                         if test ! -d t/base; then
2596                                 echo "Failed to create the subdirectories.  Aborting." >&4
2597                                 exit 1
2598                         fi
2599                         echo "(Then creating the symlinks...)" >&4
2600                         awk '{print $1}' $src/MANIFEST | while true; do
2601                                 read filename
2602                                 test -z "$filename" && break
2603                                 if test -f $filename; then
2604                                         if $issymlink $filename; then
2605                                                 rm -f $filename
2606                                         fi
2607                                 fi
2608                                 if test -f $filename; then
2609                                         echo "$filename already exists, not symlinking."
2610                                 else
2611                                         ln -s $src/$filename $filename
2612                                 fi
2613                         done
2614                         # Sanity check 2.
2615                         if test ! -f t/base/lex.t; then
2616                                 echo "Failed to create the symlinks (t/base/lex.t missing).  Aborting." >&4
2617                                 exit 1
2618                         fi
2619                         cd UU
2620                         ;;
2621                 *)      echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2622                         ;;
2623                 esac
2624                 ;;
2625         esac
2626         ;;
2627 esac
2628
2629
2630 case "$usecrosscompile" in
2631 $define|true|[yY]*)
2632         $echo "Cross-compiling..."
2633         croak=''
2634         case "$cc" in
2635         *-*-gcc) # A cross-compiling gcc, probably.
2636             targetarch=`$echo $cc|$sed 's/-gcc$//'`
2637             ar=$targetarch-ar
2638             # leave out ld, choosing it is more complex
2639             nm=$targetarch-nm
2640             ranlib=$targetarch-ranlib
2641             $echo 'extern int foo;' > try.c
2642             set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2643             shift
2644             if $test $# -gt 0; then
2645                 incpth="$incpth $*"
2646                 incpth="`$echo $incpth|$sed 's/^ //'`"
2647                 echo "Guessing incpth '$incpth'." >&4
2648                 for i in $*; do
2649                     j="`$echo $i|$sed 's,/include$,/lib,'`"
2650                     if $test -d $j; then
2651                         libpth="$libpth $j"
2652                     fi
2653                 done   
2654                 libpth="`$echo $libpth|$sed 's/^ //'`"
2655                 echo "Guessing libpth '$libpth'." >&4
2656             fi
2657             $rm -f try.c
2658             ;;
2659         esac
2660         case "$targetarch" in
2661         '') echo "Targetarch not defined." >&4; croak=y ;;
2662         *)  echo "Using targetarch $targetarch." >&4 ;;
2663         esac
2664         case "$incpth" in
2665         '') echo "Incpth not defined." >&4; croak=y ;;
2666         *)  echo "Using incpth '$incpth'." >&4 ;;
2667         esac
2668         case "$libpth" in
2669         '') echo "Libpth not defined." >&4; croak=y ;;
2670         *)  echo "Using libpth '$libpth'." >&4 ;;
2671         esac
2672         case "$usrinc" in
2673         '') for i in $incpth; do
2674                 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2675                     usrinc=$i
2676                     echo "Guessing usrinc $usrinc." >&4
2677                     break
2678                 fi
2679             done
2680             case "$usrinc" in
2681             '') echo "Usrinc not defined." >&4; croak=y ;;
2682             esac
2683             ;;
2684         *)  echo "Using usrinc $usrinc." >&4 ;;
2685         esac
2686         case "$targethost" in
2687         '') echo "Targethost not defined." >&4; croak=y ;;
2688         *)  echo "Using targethost $targethost." >&4
2689         esac
2690         locincpth=' '
2691         loclibpth=' '
2692         case "$croak" in
2693         y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2694         esac
2695         case "$src" in
2696         /*) run=$src/Cross/run
2697             targetmkdir=$src/Cross/mkdir
2698             to=$src/Cross/to
2699             from=$src/Cross/from
2700             ;;
2701         *)  pwd=`$test -f ../Configure & cd ..; pwd`
2702             run=$pwd/Cross/run
2703             targetmkdir=$pwd/Cross/mkdir
2704             to=$pwd/Cross/to
2705             from=$pwd/Cross/from
2706             ;;
2707         esac
2708         case "$targetrun" in
2709         '') targetrun=ssh ;;
2710         esac
2711         case "$targetto" in
2712         '') targetto=scp ;;
2713         esac
2714         case "$targetfrom" in
2715         '') targetfrom=scp ;;
2716         esac
2717         run=$run-$targetrun
2718         to=$to-$targetto
2719         from=$from-$targetfrom
2720         case "$targetdir" in
2721         '')  targetdir=/tmp
2722              echo "Guessing targetdir $targetdir." >&4
2723              ;;
2724         esac
2725         case "$targetuser" in
2726         '')  targetuser=root
2727              echo "Guessing targetuser $targetuser." >&4
2728              ;;
2729         esac
2730         case "$targetfrom" in
2731         scp)    q=-q ;;
2732         *)      q='' ;;
2733         esac
2734         case "$targetrun" in
2735         ssh|rsh)
2736             cat >$run <<EOF
2737 #!/bin/sh
2738 case "\$1" in
2739 -cwd)
2740   shift
2741   cwd=\$1
2742   shift
2743   ;;
2744 esac
2745 case "\$cwd" in
2746 '') cwd=$targetdir ;;
2747 esac
2748 exe=\$1
2749 shift
2750 if $test ! -f \$exe.xok; then
2751   $to \$exe
2752   $touch \$exe.xok
2753 fi
2754 $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2755 EOF
2756             ;;
2757         *)  echo "Unknown targetrun '$targetrun'" >&4
2758             exit 1
2759             ;;
2760         esac
2761         case "$targetmkdir" in
2762         */Cross/mkdir)
2763             cat >$targetmkdir <<EOF
2764 #!/bin/sh
2765 $targetrun -l $targetuser $targethost "mkdir -p \$@"
2766 EOF
2767             $chmod a+rx $targetmkdir
2768             ;;
2769         *)  echo "Unknown targetmkdir '$targetmkdir'" >&4
2770             exit 1
2771             ;;
2772         esac
2773         case "$targetto" in
2774         scp|rcp)
2775             cat >$to <<EOF
2776 #!/bin/sh
2777 for f in \$@
2778 do
2779   case "\$f" in
2780   /*)
2781     $targetmkdir \`dirname \$f\`
2782     $targetto $q \$f $targetuser@$targethost:\$f            || exit 1
2783     ;;
2784   *)
2785     $targetmkdir $targetdir/\`dirname \$f\`
2786     $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2787     ;;
2788   esac
2789 done
2790 exit 0
2791 EOF
2792             ;;
2793         cp) cat >$to <<EOF
2794 #!/bin/sh
2795 for f in \$@
2796 do
2797   case "\$f" in
2798   /*)
2799     $mkdir -p $targetdir/\`dirname \$f\`
2800     $cp \$f $targetdir/\$f || exit 1
2801     ;;
2802   *)
2803     $targetmkdir $targetdir/\`dirname \$f\`
2804     $cp \$f $targetdir/\$f || exit 1
2805     ;;
2806   esac
2807 done
2808 exit 0
2809 EOF
2810             ;;
2811         *)  echo "Unknown targetto '$targetto'" >&4
2812             exit 1
2813             ;;
2814         esac
2815         case "$targetfrom" in
2816         scp|rcp)
2817           cat >$from <<EOF
2818 #!/bin/sh
2819 for f in \$@
2820 do
2821   $rm -f \$f
2822   $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2823 done
2824 exit 0
2825 EOF
2826             ;;
2827         cp) cat >$from <<EOF
2828 #!/bin/sh
2829 for f in \$@
2830 do
2831   $rm -f \$f
2832   cp $targetdir/\$f . || exit 1
2833 done
2834 exit 0
2835 EOF
2836             ;;
2837         *)  echo "Unknown targetfrom '$targetfrom'" >&4
2838             exit 1
2839             ;;
2840         esac
2841         if $test ! -f $run; then
2842             echo "Target 'run' script '$run' not found." >&4
2843         else
2844             $chmod a+rx $run
2845         fi
2846         if $test ! -f $to; then
2847             echo "Target 'to' script '$to' not found." >&4
2848         else
2849             $chmod a+rx $to
2850         fi
2851         if $test ! -f $from; then
2852             echo "Target 'from' script '$from' not found." >&4
2853         else
2854             $chmod a+rx $from
2855         fi
2856         if $test ! -f $run -o ! -f $to -o ! -f $from; then
2857             exit 1
2858         fi
2859         cat >&4 <<EOF
2860 Using '$run' for remote execution,
2861 and '$from' and '$to'
2862 for remote file transfer.
2863 EOF
2864         ;;
2865 *)      run=''
2866         to=:
2867         from=:
2868         usecrosscompile='undef'
2869         targetarch=''
2870         ;;
2871 esac
2872
2873 : see whether [:lower:] and [:upper:] are supported character classes
2874 echo " "
2875 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2876 ABYZ)
2877         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2878         up='[:upper:]'
2879         low='[:lower:]'
2880         ;;
2881 *)      # There is a discontinuity in EBCDIC between 'R' and 'S'
2882         # (0xd9 and 0xe2), therefore that is a nice testing point.
2883         if test "X$up" = X -o "X$low" = X; then
2884             case "`echo RS | $tr '[R-S]' '[r-s]' 2>/dev/null`" in
2885             rs) up='[A-Z]'
2886                 low='[a-z]'
2887                 ;;
2888             esac
2889         fi
2890         if test "X$up" = X -o "X$low" = X; then
2891             case "`echo RS | $tr R-S r-s 2>/dev/null`" in
2892             rs) up='A-Z'
2893                 low='a-z'
2894                 ;;
2895             esac
2896         fi
2897         if test "X$up" = X -o "X$low" = X; then
2898             case "`echo RS | od -x 2>/dev/null`" in
2899             *D9E2*|*d9e2*)
2900                 echo "Hey, this might be EBCDIC." >&4
2901                 if test "X$up" = X -o "X$low" = X; then
2902                     case "`echo RS | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2903                     rs) up='[A-IJ-RS-Z]'
2904                         low='[a-ij-rs-z]'
2905                         ;;
2906                     esac
2907                 fi
2908                 if test "X$up" = X -o "X$low" = X; then
2909                     case "`echo RS | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2910                     rs) up='A-IJ-RS-Z'
2911                         low='a-ij-rs-z'
2912                         ;;
2913                     esac
2914                 fi
2915                 ;;
2916             esac
2917         fi
2918 esac
2919 case "`echo RS | $tr \"$up\" \"$low\" 2>/dev/null`" in
2920 rs)
2921     echo "Using $up and $low to convert case." >&4
2922     ;;
2923 *)
2924     echo "I don't know how to translate letters from upper to lower case." >&4
2925     echo "Your tr is not acting any way I know of." >&4
2926     exit 1
2927     ;;
2928 esac
2929 : set up the translation script tr, must be called with ./tr of course
2930 cat >tr <<EOSC
2931 $startsh
2932 case "\$1\$2" in
2933 '[A-Z][a-z]') exec $tr '$up' '$low';;
2934 '[a-z][A-Z]') exec $tr '$low' '$up';;
2935 esac
2936 exec $tr "\$@"
2937 EOSC
2938 chmod +x tr
2939 $eunicefix tr
2940
2941 : Try to determine whether config.sh was made on this system
2942 case "$config_sh" in
2943 '')
2944 myuname=`$uname -a 2>/dev/null`
2945 $test -z "$myuname" && myuname=`hostname 2>/dev/null`
2946 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
2947 # because the A-Z/a-z are not consecutive.
2948 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
2949         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
2950 newmyuname="$myuname"
2951 dflt=n
2952 case "$knowitall" in
2953 '')
2954         if test -f ../config.sh; then
2955                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
2956                         eval "`grep myuname= ../config.sh`"
2957                 fi
2958                 if test "X$myuname" = "X$newmyuname"; then
2959                         dflt=y
2960                 fi
2961         fi
2962         ;;
2963 *) dflt=y;;
2964 esac
2965
2966 : Get old answers from old config file if Configure was run on the
2967 : same system, otherwise use the hints.
2968 hint=default
2969 cd ..
2970 if test -f config.sh; then
2971         echo " "
2972         rp="I see a config.sh file.  Shall I use it to set the defaults?"
2973         . UU/myread
2974         case "$ans" in
2975         n*|N*) echo "OK, I'll ignore it."
2976                 mv config.sh config.sh.old
2977                 myuname="$newmyuname"
2978                 ;;
2979         *)  echo "Fetching default answers from your old config.sh file..." >&4
2980                 tmp_n="$n"
2981                 tmp_c="$c"
2982                 tmp_sh="$sh"
2983                 . ./config.sh
2984                 cp config.sh UU
2985                 n="$tmp_n"
2986                 c="$tmp_c"
2987                 : Older versions did not always set $sh.  Catch re-use of such
2988                 : an old config.sh.
2989                 case "$sh" in
2990                 '') sh="$tmp_sh" ;;
2991                 esac
2992                 hint=previous
2993                 ;;
2994         esac
2995 fi
2996 . ./UU/checkcc
2997 if test ! -f config.sh; then
2998         $cat <<EOM
2999
3000 First time through, eh?  I have some defaults handy for some systems
3001 that need some extra help getting the Configure answers right:
3002
3003 EOM
3004         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
3005         dflt=''
3006         : Half the following guesses are probably wrong... If you have better
3007         : tests or hints, please send them to perlbug@perl.org
3008         : The metaconfig authors would also appreciate a copy...
3009         $test -f /irix && osname=irix
3010         $test -f /xenix && osname=sco_xenix
3011         $test -f /dynix && osname=dynix
3012         $test -f /dnix && osname=dnix
3013         $test -f /lynx.os && osname=lynxos
3014         $test -f /unicos && osname=unicos && osvers=`$uname -r`
3015         $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
3016         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
3017         $test -f /bin/mips && /bin/mips && osname=mips
3018         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
3019                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
3020         $test -d /usr/apollo/bin && osname=apollo
3021         $test -f /etc/saf/_sactab && osname=svr4
3022         $test -d /usr/include/minix && osname=minix
3023         $test -f /system/gnu_library/bin/ar.pm && osname=vos
3024         if $test -d /MachTen -o -d /MachTen_Folder; then
3025                 osname=machten
3026                 if $test -x /sbin/version; then
3027                         osvers=`/sbin/version | $awk '{print $2}' |
3028                         $sed -e 's/[A-Za-z]$//'`
3029                 elif $test -x /usr/etc/version; then
3030                         osvers=`/usr/etc/version | $awk '{print $2}' |
3031                         $sed -e 's/[A-Za-z]$//'`
3032                 else
3033                         osvers="$2.$3"
3034                 fi
3035         fi
3036
3037         $test -f /sys/posix.dll &&
3038                 $test -f /usr/bin/what &&
3039                 set X `/usr/bin/what /sys/posix.dll` &&
3040                 $test "$3" = UWIN &&
3041                 osname=uwin &&
3042                 osvers="$5"
3043
3044         if $test -f $uname; then
3045                 set X $myuname
3046                 shift
3047
3048                 case "$5" in
3049                 fps*) osname=fps ;;
3050                 mips*)
3051                         case "$4" in
3052                         umips) osname=umips ;;
3053                         *) osname=mips ;;
3054                         esac;;
3055                 [23]100) osname=mips ;;
3056                 next*) osname=next ;;
3057                 i386*)
3058                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
3059                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
3060                                 osname='sco'
3061                                 osvers=$tmp
3062                         elif $test -f /etc/kconfig; then
3063                                 osname=isc
3064                                 if test "$lns" = "$ln -s"; then
3065                                         osvers=4
3066                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3067                                         osvers=3
3068                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3069                                         osvers=2
3070                                 fi
3071                         fi
3072                         tmp=''
3073                         ;;
3074                 pc*)
3075                         if test -n "$DJGPP"; then
3076                                 osname=dos
3077                                 osvers=djgpp
3078                         fi
3079                         ;;
3080                 esac
3081
3082                 case "$1" in
3083                 aix) osname=aix
3084                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3085                         case "$tmp" in
3086                         # oslevel can fail with:
3087                         # oslevel: Unable to acquire lock.
3088                         *not\ found) osvers="$4"."$3" ;;
3089                         '<3240'|'<>3240') osvers=3.2.0 ;;
3090                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3091                         '=3250'|'>3250') osvers=3.2.5 ;;
3092                         *) osvers=$tmp;;
3093                         esac
3094                         ;;
3095                 bsd386) osname=bsd386
3096                         osvers=`$uname -r`
3097                         ;;
3098                 cygwin*) osname=cygwin
3099                         osvers="$3"
3100                         ;;
3101                 *dc.osx) osname=dcosx
3102                         osvers="$3"
3103                         ;;
3104                 dnix) osname=dnix
3105                         osvers="$3"
3106                         ;;
3107                 domainos) osname=apollo
3108                         osvers="$3"
3109                         ;;
3110                 dgux)   osname=dgux 
3111                         osvers="$3"
3112                         ;;
3113                 dynixptx*) osname=dynixptx
3114                         osvers=`echo "$4"|sed 's/^v//'`
3115                         ;;
3116                 freebsd) osname=freebsd 
3117                         osvers="$3" ;;
3118                 genix)  osname=genix ;;
3119                 gnu)    osname=gnu
3120                         osvers="$3" ;;
3121                 hp*)    osname=hpux 
3122                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3123                         ;;
3124                 irix*)  osname=irix
3125                         case "$3" in
3126                         4*) osvers=4 ;;
3127                         5*) osvers=5 ;;
3128                         *)      osvers="$3" ;;
3129                         esac
3130                         ;;
3131                 linux)  osname=linux
3132                         case "$3" in
3133                         *)      osvers="$3" ;;
3134                         esac
3135                         ;;
3136                 MiNT)   osname=mint
3137                         ;;
3138                 netbsd*) osname=netbsd
3139                         osvers="$3"
3140                         ;;
3141                 news-os) osvers="$3"
3142                         case "$3" in
3143                         4*) osname=newsos4 ;;
3144                         *) osname=newsos ;;
3145                         esac
3146                         ;;
3147                 next*) osname=next ;;
3148                 nonstop-ux) osname=nonstopux ;;
3149                 openbsd) osname=openbsd
3150                         osvers="$3"
3151                         ;;
3152                 os2)    osname=os2
3153                         osvers="$4"
3154                         ;;
3155                 POSIX-BC | posix-bc ) osname=posix-bc
3156                         osvers="$3"
3157                         ;;
3158                 powerux | power_ux | powermax_os | powermaxos | \
3159                 powerunix | power_unix) osname=powerux
3160                         osvers="$3"
3161                         ;;
3162                 qnx) osname=qnx
3163                         osvers="$4"
3164                         ;;
3165                 solaris) osname=solaris
3166                         case "$3" in
3167                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3168                         *)      osvers="$3" ;;
3169                         esac
3170                         ;;
3171                 sunos) osname=sunos
3172                         case "$3" in
3173                         5*) osname=solaris
3174                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3175                         *)      osvers="$3" ;;
3176                         esac
3177                         ;;
3178                 titanos) osname=titanos
3179                         case "$3" in
3180                         1*) osvers=1 ;;
3181                         2*) osvers=2 ;;
3182                         3*) osvers=3 ;;
3183                         4*) osvers=4 ;;
3184                         *)      osvers="$3" ;;
3185                         esac
3186                         ;;
3187                 ultrix) osname=ultrix
3188                         osvers="$3"
3189                         ;;
3190                 osf1|mls+)      case "$5" in
3191                                 alpha)
3192                                         osname=dec_osf
3193                                         osvers=`sizer -v | awk -FUNIX '{print $2}' | awk '{print $1}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3194                                         case "$osvers" in
3195                                         [1-9].[0-9]*) ;;
3196                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3197                                         esac
3198                                         ;;
3199                         hp*)    osname=hp_osf1  ;;
3200                         mips)   osname=mips_osf1 ;;
3201                         esac
3202                         ;;
3203                 # UnixWare 7.1.2 is known as Open UNIX 8
3204                 openunix|unixware) osname=svr5
3205                         osvers="$4"
3206                         ;;
3207                 uts)    osname=uts
3208                         osvers="$3"
3209                         ;;
3210                 vos) osvers="$3"
3211                         ;;
3212                 $2) case "$osname" in
3213                         *isc*) ;;
3214                         *freebsd*) ;;
3215                         svr*)
3216                                 : svr4.x or possibly later
3217                                 case "svr$3" in 
3218                                 ${osname}*)
3219                                         osname=svr$3
3220                                         osvers=$4
3221                                         ;;
3222                                 esac
3223                                 case "$osname" in
3224                                 svr4.0)
3225                                         : Check for ESIX
3226                                         if test -f /stand/boot ; then
3227                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3228                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3229                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3230                                                         if test -n "$isesix"; then
3231                                                                 osname=esix4
3232                                                         fi
3233                                                 fi
3234                                         fi
3235                                         ;;
3236                                 esac
3237                                 ;;
3238                         *)      if test -f /etc/systemid; then
3239                                         osname=sco
3240                                         set `echo $3 | $sed 's/\./ /g'` $4
3241                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3242                                                 osvers=$1.$2.$3
3243                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3244                                                 osvers=$1.$2
3245                                         elif $test -f $src/hints/sco_$1.sh; then
3246                                                 osvers=$1
3247                                         fi
3248                                 else
3249                                         case "$osname" in
3250                                         '') : Still unknown.  Probably a generic Sys V.
3251                                                 osname="sysv"
3252                                                 osvers="$3"
3253                                                 ;;
3254                                         esac
3255                                 fi
3256                                 ;;
3257                         esac
3258                         ;;
3259                 *)      case "$osname" in
3260                         '') : Still unknown.  Probably a generic BSD.
3261                                 osname="$1"
3262                                 osvers="$3"
3263                                 ;;
3264                         esac
3265                         ;;
3266                 esac
3267         else
3268                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3269                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3270                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3271                                 osname=news_os
3272                         fi
3273                         $rm -f UU/kernel.what
3274                 elif test -d c:/. -o -n "$is_os2" ; then
3275                         set X $myuname
3276                         osname=os2
3277                         osvers="$5"
3278                 fi
3279         fi
3280         
3281         case "$targetarch" in
3282         '') ;;
3283         *)  hostarch=$osname
3284             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3285             osvers=''
3286             ;;
3287         esac
3288
3289         : Now look for a hint file osname_osvers, unless one has been
3290         : specified already.
3291         case "$hintfile" in
3292         ''|' ')
3293                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3294                 : Also try without trailing minor version numbers.
3295                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3296                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3297                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3298                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3299                 case "$file" in
3300                 '') dflt=none ;;
3301                 *)  case "$osvers" in
3302                         '') dflt=$file
3303                                 ;;
3304                         *)  if $test -f $src/hints/$file.sh ; then
3305                                         dflt=$file
3306                                 elif $test -f $src/hints/$xfile.sh ; then
3307                                         dflt=$xfile
3308                                 elif $test -f $src/hints/$xxfile.sh ; then
3309                                         dflt=$xxfile
3310                                 elif $test -f $src/hints/$xxxfile.sh ; then
3311                                         dflt=$xxxfile
3312                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3313                                         dflt=$xxxxfile
3314                                 elif $test -f "$src/hints/${osname}.sh" ; then
3315                                         dflt="${osname}"
3316                                 else
3317                                         dflt=none
3318                                 fi
3319                                 ;;
3320                         esac
3321                         ;;
3322                 esac
3323                 if $test -f Policy.sh ; then
3324                         case "$dflt" in
3325                         *Policy*) ;;
3326                         none) dflt="Policy" ;;
3327                         *) dflt="Policy $dflt" ;;
3328                         esac
3329                 fi
3330                 ;;
3331         *)
3332                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3333                 ;;
3334         esac
3335
3336         if $test -f Policy.sh ; then
3337                 $cat <<EOM
3338
3339 There's also a Policy hint file available, which should make the
3340 site-specific (policy) questions easier to answer.
3341 EOM
3342
3343         fi
3344
3345         $cat <<EOM
3346
3347 You may give one or more space-separated answers, or "none" if appropriate.
3348 A well-behaved OS will have no hints, so answering "none" or just "Policy"
3349 is a good thing.  DO NOT give a wrong version or a wrong OS.
3350
3351 EOM
3352
3353         rp="Which of these apply, if any?"
3354         . UU/myread
3355         tans=$ans
3356         for file in $tans; do
3357                 if $test X$file = XPolicy -a -f Policy.sh; then
3358                         . Policy.sh
3359                         $cat Policy.sh >> UU/config.sh
3360                 elif $test -f $src/hints/$file.sh; then
3361                         . $src/hints/$file.sh
3362                         $cat $src/hints/$file.sh >> UU/config.sh
3363                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3364                         : nothing
3365                 else
3366                         : Give one chance to correct a possible typo.
3367                         echo "$file.sh does not exist"
3368                         dflt=$file
3369                         rp="hint to use instead?"
3370                         . UU/myread
3371                         for file in $ans; do
3372                                 if $test -f "$src/hints/$file.sh"; then
3373                                         . $src/hints/$file.sh
3374                                         $cat $src/hints/$file.sh >> UU/config.sh
3375                                 elif $test X$ans = X -o X$ans = Xnone ; then
3376                                         : nothing
3377                                 else
3378                                         echo "$file.sh does not exist -- ignored."
3379                                 fi
3380                         done
3381                 fi
3382         done
3383
3384         hint=recommended
3385         : Remember our hint file for later.
3386         if $test -f "$src/hints/$file.sh" ; then
3387                 hintfile="$file"
3388         else
3389                 hintfile=''
3390         fi
3391 fi
3392 cd UU
3393 ;;
3394 *)
3395         echo " "
3396         echo "Fetching default answers from $config_sh..." >&4
3397         tmp_n="$n"
3398         tmp_c="$c"
3399         cd ..
3400         cp $config_sh config.sh 2>/dev/null
3401         chmod +w config.sh
3402         . ./config.sh
3403         cd UU
3404         cp ../config.sh .
3405         n="$tmp_n"
3406         c="$tmp_c"
3407         hint=previous
3408         ;;
3409 esac
3410 test "$override" && . ./optdef.sh
3411
3412 : Restore computed paths
3413 for file in $loclist $trylist; do
3414         eval $file="\$_$file"
3415 done
3416
3417 cat << EOM
3418
3419 Configure uses the operating system name and version to set some defaults.
3420 The default value is probably right if the name rings a bell. Otherwise,
3421 since spelling matters for me, either accept the default or answer "none"
3422 to leave it blank.
3423
3424 EOM
3425 case "$osname" in
3426         ''|' ')
3427                 case "$hintfile" in
3428                 ''|' '|none) dflt=none ;;
3429                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3430                 esac
3431                 ;;
3432         *) dflt="$osname" ;;
3433 esac
3434 rp="Operating system name?"
3435 . ./myread
3436 case "$ans" in
3437 none)  osname='' ;;
3438 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3439 esac
3440 echo " "
3441 case "$osvers" in
3442         ''|' ')
3443                 case "$hintfile" in
3444                 ''|' '|none) dflt=none ;;
3445                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3446                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3447                         case "$dflt" in
3448                         ''|' ') dflt=none ;;
3449                         esac
3450                         ;;
3451                 esac
3452                 ;;
3453         *) dflt="$osvers" ;;
3454 esac
3455 rp="Operating system version?"
3456 . ./myread
3457 case "$ans" in
3458 none)  osvers='' ;;
3459 *) osvers="$ans" ;;
3460 esac
3461
3462
3463 . ./posthint.sh
3464
3465 : who configured the system
3466 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3467 case "$cf_by" in
3468 "")
3469         cf_by=`(logname) 2>/dev/null`
3470         case "$cf_by" in
3471         "")
3472                 cf_by=`(whoami) 2>/dev/null`
3473                 case "$cf_by" in
3474                 "") cf_by=unknown ;;
3475                 esac ;;
3476         esac ;;
3477 esac
3478
3479 : set up the script used to warn in case of inconsistency
3480 cat <<EOS >whoa
3481 $startsh
3482 EOS
3483 cat <<'EOSC' >>whoa
3484 dflt=y
3485 echo " "
3486 echo "*** WHOA THERE!!! ***" >&4
3487 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
3488 rp="    Keep the $hint value?"
3489 . ./myread
3490 case "$ans" in
3491 y) td=$was; tu=$was;;
3492 esac
3493 EOSC
3494
3495 : function used to set $1 to $val
3496 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3497 case "$val$was" in
3498 $define$undef) . ./whoa; eval "$var=\$td";;
3499 $undef$define) . ./whoa; eval "$var=\$tu";;
3500 *) eval "$var=$val";;
3501 esac'
3502
3503 case "$usesocks" in
3504 $define|true|[yY]*)     dflt='y';;
3505 *) dflt='n';;
3506 esac
3507 cat <<EOM
3508
3509 Perl can be built to use the SOCKS proxy protocol library.  To do so,
3510 Configure must be run with -Dusesocks.  If you use SOCKS you also need
3511 to use the PerlIO abstraction layer, this will be implicitly selected.
3512
3513 If this doesn't make any sense to you, just accept the default '$dflt'.
3514 EOM
3515 rp='Build Perl for SOCKS?'
3516 . ./myread
3517 case "$ans" in
3518 y|Y)    val="$define" ;;     
3519 *)      val="$undef" ;;
3520 esac
3521 set usesocks
3522 eval $setvar
3523
3524 case "$usesocks" in
3525 $define|true|[yY]*) useperlio="$define";;
3526 esac
3527
3528 case "$useperlio" in
3529 $define|true|[yY]*|'')  dflt='y';;
3530 *) dflt='n';;
3531 esac
3532 cat <<EOM
3533
3534 Previous version of $package used the standard IO mechanisms as
3535 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
3536 alternate IO mechanisms via the PerlIO abstraction layer, but the
3537 stdio mechanism is still available if needed.  The abstraction layer
3538 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
3539 Using PerlIO with sfio may cause problems with some extension modules.
3540
3541 If this doesn't make any sense to you, just accept the default '$dflt'.
3542 EOM
3543 rp='Use the PerlIO abstraction layer?'
3544 . ./myread
3545 case "$ans" in
3546 y|Y) 
3547         val="$define"
3548         ;;
3549 *)      
3550         echo "Ok, doing things the stdio way."
3551         val="$undef"
3552         ;;
3553 esac
3554 set useperlio
3555 eval $setvar 
3556
3557 case "$usesocks" in
3558 $define|true|[yY]*)
3559         case "$useperlio" in
3560         $define|true|[yY]*) ;;
3561         *)      cat >&4 <<EOM
3562
3563 You are using the SOCKS proxy protocol library which means that you
3564 should also use the PerlIO layer.  You may be headed for trouble.
3565
3566 EOM
3567                 ;;
3568         esac
3569         ;;
3570 esac
3571
3572         
3573 case "$usethreads" in
3574 $define|true|[yY]*)     dflt='y';;
3575 *)     # Catch case where user specified ithreads or 5005threads but
3576        # forgot -Dusethreads (A.D. 4/2002)
3577        case "$useithreads$use5005threads" in
3578        *$define*)      
3579                 case "$useperlio" in
3580                 "$define")      dflt='y' ;;
3581                 *)              dflt='n' ;;
3582                 esac
3583                 ;;
3584        *)       dflt='n';;
3585        esac
3586        ;;
3587 esac
3588 cat <<EOM
3589
3590 Perl can be built to take advantage of threads on some systems.
3591 To do so, Configure can be run with -Dusethreads.
3592
3593 Note that Perl built with threading support runs slightly slower
3594 and uses more memory than plain Perl. The current implementation
3595 is believed to be stable, but it is fairly new, and so should be
3596 treated with caution.
3597
3598 If this doesn't make any sense to you, just accept the default '$dflt'.
3599 EOM
3600 rp='Build a threading Perl?'
3601 . ./myread
3602 case "$ans" in
3603 y|Y)    val="$define" ;;
3604 *)      val="$undef" ;;
3605 esac
3606 set usethreads
3607 eval $setvar
3608
3609 case "$usethreads" in
3610 $define)
3611         $cat <<EOM
3612
3613 Since release 5.6, Perl has had two different threading implementations,
3614 the newer interpreter-based version (ithreads) with one interpreter per
3615 thread, and the older 5.005 version (5005threads).
3616 The 5005threads version is effectively unmaintained and will probably be
3617 removed in Perl 5.10, so there should be no need to build a Perl using it
3618 unless needed for backwards compatibility with some existing 5.005threads
3619 code.
3620
3621 EOM
3622         : Default to ithreads unless overridden on command line or with
3623         : old config.sh
3624         dflt='y'
3625         case "$use5005threads" in
3626                 $define|true|[yY]*) dflt='n';;
3627         esac
3628         case "$useithreads" in
3629                 $undef|false|[nN]*) dflt='n';;
3630         esac
3631         rp='Use the newer interpreter-based ithreads?'
3632         . ./myread
3633         case "$ans" in
3634         y|Y)    val="$define" ;;
3635         *)      val="$undef" ;;
3636         esac
3637         set useithreads
3638         eval $setvar
3639         : Now set use5005threads to the opposite value.
3640         case "$useithreads" in
3641         $define) val="$undef" ;;
3642         *) val="$define" ;;
3643         esac
3644         set use5005threads
3645         eval $setvar
3646         ;;
3647 *)
3648         useithreads="$undef"
3649         use5005threads="$undef"
3650         ;;
3651 esac
3652
3653 case "$useithreads$use5005threads" in
3654 "$define$define")
3655         $cat >&4 <<EOM
3656
3657 You cannot have both the ithreads and the 5.005 threads enabled
3658 at the same time.  Disabling the 5.005 threads since they are
3659 much less stable than the ithreads.
3660
3661 EOM
3662         use5005threads="$undef"
3663         ;;
3664 esac
3665
3666 if test X"$usethreads" = "X$define" -a "X$useperlio" = "Xundef"; then
3667         cat >&4 <<EOF
3668 ***
3669 *** To build with ithreads you must also use the PerlIO layer.
3670 *** Cannot continue, aborting.
3671 ***
3672 EOF
3673         exit 1
3674 fi
3675
3676 case "$d_oldpthreads" in
3677 '')     : Configure tests would be welcome here.  For now, assume undef.
3678         val="$undef" ;;
3679 *)      val="$d_oldpthreads" ;;
3680 esac
3681 set d_oldpthreads
3682 eval $setvar
3683
3684
3685 : Look for a hint-file generated 'call-back-unit'.  If the
3686 : user has specified that a threading perl is to be built,
3687 : we may need to set or change some other defaults.
3688 if $test -f usethreads.cbu; then
3689     echo "Your platform has some specific hints regarding threaded builds, using them..."
3690     . ./usethreads.cbu
3691 else
3692     case "$usethreads" in
3693         "$define"|true|[yY]*)
3694                 $cat <<EOM
3695 (Your platform does not have any specific hints for threaded builds.
3696  Assuming POSIX threads, then.)
3697 EOM
3698         ;;
3699     esac
3700 fi
3701
3702 cat <<EOM
3703
3704 Perl can be built so that multiple Perl interpreters can coexist
3705 within the same Perl executable.
3706 EOM
3707
3708 case "$useithreads" in
3709 $define)
3710         cat <<EOM
3711 This multiple interpreter support is required for interpreter-based threads.
3712 EOM
3713         val="$define"
3714         ;;
3715 *)      case "$usemultiplicity" in
3716         $define|true|[yY]*)     dflt='y';;
3717         *) dflt='n';;
3718         esac
3719         echo " "
3720         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
3721         rp='Build Perl for multiplicity?'
3722         . ./myread
3723         case "$ans" in
3724         y|Y)    val="$define" ;;
3725         *)      val="$undef" ;;
3726         esac
3727         ;;
3728 esac
3729 set usemultiplicity
3730 eval $setvar
3731
3732
3733 case "$usemorebits" in
3734 "$define"|true|[yY]*)
3735         use64bitint="$define"
3736         uselongdouble="$define"
3737         usemorebits="$define"
3738         ;;
3739 *)      usemorebits="$undef"
3740         ;;
3741 esac
3742
3743 : make some quick guesses about what we are up against
3744 echo " "
3745 $echo $n "Hmm...  $c"
3746 echo exit 1 >bsd
3747 echo exit 1 >usg
3748 echo exit 1 >v7
3749 echo exit 1 >osf1
3750 echo exit 1 >eunice
3751 echo exit 1 >xenix
3752 echo exit 1 >venix
3753 echo exit 1 >os2
3754 d_bsd="$undef"
3755 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3756 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3757 then
3758         echo "Looks kind of like an OSF/1 system, but we'll see..."
3759         echo exit 0 >osf1
3760 elif test `echo abc | $tr a-z A-Z` = Abc ; then
3761         xxx=`./loc addbib blurfl $pth`
3762         if $test -f $xxx; then
3763         echo "Looks kind of like a USG system with BSD features, but we'll see..."
3764                 echo exit 0 >bsd
3765                 echo exit 0 >usg
3766         else
3767                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3768                         echo "Looks kind of like an extended USG system, but we'll see..."
3769                 else
3770                         echo "Looks kind of like a USG system, but we'll see..."
3771                 fi
3772                 echo exit 0 >usg
3773         fi
3774 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3775         echo "Looks kind of like a BSD system, but we'll see..."
3776         d_bsd="$define"
3777         echo exit 0 >bsd
3778 else
3779         echo "Looks kind of like a Version 7 system, but we'll see..."
3780         echo exit 0 >v7
3781 fi
3782 case "$eunicefix" in
3783 *unixtovms*)
3784         $cat <<'EOI'
3785 There is, however, a strange, musty smell in the air that reminds me of
3786 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3787 EOI
3788         echo exit 0 >eunice
3789         d_eunice="$define"
3790 : it so happens the Eunice I know will not run shell scripts in Unix format
3791         ;;
3792 *)
3793         echo " "
3794         echo "Congratulations.  You aren't running Eunice."
3795         d_eunice="$undef"
3796         ;;
3797 esac
3798 : Detect OS2.  The p_ variable is set above in the Head.U unit.
3799 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
3800 : semicolon as a patch separator
3801 case "$p_" in
3802 :) ;;
3803 *)
3804         $cat <<'EOI'
3805 I have the feeling something is not exactly right, however...don't tell me...
3806 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3807 (Or you may be running DOS with DJGPP.)
3808 EOI
3809         echo exit 0 >os2
3810         ;;
3811 esac
3812 if test -f /xenix; then
3813         echo "Actually, this looks more like a XENIX system..."
3814         echo exit 0 >xenix
3815         d_xenix="$define"
3816 else
3817         echo " "
3818         echo "It's not Xenix..."
3819         d_xenix="$undef"
3820 fi
3821 chmod +x xenix
3822 $eunicefix xenix
3823 if test -f /venix; then
3824         echo "Actually, this looks more like a VENIX system..."
3825         echo exit 0 >venix
3826 else
3827         echo " "
3828         if ./xenix; then
3829                 : null
3830         else
3831                 echo "Nor is it Venix..."
3832         fi
3833 fi
3834 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3835 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3836 $rm -f foo
3837
3838 case "$cc" in
3839 '') dflt=cc;;
3840 *) dflt="$cc";;
3841 esac
3842 rp="Use which C compiler?"
3843 . ./myread
3844 cc="$ans"
3845
3846 : See if they have not cc but they do have gcc
3847 . ./trygcc
3848 : Look for a hint-file generated 'call-back-unit'.  Now that the
3849 : user has specified the compiler, we may need to set or change some
3850 : other defaults.
3851 if $test -f cc.cbu; then
3852     . ./cc.cbu
3853 fi
3854 . ./checkcc
3855
3856 echo " "
3857 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3858 $cat >try.c <<EOM
3859 #include <stdio.h>
3860 int main() {
3861 #ifdef __GNUC__
3862 #ifdef __VERSION__
3863         printf("%s\n", __VERSION__);
3864 #else
3865         printf("%s\n", "1");
3866 #endif
3867 #endif
3868         return(0);
3869 }
3870 EOM
3871 if $cc -o try $ccflags $ldflags try.c; then
3872         gccversion=`$run ./try`
3873         case "$gccversion" in
3874         '') echo "You are not using GNU cc." ;;
3875         *)  echo "You are using GNU cc $gccversion."
3876             ccname=gcc
3877             ;;
3878         esac
3879 else
3880         echo " "
3881         echo "*** WHOA THERE!!! ***" >&4
3882         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3883         case "$knowitall" in
3884         '')
3885         echo "    You'd better start hunting for one and let me know about it." >&4
3886                 exit 1
3887                 ;;
3888         esac
3889 fi
3890 $rm -f try try.*
3891 case "$gccversion" in
3892 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3893 esac
3894 case "$gccversion" in
3895 '') gccosandvers='' ;;
3896 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
3897    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
3898    gccshortvers=''
3899    case "$gccosandvers" in
3900    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
3901    $osname$osvers) ;; # looking good
3902    $osname*) cat <<EOM >&4
3903
3904 *** WHOA THERE!!! ***
3905
3906     Your gcc has not been compiled for the exact release of
3907     your operating system ($gccosandvers versus $osname$osvers).
3908
3909     In general it is a good idea to keep gcc synchronized with
3910     the operating system because otherwise serious problems
3911     may ensue when trying to compile software, like Perl.
3912
3913     I'm trying to be optimistic here, though, and will continue.
3914     If later during the configuration and build icky compilation
3915     problems appear (headerfile conflicts being the most common
3916     manifestation), I suggest reinstalling the gcc to match
3917     your operating system release.
3918
3919 EOM
3920       ;;
3921    *) gccosandvers='' ;; # failed to parse, better be silent
3922    esac
3923    ;;
3924 esac
3925 case "$ccname" in
3926 '') ccname="$cc" ;;
3927 esac
3928
3929 # gcc 3.* complain about adding -Idirectories that they already know about,
3930 # so we will take those off from locincpth.
3931 case "$gccversion" in
3932 3*)
3933     echo "main(){}">try.c
3934     for incdir in $locincpth; do
3935        warn=`$cc $ccflags -I$incdir -c try.c 2>&1 | \
3936              grep '^c[cp]p*[01]: warning: changing search order '`
3937        if test "X$warn" != X; then
3938            locincpth=`echo " $locincpth " | sed "s! $incdir ! !"`
3939        fi
3940     done
3941     $rm -f try try.*
3942 esac
3943
3944 : decide how portable to be.  Allow command line overrides.
3945 case "$d_portable" in
3946 "$undef") ;;
3947 *)      d_portable="$define" ;;
3948 esac
3949
3950 : set up shell script to do ~ expansion
3951 cat >filexp <<EOSS
3952 $startsh
3953 : expand filename
3954 case "\$1" in
3955  ~/*|~)
3956         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3957         ;;
3958  ~*)
3959         if $test -f /bin/csh; then
3960                 /bin/csh -f -c "glob \$1"
3961                 failed=\$?
3962                 echo ""
3963                 exit \$failed
3964         else
3965                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3966                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3967                 if $test ! -d "\$dir"; then
3968                         me=\`basename \$0\`
3969                         echo "\$me: can't locate home directory for: \$name" >&2
3970                         exit 1
3971                 fi
3972                 case "\$1" in
3973                 */*)
3974                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3975                         ;;
3976                 *)
3977                         echo \$dir
3978                         ;;
3979                 esac
3980         fi
3981         ;;
3982 *)
3983         echo \$1
3984         ;;
3985 esac
3986 EOSS
3987 chmod +x filexp
3988 $eunicefix filexp
3989
3990 : now set up to get a file name
3991 cat <<EOS >getfile
3992 $startsh
3993 EOS
3994 cat <<'EOSC' >>getfile
3995 tilde=''
3996 fullpath=''
3997 already=''
3998 skip=''
3999 none_ok=''
4000 exp_file=''
4001 nopath_ok=''
4002 orig_rp="$rp"
4003 orig_dflt="$dflt"
4004 case "$gfpth" in
4005 '') gfpth='.' ;;
4006 esac
4007
4008 case "$fn" in
4009 *\(*)
4010         : getfile will accept an answer from the comma-separated list
4011         : enclosed in parentheses even if it does not meet other criteria.
4012         expr "$fn" : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
4013         fn=`echo $fn | sed 's/(.*)//'`
4014         ;;
4015 esac
4016
4017 case "$fn" in
4018 *:*)
4019         loc_file=`expr $fn : '.*:\(.*\)'`
4020         fn=`expr $fn : '\(.*\):.*'`
4021         ;;
4022 esac
4023
4024 case "$fn" in
4025 *~*) tilde=true;;
4026 esac
4027 case "$fn" in
4028 */*) fullpath=true;;
4029 esac
4030 case "$fn" in
4031 *+*) skip=true;;
4032 esac
4033 case "$fn" in
4034 *n*) none_ok=true;;
4035 esac
4036 case "$fn" in
4037 *e*) exp_file=true;;
4038 esac
4039 case "$fn" in
4040 *p*) nopath_ok=true;;
4041 esac
4042
4043 case "$fn" in
4044 *f*) type='File';;
4045 *d*) type='Directory';;
4046 *l*) type='Locate';;
4047 esac
4048
4049 what="$type"
4050 case "$what" in
4051 Locate) what='File';;
4052 esac
4053
4054 case "$exp_file" in
4055 '')
4056         case "$d_portable" in
4057         "$define") ;;
4058         *) exp_file=true;;
4059         esac
4060         ;;
4061 esac
4062
4063 cd ..
4064 while test "$type"; do
4065         redo=''
4066         rp="$orig_rp"
4067         dflt="$orig_dflt"
4068         case "$tilde" in
4069         true) rp="$rp (~name ok)";;
4070         esac
4071         . UU/myread
4072         if test -f UU/getfile.ok && \
4073                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
4074         then
4075                 value="$ans"
4076                 ansexp="$ans"
4077                 break
4078         fi
4079         case "$ans" in
4080         none)
4081                 value=''
4082                 ansexp=''
4083                 case "$none_ok" in
4084                 true) type='';;
4085                 esac
4086                 ;;
4087         *)
4088                 case "$tilde" in
4089                 '') value="$ans"
4090                         ansexp="$ans";;
4091                 *)
4092                         value=`UU/filexp $ans`
4093                         case $? in
4094                         0)
4095                                 if test "$ans" != "$value"; then
4096                                         echo "(That expands to $value on this system.)"
4097                                 fi
4098                                 ;;
4099                         *) value="$ans";;
4100                         esac
4101                         ansexp="$value"
4102                         case "$exp_file" in
4103                         '') value="$ans";;
4104                         esac
4105                         ;;
4106                 esac
4107                 case "$fullpath" in
4108                 true)
4109                         case "$ansexp" in
4110                         /*) value="$ansexp" ;;
4111                         [a-zA-Z]:/*) value="$ansexp" ;;
4112                         *)
4113                                 redo=true
4114                                 case "$already" in
4115                                 true)
4116                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
4117                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
4118                                         ;;
4119                                 *)
4120                                 echo "Please give a full path name, starting with slash." >&4
4121                                         case "$tilde" in
4122                                         true)
4123                                 echo "Note that using ~name is ok provided it expands well." >&4
4124                                                 already=true
4125                                                 ;;
4126                                         esac
4127                                 esac
4128                                 ;;
4129                         esac
4130                         ;;
4131                 esac
4132                 case "$redo" in
4133                 '')
4134                         case "$type" in
4135                         File)
4136                                 for fp in $gfpth; do
4137                                         if test "X$fp" = X.; then
4138                                             pf="$ansexp"
4139                                         else    
4140                                             pf="$fp/$ansexp"
4141                                         fi
4142                                         if test -f "$pf"; then
4143                                                 type=''
4144                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
4145                                         then
4146                                                 echo "($value is not a plain file, but that's ok.)"
4147                                                 type=''
4148                                         fi
4149                                         if test X"$type" = X; then
4150                                             value="$pf"
4151                                             break
4152                                         fi
4153                                 done
4154                                 ;;
4155                         Directory)
4156                                 for fp in $gfpth; do
4157                                         if test "X$fp" = X.; then
4158                                             dir="$ans"
4159                                             direxp="$ansexp"
4160                                         else    
4161                                             dir="$fp/$ansexp"
4162                                             direxp="$fp/$ansexp"
4163                                         fi
4164                                         if test -d "$direxp"; then
4165                                                 type=''
4166                                                 value="$dir"
4167                                                 break
4168                                         fi
4169                                 done
4170                                 ;;
4171                         Locate)
4172                                 if test -d "$ansexp"; then
4173                                         echo "(Looking for $loc_file in directory $value.)"
4174                                         value="$value/$loc_file"
4175                                         ansexp="$ansexp/$loc_file"
4176                                 fi
4177                                 if test -f "$ansexp"; then
4178                                         type=''
4179                                 fi
4180                                 case "$nopath_ok" in
4181                                 true)   case "$value" in
4182                                         */*) ;;
4183                                         *)      echo "Assuming $value will be in people's path."
4184                                                 type=''
4185                                                 ;;
4186                                         esac
4187                                         ;;
4188                                 esac
4189                                 ;;
4190                         esac
4191
4192                         case "$skip" in
4193                         true) type='';
4194                         esac
4195
4196                         case "$type" in
4197                         '') ;;
4198                         *)
4199                                 if test "$fastread" = yes; then
4200                                         dflt=y
4201                                 else
4202                                         dflt=n
4203                                 fi
4204                                 rp="$what $value doesn't exist.  Use that name anyway?"
4205                                 . UU/myread
4206                                 dflt=''
4207                                 case "$ans" in
4208                                 y*) type='';;
4209                                 *) echo " ";;
4210                                 esac
4211                                 ;;
4212                         esac
4213                         ;;
4214                 esac
4215                 ;;
4216         esac
4217 done
4218 cd UU
4219 ans="$value"
4220 rp="$orig_rp"
4221 dflt="$orig_dflt"
4222 rm -f getfile.ok
4223 test "X$gfpthkeep" != Xy && gfpth=""
4224 EOSC
4225
4226 : What should the include directory be ?
4227 echo " "
4228 $echo $n "Hmm...  $c"
4229 dflt='/usr/include'
4230 incpath=''
4231 mips_type=''
4232 if $test -f /bin/mips && /bin/mips; then
4233         echo "Looks like a MIPS system..."
4234         $cat >usr.c <<'EOCP'
4235 #ifdef SYSTYPE_BSD43
4236 /bsd43
4237 #endif
4238 EOCP
4239         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4240                 dflt='/bsd43/usr/include'
4241                 incpath='/bsd43'
4242                 mips_type='BSD 4.3'
4243         else
4244                 mips_type='System V'
4245         fi
4246         $rm -f usr.c usr.out
4247         echo "and you're compiling with the $mips_type compiler and libraries."
4248         xxx_prompt=y
4249         echo "exit 0" >mips
4250 else
4251         echo "Doesn't look like a MIPS system."
4252         xxx_prompt=n
4253         echo "exit 1" >mips
4254 fi
4255 chmod +x mips
4256 $eunicefix mips
4257 case "$usrinc" in
4258 '') ;;
4259 *) dflt="$usrinc";;
4260 esac
4261 case "$xxx_prompt" in
4262 y)      fn=d/
4263         echo " "
4264         rp='Where are the include files you want to use?'
4265         . ./getfile
4266         usrinc="$ans"
4267         ;;
4268 *)      usrinc="$dflt"
4269         ;;
4270 esac
4271
4272 : see how we invoke the C preprocessor
4273 echo " "
4274 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4275 cat <<'EOT' >testcpp.c
4276 #define ABC abc
4277 #define XYZ xyz
4278 ABC.XYZ
4279 EOT
4280 cd ..
4281 if test ! -f cppstdin; then
4282         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4283                 # AIX cc -E doesn't show the absolute headerfile
4284                 # locations but we'll cheat by using the -M flag.
4285                 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
4286         else
4287                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4288         fi
4289 else
4290         echo "Keeping your $hint cppstdin wrapper."
4291 fi
4292 chmod 755 cppstdin
4293 wrapper=`pwd`/cppstdin
4294 ok='false'
4295 cd UU
4296
4297 if $test "X$cppstdin" != "X" && \
4298         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4299         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4300 then
4301         echo "You used to use $cppstdin $cppminus so we'll use that again."
4302         case "$cpprun" in
4303         '') echo "But let's see if we can live without a wrapper..." ;;
4304         *)
4305                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4306                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4307                 then
4308                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4309                         ok='true'
4310                 else
4311                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4312                 fi
4313                 ;;
4314         esac
4315 else
4316         case "$cppstdin" in
4317         '') ;;
4318         *)
4319                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4320                 ;;
4321         esac
4322 fi
4323
4324 if $ok; then
4325         : nothing
4326 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4327         $cc -E <testcpp.c >testcpp.out 2>&1; \
4328         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4329         echo "Yup, it does."
4330         x_cpp="$cc -E"
4331         x_minus='';
4332 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4333         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4334         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4335         echo "Yup, it does."
4336         x_cpp="$cc -E"
4337         x_minus='-';
4338 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4339         $cc -P <testcpp.c >testcpp.out 2>&1; \
4340         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4341         echo "Yipee, that works!"
4342         x_cpp="$cc -P"
4343         x_minus='';
4344 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4345         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4346         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4347         echo "At long last!"
4348         x_cpp="$cc -P"
4349         x_minus='-';
4350 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4351         $cpp <testcpp.c >testcpp.out 2>&1; \
4352         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4353         echo "It works!"
4354         x_cpp="$cpp"
4355         x_minus='';
4356 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4357         $cpp - <testcpp.c >testcpp.out 2>&1; \
4358         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4359         echo "Hooray, it works!  I was beginning to wonder."
4360         x_cpp="$cpp"
4361         x_minus='-';
4362 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4363         $wrapper <testcpp.c >testcpp.out 2>&1; \
4364         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4365         x_cpp="$wrapper"
4366         x_minus=''
4367         echo "Eureka!"
4368 else
4369         dflt=''
4370         rp="No dice.  I can't find a C preprocessor.  Name one:"
4371         . ./myread
4372         x_cpp="$ans"
4373         x_minus=''
4374         $x_cpp <testcpp.c >testcpp.out 2>&1
4375         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4376                 echo "OK, that will do." >&4
4377         else
4378 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4379                 exit 1
4380         fi
4381 fi
4382
4383 case "$ok" in
4384 false)
4385         cppstdin="$x_cpp"
4386         cppminus="$x_minus"
4387         cpprun="$x_cpp"
4388         cpplast="$x_minus"
4389         set X $x_cpp
4390         shift
4391         case "$1" in
4392         "$cpp")
4393                 echo "Perhaps can we force $cc -E using a wrapper..."
4394                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4395                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4396                 then
4397                         echo "Yup, we can."
4398                         cppstdin="$wrapper"
4399                         cppminus='';
4400                 else
4401                         echo "Nope, we'll have to live without it..."
4402                 fi
4403                 ;;
4404         esac
4405         case "$cpprun" in
4406         "$wrapper")
4407                 cpprun=''
4408                 cpplast=''
4409                 ;;
4410         esac
4411         ;;
4412 esac
4413
4414 case "$cppstdin" in
4415 "$wrapper"|'cppstdin') ;;
4416 *) $rm -f $wrapper;;
4417 esac
4418 $rm -f testcpp.c testcpp.out
4419
4420 : Set private lib path
4421 case "$plibpth" in
4422 '') if ./mips; then
4423                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4424         fi;;
4425 esac
4426 case "$libpth" in
4427 ' ') dlist='';;
4428 '') dlist="$loclibpth $plibpth $glibpth";;
4429 *) dlist="$libpth";;
4430 esac
4431
4432 : Now check and see which directories actually exist, avoiding duplicates
4433 libpth=''
4434 for xxx in $dlist
4435 do
4436     if $test -d $xxx; then
4437                 case " $libpth " in
4438                 *" $xxx "*) ;;
4439                 *) libpth="$libpth $xxx";;
4440                 esac
4441     fi
4442 done
4443 $cat <<'EOM'
4444
4445 Some systems have incompatible or broken versions of libraries.  Among
4446 the directories listed in the question below, please remove any you
4447 know not to be holding relevant libraries, and add any that are needed.
4448 Say "none" for none.
4449
4450 EOM
4451 case "$libpth" in
4452 '') dflt='none';;
4453 *)
4454         set X $libpth
4455         shift
4456         dflt=${1+"$@"}
4457         ;;
4458 esac
4459 rp="Directories to use for library searches?"
4460 . ./myread
4461 case "$ans" in
4462 none) libpth=' ';;
4463 *) libpth="$ans";;
4464 esac
4465
4466 : compute shared library extension
4467 case "$so" in
4468 '')
4469         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4470                 dflt='sl'
4471         else
4472                 dflt='so'
4473         fi
4474         ;;
4475 *) dflt="$so";;
4476 esac
4477 $cat <<EOM
4478
4479 On some systems, shared libraries may be available.  Answer 'none' if
4480 you want to suppress searching of shared libraries for the remainder
4481 of this configuration.
4482
4483 EOM
4484 rp='What is the file extension used for shared libraries?'
4485 . ./myread
4486 so="$ans"
4487
4488 : Define several unixisms.
4489 : Hints files or command line option can be used to override them.
4490 : The convoluted testing is in case hints files set either the old
4491 : or the new name.
4492 case "$_exe" in
4493 '')     case "$exe_ext" in
4494         '')     ;;
4495         *)      _exe="$exe_ext" ;;
4496         esac
4497         ;;
4498 esac
4499 case "$_a" in
4500 '')     case "$lib_ext" in
4501     '') _a='.a';;
4502         *)      _a="$lib_ext" ;;
4503         esac
4504         ;;
4505 esac
4506 case "$_o" in
4507 '') case "$obj_ext" in
4508         '')     _o='.o';;
4509         *)      _o="$obj_ext";;
4510         esac
4511         ;;
4512 esac
4513 case "$p_" in
4514 '') case "$path_sep" in
4515         '')     p_=':';;
4516         *)      p_="$path_sep";;
4517         esac
4518         ;;
4519 esac
4520 exe_ext=$_exe
4521 lib_ext=$_a
4522 obj_ext=$_o
4523 path_sep=$p_
4524
4525 : Which makefile gets called first.  This is used by make depend.
4526 case "$firstmakefile" in
4527 '') firstmakefile='makefile';;
4528 esac
4529
4530 case "$ccflags" in
4531 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
4532 esac
4533
4534 case "$uselongdouble" in
4535 $define|true|[yY]*)     dflt='y';;
4536 *) dflt='n';;
4537 esac
4538 cat <<EOM
4539
4540 Perl can be built to take advantage of long doubles which
4541 (if available) may give more accuracy and range for floating point numbers.
4542
4543 If this doesn't make any sense to you, just accept the default '$dflt'.
4544 EOM
4545 rp='Try to use long doubles if available?'
4546 . ./myread
4547 case "$ans" in
4548 y|Y)    val="$define"   ;;
4549 *)      val="$undef"    ;;
4550 esac
4551 set uselongdouble
4552 eval $setvar
4553
4554 case "$uselongdouble" in
4555 true|[yY]*) uselongdouble="$define" ;;
4556 esac
4557
4558 : Look for a hint-file generated 'call-back-unit'.  If the
4559 : user has specified that long doubles should be used,
4560 : we may need to set or change some other defaults.
4561 if $test -f uselongdouble.cbu; then
4562     echo "Your platform has some specific hints regarding long doubles, using them..."
4563     . ./uselongdouble.cbu
4564 else
4565     case "$uselongdouble" in
4566         $define)
4567                 $cat <<EOM
4568 (Your platform does not have any specific hints for long doubles.)
4569 EOM
4570         ;;
4571     esac
4572 fi
4573
4574 : Looking for optional libraries
4575 echo " "
4576 echo "Checking for optional libraries..." >&4
4577 case "$libs" in
4578 ' '|'') dflt='';;
4579 *) dflt="$libs";;
4580 esac
4581 case "$libswanted" in
4582 '') libswanted='c_s';;
4583 esac
4584 case "$usesocks" in
4585 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4586 esac
4587 libsfound=''
4588 libsfiles=''
4589 libsdirs=''
4590 libspath=''
4591 for thisdir in $libpth $xlibpth; do
4592   test -d $thisdir && libspath="$libspath $thisdir"
4593 done
4594 for thislib in $libswanted; do
4595         for thisdir in $libspath; do
4596             xxx=''
4597             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4598                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4599                 $test -f "$xxx" && eval $libscheck
4600                 $test -f "$xxx" && libstyle=shared
4601             fi
4602             if test ! -f "$xxx"; then
4603                 xxx=$thisdir/lib$thislib.$so
4604                 $test -f "$xxx" && eval $libscheck
4605                 $test -f "$xxx" && libstyle=shared
4606             fi  
4607             if test ! -f "$xxx"; then
4608                 xxx=$thisdir/lib$thislib$_a
4609                 $test -f "$xxx" && eval $libscheck
4610                 $test -f "$xxx" && libstyle=static
4611             fi
4612             if test ! -f "$xxx"; then
4613                 xxx=$thisdir/$thislib$_a
4614                 $test -f "$xxx" && eval $libscheck
4615                 $test -f "$xxx" && libstyle=static
4616             fi
4617             if test ! -f "$xxx"; then
4618                 xxx=$thisdir/lib${thislib}_s$_a
4619                 $test -f "$xxx" && eval $libscheck
4620                 $test -f "$xxx" && libstyle=static
4621                 $test -f "$xxx" && thislib=${thislib}_s
4622             fi
4623             if test ! -f "$xxx"; then
4624                 xxx=$thisdir/Slib$thislib$_a
4625                 $test -f "$xxx" && eval $libscheck
4626                 $test -f "$xxx" && libstyle=static
4627             fi
4628             if $test -f "$xxx"; then
4629                 case "$libstyle" in
4630                 shared) echo "Found -l$thislib (shared)." ;;
4631                 static) echo "Found -l$thislib." ;;
4632                 *)      echo "Found -l$thislib ($libstyle)." ;;
4633                 esac
4634                 case " $dflt " in
4635                 *"-l$thislib "*);;
4636                 *) dflt="$dflt -l$thislib"
4637                    libsfound="$libsfound $xxx"
4638                    yyy=`basename $xxx`
4639                    libsfiles="$libsfiles $yyy"
4640                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4641                    case " $libsdirs " in
4642                    *" $yyy "*) ;;
4643                    *) libsdirs="$libsdirs $yyy" ;;
4644                    esac
4645                    ;;
4646                 esac
4647                 break
4648             fi  
4649         done
4650         if $test ! -f "$xxx"; then
4651             echo "No -l$thislib."
4652         fi
4653 done
4654 set X $dflt
4655 shift
4656 dflt="$*"
4657 case "$libs" in
4658 '') dflt="$dflt";;
4659 *) dflt="$libs";;
4660 esac
4661 case "$dflt" in
4662 ' '|'') dflt='none';;
4663 esac
4664
4665 $cat <<EOM
4666
4667 In order to compile $package on your machine, a number of libraries
4668 are usually needed.  Include any other special libraries here as well.
4669 Say "none" for none.  The default list is almost always right.
4670 EOM
4671
4672 echo " "
4673 rp="What libraries to use?"
4674 . ./myread
4675 case "$ans" in
4676 none) libs=' ';;
4677 *) libs="$ans";;
4678 esac
4679
4680 : determine optimization, if desired, or use for debug flag also
4681 case "$optimize" in
4682 ' '|$undef) dflt='none';;
4683 '') dflt='-O';;
4684 *) dflt="$optimize";;
4685 esac
4686 $cat <<EOH
4687
4688 By default, $package compiles with the -O flag to use the optimizer.
4689 Alternately, you might want to use the symbolic debugger, which uses
4690 the -g flag (on traditional Unix systems).  Either flag can be
4691 specified here.  To use neither flag, specify the word "none".
4692
4693 EOH
4694 rp="What optimizer/debugger flag should be used?"
4695 . ./myread
4696 optimize="$ans"
4697 case "$optimize" in
4698 'none') optimize=" ";;
4699 esac
4700
4701 dflt=''
4702 : We will not override a previous value, but we might want to
4703 : augment a hint file
4704 case "$hint" in
4705 default|recommended)
4706         case "$gccversion" in
4707         1*) dflt='-fpcc-struct-return' ;;
4708         esac
4709         case "$optimize" in
4710         *-g*) dflt="$dflt -DDEBUGGING";;
4711         esac
4712         case "$gccversion" in
4713         2*) if test -d /etc/conf/kconfig.d &&
4714                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
4715                 then
4716                         # Interactive Systems (ISC) POSIX mode.
4717                         dflt="$dflt -posix"
4718                 fi
4719                 ;;
4720         esac
4721         case "$gccversion" in
4722         1*) ;;
4723         2.[0-8]*) ;;
4724         ?*)     echo " "
4725                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
4726                 echo 'int main(void) { return 0; }' > gcctest.c
4727                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
4728                         echo "Yes, it does." 2>&1
4729                         case "$ccflags" in
4730                         *strict-aliasing*)
4731                                 echo "Leaving current flags $ccflags alone." 2>&1
4732                                 ;;
4733                         *) dflt="$dflt -fno-strict-aliasing" ;;
4734                         esac
4735                 else
4736                         echo "Nope, it doesn't, but that's ok." 2>&1
4737                 fi
4738                 ;;
4739         esac
4740         # For gcc, adding -pipe speeds up compilations for some, but apparently
4741         # some assemblers can't read from stdin.  (It also slows down compilations
4742         # in other cases, but those are apparently rarer these days.)  AD 5/2004.
4743         case "$gccversion" in
4744         ?*)     echo " "
4745                 echo "Checking if your compiler accepts -pipe" 2>&1
4746                 echo 'int main(void) { return 0; }' > gcctest.c
4747                 if $cc -O2 -pipe -o gcctest gcctest.c; then
4748                         echo "Yes, it does." 2>&1
4749                         case "$ccflags" in
4750                         *-pipe*)
4751                                 echo "Leaving current flags $ccflags alone." 2>&1
4752                                 ;;
4753                         *) dflt="$dflt -pipe" ;;
4754                         esac
4755                 else
4756                         echo "Nope, it doesn't, but that's ok." 2>&1
4757                 fi
4758                 ;;
4759         esac
4760         ;;
4761 esac
4762
4763 case "$mips_type" in
4764 *BSD*|'') inclwanted="$locincpth $usrinc";;
4765 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
4766 esac
4767 for thisincl in $inclwanted; do
4768         if $test -d $thisincl; then
4769                 if $test x$thisincl != x$usrinc; then
4770                         case "$dflt" in
4771                         *" -I$thisincl "*);;
4772                         *) dflt="$dflt -I$thisincl ";;
4773                         esac
4774                 fi
4775         fi
4776 done
4777
4778 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
4779         xxx=true;
4780 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
4781         xxx=true;
4782 else
4783         xxx=false;
4784 fi;
4785 if $xxx; then
4786         case "$dflt" in
4787         *$2*);;
4788         *) dflt="$dflt -D$2";;
4789         esac;
4790 fi'
4791
4792 set signal.h LANGUAGE_C; eval $inctest
4793
4794 case "$usesocks" in
4795 $define)
4796         ccflags="$ccflags -DSOCKS"
4797         ;;
4798 esac
4799
4800 case "$hint" in
4801 default|recommended) dflt="$ccflags $dflt" ;;
4802 *) dflt="$ccflags";;
4803 esac
4804
4805 case "$dflt" in
4806 ''|' ') dflt=none;;
4807 esac
4808
4809 $cat <<EOH
4810
4811 Your C compiler may want other flags.  For this question you should include
4812 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4813 but you should NOT include libraries or ld flags like -lwhatever.  If you
4814 want $package to honor its debug switch, you should include -DDEBUGGING here.
4815 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4816
4817 To use no flags, specify the word "none".
4818
4819 EOH
4820 set X $dflt
4821 shift
4822 dflt=${1+"$@"}
4823 rp="Any additional cc flags?"
4824 . ./myread
4825 case "$ans" in
4826 none) ccflags='';;
4827 *) ccflags="$ans";;
4828 esac
4829
4830 : the following weeds options from ccflags that are of no interest to cpp
4831 case "$cppflags" in
4832 '') cppflags="$ccflags" ;;
4833 *)  cppflags="$cppflags $ccflags" ;;
4834 esac
4835 case "$gccversion" in
4836 1*) cppflags="$cppflags -D__GNUC__"
4837 esac
4838 case "$mips_type" in
4839 '');;
4840 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4841 esac
4842 case "$cppflags" in
4843 '');;
4844 *)
4845         echo " "
4846         echo "Let me guess what the preprocessor flags are..." >&4
4847         set X $cppflags
4848         shift
4849         cppflags=''
4850         $cat >cpp.c <<'EOM'
4851 #define BLURFL foo
4852
4853 BLURFL xx LFRULB
4854 EOM
4855         previous=''
4856         for flag in $*
4857         do
4858                 case "$flag" in
4859                 -*) ftry="$flag";;
4860                 *) ftry="$previous $flag";;
4861                 esac
4862                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4863                         >cpp1.out 2>/dev/null && \
4864                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4865                         >cpp2.out 2>/dev/null && \
4866                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4867                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4868                 then
4869                         cppflags="$cppflags $ftry"
4870                         previous=''
4871                 else
4872                         previous="$flag"
4873                 fi
4874         done
4875         set X $cppflags
4876         shift
4877         cppflags=${1+"$@"}
4878         case "$cppflags" in
4879         *-*)  echo "They appear to be: $cppflags";;
4880         esac
4881         $rm -f cpp.c cpp?.out
4882         ;;
4883 esac
4884
4885 : flags used in final linking phase
4886 case "$ldflags" in
4887 '') if ./venix; then
4888                 dflt='-i -z'
4889         else
4890                 dflt=''
4891         fi
4892         case "$ccflags" in
4893         *-posix*) dflt="$dflt -posix" ;;
4894         esac
4895         ;;
4896 *) dflt="$ldflags";;
4897 esac
4898
4899 : Try to guess additional flags to pick up local libraries.
4900 for thislibdir in $libpth; do
4901         case " $loclibpth " in
4902         *" $thislibdir "*)
4903                 case "$dflt " in
4904                 *"-L$thislibdir "*) ;;
4905                 *)  dflt="$dflt -L$thislibdir" ;;
4906                 esac
4907                 ;;
4908         esac
4909 done
4910
4911 case "$dflt" in
4912 '') dflt='none' ;;
4913 esac
4914
4915 $cat <<EOH
4916
4917 Your C linker may need flags.  For this question you should
4918 include -L/whatever and any other flags used by the C linker, but you
4919 should NOT include libraries like -lwhatever.
4920
4921 Make sure you include the appropriate -L/path flags if your C linker
4922 does not normally search all of the directories you specified above,
4923 namely
4924         $libpth
4925 To use no flags, specify the word "none".
4926
4927 EOH
4928
4929 rp="Any additional ld flags (NOT including libraries)?"
4930 . ./myread
4931 case "$ans" in
4932 none) ldflags='';;
4933 *) ldflags="$ans";;
4934 esac
4935 rmlist="$rmlist pdp11"
4936
4937 : coherency check
4938 echo " "
4939 echo "Checking your choice of C compiler and flags for coherency..." >&4
4940 $cat > try.c <<'EOF'
4941 #include <stdio.h>
4942 int main() { printf("Ok\n"); return(0); }
4943 EOF
4944 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
4945 shift
4946 $cat >try.msg <<'EOM'
4947 I've tried to compile and run the following simple program:
4948
4949 EOM
4950 $cat try.c >> try.msg
4951
4952 $cat >> try.msg <<EOM
4953
4954 I used the command:
4955
4956         $*
4957         $run ./try
4958
4959 and I got the following output:
4960
4961 EOM
4962 dflt=y
4963 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
4964         if $sh -c "$run ./try" >>try.msg 2>&1; then
4965                 xxx=`$run ./try`
4966                 case "$xxx" in
4967                 "Ok") dflt=n ;;
4968                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4969                         case " $libs " in
4970                         *" -lsfio "*)
4971                                 cat >> try.msg <<'EOQS'
4972 If $libs contains -lsfio, and sfio is mis-configured, then it
4973 sometimes (apparently) runs and exits with a 0 status, but with no
4974 output!  It may have to do with sfio's use of _exit vs. exit.
4975
4976 EOQS
4977                                 rp="You have a big problem.  Shall I abort Configure"
4978                                 dflt=y
4979                                 ;;
4980                         esac
4981                         ;;
4982                 esac
4983         else
4984                 echo "The program compiled OK, but exited with status $?." >>try.msg
4985                 rp="You have a problem.  Shall I abort Configure"
4986                 dflt=y
4987         fi
4988 else
4989         echo "I can't compile the test program." >>try.msg
4990         rp="You have a BIG problem.  Shall I abort Configure"
4991         dflt=y
4992 fi
4993 case "$dflt" in
4994 y)
4995         $cat try.msg >&4
4996         case "$knowitall" in
4997         '')
4998                 echo "(The supplied flags or libraries might be incorrect.)"
4999                 ;;
5000         *) dflt=n;;
5001         esac
5002         echo " "
5003         . ./myread
5004         case "$ans" in
5005         n*|N*) ;;
5006         *)      echo "Ok.  Stopping Configure." >&4
5007                 exit 1
5008                 ;;
5009         esac
5010         ;;
5011 n) echo "OK, that should do.";;
5012 esac
5013 $rm -f try try.* core
5014
5015 : define a shorthand compile call
5016 compile='
5017 mc_file=$1;
5018 shift;
5019 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
5020 : define a shorthand compile call for compilations that should be ok.
5021 compile_ok='
5022 mc_file=$1;
5023 shift;
5024 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
5025
5026 : determine filename position in cpp output
5027 echo " "
5028 echo "Computing filename position in cpp output for #include directives..." >&4
5029 case "$osname" in
5030 vos) testaccess=-e ;;
5031 *)   testaccess=-r ;;
5032 esac
5033 echo '#include <stdio.h>' > foo.c
5034 $cat >fieldn <<EOF
5035 $startsh
5036 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5037 $grep '^[       ]*#.*stdio\.h' | \
5038 while read cline; do
5039         pos=1
5040         set \$cline
5041         while $test \$# -gt 0; do
5042                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5043                         echo "\$pos"
5044                         exit 0
5045                 fi
5046                 shift
5047                 pos=\`expr \$pos + 1\`
5048         done
5049 done
5050 EOF
5051 chmod +x fieldn
5052 fieldn=`./fieldn`
5053 $rm -f foo.c fieldn
5054 case $fieldn in
5055 '') pos='???';;
5056 1) pos=first;;
5057 2) pos=second;;
5058 3) pos=third;;
5059 *) pos="${fieldn}th";;
5060 esac
5061 echo "Your cpp writes the filename in the $pos field of the line."
5062
5063 case "$osname" in
5064 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5065 os2) cppfilter="sed -e 's|\\\\\\\\|/|g' |" ;; # path component separator is \
5066 *)   cppfilter='' ;;
5067 esac
5068 : locate header file
5069 $cat >findhdr <<EOF
5070 $startsh
5071 wanted=\$1
5072 name=''
5073 for usrincdir in $usrinc
5074 do
5075         if test -f \$usrincdir/\$wanted; then
5076                 echo "\$usrincdir/\$wanted"
5077                 exit 0
5078         fi
5079 done
5080 awkprg='{ print \$$fieldn }'
5081 echo "#include <\$wanted>" > foo\$\$.c
5082 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5083 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5084 while read cline; do
5085         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5086         case "\$name" in
5087         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5088         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5089         *) exit 2;;
5090         esac;
5091 done;
5092 #
5093 # status = 0: grep returned 0 lines, case statement not executed
5094 # status = 1: headerfile found
5095 # status = 2: while loop executed, no headerfile found
5096 #
5097 status=\$?
5098 $rm -f foo\$\$.c;
5099 if test \$status -eq 1; then
5100         exit 0;
5101 fi
5102 exit 1
5103 EOF
5104 chmod +x findhdr
5105
5106 : define an alternate in-header-list? function
5107 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5108 cont=true; xxf="echo \"<\$1> found.\" >&4";
5109 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5110 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5111 esac;
5112 case $# in 4) instead=instead;; *) instead="at last";; esac;
5113 while $test "$cont"; do
5114         xxx=`./findhdr $1`
5115         var=$2; eval "was=\$$2";
5116         if $test "$xxx" && $test -r "$xxx";
5117         then eval $xxf;
5118         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5119                 cont="";
5120         else eval $xxnf;
5121         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5122         set $yyy; shift; shift; yyy=$@;
5123         case $# in 0) cont="";;
5124         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5125                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5126         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5127                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5128         esac;
5129 done;
5130 while $test "$yyy";
5131 do set $yyy; var=$2; eval "was=\$$2";
5132         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5133         set $yyy; shift; shift; yyy=$@;
5134 done'
5135
5136 : see if stdlib is available
5137 set stdlib.h i_stdlib
5138 eval $inhdr
5139
5140 : check for lengths of integral types
5141 echo " "
5142 case "$intsize" in
5143 '')
5144         echo "Checking to see how big your integers are..." >&4
5145         $cat >try.c <<EOCP
5146 #include <stdio.h>
5147 #$i_stdlib I_STDLIB
5148 #ifdef I_STDLIB
5149 #include <stdlib.h>
5150 #endif
5151 int main()
5152 {
5153         printf("intsize=%d;\n", (int)sizeof(int));
5154         printf("longsize=%d;\n", (int)sizeof(long));
5155         printf("shortsize=%d;\n", (int)sizeof(short));
5156         exit(0);
5157 }
5158 EOCP
5159         set try
5160         if eval $compile_ok && $run ./try > /dev/null; then
5161                 eval `$run ./try`
5162                 echo "Your integers are $intsize bytes long."
5163                 echo "Your long integers are $longsize bytes long."
5164                 echo "Your short integers are $shortsize bytes long."
5165         else
5166                 $cat >&4 <<EOM
5167 !
5168 Help! I can't compile and run the intsize test program: please enlighten me!
5169 (This is probably a misconfiguration in your system or libraries, and
5170 you really ought to fix it.  Still, I'll try anyway.)
5171 !
5172 EOM
5173                 dflt=4
5174                 rp="What is the size of an integer (in bytes)?"
5175                 . ./myread
5176                 intsize="$ans"
5177                 dflt=$intsize
5178                 rp="What is the size of a long integer (in bytes)?"
5179                 . ./myread
5180                 longsize="$ans"
5181                 dflt=2
5182                 rp="What is the size of a short integer (in bytes)?"
5183                 . ./myread
5184                 shortsize="$ans"
5185         fi
5186         ;;
5187 esac
5188 $rm -f try try.*
5189
5190 : check for long long
5191 echo " "
5192 echo "Checking to see if you have long long..." >&4
5193 echo 'int main() { long long x = 7; return 0; }' > try.c
5194 set try
5195 if eval $compile; then
5196         val="$define"
5197         echo "You have long long."
5198 else
5199         val="$undef"
5200         echo "You do not have long long."
5201 fi
5202 $rm try.*
5203 set d_longlong
5204 eval $setvar
5205
5206 : check for length of long long
5207 case "${d_longlong}${longlongsize}" in
5208 $define)
5209         echo " "
5210         echo "Checking to see how big your long longs are..." >&4
5211         $cat >try.c <<'EOCP'
5212 #include <stdio.h>
5213 int main()
5214 {
5215     printf("%d\n", (int)sizeof(long long));
5216     return(0);
5217 }
5218 EOCP
5219         set try
5220         if eval $compile_ok; then
5221                 longlongsize=`$run ./try`
5222                 echo "Your long longs are $longlongsize bytes long."
5223         else
5224                 dflt='8'
5225                 echo " "
5226                 echo "(I can't seem to compile the test program.  Guessing...)"
5227                 rp="What is the size of a long long (in bytes)?"
5228                 . ./myread
5229                 longlongsize="$ans"
5230         fi
5231         if $test "X$longsize" = "X$longlongsize"; then
5232                 echo "(That isn't any different from an ordinary long.)"
5233         fi      
5234         ;;
5235 esac
5236 $rm -f try.* try
5237
5238 : see if inttypes.h is available
5239 : we want a real compile instead of Inhdr because some systems
5240 : have an inttypes.h which includes non-existent headers
5241 echo " "
5242 $cat >try.c <<EOCP
5243 #include <inttypes.h>
5244 int main() {
5245         static int32_t foo32 = 0x12345678;
5246 }
5247 EOCP
5248 set try
5249 if eval $compile; then
5250         echo "<inttypes.h> found." >&4
5251         val="$define"
5252 else
5253         echo "<inttypes.h> NOT found." >&4
5254         val="$undef"
5255 fi
5256 $rm -f try.c try
5257 set i_inttypes
5258 eval $setvar
5259
5260 : check for int64_t
5261 echo " "
5262 echo "Checking to see if you have int64_t..." >&4
5263 $cat >try.c <<EOCP
5264 #include <sys/types.h>
5265 #$i_inttypes I_INTTYPES
5266 #ifdef I_INTTYPES
5267 #include <inttypes.h>
5268 #endif
5269 int main() { int64_t x = 7; }
5270 EOCP
5271 set try
5272 if eval $compile; then
5273         val="$define"
5274         echo "You have int64_t."
5275 else
5276         val="$undef"
5277         echo "You do not have int64_t."
5278 fi
5279 $rm -f try try.*
5280 set d_int64_t
5281 eval $setvar
5282
5283
5284 echo " "
5285 echo "Checking which 64-bit integer type we could use..." >&4
5286
5287 case "$intsize" in
5288 8) val=int
5289    set quadtype
5290    eval $setvar
5291    val='"unsigned int"'
5292    set uquadtype
5293    eval $setvar
5294    quadkind=1
5295    ;;
5296 *) case "$longsize" in
5297    8) val=long
5298       set quadtype
5299       eval $setvar
5300       val='"unsigned long"'
5301       set uquadtype
5302       eval $setvar
5303       quadkind=2
5304       ;;
5305    *) case "$d_longlong:$longlongsize" in
5306       define:8)
5307         val='"long long"'
5308         set quadtype
5309         eval $setvar
5310         val='"unsigned long long"'
5311         set uquadtype
5312         eval $setvar
5313         quadkind=3
5314         ;;
5315       *) case "$d_int64_t" in
5316          define)
5317            val=int64_t
5318            set quadtype
5319            eval $setvar
5320            val=uint64_t
5321            set uquadtype
5322            eval $setvar
5323            quadkind=4
5324            ;;
5325          esac
5326          ;;
5327       esac
5328       ;;
5329    esac
5330    ;;
5331 esac
5332
5333 case "$quadtype" in
5334 '')     echo "Alas, no 64-bit integer types in sight." >&4
5335         d_quad="$undef"
5336         ;;
5337 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5338         d_quad="$define"
5339         ;;
5340 esac
5341
5342
5343 case "$uselonglong" in
5344 "$define"|true|[yY]*)
5345         cat <<EOM >&4
5346
5347 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5348 EOM
5349         use64bitint="$define"
5350         ;;
5351 esac                          
5352 case "$use64bits" in
5353 "$define"|true|[yY]*)
5354         cat <<EOM >&4
5355
5356 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5357 EOM
5358         use64bitint="$define"
5359         ;;
5360 esac                          
5361 case "$use64bitints" in
5362 "$define"|true|[yY]*)
5363         cat <<EOM >&4
5364
5365 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5366 EOM
5367         use64bitint="$define"
5368         ;;
5369 esac                          
5370 case "$use64bitsint" in
5371 "$define"|true|[yY]*)
5372         cat <<EOM >&4
5373
5374 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5375 EOM
5376         use64bitint="$define"
5377         ;;
5378 esac                          
5379 case "$uselonglongs" in
5380 "$define"|true|[yY]*)
5381         cat <<EOM >&4
5382
5383 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5384 EOM
5385         use64bitint="$define"
5386         ;;
5387 esac                          
5388 case "$use64bitsall" in
5389 "$define"|true|[yY]*)
5390         cat <<EOM >&4
5391
5392 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5393 EOM
5394         use64bitall="$define"
5395         ;;
5396 esac                          
5397
5398 case "$ccflags" in
5399 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5400 esac
5401 case "$use64bitall" in
5402 "$define"|true|[yY]*) use64bitint="$define" ;;
5403 esac
5404
5405 case "$longsize" in
5406 8) cat <<EOM
5407
5408 You have natively 64-bit long integers.
5409 EOM
5410    val="$define"
5411    ;;
5412 *) case "$use64bitint" in
5413    "$define"|true|[yY]*) dflt='y';;
5414    *) dflt='n';;
5415    esac
5416    case "$d_quad" in
5417    "$define") ;;
5418    *) dflt='n' ;;
5419    esac
5420    cat <<EOM
5421
5422 Perl can be built to take advantage of 64-bit integer types
5423 on some systems.  To do so, Configure can be run with -Duse64bitint.
5424 Choosing this option will most probably introduce binary incompatibilities.
5425
5426 If this doesn't make any sense to you, just accept the default '$dflt'.
5427 (The default has been chosen based on your configuration.)
5428 EOM
5429    rp='Try to use 64-bit integers, if available?'
5430    . ./myread
5431    case "$ans" in
5432    [yY]*) val="$define" ;;
5433    *)     val="$undef"  ;;
5434    esac
5435    ;;
5436 esac
5437 set use64bitint
5438 eval $setvar
5439
5440 case "$use64bitall" in
5441 "$define"|true|[yY]*) dflt='y' ;;
5442 *) case "$longsize" in
5443    8) dflt='y' ;;
5444    *) dflt='n' ;;
5445    esac
5446    ;;
5447 esac    
5448 cat <<EOM
5449
5450 You may also choose to try maximal 64-bitness.  It means using as much
5451 64-bitness as possible on the platform.  This in turn means even more
5452 binary incompatibilities.  On the other hand, your platform may not
5453 have any more 64-bitness available than what you already have chosen.
5454
5455 If this doesn't make any sense to you, just accept the default '$dflt'.
5456 (The default has been chosen based on your configuration.)
5457 EOM
5458 rp='Try to use maximal 64-bit support, if available?'
5459 . ./myread
5460 case "$ans" in
5461 [yY]*) val="$define" ;;
5462 *)     val="$undef"  ;;
5463 esac
5464 set use64bitall
5465 eval $setvar
5466 case "$use64bitall" in
5467 "$define")
5468         case "$use64bitint" in
5469         "$undef")
5470                 cat <<EOM
5471
5472 Since you have chosen a maximally 64-bit build, I'm also turning on
5473 the use of 64-bit integers.
5474 EOM
5475                 use64bitint="$define" ;;
5476         esac
5477         ;;
5478 esac
5479
5480 : Look for a hint-file generated 'call-back-unit'.  If the
5481 : user has specified that a 64-bit perl is to be built,
5482 : we may need to set or change some other defaults.
5483 if $test -f use64bitint.cbu; then
5484         echo "Your platform has some specific hints regarding 64-bit integers, using them..."
5485         . ./use64bitint.cbu
5486 fi
5487 case "$use64bitint" in
5488 "$define"|true|[yY]*)
5489         case "$longsize" in
5490         4) case "$archname64" in
5491            '') archname64=64int ;;
5492            esac
5493            ;;
5494         esac
5495         ;;
5496 esac
5497
5498 : Look for a hint-file generated 'call-back-unit'.  If the
5499 : user has specified that a maximally 64-bit perl is to be built,
5500 : we may need to set or change some other defaults.
5501 if $test -f use64bitall.cbu; then
5502         echo "Your platform has some specific hints regarding 64-bit builds, using them..."
5503         . ./use64bitall.cbu
5504 fi
5505 case "$use64bitall" in
5506 "$define"|true|[yY]*)
5507         case "$longsize" in
5508         4) case "$archname64" in
5509            ''|64int) archname64=64all ;;
5510            esac
5511            ;;
5512         esac
5513         ;;
5514 esac
5515
5516 case "$d_quad:$use64bitint" in
5517 $undef:$define)
5518         cat >&4 <<EOF
5519
5520 *** You have chosen to use 64-bit integers,
5521 *** but none can be found.
5522 *** Please rerun Configure without -Duse64bitint and/or -Dusemorebits.
5523 *** Cannot continue, aborting.
5524
5525 EOF
5526         exit 1
5527         ;;
5528 esac
5529
5530 : check for length of double
5531 echo " "
5532 case "$doublesize" in
5533 '')
5534         echo "Checking to see how big your double precision numbers are..." >&4
5535         $cat >try.c <<EOCP
5536 #include <stdio.h>
5537 #$i_stdlib I_STDLIB
5538 #ifdef I_STDLIB
5539 #include <stdlib.h>
5540 #endif
5541 int main()
5542 {
5543     printf("%d\n", (int)sizeof(double));
5544     exit(0);
5545 }
5546 EOCP
5547         set try
5548         if eval $compile_ok; then
5549                 doublesize=`$run ./try`
5550                 echo "Your double is $doublesize bytes long."
5551         else
5552                 dflt='8'
5553                 echo "(I can't seem to compile the test program.  Guessing...)"
5554                 rp="What is the size of a double precision number (in bytes)?"
5555                 . ./myread
5556                 doublesize="$ans"
5557         fi
5558         ;;
5559 esac
5560 $rm -f try.c try
5561
5562 : check for long doubles
5563 echo " "
5564 echo "Checking to see if you have long double..." >&4
5565 echo 'int main() { long double x = 7.0; }' > try.c
5566 set try
5567 if eval $compile; then
5568         val="$define"
5569         echo "You have long double."
5570 else
5571         val="$undef"
5572         echo "You do not have long double."
5573 fi
5574 $rm try.*
5575 set d_longdbl
5576 eval $setvar
5577
5578 : check for length of long double
5579 case "${d_longdbl}${longdblsize}" in
5580 $define)
5581         echo " "
5582         echo "Checking to see how big your long doubles are..." >&4
5583         $cat >try.c <<'EOCP'
5584 #include <stdio.h>
5585 int main()
5586 {
5587         printf("%d\n", sizeof(long double));
5588 }
5589 EOCP
5590         set try
5591         set try
5592         if eval $compile; then
5593                 longdblsize=`$run ./try`
5594                 echo "Your long doubles are $longdblsize bytes long."
5595         else
5596                 dflt='8'
5597                 echo " "
5598                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
5599                 rp="What is the size of a long double (in bytes)?"
5600                 . ./myread
5601                 longdblsize="$ans"
5602         fi
5603         if $test "X$doublesize" = "X$longdblsize"; then
5604                 echo "That isn't any different from an ordinary double."
5605                 echo "I'll keep your setting anyway, but you may see some"
5606                 echo "harmless compilation warnings."
5607         fi      
5608         ;;
5609 esac
5610 $rm -f try.* try
5611
5612 : determine the architecture name
5613 echo " "
5614 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
5615         tarch=`arch`"-$osname"
5616 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
5617         if uname -m > tmparch 2>&1 ; then
5618                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
5619                         -e 's/$/'"-$osname/" tmparch`
5620         else
5621                 tarch="$osname"
5622         fi
5623         $rm -f tmparch
5624 else
5625         tarch="$osname"
5626 fi
5627 case "$myarchname" in
5628 ''|"$tarch") ;;
5629 *)
5630         echo "(Your architecture name used to be $myarchname.)"
5631         archname=''
5632         ;;
5633 esac
5634 case "$targetarch" in
5635 '') ;;
5636 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
5637 esac
5638 myarchname="$tarch"
5639 case "$archname" in
5640 '') dflt="$tarch";;
5641 *) dflt="$archname";;
5642 esac
5643 rp='What is your architecture name'
5644 . ./myread
5645 archname="$ans"
5646 case "$usethreads" in
5647 $define)
5648         echo "Threads selected." >&4
5649         case "$archname" in
5650         *-thread*) echo "...and architecture name already has -thread." >&4
5651                 ;;
5652         *)      archname="$archname-thread"
5653                 echo "...setting architecture name to $archname." >&4
5654                 ;;
5655         esac
5656         ;;
5657 esac
5658 case "$usemultiplicity" in
5659 $define)
5660         echo "Multiplicity selected." >&4
5661         case "$archname" in
5662         *-multi*) echo "...and architecture name already has -multi." >&4
5663                 ;;
5664         *)      archname="$archname-multi"
5665                 echo "...setting architecture name to $archname." >&4
5666                 ;;
5667         esac
5668         ;;
5669 esac
5670 case "$use64bitint$use64bitall" in
5671 *"$define"*)
5672         case "$archname64" in
5673         '')
5674                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
5675                 ;;
5676         *)
5677                 case "$use64bitint" in
5678                 "$define") echo "64 bit integers selected." >&4 ;;
5679                 esac
5680                 case "$use64bitall" in
5681                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
5682                 esac
5683                 case "$archname" in
5684                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
5685                         ;;
5686                 *)      archname="$archname-$archname64"
5687                         echo "...setting architecture name to $archname." >&4
5688                         ;;
5689                 esac
5690                 ;;
5691         esac
5692 esac
5693 case "$uselongdouble" in
5694 $define)
5695         echo "Long doubles selected." >&4
5696         case "$longdblsize" in
5697         $doublesize)
5698                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
5699                 ;;
5700         *)
5701                 case "$archname" in
5702                 *-ld*) echo "...and architecture name already has -ld." >&4
5703                         ;;
5704                 *)      archname="$archname-ld"
5705                         echo "...setting architecture name to $archname." >&4
5706                         ;;
5707                 esac
5708                 ;;
5709         esac
5710         ;;
5711 esac
5712 case "$useperlio" in
5713 $define)
5714         echo "Perlio selected." >&4
5715         ;;
5716 *)
5717         echo "Perlio not selected, using stdio." >&4
5718         case "$archname" in
5719         *-stdio*) echo "...and architecture name already has -stdio." >&4
5720                 ;;
5721         *)      archname="$archname-stdio"
5722                 echo "...setting architecture name to $archname." >&4
5723                 ;;
5724         esac
5725         ;;
5726 esac
5727 if $test -f archname.cbu; then
5728         echo "Your platform has some specific hints for architecture name, using them..."
5729         . ./archname.cbu
5730 fi
5731
5732 : determine root of directory hierarchy where package will be installed.
5733 case "$prefix" in
5734 '')
5735         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
5736         ;;
5737 *?/)
5738         dflt=`echo "$prefix" | sed 's/.$//'`
5739         ;;
5740 *)
5741         dflt="$prefix"
5742         ;;
5743 esac
5744 $cat <<EOM
5745
5746 By default, $package will be installed in $dflt/bin, manual pages
5747 under $dflt/man, etc..., i.e. with $dflt as prefix for all
5748 installation directories. Typically this is something like /usr/local.
5749 If you wish to have binaries under /usr/bin but other parts of the
5750 installation under /usr/local, that's ok: you will be prompted
5751 separately for each of the installation directories, the prefix being
5752 only used to set the defaults.
5753
5754 EOM
5755 fn=d~
5756 rp='Installation prefix to use?'
5757 . ./getfile
5758 oldprefix=''
5759 case "$prefix" in
5760 '') ;;
5761 *)
5762         case "$ans" in
5763         "$prefix") ;;
5764         *) oldprefix="$prefix";;
5765         esac
5766         ;;
5767 esac
5768 prefix="$ans"
5769 prefixexp="$ansexp"
5770
5771 case "$afsroot" in
5772 '')     afsroot=/afs ;;
5773 *)      afsroot=$afsroot ;;
5774 esac
5775
5776 : is AFS running?
5777 echo " "
5778 case "$afs" in
5779 $define|true)   afs=true ;;
5780 $undef|false)   afs=false ;;
5781 *)      if test -d $afsroot; then
5782                 afs=true
5783         else
5784                 afs=false
5785         fi
5786         ;;
5787 esac
5788 if $afs; then
5789         echo "AFS may be running... I'll be extra cautious then..." >&4
5790 else
5791         echo "AFS does not seem to be running..." >&4
5792 fi
5793
5794 : determine installation prefix for where package is to be installed.
5795 if $afs; then 
5796 $cat <<EOM
5797
5798 Since you are running AFS, I need to distinguish the directory in which
5799 files will reside from the directory in which they are installed (and from
5800 which they are presumably copied to the former directory by occult means).
5801
5802 EOM
5803         case "$installprefix" in
5804         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
5805         *) dflt="$installprefix";;
5806         esac
5807 else
5808 $cat <<EOM
5809
5810 In some special cases, particularly when building $package for distribution,
5811 it is convenient to distinguish the directory in which files should be
5812 installed from the directory ($prefix) in which they will
5813 eventually reside.  For most users, these two directories are the same.
5814
5815 EOM
5816         case "$installprefix" in
5817         '') dflt=$prefix ;;
5818         *) dflt=$installprefix;;
5819         esac
5820 fi
5821 fn=d~
5822 rp='What installation prefix should I use for installing files?'
5823 . ./getfile
5824 installprefix="$ans"
5825 installprefixexp="$ansexp"
5826
5827 : set the prefixit variable, to compute a suitable default value
5828 prefixit='case "$3" in
5829 ""|none)
5830         case "$oldprefix" in
5831         "") eval "$1=\"\$$2\"";;
5832         *)
5833                 case "$3" in
5834                 "") eval "$1=";;
5835                 none)
5836                         eval "tp=\"\$$2\"";
5837                         case "$tp" in
5838                         ""|" ") eval "$1=\"\$$2\"";;
5839                         *) eval "$1=";;
5840                         esac;;
5841                 esac;;
5842         esac;;
5843 *)
5844         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
5845         case "$tp" in
5846         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
5847         /*-$oldprefix/*|\~*-$oldprefix/*)
5848                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
5849         *) eval "$1=\"\$$2\"";;
5850         esac;;
5851 esac'
5852
5853 : get the patchlevel
5854 echo " "
5855 echo "Getting the current patchlevel..." >&4
5856 if $test -r $rsrc/patchlevel.h;then
5857         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
5858         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
5859         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5860         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
5861         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
5862         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5863        perl_patchlevel=`grep ',"DEVEL[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
5864 else
5865         revision=0
5866         patchlevel=0
5867         subversion=0
5868         api_revision=0
5869         api_version=0
5870         api_subversion=0
5871         perl_patchlevel=0
5872         $echo "(You do not have patchlevel.h.  Eek.)"
5873 fi
5874 if $test -r $rsrc/.patch ; then  
5875         if $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
5876                 perl_patchlevel=`cat $rsrc/.patch`
5877         fi
5878 fi
5879 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
5880 version_patchlevel_string="version $patchlevel subversion $subversion"
5881 case "$perl_patchlevel" in
5882 0|'') ;;
5883 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
5884 esac
5885
5886 $echo "(You have $package $version_patchlevel_string.)"
5887
5888 case "$osname" in
5889 dos|vms)
5890         : XXX Should be a Configure test for double-dots in filenames.
5891         version=`echo $revision $patchlevel $subversion | \
5892                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5893         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5894                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5895         ;;
5896 *)
5897         version=`echo $revision $patchlevel $subversion | \
5898                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5899         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5900                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5901         ;;
5902 esac
5903 : Special case the 5.005_xx maintenance series, which used 5.005
5904 : without any subversion label as a subdirectory in $sitelib
5905 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
5906         api_versionstring='5.005'
5907 fi
5908
5909 : determine installation style
5910 : For now, try to deduce it from prefix unless it is already set.
5911 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
5912 case "$installstyle" in
5913 '')     case "$prefix" in
5914                 *perl*) dflt='lib';;
5915                 *) dflt='lib/perl5' ;;
5916         esac
5917         ;;
5918 *)      dflt="$installstyle" ;;
5919 esac
5920 : Probably not worth prompting for this since we prompt for all
5921 : the directories individually, and the prompt would be too long and
5922 : confusing anyway.
5923 installstyle=$dflt
5924
5925 : determine where private library files go
5926 : Usual default is /usr/local/lib/perl5/$version.
5927 : Also allow things like /opt/perl/lib/$version, since 
5928 : /opt/perl/lib/perl5... would be redundant.
5929 : The default "style" setting is made in installstyle.U
5930 case "$installstyle" in
5931 *lib/perl5*) set dflt privlib lib/$package/$version ;;
5932 *)       set dflt privlib lib/$version ;;
5933 esac
5934 eval $prefixit
5935 $cat <<EOM
5936
5937 There are some auxiliary files for $package that need to be put into a
5938 private library directory that is accessible by everyone.
5939
5940 EOM
5941 fn=d~+
5942 rp='Pathname where the private library files will reside?'
5943 . ./getfile
5944 privlib="$ans"
5945 privlibexp="$ansexp"
5946 : Change installation prefix, if necessary.
5947 if $test X"$prefix" != X"$installprefix"; then
5948         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
5949 else
5950         installprivlib="$privlibexp"
5951 fi
5952
5953 : set the prefixup variable, to restore leading tilda escape
5954 prefixup='case "$prefixexp" in
5955 "$prefix") ;;
5956 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
5957 esac'
5958
5959 : determine where public architecture dependent libraries go
5960 set archlib archlib
5961 eval $prefixit
5962 : privlib default is /usr/local/lib/$package/$version
5963 : archlib default is /usr/local/lib/$package/$version/$archname
5964 : privlib may have an optional trailing /share.
5965 tdflt=`echo $privlib | $sed 's,/share$,,'`
5966 tdflt=$tdflt/$archname
5967 case "$archlib" in
5968 '')     dflt=$tdflt
5969         ;;
5970 *)      dflt="$archlib"
5971     ;;
5972 esac
5973 $cat <<EOM
5974
5975 $spackage contains architecture-dependent library files.  If you are
5976 sharing libraries in a heterogeneous environment, you might store
5977 these files in a separate location.  Otherwise, you can just include
5978 them with the rest of the public library files.
5979
5980 EOM
5981 fn=d+~
5982 rp='Where do you want to put the public architecture-dependent libraries?'
5983 . ./getfile
5984 archlib="$ans"
5985 archlibexp="$ansexp"
5986 if $test X"$archlib" = X"$privlib"; then
5987         d_archlib="$undef"
5988 else
5989         d_archlib="$define"
5990 fi
5991 : Change installation prefix, if necessary.
5992 if $test X"$prefix" != X"$installprefix"; then
5993         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
5994 else
5995         installarchlib="$archlibexp"
5996 fi
5997
5998 : see if setuid scripts can be secure
5999 $cat <<EOM
6000
6001 Some kernels have a bug that prevents setuid #! scripts from being
6002 secure.  Some sites have disabled setuid #! scripts because of this.
6003
6004 First let's decide if your kernel supports secure setuid #! scripts.
6005 (If setuid #! scripts would be secure but have been disabled anyway,
6006 don't say that they are secure if asked.)
6007
6008 EOM
6009
6010 val="$undef"
6011 if $test -d /dev/fd; then
6012         echo "#!$ls" >reflect
6013         chmod +x,u+s reflect
6014         ./reflect >flect 2>&1
6015         if $contains "/dev/fd" flect >/dev/null; then
6016                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
6017                 val="$define"
6018         else
6019                 $cat <<EOM
6020 If you are not sure if they are secure, I can check but I'll need a
6021 username and password different from the one you are using right now.
6022 If you don't have such a username or don't want me to test, simply
6023 enter 'none'.
6024
6025 EOM
6026                 rp='Other username to test security of setuid scripts with?'
6027                 dflt='none'
6028                 . ./myread
6029                 case "$ans" in
6030                 n|none)
6031                         case "$d_suidsafe" in
6032                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
6033                                 dflt=n;;
6034                         "$undef")
6035                                 echo "Well, the $hint value is *not* secure." >&4
6036                                 dflt=n;;
6037                         *)      echo "Well, the $hint value *is* secure." >&4
6038                                 dflt=y;;
6039                         esac
6040                         ;;
6041                 *)
6042                         $rm -f reflect flect
6043                         echo "#!$ls" >reflect
6044                         chmod +x,u+s reflect
6045                         echo >flect
6046                         chmod a+w flect
6047                         echo '"su" will (probably) prompt you for '"$ans's password."
6048                         su $ans -c './reflect >flect'
6049                         if $contains "/dev/fd" flect >/dev/null; then
6050                                 echo "Okay, it looks like setuid scripts are secure." >&4
6051                                 dflt=y
6052                         else
6053                                 echo "I don't think setuid scripts are secure." >&4
6054                                 dflt=n
6055                         fi
6056                         ;;
6057                 esac
6058                 rp='Does your kernel have *secure* setuid scripts?'
6059                 . ./myread
6060                 case "$ans" in
6061                 [yY]*)  val="$define";;
6062                 *)      val="$undef";;
6063                 esac
6064         fi
6065 else
6066         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6067         echo "(That's for file descriptors, not floppy disks.)"
6068         val="$undef"
6069 fi
6070 set d_suidsafe
6071 eval $setvar
6072
6073 $rm -f reflect flect
6074
6075 : now see if they want to do setuid emulation
6076 echo " "
6077 val="$undef"
6078 case "$d_suidsafe" in
6079 "$define")
6080         val="$undef"
6081         echo "No need to emulate SUID scripts since they are secure here." >&4
6082         ;;
6083 *)
6084         $cat <<EOM
6085 Some systems have disabled setuid scripts, especially systems where
6086 setuid scripts cannot be secure.  On systems where setuid scripts have
6087 been disabled, the setuid/setgid bits on scripts are currently
6088 useless.  It is possible for $package to detect those bits and emulate
6089 setuid/setgid in a secure fashion.  This emulation will only work if
6090 setuid scripts have been disabled in your kernel.
6091
6092 EOM
6093         case "$d_dosuid" in
6094         "$define") dflt=y ;;
6095         *) dflt=n ;;
6096         esac
6097         rp="Do you want to do setuid/setgid emulation?"
6098         . ./myread
6099         case "$ans" in
6100         [yY]*)  val="$define";;
6101         *)      val="$undef";;
6102         esac
6103         ;;
6104 esac
6105 set d_dosuid
6106 eval $setvar
6107
6108 : see if this is a malloc.h system
6109 : we want a real compile instead of Inhdr because some systems have a
6110 : malloc.h that just gives a compile error saying to use stdlib.h instead
6111 echo " "
6112 $cat >try.c <<EOCP
6113 #include <stdlib.h>
6114 #include <malloc.h>
6115 int main () { return 0; }
6116 EOCP
6117 set try
6118 if eval $compile; then
6119     echo "<malloc.h> found." >&4
6120     val="$define"
6121 else
6122     echo "<malloc.h> NOT found." >&4
6123     val="$undef"
6124 fi
6125 $rm -f try.c try
6126 set i_malloc
6127 eval $setvar
6128
6129 : check for void type
6130 echo " "
6131 echo "Checking to see how well your C compiler groks the void type..." >&4
6132 case "$voidflags" in
6133 '')
6134         $cat >try.c <<EOCP
6135 #$i_stdlib I_STDLIB
6136 #ifdef I_STDLIB
6137 #include <stdlib.h>
6138 #endif
6139 #if TRY & 1
6140 void sub() {
6141 #else
6142 sub() {
6143 #endif
6144         extern void moo();      /* function returning void */
6145         void (*goo)();          /* ptr to func returning void */
6146 #if TRY & 8
6147         void *hue;              /* generic ptr */
6148 #endif
6149 #if TRY & 2
6150         void (*foo[10])();
6151 #endif
6152
6153 #if TRY & 4
6154         if(goo == moo) {
6155                 exit(0);
6156         }
6157 #endif
6158         exit(0);
6159 }
6160 int main() { sub(); }
6161 EOCP
6162         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6163                 voidflags=$defvoidused
6164         echo "Good.  It appears to support void to the level $package wants.">&4
6165                 if $contains warning .out >/dev/null 2>&1; then
6166                         echo "However, you might get some warnings that look like this:"
6167                         $cat .out
6168                 fi
6169         else
6170 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6171                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6172                         echo "It supports 1..."
6173                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6174                                 echo "It also supports 2..."
6175                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6176                                         voidflags=7
6177                                         echo "And it supports 4 but not 8 definitely."
6178                                 else
6179                                         echo "It doesn't support 4..."
6180                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6181                                                 voidflags=11
6182                                                 echo "But it supports 8."
6183                                         else
6184                                                 voidflags=3
6185                                                 echo "Neither does it support 8."
6186                                         fi
6187                                 fi
6188                         else
6189                                 echo "It does not support 2..."
6190                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6191                                         voidflags=13
6192                                         echo "But it supports 4 and 8."
6193                                 else
6194                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6195                                                 voidflags=5
6196                                                 echo "And it supports 4 but has not heard about 8."
6197                                         else
6198                                                 echo "However it supports 8 but not 4."
6199                                         fi
6200                                 fi
6201                         fi
6202                 else
6203                         echo "There is no support at all for void."
6204                         voidflags=0
6205                 fi
6206         fi
6207 esac
6208 case "$voidflags" in
6209 "$defvoidused") ;;
6210 *)      $cat >&4 <<'EOM'
6211   Support flag bits are:
6212     1: basic void declarations.
6213     2: arrays of pointers to functions returning void.
6214     4: operations between pointers to and addresses of void functions.
6215     8: generic void pointers.
6216 EOM
6217         dflt="$voidflags";
6218         rp="Your void support flags add up to what?"
6219         . ./myread
6220         voidflags="$ans"
6221         ;;
6222 esac
6223 $rm -f try.* .out
6224
6225 : check for length of pointer
6226 echo " "
6227 case "$ptrsize" in
6228 '')
6229         echo "Checking to see how big your pointers are..." >&4
6230         if test "$voidflags" -gt 7; then
6231                 echo '#define VOID_PTR char *' > try.c
6232         else
6233                 echo '#define VOID_PTR void *' > try.c
6234         fi
6235         $cat >>try.c <<EOCP
6236 #include <stdio.h>
6237 #$i_stdlib I_STDLIB
6238 #ifdef I_STDLIB
6239 #include <stdlib.h>
6240 #endif
6241 int main()
6242 {
6243     printf("%d\n", (int)sizeof(VOID_PTR));
6244     exit(0);
6245 }
6246 EOCP
6247         set try
6248         if eval $compile_ok; then
6249                 ptrsize=`$run ./try`
6250                 echo "Your pointers are $ptrsize bytes long."
6251         else
6252                 dflt='4'
6253                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6254                 rp="What is the size of a pointer (in bytes)?"
6255                 . ./myread
6256                 ptrsize="$ans"
6257         fi
6258         ;;
6259 esac
6260 $rm -f try.c try
6261 case "$use64bitall" in
6262 "$define"|true|[yY]*)
6263         case "$ptrsize" in
6264         4)      cat <<EOM >&4
6265
6266 *** You have chosen a maximally 64-bit build,
6267 *** but your pointers are only 4 bytes wide.
6268 *** Please rerun Configure without -Duse64bitall.
6269 EOM
6270                 case "$d_quad" in
6271                 define)
6272                         cat <<EOM >&4
6273 *** Since you have quads, you could possibly try with -Duse64bitint.
6274 EOM
6275                         ;;
6276                 esac
6277                 cat <<EOM >&4
6278 *** Cannot continue, aborting.
6279
6280 EOM
6281
6282                 exit 1
6283                 ;;
6284         esac
6285         ;;
6286 esac
6287
6288
6289 : determine whether to use malloc wrapping
6290 echo " "
6291 case "$usemallocwrap" in
6292 [yY]*|true|$define)     dflt='y' ;;
6293 [nN]*|false|$undef)     dflt='n' ;;
6294 *)      case "$usedevel" in
6295         [yY]*|true|$define)     dflt='y' ;;
6296         *) dflt='n' ;;
6297         esac
6298         ;;
6299 esac
6300 rp="Do you wish to wrap malloc calls to protect against potential overflows?"
6301 . ./myread
6302 usemallocwrap="$ans"
6303 case "$ans" in
6304 y*|true)
6305         usemallocwrap="$define" ;;
6306 *)
6307         usemallocwrap="$undef" ;;
6308 esac
6309
6310 : determine which malloc to compile in
6311 echo " "
6312 case "$usemymalloc" in
6313 [yY]*|true|$define)     dflt='y' ;;
6314 [nN]*|false|$undef)     dflt='n' ;;
6315 *)      case "$ptrsize" in
6316         4) dflt='y' ;;
6317         *) dflt='n' ;;
6318         esac
6319         ;;
6320 esac
6321 rp="Do you wish to attempt to use the malloc that comes with $package?"
6322 . ./myread
6323 usemymalloc="$ans"
6324 case "$ans" in
6325 y*|true)
6326         usemymalloc='y'
6327         mallocsrc='malloc.c'
6328         mallocobj="malloc$_o"
6329         d_mymalloc="$define"
6330         case "$libs" in
6331         *-lmalloc*)
6332                 : Remove malloc from list of libraries to use
6333                 echo "Removing unneeded -lmalloc from library list" >&4
6334                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6335                 shift
6336                 libs="$*"
6337                 echo "libs = $libs" >&4
6338                 ;;
6339         esac
6340         ;;
6341 *)
6342         usemymalloc='n'
6343         mallocsrc=''
6344         mallocobj=''
6345         d_mymalloc="$undef"
6346         ;;
6347 esac
6348
6349 : compute the return types of malloc and free
6350 echo " "
6351 $cat >malloc.c <<END
6352 #$i_malloc I_MALLOC
6353 #$i_stdlib I_STDLIB
6354 #include <stdio.h>
6355 #include <sys/types.h>
6356 #ifdef I_MALLOC
6357 #include <malloc.h>
6358 #endif
6359 #ifdef I_STDLIB
6360 #include <stdlib.h>
6361 #endif
6362 #ifdef TRY_MALLOC
6363 void *malloc();
6364 #endif
6365 #ifdef TRY_FREE
6366 void free();
6367 #endif
6368 END
6369 case "$malloctype" in
6370 '')
6371         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6372                 malloctype='void *'
6373         else
6374                 malloctype='char *'
6375         fi
6376         ;;
6377 esac
6378 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6379
6380 case "$freetype" in
6381 '')
6382         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6383                 freetype='void'
6384         else
6385                 freetype='int'
6386         fi
6387         ;;
6388 esac
6389 echo "Your system uses $freetype free(), it would seem." >&4
6390 $rm -f malloc.[co]
6391 $cat <<EOM
6392
6393 After $package is installed, you may wish to install various
6394 add-on modules and utilities.  Typically, these add-ons will
6395 be installed under $prefix with the rest
6396 of this package.  However, you may wish to install such add-ons
6397 elsewhere under a different prefix.
6398
6399 If you do not wish to put everything under a single prefix, that's
6400 ok.  You will be prompted for the individual locations; this siteprefix
6401 is only used to suggest the defaults.
6402
6403 The default should be fine for most people.
6404
6405 EOM
6406 fn=d~+
6407 rp='Installation prefix to use for add-on modules and utilities?'
6408 : XXX Here might be another good place for an installstyle setting.
6409 case "$siteprefix" in
6410 '') dflt=$prefix ;;
6411 *)  dflt=$siteprefix ;;
6412 esac
6413 . ./getfile
6414 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6415 oldsiteprefix=''
6416 case "$siteprefix" in
6417 '') ;;
6418 *)      case "$ans" in
6419         "$prefix") ;;
6420         *) oldsiteprefix="$prefix";;
6421         esac
6422         ;;
6423 esac
6424 siteprefix="$ans"
6425 siteprefixexp="$ansexp"
6426
6427 : determine where site specific libraries go.
6428 : Usual default is /usr/local/lib/perl5/site_perl/$version
6429 : The default "style" setting is made in installstyle.U
6430 : XXX No longer works with Prefixit stuff.
6431 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6432 case "$sitelib" in
6433 '') case "$installstyle" in
6434         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6435         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6436         esac
6437         ;;
6438 *)      dflt="$sitelib"
6439         ;;
6440 esac
6441 $cat <<EOM
6442
6443 The installation process will create a directory for
6444 site-specific extensions and modules.  Most users find it convenient
6445 to place all site-specific files in this directory rather than in the
6446 main distribution directory.
6447
6448 EOM
6449 fn=d~+
6450 rp='Pathname for the site-specific library files?'
6451 . ./getfile
6452 sitelib="$ans"
6453 sitelibexp="$ansexp"
6454 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6455 : Change installation prefix, if necessary.
6456 if $test X"$prefix" != X"$installprefix"; then
6457         installsitelib=`echo $sitelibexp | $sed "s#^$prefix#$installprefix#"`
6458 else
6459         installsitelib="$sitelibexp"
6460 fi
6461
6462 : determine where site specific architecture-dependent libraries go.
6463 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6464 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6465 : sitelib may have an optional trailing /share.
6466 case "$sitearch" in
6467 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6468         dflt="$dflt/$archname"
6469         ;;
6470 *)      dflt="$sitearch"
6471         ;;
6472 esac
6473 set sitearch sitearch none
6474 eval $prefixit
6475 $cat <<EOM
6476
6477 The installation process will also create a directory for
6478 architecture-dependent site-specific extensions and modules.
6479
6480 EOM
6481 fn=d~+
6482 rp='Pathname for the site-specific architecture-dependent library files?'
6483 . ./getfile
6484 sitearch="$ans"
6485 sitearchexp="$ansexp"
6486 : Change installation prefix, if necessary.
6487 if $test X"$prefix" != X"$installprefix"; then
6488         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
6489 else
6490         installsitearch="$sitearchexp"
6491 fi
6492
6493 $cat <<EOM
6494
6495 The installation process will also create a directory for
6496 vendor-supplied add-ons.  Vendors who supply perl with their system
6497 may find it convenient to place all vendor-supplied files in this
6498 directory rather than in the main distribution directory.  This will
6499 ease upgrades between binary-compatible maintenance versions of perl.
6500
6501 Of course you may also use these directories in whatever way you see
6502 fit.  For example, you might use them to access modules shared over a
6503 company-wide network.
6504
6505 The default answer should be fine for most people.
6506 This causes further questions about vendor add-ons to be skipped
6507 and no vendor-specific directories will be configured for perl.
6508
6509 EOM
6510 rp='Do you want to configure vendor-specific add-on directories?'
6511 case "$usevendorprefix" in
6512 define|true|[yY]*) dflt=y ;;
6513 *)      : User may have set vendorprefix directly on Configure command line.
6514         case "$vendorprefix" in
6515         ''|' ') dflt=n ;;
6516         *)      dflt=y ;;
6517         esac
6518         ;;
6519 esac
6520 . ./myread
6521 case "$ans" in
6522 [yY]*)  fn=d~+
6523         rp='Installation prefix to use for vendor-supplied add-ons?'
6524         case "$vendorprefix" in
6525         '') dflt='' ;;
6526         *)  dflt=$vendorprefix ;;
6527         esac
6528         . ./getfile
6529         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6530         oldvendorprefix=''
6531         case "$vendorprefix" in
6532         '') ;;
6533         *)      case "$ans" in
6534                 "$prefix") ;;
6535                 *) oldvendorprefix="$prefix";;
6536                 esac
6537                 ;;
6538         esac
6539         usevendorprefix="$define"
6540         vendorprefix="$ans"
6541         vendorprefixexp="$ansexp"
6542         ;;
6543 *)      usevendorprefix="$undef"
6544         vendorprefix=''
6545         vendorprefixexp=''
6546         ;;
6547 esac
6548
6549 case "$vendorprefix" in
6550 '')     d_vendorlib="$undef"
6551         vendorlib=''
6552         vendorlibexp=''
6553         ;;
6554 *)      d_vendorlib="$define"
6555         : determine where vendor-supplied modules go.
6556         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
6557         case "$vendorlib" in
6558         '')
6559                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6560                 case "$installstyle" in
6561                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
6562                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
6563                 esac
6564                 ;;
6565         *)      dflt="$vendorlib"
6566                 ;;
6567         esac
6568         fn=d~+
6569         rp='Pathname for the vendor-supplied library files?'
6570         . ./getfile
6571         vendorlib="$ans"
6572         vendorlibexp="$ansexp"
6573         ;;
6574 esac
6575 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
6576 : Change installation prefix, if necessary.
6577 if $test X"$prefix" != X"$installprefix"; then
6578         installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
6579 else
6580         installvendorlib="$vendorlibexp"
6581 fi
6582
6583 case "$vendorprefix" in
6584 '')     d_vendorarch="$undef"
6585         vendorarch=''
6586         vendorarchexp=''
6587         ;;
6588 *)      d_vendorarch="$define"
6589         : determine where vendor-supplied architecture-dependent libraries go.
6590         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
6591         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
6592         : vendorlib may have an optional trailing /share.
6593         case "$vendorarch" in
6594         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
6595                 dflt="$dflt/$archname"
6596                 ;;
6597         *)      dflt="$vendorarch" ;;
6598         esac
6599         fn=d~+
6600         rp='Pathname for vendor-supplied architecture-dependent files?'
6601         . ./getfile
6602         vendorarch="$ans"
6603         vendorarchexp="$ansexp"
6604         ;;
6605 esac
6606 : Change installation prefix, if necessary.
6607 if $test X"$prefix" != X"$installprefix"; then
6608         installvendorarch=`echo $vendorarchexp | sed "s#^$prefix#$installprefix#"`
6609 else
6610         installvendorarch="$vendorarchexp"
6611 fi
6612
6613 : Final catch-all directories to search
6614 $cat <<EOM
6615
6616 Lastly, you can have perl look in other directories for extensions and
6617 modules in addition to those already specified.
6618 These directories will be searched after 
6619         $sitearch 
6620         $sitelib 
6621 EOM
6622 test X"$vendorlib" != "X" && echo '     ' $vendorlib
6623 test X"$vendorarch" != "X" && echo '    ' $vendorarch
6624 echo ' '
6625 case "$otherlibdirs" in
6626 ''|' ') dflt='none' ;;
6627 *)      dflt="$otherlibdirs" ;;
6628 esac
6629 $cat <<EOM
6630 Enter a colon-separated set of extra paths to include in perl's @INC
6631 search path, or enter 'none' for no extra paths.
6632
6633 EOM
6634
6635 rp='Colon-separated list of additional directories for perl to search?'
6636 . ./myread
6637 case "$ans" in
6638 ' '|''|none)    otherlibdirs=' ' ;;     
6639 *)      otherlibdirs="$ans" ;;
6640 esac
6641 case "$otherlibdirs" in
6642 ' ') val=$undef ;;
6643 *)      val=$define ;;
6644 esac
6645 set d_perl_otherlibdirs
6646 eval $setvar
6647
6648 : Cruising for prototypes
6649 echo " "
6650 echo "Checking out function prototypes..." >&4
6651 $cat >prototype.c <<EOCP
6652 #$i_stdlib I_STDLIB
6653 #ifdef I_STDLIB
6654 #include <stdlib.h>
6655 #endif
6656 int main(int argc, char *argv[]) {
6657         exit(0);}
6658 EOCP
6659 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
6660         echo "Your C compiler appears to support function prototypes."
6661         val="$define"
6662 else
6663         echo "Your C compiler doesn't seem to understand function prototypes."
6664         val="$undef"
6665 fi
6666 set prototype
6667 eval $setvar
6668 $rm -f prototype*
6669
6670 case "$prototype" in
6671 "$define") ;;
6672 *)      ansi2knr='ansi2knr'
6673         echo " "
6674         cat <<EOM >&4
6675
6676 $me:  FATAL ERROR:
6677 This version of $package can only be compiled by a compiler that 
6678 understands function prototypes.  Unfortunately, your C compiler 
6679         $cc $ccflags
6680 doesn't seem to understand them.  Sorry about that.
6681
6682 If GNU cc is available for your system, perhaps you could try that instead.  
6683
6684 Eventually, we hope to support building Perl with pre-ANSI compilers.
6685 If you would like to help in that effort, please contact <perlbug@perl.org>.
6686
6687 Aborting Configure now.
6688 EOM
6689         exit 2
6690         ;;
6691 esac
6692
6693 : determine where public executables go
6694 echo " "
6695 set dflt bin bin
6696 eval $prefixit
6697 fn=d~
6698 rp='Pathname where the public executables will reside?'
6699 . ./getfile
6700 if $test "X$ansexp" != "X$binexp"; then
6701         installbin=''
6702 fi
6703 bin="$ans"
6704 binexp="$ansexp"
6705 : Change installation prefix, if necessary.
6706 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
6707 if $test X"$prefix" != X"$installprefix"; then
6708         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
6709 else
6710         installbin="$binexp"
6711 fi
6712
6713 echo " "
6714 case "$extras" in
6715 '') dflt='n';;
6716 *) dflt='y';;
6717 esac
6718 cat <<EOM
6719 Perl can be built with extra modules or bundles of modules which
6720 will be fetched from the CPAN and installed alongside Perl.
6721
6722 Notice that you will need access to the CPAN; either via the Internet,
6723 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
6724 be asked later to configure the CPAN.pm module which will in turn do
6725 the installation of the rest of the extra modules or bundles.)
6726
6727 Notice also that if the modules require any external software such as
6728 libraries and headers (the libz library and the zlib.h header for the
6729 Compress::Zlib module, for example) you MUST have any such software
6730 already installed, this configuration process will NOT install such
6731 things for you.
6732
6733 If this doesn't make any sense to you, just accept the default '$dflt'.
6734 EOM
6735 rp='Install any extra modules (y or n)?'
6736 . ./myread
6737 case "$ans" in
6738 y|Y)
6739         cat <<EOM
6740
6741 Please list any extra modules or bundles to be installed from CPAN,
6742 with spaces between the names.  The names can be in any format the
6743 'install' command of CPAN.pm will understand.  (Answer 'none',
6744 without the quotes, to install no extra modules or bundles.)
6745 EOM
6746         rp='Extras?'
6747         dflt="$extras"
6748         . ./myread
6749         extras="$ans"
6750 esac
6751 case "$extras" in
6752 ''|'none')
6753         val=''
6754         $rm -f ../extras.lst
6755         ;;
6756 *)      echo "(Saving the list of extras for later...)"
6757         echo "$extras" > ../extras.lst
6758         val="'$extras'"
6759         ;;
6760 esac
6761 set extras
6762 eval $setvar
6763 echo " "
6764
6765 : determine where html pages for programs go
6766 set html1dir html1dir none
6767 eval $prefixit
6768 $cat <<EOM
6769
6770 If you wish to install html files for programs in $spackage, indicate 
6771 the appropriate directory here.  To skip installing html files,
6772 answer "none".
6773 EOM
6774 case "$html1dir" in
6775 ''|none|$undef|' ') dflt=none ;;
6776 *) dflt=$html1dir ;;
6777 esac
6778 fn=dn+~
6779 rp="Directory for the main $spackage html pages?"
6780 . ./getfile
6781 html1dir="$ans"
6782 html1direxp="$ansexp"
6783 : Use ' ' for none so value is preserved next time through Configure
6784 $test X"$html1dir" = "X" && html1dir=' '
6785 : Change installation prefix, if necessary.
6786 if $test X"$prefix" != X"$installprefix"; then
6787         installhtml1dir=`echo $html1direxp | sed "s#^$prefix#$installprefix#"`
6788 else
6789         installhtml1dir="$html1direxp"
6790 fi
6791
6792 : determine where html pages for libraries and modules go
6793 set html3dir html3dir none
6794 eval $prefixit
6795 $cat <<EOM
6796
6797 If you wish to install html files for modules associated with $spackage,
6798 indicate the appropriate directory here.  To skip installing html files,
6799 answer "none".
6800 EOM
6801 : There is no obvious default.  If they have specified html1dir, then
6802 : try to key off that, possibly changing .../html1 into .../html3.
6803 case "$html3dir" in
6804 '') html3dir=`echo "$html1dir" | $sed 's/1$/3$/'` ;;
6805 *) dflt=$html3dir ;;
6806 esac
6807 fn=dn+~
6808 rp="Directory for the $spackage module html pages?"
6809 . ./getfile
6810 html3dir="$ans"
6811 html3direxp="$ansexp"
6812 : Use ' ' for none so value is preserved next time through Configure
6813 $test X"$html3dir" = "X" && html3dir=' '
6814 : Change installation prefix, if necessary.
6815 if $test X"$prefix" != X"$installprefix"; then
6816         installhtml3dir=`echo $html3direxp | sed "s#^$prefix#$installprefix#"`
6817 else
6818         installhtml3dir="$html3direxp"
6819 fi
6820
6821 : Find perl5.005 or later.
6822 echo "Looking for a previously installed perl5.005 or later... "
6823 case "$perl5" in
6824 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
6825                 : Check if this perl is recent and can load a simple module
6826                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6827                         perl5=$tdir/perl
6828                         break;
6829                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6830                         perl5=$tdir/perl5
6831                         break;
6832                 fi
6833         done
6834         ;;
6835 *)      perl5="$perl5"
6836         ;;
6837 esac
6838 case "$perl5" in
6839 '')     echo "None found.  That's ok.";;
6840 *)      echo "Using $perl5." ;;
6841 esac
6842
6843 : Determine list of previous versions to include in @INC
6844 $cat > getverlist <<EOPL
6845 #!$perl5 -w
6846 use File::Basename;
6847 \$api_versionstring = "$api_versionstring";
6848 \$version = "$version";
6849 \$stem = "$sitelib_stem";
6850 \$archname = "$archname";
6851 EOPL
6852         $cat >> getverlist <<'EOPL'
6853 # Can't have leading @ because metaconfig interprets it as a command!
6854 ;@inc_version_list=();
6855 # XXX Redo to do opendir/readdir? 
6856 if (-d $stem) {
6857     chdir($stem);
6858     ;@candidates = glob("5.*");
6859 }
6860 else {
6861     ;@candidates = ();
6862 }
6863
6864 # XXX ToDo:  These comparisons must be reworked when two-digit
6865 # subversions come along, so that 5.7.10 compares as greater than
6866 # 5.7.3!  By that time, hope that 5.6.x is sufficiently
6867 # widespread that we can use the built-in version vectors rather
6868 # than reinventing them here.  For 5.6.0, however, we must
6869 # assume this script will likely be run by 5.005_0x.  --AD 1/2000.
6870 foreach $d (@candidates) {
6871     if ($d lt $version) {
6872         if ($d ge $api_versionstring) {
6873             unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
6874         }
6875         elsif ($d ge "5.005") {
6876             unshift(@inc_version_list, grep { -d } $d);
6877         }
6878     }
6879     else {
6880         # Skip newer version.  I.e. don't look in
6881         # 5.7.0 if we're installing 5.6.1.
6882     }
6883 }
6884
6885 if (@inc_version_list) {
6886     print join(' ', @inc_version_list);
6887 }
6888 else {
6889     # Blank space to preserve value for next Configure run.
6890     print " ";
6891 }
6892 EOPL
6893 chmod +x getverlist
6894 case "$inc_version_list" in
6895 '')     if test -x "$perl5$exe_ext"; then
6896                 dflt=`$perl5 getverlist`
6897         else
6898                 dflt='none'
6899         fi
6900         ;;
6901 $undef) dflt='none' ;;
6902 *)  eval dflt=\"$inc_version_list\" ;;
6903 esac
6904 case "$dflt" in
6905 ''|' ') dflt=none ;;
6906 esac
6907 case "$dflt" in
6908 5.005) dflt=none ;;
6909 esac
6910 $cat <<EOM
6911
6912 In order to ease the process of upgrading, this version of perl 
6913 can be configured to use modules built and installed with earlier 
6914 versions of perl that were installed under $prefix.  Specify here
6915 the list of earlier versions that this version of perl should check.
6916 If Configure detected no earlier versions of perl installed under
6917 $prefix, then the list will be empty.  Answer 'none' to tell perl
6918 to not search earlier versions.
6919
6920 The default should almost always be sensible, so if you're not sure,
6921 just accept the default.
6922 EOM
6923
6924 rp='List of earlier versions to include in @INC?'
6925 . ./myread
6926 case "$ans" in
6927 [Nn]one|''|' '|$undef) inc_version_list=' ' ;;
6928 *) inc_version_list="$ans" ;;
6929 esac
6930 case "$inc_version_list" in
6931 ''|' ') 
6932         inc_version_list_init='0';;
6933 *)      inc_version_list_init=`echo $inc_version_list |
6934                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
6935         ;;
6936 esac
6937 $rm -f getverlist
6938
6939 : determine whether to install perl also as /usr/bin/perl
6940
6941 echo " "
6942 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
6943         $cat <<EOM
6944 Many scripts expect perl to be installed as /usr/bin/perl.
6945
6946 If you want to, I can install the perl you are about to compile
6947 as /usr/bin/perl (in addition to $bin/perl).
6948 EOM
6949         if test -f /usr/bin/perl; then
6950             $cat <<EOM
6951
6952 However, please note that because you already have a /usr/bin/perl,
6953 overwriting that with a new Perl would very probably cause problems.
6954 Therefore I'm assuming you don't want to do that (unless you insist).
6955
6956 EOM
6957             case "$installusrbinperl" in
6958             "$define"|[yY]*)    dflt='y';;
6959             *)                  dflt='n';;
6960             esac
6961         else
6962             $cat <<EOM
6963
6964 Since you don't have a /usr/bin/perl I'm assuming creating one is okay.
6965
6966 EOM
6967             case "$installusrbinperl" in
6968             "$undef"|[nN]*)     dflt='n';;
6969             *)                  dflt='y';;
6970             esac
6971         fi
6972         rp="Do you want to install perl as /usr/bin/perl?"
6973         . ./myread
6974         case "$ans" in
6975         [yY]*)  val="$define";;
6976         *)      val="$undef" ;;
6977         esac
6978 else
6979         val="$undef"
6980 fi
6981 set installusrbinperl
6982 eval $setvar
6983
6984 echo " "
6985 echo "Checking for GNU C Library..." >&4
6986 cat >try.c <<'EOCP'
6987 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
6988    alone are insufficient to distinguish different versions, such as
6989    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
6990    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
6991 */
6992 #include <stdio.h>
6993 int main(void)
6994 {
6995 #ifdef __GLIBC__
6996 #   ifdef __GLIBC_MINOR__
6997 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
6998 #           include <gnu/libc-version.h>
6999             printf("%s\n",  gnu_get_libc_version());
7000 #       else
7001             printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
7002 #       endif
7003 #   else
7004         printf("%d\n",  __GLIBC__);
7005 #   endif
7006     return 0;
7007 #else
7008     return 1;
7009 #endif
7010 }
7011 EOCP
7012 set try
7013 if eval $compile_ok && $run ./try > glibc.ver; then
7014         val="$define"
7015         gnulibc_version=`$cat glibc.ver`
7016         echo "You are using the GNU C Library version $gnulibc_version"
7017 else
7018         val="$undef"
7019         gnulibc_version=''
7020         echo "You are not using the GNU C Library"
7021 fi
7022 $rm -f try try.* glibc.ver
7023 set d_gnulibc
7024 eval $setvar
7025
7026 : see if nm is to be used to determine whether a symbol is defined or not
7027 case "$usenm" in
7028 '')
7029         dflt=''
7030         case "$d_gnulibc" in
7031         "$define")
7032                 echo " "
7033                 echo "nm probably won't work on the GNU C Library." >&4
7034                 dflt=n
7035                 ;;
7036         esac
7037         case "$dflt" in
7038         '') 
7039                 if $test "$osname" = aix -a "X$PASE" != "Xdefine" -a ! -f /lib/syscalls.exp; then
7040                         echo " "
7041                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
7042                         echo "'nm' won't be sufficient on this sytem." >&4
7043                         dflt=n
7044                 fi
7045                 ;;
7046         esac
7047         case "$dflt" in
7048         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
7049                 if $test $dflt -gt 20; then
7050                         dflt=y
7051                 else
7052                         dflt=n
7053                 fi
7054                 ;;
7055         esac
7056         ;;
7057 *)
7058         case "$usenm" in
7059         true|$define) dflt=y;;
7060         *) dflt=n;;
7061         esac
7062         ;;
7063 esac
7064 $cat <<EOM
7065
7066 I can use $nm to extract the symbols from your C libraries. This
7067 is a time consuming task which may generate huge output on the disk (up
7068 to 3 megabytes) but that should make the symbols extraction faster. The
7069 alternative is to skip the 'nm' extraction part and to compile a small
7070 test program instead to determine whether each symbol is present. If
7071 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
7072 this may be the best solution.
7073
7074 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
7075
7076 EOM
7077 rp="Shall I use $nm to extract C symbols from the libraries?"
7078 . ./myread
7079 case "$ans" in
7080 [Nn]*) usenm=false;;
7081 *) usenm=true;;
7082 esac
7083
7084 runnm=$usenm
7085 case "$reuseval" in
7086 true) runnm=false;;
7087 esac
7088
7089 : nm options which may be necessary
7090 case "$nm_opt" in
7091 '') if $test -f /mach_boot; then
7092                 nm_opt=''       # Mach
7093         elif $test -d /usr/ccs/lib; then
7094                 nm_opt='-p'     # Solaris (and SunOS?)
7095         elif $test -f /dgux; then
7096                 nm_opt='-p'     # DG-UX
7097         elif $test -f /lib64/rld; then
7098                 nm_opt='-p'     # 64-bit Irix
7099         else
7100                 nm_opt=''
7101         fi;;
7102 esac
7103
7104 : nm options which may be necessary for shared libraries but illegal
7105 : for archive libraries.  Thank you, Linux.
7106 case "$nm_so_opt" in
7107 '')     case "$myuname" in
7108         *linux*)
7109                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
7110                         nm_so_opt='--dynamic'
7111                 fi
7112                 ;;
7113         esac
7114         ;;
7115 esac
7116
7117 case "$runnm" in
7118 true)
7119 : get list of predefined functions in a handy place
7120 echo " "
7121 case "$libc" in
7122 '') libc=unknown
7123         case "$libs" in
7124         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
7125         esac
7126         ;;
7127 esac
7128 case "$libs" in
7129 '') ;;
7130 *)  for thislib in $libs; do
7131         case "$thislib" in
7132         -lc|-lc_s)
7133                 : Handle C library specially below.
7134                 ;;
7135         -l*)
7136                 thislib=`echo $thislib | $sed -e 's/^-l//'`
7137                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
7138                         :
7139                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
7140                         :
7141                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
7142                         :
7143                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
7144                         :
7145                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
7146                         :
7147                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
7148                         :
7149                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
7150                         :
7151                 else
7152                         try=''
7153                 fi
7154                 libnames="$libnames $try"
7155                 ;;
7156         *) libnames="$libnames $thislib" ;;
7157         esac
7158         done
7159         ;;
7160 esac
7161 xxx=normal
7162 case "$libc" in
7163 unknown)
7164         set /lib/libc.$so
7165         for xxx in $libpth; do
7166                 $test -r $1 || set $xxx/libc.$so
7167                 : The messy sed command sorts on library version numbers.
7168                 $test -r $1 || \
7169                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
7170                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
7171                                 h
7172                                 s/[0-9][0-9]*/0000&/g
7173                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
7174                                 G
7175                                 s/\n/ /' | \
7176                          $sort | $sed -e 's/^.* //'`
7177                 eval set \$$#
7178         done
7179         $test -r $1 || set /usr/ccs/lib/libc.$so
7180         $test -r $1 || set /lib/libsys_s$_a
7181         ;;
7182 *)
7183         set blurfl
7184         ;;
7185 esac
7186 if $test -r "$1"; then
7187         echo "Your (shared) C library seems to be in $1."
7188         libc="$1"
7189 elif $test -r /lib/libc && $test -r /lib/clib; then
7190         echo "Your C library seems to be in both /lib/clib and /lib/libc."
7191         xxx=apollo
7192         libc='/lib/clib /lib/libc'
7193         if $test -r /lib/syslib; then
7194                 echo "(Your math library is in /lib/syslib.)"
7195                 libc="$libc /lib/syslib"
7196         fi
7197 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7198         echo "Your C library seems to be in $libc, as you said before."
7199 elif $test -r $incpath/usr/lib/libc$_a; then
7200         libc=$incpath/usr/lib/libc$_a;
7201         echo "Your C library seems to be in $libc.  That's fine."
7202 elif $test -r /lib/libc$_a; then
7203         libc=/lib/libc$_a;
7204         echo "Your C library seems to be in $libc.  You're normal."
7205 else
7206         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
7207                 :
7208         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
7209                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
7210         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
7211                 :
7212         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7213                 :
7214         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7215                 :
7216         else
7217                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
7218         fi
7219         if $test -r "$tans"; then
7220                 echo "Your C library seems to be in $tans, of all places."
7221                 libc=$tans
7222         else
7223                 libc='blurfl'
7224         fi
7225 fi
7226 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7227         dflt="$libc"
7228         cat <<EOM
7229
7230 If the guess above is wrong (which it might be if you're using a strange
7231 compiler, or your machine supports multiple models), you can override it here.
7232
7233 EOM
7234 else
7235         dflt=''
7236         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
7237         cat >&4 <<EOM
7238 I can't seem to find your C library.  I've looked in the following places:
7239
7240 EOM
7241         $sed 's/^/      /' libpath
7242         cat <<EOM
7243
7244 None of these seems to contain your C library. I need to get its name...
7245
7246 EOM
7247 fi
7248 fn=f
7249 rp='Where is your C library?'
7250 . ./getfile
7251 libc="$ans"
7252
7253 echo " "
7254 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
7255 set X `cat libnames`
7256 shift
7257 xxx=files
7258 case $# in 1) xxx=file; esac
7259 echo "Extracting names from the following $xxx for later perusal:" >&4
7260 echo " "
7261 $sed 's/^/      /' libnames >&4
7262 echo " "
7263 $echo $n "This may take a while...$c" >&4
7264
7265 for file in $*; do
7266         case $file in
7267         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
7268         *) $nm $nm_opt $file 2>/dev/null;;
7269         esac
7270 done >libc.tmp
7271
7272 $echo $n ".$c"
7273 $grep fprintf libc.tmp > libc.ptf
7274 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
7275 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
7276 xxx='[ADTSIW]'
7277 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *//p'";\
7278         eval $xscan;\
7279         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7280                 eval $xrun
7281 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
7282         eval $xscan;\
7283         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7284                 eval $xrun
7285 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
7286         eval $xscan;\
7287         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7288                 eval $xrun
7289 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
7290         eval $xscan;\
7291         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7292                 eval $xrun
7293 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
7294         eval $xscan;\
7295         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7296                 eval $xrun
7297 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
7298         eval $xscan;\
7299         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7300                 eval $xrun
7301 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
7302                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
7303         eval $xscan;\
7304         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7305                 eval $xrun
7306 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
7307         eval $xscan;\
7308         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7309                 eval $xrun
7310 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
7311         eval $xscan;\
7312         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7313                 eval $xrun
7314 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
7315         eval $xscan;\
7316         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7317                 eval $xrun
7318 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
7319         eval $xscan;\
7320         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7321                 eval $xrun
7322 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
7323         eval $xscan;\
7324         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7325                 eval $xrun
7326 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
7327         eval $xscan;\
7328         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7329                 eval $xrun
7330 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
7331         eval $xscan;\
7332         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7333                 eval $xrun
7334 else
7335         $nm -p $* 2>/dev/null >libc.tmp
7336         $grep fprintf libc.tmp > libc.ptf
7337         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
7338                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
7339         then
7340                 nm_opt='-p'
7341                 eval $xrun
7342         else
7343                 echo " "
7344                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
7345                 com=''
7346                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
7347                         for thisname in $libnames $libc; do
7348                                 $ar t $thisname >>libc.tmp
7349                         done
7350                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
7351                         echo "Ok." >&4
7352                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
7353                         # Repeat libc to extract forwarders to DLL entries too
7354                         for thisname in $libnames $libc; do
7355                                 $ar tv $thisname >>libc.tmp
7356                                 # Revision 50 of EMX has bug in $ar.
7357                                 # it will not extract forwarders to DLL entries
7358                                 # Use emximp which will extract exactly them.
7359                                 emximp -o tmp.imp $thisname \
7360                                     2>/dev/null && \
7361                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
7362                                     < tmp.imp >>libc.tmp
7363                                 $rm tmp.imp
7364                         done
7365                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
7366                         echo "Ok." >&4
7367                 else
7368                         echo "$ar didn't seem to work right." >&4
7369                         echo "Maybe this is a Cray...trying bld instead..." >&4
7370                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
7371                         then
7372                                 for thisname in $libnames; do
7373                                         bld t $libnames | \
7374                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
7375                                         $ar t $thisname >>libc.tmp
7376                                 done
7377                                 echo "Ok." >&4
7378                         else
7379                                 echo "That didn't work either.  Giving up." >&4
7380                                 exit 1
7381                         fi
7382                 fi
7383         fi
7384 fi
7385 nm_extract="$com"
7386 case "$PASE" in
7387 define)
7388     echo " "
7389     echo "Since you are compiling for PASE, extracting more symbols from libc.a ...">&4
7390     dump -Tv /lib/libc.a | awk '$7 == "/unix" {print $5 " " $8}' | grep "^SV" | awk '{print $2}' >> libc.list
7391     ;;
7392 *)  if $test -f /lib/syscalls.exp; then
7393         echo " "
7394         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
7395         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
7396     fi
7397     ;;
7398 esac
7399 ;;
7400 esac
7401 $rm -f libnames libpath
7402
7403 : see if dld is available
7404 set dld.h i_dld
7405 eval $inhdr
7406
7407 : is a C symbol defined?
7408 csym='tlook=$1;
7409 case "$3" in
7410 -v) tf=libc.tmp; tdc="";;
7411 -a) tf=libc.tmp; tdc="[]";;
7412 *) tlook="^$1\$"; tf=libc.list; tdc="()";;
7413 esac;
7414 tx=yes;
7415 case "$reuseval-$4" in
7416 true-) ;;
7417 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
7418 esac;
7419 case "$tx" in
7420 yes)
7421         tval=false;
7422         if $test "$runnm" = true; then
7423                 if $contains $tlook $tf >/dev/null 2>&1; then
7424                         tval=true;
7425                 elif $test "$mistrustnm" = compile -o "$mistrustnm" = run; then
7426                         echo "void *(*(p()))$tdc { extern void *$1$tdc; return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7427                         $cc -o try $optimize $ccflags $ldflags try.c >/dev/null 2>&1 $libs && tval=true;
7428                         $test "$mistrustnm" = run -a -x try && { $run ./try$_exe >/dev/null 2>&1 || tval=false; };
7429                         $rm -f try$_exe try.c core core.* try.core;
7430                 fi;
7431         else
7432                 echo "void *(*(p()))$tdc { extern void *$1$tdc; return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7433                 $cc -o try $optimize $ccflags $ldflags try.c $libs >/dev/null 2>&1 && tval=true;
7434                 $rm -f try$_exe try.c;
7435         fi;
7436         ;;
7437 *)
7438         case "$tval" in
7439         $define) tval=true;;
7440         *) tval=false;;
7441         esac;
7442         ;;
7443 esac;
7444 eval "$2=$tval"'
7445
7446 : define an is-in-libc? function
7447 inlibc='echo " "; td=$define; tu=$undef;
7448 sym=$1; var=$2; eval "was=\$$2";
7449 tx=yes;
7450 case "$reuseval$was" in
7451 true) ;;
7452 true*) tx=no;;
7453 esac;
7454 case "$tx" in
7455 yes)
7456         set $sym tres -f;
7457         eval $csym;
7458         case "$tres" in
7459         true)
7460                 echo "$sym() found." >&4;
7461                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
7462         *)
7463                 echo "$sym() NOT found." >&4;
7464                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
7465         esac;;
7466 *)
7467         case "$was" in
7468         $define) echo "$sym() found." >&4;;
7469         *) echo "$sym() NOT found." >&4;;
7470         esac;;
7471 esac'
7472
7473 : see if dlopen exists
7474 xxx_runnm="$runnm"
7475 runnm=false
7476 set dlopen d_dlopen
7477 eval $inlibc
7478 runnm="$xxx_runnm"
7479
7480 : determine which dynamic loading, if any, to compile in
7481 echo " "
7482 dldir="ext/DynaLoader"
7483 case "$usedl" in
7484 $define|y|true)
7485         dflt='y'
7486         usedl="$define"
7487         ;;
7488 $undef|n|false)
7489         dflt='n'
7490         usedl="$undef"
7491         ;;
7492 *) 
7493         dflt='n'
7494         case "$d_dlopen" in
7495             $define) dflt='y' ;;
7496         esac
7497         case "$i_dld" in
7498             $define) dflt='y' ;;
7499         esac
7500         : Does a dl_xxx.xs file exist for this operating system
7501         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7502         ;;
7503 esac
7504 rp="Do you wish to use dynamic loading?"
7505 . ./myread
7506 usedl="$ans"
7507 case "$ans" in
7508 y*) usedl="$define"
7509         case "$dlsrc" in
7510         '')
7511                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7512                         dflt="$dldir/dl_${osname}.xs"
7513                 elif $test "$d_dlopen" = "$define" ; then
7514                         dflt="$dldir/dl_dlopen.xs"
7515                 elif $test "$i_dld" = "$define" ; then
7516                         dflt="$dldir/dl_dld.xs"
7517                 else
7518                         dflt=''
7519                 fi
7520                 ;;
7521         *)      dflt="$dldir/$dlsrc"
7522                 ;;
7523         esac
7524     echo "The following dynamic loading files are available:"
7525         : Can not go over to $dldir because getfile has path hard-coded in.
7526         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7527         rp="Source file to use for dynamic loading"
7528         fn="fne"
7529         gfpth="$src"
7530         . ./getfile
7531         usedl="$define"
7532         : emulate basename
7533         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7534
7535         $cat << EOM
7536
7537 Some systems may require passing special flags to $cc -c to
7538 compile modules that will be used to create a shared library.
7539 To use no flags, say "none".
7540
7541 EOM
7542     case "$cccdlflags" in
7543     '') case "$gccversion" in
7544                 '') case "$osname" in
7545                         hpux)   dflt='+z' ;;
7546                         next)   dflt='none' ;;
7547                         irix*)  dflt='-KPIC' ;;
7548                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7549                         sunos)  dflt='-pic' ;;
7550                         *)      dflt='none' ;;
7551                     esac
7552                         ;;
7553                 *)  case "$osname" in
7554                         darwin) dflt='none' ;;
7555                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7556                         *)      dflt='-fpic' ;;
7557                     esac ;;
7558             esac ;;
7559         ' ') dflt='none' ;;
7560     *)  dflt="$cccdlflags" ;;
7561     esac
7562     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7563     . ./myread
7564     case "$ans" in
7565     none) cccdlflags=' ' ;;
7566     *) cccdlflags="$ans" ;;
7567     esac
7568
7569     cat << EOM
7570
7571 Some systems use ld to create libraries that can be dynamically loaded,
7572 while other systems (such as those using ELF) use $cc.
7573
7574 EOM
7575         case "$ld" in
7576         '')     $cat >try.c <<EOM
7577 /* Test for whether ELF binaries are produced */
7578 #include <fcntl.h>
7579 #$i_stdlib I_STDLIB
7580 #ifdef I_STDLIB
7581 #include <stdlib.h>
7582 #endif
7583 int main() {
7584         char b[4];
7585         int i = open("a.out",O_RDONLY);
7586         if(i == -1) 
7587                 exit(1); /* fail */
7588         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7589                 exit(0); /* succeed (yes, it's ELF) */
7590         else
7591                 exit(1); /* fail */
7592 }
7593 EOM
7594                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7595                         cat <<EOM
7596 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7597 EOM
7598                         dflt="$cc"
7599                 else
7600                         echo "I'll use ld to build dynamic libraries."
7601                         dflt='ld'
7602                 fi
7603                 rm -f try.c a.out
7604                 ;;
7605         *)      dflt="$ld"
7606                 ;;
7607         esac
7608
7609     rp="What command should be used to create dynamic libraries?"
7610     . ./myread
7611         ld="$ans"
7612
7613     cat << EOM
7614
7615 Some systems may require passing special flags to $ld to create a
7616 library that can be dynamically loaded.  If your ld flags include
7617 -L/other/path options to locate libraries outside your loader's normal
7618 search path, you may need to specify those -L options here as well.  To
7619 use no flags, say "none".
7620
7621 EOM
7622     case "$lddlflags" in
7623     '') case "$osname" in
7624                         beos) dflt='-nostart' ;;
7625                         hpux) dflt='-b';
7626                               case "$gccversion" in
7627                               '') dflt="$dflt +vnocompatwarnings" ;;
7628                               esac
7629                               ;;        
7630                         linux|irix*)    dflt='-shared' ;;
7631                         next)  dflt='none' ;;
7632                         solaris) dflt='-G' ;;
7633                         sunos) dflt='-assert nodefinitions' ;;
7634                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7635                 *)     dflt='none' ;;
7636                         esac
7637                         ;;
7638     *) dflt="$lddlflags" ;;
7639     esac
7640
7641         : Try to guess additional flags to pick up local libraries.
7642         : Be careful not to append to a plain 'none'
7643         case "$dflt" in
7644         none) dflt='' ;;
7645         esac
7646         for thisflag in $ldflags; do
7647                 case "$thisflag" in
7648                 -L*|-R*|-Wl,-R*)
7649                         case " $dflt " in
7650                         *" $thisflag "*) ;;
7651                         *) dflt="$dflt $thisflag" ;;
7652                         esac
7653                         ;;
7654                 esac
7655         done
7656
7657         case "$dflt" in
7658         ''|' ') dflt='none' ;;
7659         esac
7660
7661     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7662     . ./myread
7663     case "$ans" in
7664     none) lddlflags=' ' ;;
7665     *) lddlflags="$ans" ;;
7666     esac
7667
7668         cat <<EOM
7669
7670 Some systems may require passing special flags to $cc to indicate that
7671 the resulting executable will use dynamic linking.  To use no flags,
7672 say "none".
7673
7674 EOM
7675     case "$ccdlflags" in
7676     '') case "$osname" in
7677             linux|hpux) dflt='-Wl,-E' ;;
7678             next|sunos) dflt='none' ;;
7679             *)          dflt='none' ;;
7680             esac ;;
7681     ' ')  dflt='none' ;;
7682     *)  dflt="$ccdlflags" ;;
7683     esac
7684     rp="Any special flags to pass to $cc to use dynamic linking?"
7685     . ./myread
7686     case "$ans" in
7687     none) ccdlflags=' ' ;;
7688     *) ccdlflags="$ans" ;;
7689     esac
7690     ;;
7691 *)  usedl="$undef"
7692         ld='ld'
7693     dlsrc='dl_none.xs'
7694     lddlflags=''
7695     ccdlflags=''
7696     ;;
7697 esac
7698
7699 also=''
7700 case "$usedl" in
7701 $undef)
7702         # No dynamic loading being used, so don't bother even to prompt.
7703         useshrplib='false'
7704         ;;
7705 *)      case "$useshrplib" in
7706         '')     case "$osname" in
7707                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7708                         dflt=y
7709                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7710                         ;;
7711                 next*)
7712                         case "$osvers" in
7713                         4*)     dflt=y
7714                                 also='Building a shared libperl is needed for MAB support.'
7715                                 ;;
7716                         *)      dflt=n
7717                                 ;;
7718                         esac
7719                         ;;
7720                 *)      dflt=n
7721                         ;;
7722                 esac
7723                 ;;
7724         $define|true|[Yy]*)
7725                 dflt=y
7726                 ;;
7727         *)      dflt=n
7728                 ;;
7729         esac
7730         $cat << EOM
7731
7732 The perl executable is normally obtained by linking perlmain.c with
7733 libperl${_a}, any static extensions (usually just DynaLoader), and
7734 any other libraries needed on this system (such as -lm, etc.).  Since
7735 your system supports dynamic loading, it is probably possible to build
7736 a shared libperl.$so.  If you will have more than one executable linked
7737 to libperl.$so, this will significantly reduce the size of each
7738 executable, but it may have a noticeable affect on performance.  The
7739 default is probably sensible for your system.
7740 $also
7741
7742 EOM
7743         rp="Build a shared libperl.$so (y/n)"
7744         . ./myread
7745         case "$ans" in
7746         true|$define|[Yy]*)
7747                 useshrplib='true'  ;;
7748         *)      useshrplib='false' ;;
7749         esac
7750         ;;
7751 esac
7752
7753 case "$useshrplib" in
7754 true)
7755         case "$libperl" in
7756         '')
7757                 # Figure out a good name for libperl.so.  Since it gets stored in
7758                 # a version-specific architecture-dependent library, the version
7759                 # number isn't really that important, except for making cc/ld happy.
7760                 #
7761                 # A name such as libperl.so.3.1
7762                 majmin="libperl.$so.$patchlevel.$subversion"
7763                 # A name such as libperl.so.301
7764                 majonly=`echo $patchlevel $subversion |
7765                         $awk '{printf "%d%02d", $1, $2}'`
7766                 majonly=libperl.$so.$majonly
7767                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7768                 # rely on figuring it out from the naming of libc.
7769                 case "${osname}${osvers}" in
7770                 next4*)
7771                         dflt=libperl.5.$so
7772                         # XXX How handle the --version stuff for MAB?
7773                         ;;
7774                 linux*)  # ld won't link with a bare -lperl otherwise.
7775                         dflt=libperl.$so
7776                         ;;
7777                 cygwin*) # ld links against an importlib
7778                         dflt=libperl$lib_ext
7779                         ;;
7780                 *)      # Try to guess based on whether libc has major.minor.
7781                         case "$libc" in
7782                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7783                         *libc.$so.[0-9]*) dflt=$majonly ;;
7784                         *)      dflt=libperl.$so ;;
7785                         esac
7786                         ;;
7787                 esac
7788                 ;;
7789         *)      dflt=$libperl
7790                 ;;
7791         esac
7792         cat << EOM
7793
7794 I need to select a good name for the shared libperl.  If your system uses
7795 library names with major and minor numbers, then you might want something
7796 like $majmin.  Alternatively, if your system uses a single version
7797 number for shared libraries, then you might want to use $majonly.
7798 Or, your system might be quite happy with a simple libperl.$so.
7799
7800 Since the shared libperl will get installed into a version-specific
7801 architecture-dependent directory, the version number of the shared perl
7802 library probably isn't important, so the default should be o.k.
7803
7804 EOM
7805         rp='What name do you want to give to the shared libperl?'
7806         . ./myread
7807         libperl=$ans
7808         echo "Ok, I'll use $libperl"
7809         ;;
7810 *)
7811         libperl="libperl${_a}"
7812         ;;
7813 esac
7814
7815 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
7816 case "$shrpdir" in
7817 '') ;;
7818 *)      $cat >&4 <<EOM
7819 WARNING:  Use of the shrpdir variable for the installation location of
7820 the shared $libperl is not supported.  It was never documented and
7821 will not work in this version.  Let me (perlbug@perl.org)
7822 know of any problems this may cause.
7823
7824 EOM
7825         case "$shrpdir" in
7826         "$archlibexp/CORE")
7827                 $cat >&4 <<EOM
7828 But your current setting of $shrpdir is
7829 the default anyway, so it's harmless.
7830 EOM
7831                 ;;
7832         *)
7833                 $cat >&4 <<EOM
7834 Further, your current attempted setting of $shrpdir
7835 conflicts with the value of $archlibexp/CORE
7836 that installperl will use.
7837 EOM
7838                 ;;
7839         esac
7840         ;;
7841 esac
7842
7843 # How will the perl executable find the installed shared $libperl?
7844 # Add $xxx to ccdlflags.
7845 # If we can't figure out a command-line option, use $shrpenv to
7846 # set env LD_RUN_PATH.  The main perl makefile uses this.
7847 shrpdir=$archlibexp/CORE
7848 xxx=''
7849 tmp_shrpenv=''
7850 if "$useshrplib"; then
7851     case "$osname" in 
7852         aix)
7853                 # We'll set it in Makefile.SH...
7854                 ;;
7855         solaris)
7856                 xxx="-R $shrpdir"
7857                 ;;
7858         freebsd|netbsd|openbsd)
7859                 xxx="-Wl,-R$shrpdir"
7860                 ;;
7861         bsdos|linux|irix*|dec_osf)
7862                 xxx="-Wl,-rpath,$shrpdir"
7863                 ;;
7864         next)
7865                 # next doesn't like the default...
7866                 ;;
7867         beos)
7868                 # beos doesn't like the default, either.
7869                 ;;
7870         hpux*)
7871                 # hpux doesn't like the default, either.
7872                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7873                 ;;
7874         *)
7875                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7876                 ;;
7877         esac
7878         case "$xxx" in
7879         '') ;;
7880         *)      
7881                 # Only add $xxx if it isn't already in ccdlflags.
7882                 case " $ccdlflags " in
7883                 *" $xxx "*)     ;;
7884                 *)      ccdlflags="$ccdlflags $xxx"
7885                         cat <<EOM >&4
7886
7887 Adding $xxx to the flags
7888 passed to $ld so that the perl executable will find the 
7889 installed shared $libperl.
7890
7891 EOM
7892                         ;;
7893                 esac
7894                 ;;
7895         esac
7896 fi
7897 # Fix ccdlflags in AIX for building external extensions.
7898 # (For building Perl itself bare -bE:perl.exp is needed,
7899 #  Makefile.SH takes care of this.)
7900 case "$osname" in
7901 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7902 esac
7903 # Respect a hint or command-line value.
7904 case "$shrpenv" in
7905 '') shrpenv="$tmp_shrpenv" ;;
7906 esac
7907 case "$ldlibpthname" in
7908 '')     ldlibpthname=LD_LIBRARY_PATH ;;
7909 none)   ldlibpthname='' ;;
7910 esac
7911
7912 : determine where manual pages are on this system
7913 echo " "
7914 case "$sysman" in
7915 '') 
7916         syspath='/usr/share/man/man1 /usr/man/man1'
7917         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7918         syspath="$syspath /usr/man/u_man/man1"
7919         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7920         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7921         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7922         sysman=`./loc . /usr/man/man1 $syspath`
7923         ;;
7924 esac
7925 if $test -d "$sysman"; then
7926         echo "System manual is in $sysman." >&4
7927 else
7928         echo "Could not find manual pages in source form." >&4
7929 fi
7930
7931 : determine where manual pages go
7932 set man1dir man1dir none
7933 eval $prefixit
7934 $cat <<EOM
7935
7936 $spackage has manual pages available in source form.
7937 EOM
7938 case "$nroff" in
7939 nroff)
7940         echo "However, you don't have nroff, so they're probably useless to you."
7941         case "$man1dir" in
7942         '') man1dir="none";;
7943         esac;;
7944 esac
7945 echo "If you don't want the manual sources installed, answer 'none'."
7946 case "$man1dir" in
7947 ' ') dflt=none
7948         ;;
7949 '')
7950         lookpath="$prefixexp/share/man/man1"
7951         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
7952         lookpath="$lookpath $prefixexp/man/p_man/man1"
7953         lookpath="$lookpath $prefixexp/man/u_man/man1"
7954         lookpath="$lookpath $prefixexp/man/man.1"
7955         case "$sysman" in
7956         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
7957         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
7958         esac
7959         set dflt
7960         eval $prefixup
7961         ;;
7962 *)  dflt="$man1dir"
7963         ;;
7964 esac
7965 echo " "
7966 fn=dn+~
7967 rp="Where do the main $spackage manual pages (source) go?"
7968 . ./getfile
7969 if $test "X$man1direxp" != "X$ansexp"; then
7970         installman1dir=''
7971 fi
7972 man1dir="$ans"
7973 man1direxp="$ansexp"
7974 case "$man1dir" in
7975 '')     man1dir=' '
7976         installman1dir='';;
7977 esac
7978
7979 : Change installation prefix, if necessary.
7980 if $test X"$prefix" != X"$installprefix"; then
7981         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
7982 else
7983         installman1dir="$man1direxp"
7984 fi
7985
7986 : What suffix to use on installed man pages
7987
7988 case "$man1dir" in
7989 ' ')
7990         man1ext='0'
7991         ;;
7992 *)
7993         rp="What suffix should be used for the main $spackage man pages?"
7994         case "$man1ext" in
7995         '')     case "$man1dir" in
7996                 *1)  dflt=1 ;;
7997                 *1p) dflt=1p ;;
7998                 *1pm) dflt=1pm ;;
7999                 *l) dflt=l;;
8000                 *n) dflt=n;;
8001                 *o) dflt=o;;
8002                 *p) dflt=p;;
8003                 *C) dflt=C;;
8004                 *L) dflt=L;;
8005                 *L1) dflt=L1;;
8006                 *) dflt=1;;
8007                 esac
8008                 ;;
8009         *)      dflt="$man1ext";;
8010         esac
8011         . ./myread
8012         man1ext="$ans"
8013         ;;
8014 esac
8015
8016 : see if we can have long filenames
8017 echo " "
8018 first=123456789abcdef
8019 $rm -f $first
8020 if (echo hi >$first) 2>/dev/null; then
8021         if $test -f 123456789abcde; then
8022                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
8023                 val="$undef"
8024         else
8025                 echo 'You can have filenames longer than 14 characters.'>&4
8026                 val="$define"
8027         fi
8028 else
8029         $cat <<'EOM'
8030 You can't have filenames longer than 14 chars.
8031 You can't even think about them!
8032 EOM
8033         val="$undef"
8034 fi 
8035 set d_flexfnam
8036 eval $setvar
8037 $rm -rf 123456789abcde*
8038
8039 : determine where library module manual pages go
8040 set man3dir man3dir none
8041 eval $prefixit
8042 $cat <<EOM
8043
8044 $spackage has manual pages for many of the library modules.
8045 EOM
8046
8047 case "$nroff" in
8048 nroff)
8049         $cat <<'EOM'
8050 However, you don't have nroff, so they're probably useless to you.
8051 EOM
8052         case "$man3dir" in
8053         '') man3dir="none";;
8054         esac;;
8055 esac
8056
8057 case "$d_flexfnam" in
8058 undef)
8059         $cat <<'EOM'
8060 However, your system can't handle the long file names like File::Basename.3. 
8061 EOM
8062         case "$man3dir" in
8063         '') man3dir="none";;
8064         esac;;
8065 esac
8066
8067 echo "If you don't want the manual sources installed, answer 'none'."
8068 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8069 case "$man3dir" in
8070 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8071         if $test -d "$privlib/man/man3"; then
8072                 cat <<EOM >&4
8073
8074 WARNING:  Previous versions of perl installed man3 pages into
8075 $privlib/man/man3.  This version will suggest a 
8076 new default of $dflt.  
8077 EOM
8078                 tdflt=$dflt
8079                 dflt='n'
8080                 rp='Do you wish to preserve the old behavior?(y/n)'
8081                 . ./myread
8082                 case "$ans" in
8083                 y*) dflt="$privlib/man/man3" ;;
8084                 *)  dflt=$tdflt ;;
8085                 esac
8086     fi
8087         ;;
8088 *)      dflt="$man3dir" ;;
8089 esac
8090 case "$dflt" in
8091 ' ') dflt=none ;;
8092 esac
8093 echo " "
8094 fn=dn+~
8095 rp="Where do the $package library man pages (source) go?"
8096 . ./getfile
8097 man3dir="$ans"
8098 man3direxp="$ansexp"
8099 case "$man3dir" in
8100 '')     man3dir=' '
8101         installman3dir='';;
8102 esac
8103
8104 : Change installation prefix, if necessary.
8105 if $test X"$prefix" != X"$installprefix"; then
8106         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
8107 else
8108         installman3dir="$man3direxp"
8109 fi
8110
8111 : What suffix to use on installed man pages
8112 case "$man3dir" in
8113 ' ')
8114         man3ext='0'
8115         ;;
8116 *)
8117         rp="What suffix should be used for the $package library man pages?"
8118         case "$man3ext" in
8119         '')     case "$man3dir" in
8120                 *3)  dflt=3 ;;
8121                 *3p) dflt=3p ;;
8122                 *3pm) dflt=3pm ;;
8123                 *l) dflt=l;;
8124                 *n) dflt=n;;
8125                 *o) dflt=o;;
8126                 *p) dflt=p;;
8127                 *C) dflt=C;;
8128                 *L) dflt=L;;
8129                 *L3) dflt=L3;;
8130                 *) dflt=3;;
8131                 esac
8132                 ;;
8133         *)      dflt="$man3ext";;
8134         esac
8135         . ./myread
8136         man3ext="$ans"
8137         ;;
8138 esac
8139
8140 : see if we have to deal with yellow pages, now NIS.
8141 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8142         if $test -f /usr/etc/nibindd; then
8143                 echo " "
8144                 echo "I'm fairly confident you're on a NeXT."
8145                 echo " "
8146                 rp='Do you get the hosts file via NetInfo?'
8147                 dflt=y
8148                 case "$hostcat" in
8149                 nidump*) ;;
8150                 '') ;;
8151                 *) dflt=n;;
8152                 esac
8153                 . ./myread
8154                 case "$ans" in
8155                 y*) hostcat='nidump hosts .';;
8156                 *)      case "$hostcat" in
8157                         nidump*) hostcat='';;
8158                         esac
8159                         ;;
8160                 esac
8161         fi
8162         case "$hostcat" in
8163         nidump*) ;;
8164         *)
8165                 case "$hostcat" in
8166                 *ypcat*) dflt=y;;
8167                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8168                                 dflt=y
8169                         else
8170                                 dflt=n
8171                         fi;;
8172                 *) dflt=n;;
8173                 esac
8174                 echo " "
8175                 rp='Are you getting the hosts file via yellow pages?'
8176                 . ./myread
8177                 case "$ans" in
8178                 y*) hostcat='ypcat hosts';;
8179                 *) hostcat='cat /etc/hosts';;
8180                 esac
8181                 ;;
8182         esac
8183 fi
8184 case "$hostcat" in
8185 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8186 esac
8187 case "$groupcat" in
8188 '') test -f /etc/group && groupcat='cat /etc/group';;
8189 esac
8190 case "$passcat" in
8191 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8192 esac
8193
8194 : now get the host name
8195 echo " "
8196 echo "Figuring out host name..." >&4
8197 case "$myhostname" in
8198 '') cont=true
8199         echo 'Maybe "hostname" will work...'
8200         if tans=`sh -c hostname 2>&1` ; then
8201                 myhostname=$tans
8202                 phostname=hostname
8203                 cont=''
8204         fi
8205         ;;
8206 *) cont='';;
8207 esac
8208 if $test "$cont"; then
8209         if ./xenix; then
8210                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8211                 if tans=`cat /etc/systemid 2>&1` ; then
8212                         myhostname=$tans
8213                         phostname='cat /etc/systemid'
8214                         echo "Whadyaknow.  Xenix always was a bit strange..."
8215                         cont=''
8216                 fi
8217         elif $test -r /etc/systemid; then
8218                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8219         fi
8220 fi
8221 if $test "$cont"; then
8222         echo 'No, maybe "uuname -l" will work...'
8223         if tans=`sh -c 'uuname -l' 2>&1` ; then
8224                 myhostname=$tans
8225                 phostname='uuname -l'
8226         else
8227                 echo 'Strange.  Maybe "uname -n" will work...'
8228                 if tans=`sh -c 'uname -n' 2>&1` ; then
8229                         myhostname=$tans
8230                         phostname='uname -n'
8231                 else
8232                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8233                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8234                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8235                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8236                         else
8237                                 case "$myhostname" in
8238                                 '') echo "Does this machine have an identity crisis or something?"
8239                                         phostname='';;
8240                                 *)
8241                                         echo "Well, you said $myhostname before..."
8242                                         phostname='echo $myhostname';;
8243                                 esac
8244                         fi
8245                 fi
8246         fi
8247 fi
8248 case "$myhostname" in
8249 '') myhostname=noname ;;
8250 esac
8251 : you do not want to know about this
8252 set $myhostname
8253 myhostname=$1
8254
8255 : verify guess
8256 if $test "$myhostname" ; then
8257         dflt=y
8258         rp='Your host name appears to be "'$myhostname'".'" Right?"
8259         . ./myread
8260         case "$ans" in
8261         y*) ;;
8262         *) myhostname='';;
8263         esac
8264 fi
8265
8266 : bad guess or no guess
8267 while $test "X$myhostname" = X ; do
8268         dflt=''
8269         rp="Please type the (one word) name of your host:"
8270         . ./myread
8271         myhostname="$ans"
8272 done
8273
8274 : translate upper to lower if necessary
8275 case "$myhostname" in
8276 *[A-Z]*)
8277         echo "(Normalizing case in your host name)"
8278         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8279         ;;
8280 esac
8281
8282 case "$myhostname" in
8283 *.*)
8284         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8285         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8286         echo "(Trimming domain name from host name--host name is now $myhostname)"
8287         ;;
8288 *) case "$mydomain" in
8289         '')
8290                 {
8291                         test "X$hostcat" = "Xypcat hosts" &&
8292                         ypmatch "$myhostname" hosts 2>/dev/null |\
8293                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8294                         $test -s hosts
8295                 } || {
8296                         test "X$hostcat" != "X" &&
8297                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8298                                         /[       ]$myhostname[  . ]/p" > hosts
8299                 }
8300                 tmp_re="[       . ]"
8301                 if $test -f hosts; then
8302                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8303                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8304                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8305                                 hosts | $sort | $uniq | \
8306                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8307                         case `$echo X$dflt` in
8308                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8309                                 dflt=.
8310                                 ;;
8311                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8312                                 ;;
8313                         esac
8314                 else
8315                         echo "(I cannot locate a hosts database anywhere)"
8316                         dflt=.
8317                 fi
8318                 case "$dflt" in
8319                 .)
8320                         tans=`./loc resolv.conf X /etc /usr/etc`
8321                         if $test -f "$tans"; then
8322                                 echo "(Attempting domain name extraction from $tans)"
8323                                 dflt=.`$sed -n -e 's/   / /g' \
8324                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8325                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8326                                 case "$dflt" in
8327                                 .) dflt=.`$sed -n -e 's/        / /g' \
8328                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8329                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8330                                         ;;
8331                                 esac
8332                         fi
8333                         ;;
8334                 esac
8335                 case "$dflt" in
8336                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8337                         dflt=.`sh -c domainname 2>/dev/null`
8338                         case "$dflt" in
8339                         '') dflt='.';;
8340                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8341                         esac
8342                         ;;
8343                 esac
8344                 case "$dflt$osname" in
8345                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8346                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8347                         ;;
8348                 esac
8349                 case "$dflt" in
8350                 .) echo "(Lost all hope -- silly guess then)"
8351                         dflt='.nonet'
8352                         ;;
8353                 esac
8354                 $rm -f hosts
8355                 ;;
8356         *) dflt="$mydomain";;
8357         esac;;
8358 esac
8359 echo " "
8360 rp="What is your domain name?"
8361 . ./myread
8362 tans="$ans"
8363 case "$ans" in
8364 '') ;;
8365 .*) ;;
8366 *) tans=".$tans";;
8367 esac
8368 mydomain="$tans"
8369
8370 : translate upper to lower if necessary
8371 case "$mydomain" in
8372 *[A-Z]*)
8373         echo "(Normalizing case in your domain name)"
8374         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8375         ;;
8376 esac
8377
8378 : a little sanity check here
8379 case "$phostname" in
8380 '') ;;
8381 *)
8382         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8383         $myhostname$mydomain|$myhostname) ;;
8384         *)
8385                 case "$phostname" in
8386                 sed*)
8387                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8388                         ;;
8389                 *)
8390                         echo "(That doesn't agree with your $phostname command, by the way.)"
8391                         ;;
8392                 esac
8393         ;;
8394         esac
8395         ;;
8396 esac
8397
8398 $cat <<EOM
8399
8400 I need to get your e-mail address in Internet format if possible, i.e.
8401 something like user@host.domain. Please answer accurately since I have
8402 no easy means to double check it. The default value provided below
8403 is most probably close to reality but may not be valid from outside
8404 your organization...
8405
8406 EOM
8407 cont=x
8408 while test "$cont"; do
8409         case "$cf_email" in
8410         '') dflt="$cf_by@$myhostname$mydomain";;
8411         *) dflt="$cf_email";;
8412         esac
8413         rp='What is your e-mail address?'
8414         . ./myread
8415         cf_email="$ans"
8416         case "$cf_email" in
8417         *@*.*) cont='' ;;
8418         *)
8419                 rp='Address does not look like an Internet one.  Use it anyway?'
8420                 case "$fastread" in
8421                 yes) dflt=y ;;
8422                 *) dflt=n ;;
8423                 esac
8424                 . ./myread
8425                 case "$ans" in
8426                 y*) cont='' ;;
8427                 *) echo " " ;;
8428                 esac
8429                 ;;
8430         esac
8431 done
8432
8433 $cat <<EOM
8434
8435 If you or somebody else will be maintaining perl at your site, please
8436 fill in the correct e-mail address here so that they may be contacted
8437 if necessary. Currently, the "perlbug" program included with perl
8438 will send mail to this address in addition to perlbug@perl.org. You may
8439 enter "none" for no administrator.
8440
8441 EOM
8442 case "$perladmin" in
8443 '') dflt="$cf_email";;
8444 *) dflt="$perladmin";;
8445 esac
8446 rp='Perl administrator e-mail address'
8447 . ./myread
8448 perladmin="$ans"
8449
8450 : determine whether to only install version-specific parts.
8451 echo " "
8452 $cat <<EOM
8453 Do you want to install only the version-specific parts of the perl
8454 distribution?  Usually you do *not* want to do this.
8455 EOM
8456 case "$versiononly" in
8457 "$define"|[Yy]*|true) dflt='y' ;;
8458 *) dflt='n';
8459 esac
8460 rp="Do you want to install only the version-specific parts of perl?"
8461 . ./myread
8462 case "$ans" in
8463 [yY]*)  val="$define";;
8464 *)      val="$undef" ;;
8465 esac
8466 set versiononly
8467 eval $setvar
8468
8469 case "$versiononly" in
8470 "$define") inc_version_list=''
8471            inc_version_list_init=0
8472            ;;
8473 esac
8474
8475 : figure out how to guarantee perl startup
8476 case "$startperl" in
8477 '')
8478         case "$sharpbang" in
8479         *!)
8480                 $cat <<EOH
8481
8482 I can use the #! construct to start perl on your system. This will
8483 make startup of perl scripts faster, but may cause problems if you
8484 want to share those scripts and perl is not in a standard place
8485 ($binexp/perl) on all your platforms. The alternative is to force
8486 a shell by starting the script with a single ':' character.
8487
8488 EOH
8489                 case "$versiononly" in
8490                 "$define")      dflt="$binexp/perl$version";;  
8491                 *)              dflt="$binexp/perl";;
8492                 esac
8493                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8494                 . ./myread
8495                 case "$ans" in
8496                 none)   startperl=": # use perl";;
8497                 *)      startperl="#!$ans"
8498                         if $test 30 -lt `echo "$ans" | wc -c`; then
8499                                 $cat >&4 <<EOM
8500
8501 WARNING:  Some systems limit the #! command to 32 characters.
8502 If you experience difficulty running Perl scripts with #!, try
8503 installing Perl in a directory with a shorter pathname.
8504
8505 EOM
8506                         fi ;;
8507                 esac
8508                 ;;
8509         *) startperl=": # use perl"
8510                 ;;
8511         esac
8512         ;;
8513 esac
8514 echo "I'll use $startperl to start perl scripts."
8515
8516 : figure best path for perl in scripts
8517 case "$perlpath" in
8518 '')
8519         case "$versiononly" in
8520         "$define")      perlpath="$binexp/perl$version";;
8521         *)              perlpath="$binexp/perl";;
8522         esac
8523         case "$startperl" in
8524         *!*) ;;
8525         *)
8526                 $cat <<EOH
8527
8528 I will use the "eval 'exec'" idiom to start Perl on your system.
8529 I can use the full path of your Perl binary for this purpose, but
8530 doing so may cause problems if you want to share those scripts and
8531 Perl is not always in a standard place ($binexp/perl).
8532
8533 EOH
8534                 dflt="$binexp/perl"
8535                 rp="What path shall I use in \"eval 'exec'\"?"
8536                 . ./myread
8537                 perlpath="$ans"
8538                 ;;
8539         esac
8540         ;;
8541 esac
8542 case "$startperl" in
8543 *!*)    ;;
8544 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8545 esac
8546
8547 : determine where public executable scripts go
8548 set scriptdir scriptdir
8549 eval $prefixit
8550 case "$scriptdir" in
8551 '')
8552         dflt="$bin"
8553         : guess some guesses
8554         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8555         $test -d /usr/share/bin     && dflt=/usr/share/bin
8556         $test -d /usr/local/script  && dflt=/usr/local/script
8557         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8558         $test -d $prefixexp/script  && dflt=$prefixexp/script
8559         set dflt
8560         eval $prefixup
8561         ;;
8562 *)  dflt="$scriptdir"
8563         ;;
8564 esac
8565 $cat <<EOM
8566  
8567 Some installations have a separate directory just for executable scripts so
8568 that they can mount it across multiple architectures but keep the scripts in
8569 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8570 Or you might just lump your scripts in with all your other executables.
8571  
8572 EOM
8573 fn=d~
8574 rp='Where do you keep publicly executable scripts?'
8575 . ./getfile
8576 if $test "X$ansexp" != "X$scriptdirexp"; then
8577         installscript=''
8578 fi
8579 scriptdir="$ans"
8580 scriptdirexp="$ansexp"
8581 : Change installation prefix, if necessary.
8582 if $test X"$prefix" != X"$installprefix"; then
8583         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
8584 else
8585         installscript="$scriptdirexp"
8586 fi
8587
8588 : determine where add-on public executables go
8589 case "$sitebin" in
8590 '')     dflt=$siteprefix/bin ;;
8591 *)      dflt=$sitebin ;;
8592 esac
8593 fn=d~
8594 rp='Pathname where the add-on public executables should be installed?'
8595 . ./getfile
8596 sitebin="$ans"
8597 sitebinexp="$ansexp"
8598 : Change installation prefix, if necessary.
8599 if $test X"$prefix" != X"$installprefix"; then
8600         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
8601 else
8602         installsitebin="$sitebinexp"
8603 fi
8604
8605 : determine where add-on html pages go
8606 : There is no standard location, so try to copy the previously-selected
8607 : directory structure for the core html pages.
8608 case "$sitehtml1dir" in
8609 '')    dflt=`echo "$html1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8610 *)     dflt=$sitehtml1dir ;;
8611 esac
8612 case "$dflt" in
8613 ''|' ') dflt=none ;;
8614 esac
8615 fn=dn+~
8616 rp='Pathname where the site-specific html pages should be installed?'
8617 . ./getfile
8618 sitehtml1dir="$ans"
8619 sitehtml1direxp="$ansexp"
8620 : Change installation prefix, if necessary.
8621 if $test X"$prefix" != X"$installprefix"; then
8622         installsitehtml1dir=`echo $sitehtml1direxp | $sed "s#^$prefix#$installprefix#"`
8623 else
8624         installsitehtml1dir="$sitehtml1direxp"
8625 fi
8626
8627 : determine where add-on library html pages go
8628 : There is no standard location, so try to copy the previously-selected
8629 : directory structure for the core html pages.
8630 case "$sitehtml3dir" in
8631 '')    dflt=`echo "$html3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8632 *)     dflt=$sitehtml3dir ;;
8633 esac
8634 case "$dflt" in
8635 ''|' ') dflt=none ;;
8636 esac
8637 fn=dn+~
8638 rp='Pathname where the site-specific library html pages should be installed?'
8639 . ./getfile
8640 sitehtml3dir="$ans"
8641 sitehtml3direxp="$ansexp"
8642 : Change installation prefix, if necessary.
8643 if $test X"$prefix" != X"$installprefix"; then
8644         installsitehtml3dir=`echo $sitehtml3direxp | $sed "s#^$prefix#$installprefix#"`
8645 else
8646         installsitehtml3dir="$sitehtml3direxp"
8647 fi
8648
8649 : determine where add-on manual pages go
8650 case "$siteman1dir" in
8651 '')     dflt=`echo $man1dir | $sed "s#^$prefix#$siteprefix#"` ;;
8652 *)      dflt=$siteman1dir ;;
8653 esac
8654 case "$dflt" in
8655 ''|' ') dflt=none ;;
8656 esac
8657 fn=dn+~
8658 rp='Pathname where the site-specific manual pages should be installed?'
8659 . ./getfile
8660 siteman1dir="$ans"
8661 siteman1direxp="$ansexp"
8662 : Change installation prefix, if necessary.
8663 if $test X"$prefix" != X"$installprefix"; then
8664         installsiteman1dir=`echo $siteman1direxp | $sed "s#^$prefix#$installprefix#"`
8665 else
8666         installsiteman1dir="$siteman1direxp"
8667 fi
8668
8669 : determine where add-on library man pages go
8670 case "$siteman3dir" in
8671 '')     dflt=`echo $man3dir | $sed "s#^$prefix#$siteprefix#"` ;;
8672 *)      dflt=$siteman3dir ;;
8673 esac
8674 case "$dflt" in
8675 ''|' ') dflt=none ;;
8676 esac
8677 fn=dn+~
8678 rp='Pathname where the site-specific library manual pages should be installed?'
8679 . ./getfile
8680 siteman3dir="$ans"
8681 siteman3direxp="$ansexp"
8682 : Change installation prefix, if necessary.
8683 if $test X"$prefix" != X"$installprefix"; then
8684         installsiteman3dir=`echo $siteman3direxp | $sed "s#^$prefix#$installprefix#"`
8685 else
8686         installsiteman3dir="$siteman3direxp"
8687 fi
8688
8689 : determine where add-on public executable scripts go
8690 case "$sitescript" in
8691 '')     dflt=$siteprefix/script
8692         $test -d $dflt || dflt=$sitebin ;;
8693 *)  dflt="$sitescript" ;;
8694 esac
8695 fn=d~+
8696 rp='Pathname where add-on public executable scripts should be installed?'
8697 . ./getfile
8698 sitescript="$ans"
8699 sitescriptexp="$ansexp"
8700 : Change installation prefix, if necessary.
8701 if $test X"$prefix" != X"$installprefix"; then
8702         installsitescript=`echo $sitescriptexp | sed "s#^$prefix#$installprefix#"`
8703 else
8704         installsitescript="$sitescriptexp"
8705 fi
8706
8707 case "$usefaststdio" in
8708 $define|true|[yY]*|'')
8709         xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
8710         case "$xversion" in
8711         [68])   dflt='y' ;;
8712         *)      dflt='n' ;;
8713         esac
8714         ;;
8715 *) dflt='n';;
8716 esac
8717 cat <<EOM
8718
8719 Perl can be built to use 'fast stdio', which means using the stdio
8720 library but also directly manipulating the stdio buffers to enable
8721 faster I/O.  Using stdio is better for backward compatibility (especially
8722 for Perl extensions), but on the other hand since Perl 5.8 the 'perlio'
8723 interface has been preferred instead of stdio.
8724
8725 If this doesn't make any sense to you, just accept the default '$dflt'.
8726 EOM
8727 rp='Use the "fast stdio" if available?'
8728 . ./myread
8729 case "$ans" in
8730 y|Y)    val="$define" ;;     
8731 *)      val="$undef" ;;
8732 esac
8733 set usefaststdio
8734 eval $setvar
8735
8736
8737 : define an is-a-typedef? function
8738 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8739 case "$inclist" in
8740 "") inclist="sys/types.h";;
8741 esac;
8742 eval "varval=\$$var";
8743 case "$varval" in
8744 "")
8745         $rm -f temp.c;
8746         for inc in $inclist; do
8747                 echo "#include <$inc>" >>temp.c;
8748         done;
8749         echo "#ifdef $type" >> temp.c;
8750         echo "printf(\"We have $type\");" >> temp.c;
8751         echo "#endif" >> temp.c;
8752         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8753         if $contains $type temp.E >/dev/null 2>&1; then
8754                 eval "$var=\$type";
8755         else
8756                 eval "$var=\$def";
8757         fi;
8758         $rm -f temp.?;;
8759 *) eval "$var=\$varval";;
8760 esac'
8761
8762 : define an is-a-typedef? function that prompts if the type is not available.
8763 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8764 case "$inclist" in
8765 "") inclist="sys/types.h";;
8766 esac;
8767 eval "varval=\$$var";
8768 case "$varval" in
8769 "")
8770         $rm -f temp.c;
8771         for inc in $inclist; do
8772                 echo "#include <$inc>" >>temp.c;
8773         done;
8774         echo "#ifdef $type" >> temp.c;
8775         echo "printf(\"We have $type\");" >> temp.c;
8776         echo "#endif" >> temp.c;
8777         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8778         echo " " ;
8779         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8780         if $contains $type temp.E >/dev/null 2>&1; then
8781                 echo "$type found." >&4;
8782                 eval "$var=\$type";
8783         else
8784                 echo "$type NOT found." >&4;
8785                 dflt="$def";
8786                 . ./myread ;
8787                 eval "$var=\$ans";
8788         fi;
8789         $rm -f temp.?;;
8790 *) eval "$var=\$varval";;
8791 esac'
8792
8793 : see what type lseek is declared as in the kernel
8794 rp="What is the type used for lseek's offset on this system?"
8795 set off_t lseektype long stdio.h sys/types.h
8796 eval $typedef_ask
8797
8798 echo " "
8799 echo "Checking to see how big your file offsets are..." >&4
8800 $cat >try.c <<EOCP
8801 #include <sys/types.h>
8802 #include <stdio.h>
8803 int main()
8804 {
8805     printf("%d\n", (int)sizeof($lseektype));
8806     return(0); 
8807 }
8808 EOCP
8809 set try
8810 if eval $compile_ok; then
8811         lseeksize=`$run ./try`
8812         echo "Your file offsets are $lseeksize bytes long."
8813 else
8814         dflt=$longsize
8815         echo " "
8816         echo "(I can't seem to compile the test program.  Guessing...)"
8817         rp="What is the size of your file offsets (in bytes)?"
8818         . ./myread
8819         lseeksize="$ans"
8820 fi
8821 $rm -f try.c try
8822
8823 : see what type file positions are declared as in the library
8824 rp="What is the type for file position used by fsetpos()?"
8825 set fpos_t fpostype long stdio.h sys/types.h
8826 eval $typedef_ask
8827
8828 echo " "
8829 case "$fpostype" in
8830 *_t) zzz="$fpostype"    ;;
8831 *)   zzz="fpos_t"       ;;
8832 esac
8833 echo "Checking the size of $zzz..." >&4 
8834 cat > try.c <<EOCP
8835 #include <sys/types.h>
8836 #include <stdio.h>
8837 #$i_stdlib I_STDLIB
8838 #ifdef I_STDLIB
8839 #include <stdlib.h>
8840 #endif
8841 int main() {
8842     printf("%d\n", (int)sizeof($fpostype));
8843     exit(0);
8844 }
8845 EOCP
8846 set try
8847 if eval $compile_ok; then
8848         yyy=`$run ./try`
8849         case "$yyy" in
8850         '')     fpossize=4
8851                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8852                 ;;
8853         *)      fpossize=$yyy
8854                 echo "Your $zzz is $fpossize bytes long."
8855                 ;;
8856         esac
8857 else
8858         dflt="$longsize"
8859         echo " " >&4
8860         echo "(I can't compile the test program.  Guessing...)" >&4
8861         rp="What is the size of your file positions (in bytes)?"
8862         . ./myread
8863         fpossize="$ans"
8864 fi
8865
8866 # Backward compatibility (uselfs is deprecated).
8867 case "$uselfs" in
8868 "$define"|true|[yY]*)
8869         cat <<EOM >&4
8870
8871 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
8872 EOM
8873         uselargefiles="$define"
8874         ;;
8875 esac                          
8876
8877 case "$lseeksize:$fpossize" in
8878 8:8) cat <<EOM
8879
8880 You can have files larger than 2 gigabytes.
8881 EOM
8882    val="$define" ;;
8883 *)    case "$uselargefiles" in
8884    "$undef"|false|[nN]*) dflt='n' ;;
8885    *)   dflt='y' ;;
8886    esac
8887    cat <<EOM
8888
8889 Perl can be built to understand large files (files larger than 2 gigabytes)
8890 on some systems.  To do so, Configure can be run with -Duselargefiles.
8891
8892 If this doesn't make any sense to you, just accept the default '$dflt'.
8893 EOM
8894    rp='Try to understand large files, if available?'
8895    . ./myread
8896    case "$ans" in
8897    y|Y)         val="$define" ;;
8898    *)           val="$undef"  ;;
8899    esac
8900    ;;
8901 esac
8902 set uselargefiles
8903 eval $setvar
8904 : Look for a hint-file generated 'call-back-unit'.  If the
8905 : user has specified that a large files perl is to be built,
8906 : we may need to set or change some other defaults.
8907 if $test -f uselargefiles.cbu; then
8908         echo "Your platform has some specific hints regarding large file builds, using them..."
8909         . ./uselargefiles.cbu
8910 fi
8911 case "$uselargefiles" in
8912 "$define")
8913         if $test -f uselargefiles.cbu; then
8914                 echo " "
8915                 echo "Rechecking to see how big your file offsets are..." >&4
8916                 $cat >try.c <<EOCP
8917 #include <sys/types.h>
8918 #include <stdio.h>
8919 int main()
8920 {
8921     printf("%d\n", (int)sizeof($lseektype));
8922     return(0); 
8923 }
8924 EOCP
8925                 set try
8926                 if eval $compile_ok; then
8927                         lseeksize=`$run ./try`
8928                         $echo "Your file offsets are now $lseeksize bytes long."
8929                 else
8930                         dflt="$lseeksize"
8931                         echo " "
8932                         echo "(I can't seem to compile the test program.  Guessing...)"
8933                         rp="What is the size of your file offsets (in bytes)?"
8934                         . ./myread
8935                         lseeksize="$ans"
8936                 fi
8937                 case "$fpostype" in
8938                 *_t) zzz="$fpostype"    ;;
8939                 *)   zzz="fpos_t"       ;;
8940                 esac
8941                 $echo $n "Rechecking the size of $zzz...$c" >&4 
8942                 $cat > try.c <<EOCP
8943 #include <sys/types.h>
8944 #include <stdio.h>
8945 #$i_stdlib I_STDLIB
8946 #ifdef I_STDLIB
8947 #include <stdlib.h>
8948 #endif
8949 int main() {
8950     printf("%d\n", (int)sizeof($fpostype));
8951     return(0);
8952 }
8953 EOCP
8954                 set try
8955                 if eval $compile_ok; then
8956                         yyy=`$run ./try`
8957                         dflt="$lseeksize"
8958                         case "$yyy" in
8959                         '')     echo " "
8960                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8961                                 ;;
8962                         *)      fpossize=$yyy
8963                                 echo " $fpossize bytes." >&4
8964                                 ;;
8965                         esac
8966                 else
8967                         dflt="$fpossize"
8968                         echo " "
8969                         echo "(I can't compile the test program.  Guessing...)" >&4
8970                         rp="What is the size of your file positions (in bytes)?"
8971                         . ./myread
8972                         fpossize="$ans"
8973                 fi
8974                 $rm -f try.c try
8975         fi
8976         ;;
8977 esac
8978
8979 case "$vendorprefix" in
8980 '')     d_vendorbin="$undef"
8981         vendorbin=''
8982         vendorbinexp=''
8983         ;;
8984 *)      d_vendorbin="$define"
8985         : determine where vendor-supplied executables go.
8986         case "$vendorbin" in
8987         '') dflt=$vendorprefix/bin ;;
8988         *)      dflt="$vendorbin" ;;
8989         esac
8990         fn=d~+
8991         rp='Pathname for the vendor-supplied executables directory?'
8992         . ./getfile
8993         vendorbin="$ans"
8994         vendorbinexp="$ansexp"
8995         ;;
8996 esac
8997 : Change installation prefix, if necessary.
8998 if $test X"$prefix" != X"$installprefix"; then
8999         installvendorbin=`echo $vendorbinexp | $sed "s#^$prefix#$installprefix#"`
9000 else
9001         installvendorbin="$vendorbinexp"
9002 fi
9003
9004 case "$vendorprefix" in
9005 '')     vendorhtml1dir=''
9006         vendorhtml1direxp=''
9007         ;;
9008 *)      : determine where vendor-supplied html pages go.
9009         : There is no standard location, so try to copy the previously-selected
9010         : directory structure for the core html pages.
9011         : XXX Better default suggestions would be welcome.
9012         case "$vendorhtml1dir" in
9013         '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9014         *)      dflt=$vendorhtml1dir ;;
9015         esac
9016         case "$dflt" in
9017         ''|' ') dflt=none ;;
9018         esac
9019         fn=dn+~
9020         rp='Pathname for the vendor-supplied html pages?'
9021         . ./getfile
9022         vendorhtml1dir="$ans"
9023         vendorhtml1direxp="$ansexp"
9024         ;;
9025 esac
9026 : Use ' ' for none so value is preserved next time through Configure
9027 $test X"$vendorhtml1dir" = "X" && vendorhtml1dir=' '
9028 : Change installation prefix, if necessary.
9029 if $test X"$prefix" != X"$installprefix"; then
9030         installvendorhtml1dir=`echo $vendorhtml1direxp | $sed "s#^$prefix#$installprefix#"`
9031 else
9032         installvendorhtml1dir="$vendorhtml1direxp"
9033 fi
9034
9035 case "$vendorprefix" in
9036 '')     vendorhtml3dir=''
9037         vendorhtml3direxp=''
9038         ;;
9039 *)      : determine where vendor-supplied module html pages go.
9040         : There is no standard location, so try to copy the previously-selected
9041         : directory structure for the core html pages.
9042         : XXX Better default suggestions would be welcome.
9043         case "$vendorhtml3dir" in
9044         '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9045         *)      dflt=$vendorhtml3dir ;;
9046         esac
9047         case "$dflt" in
9048         ''|' ') dflt=none ;;
9049         esac
9050         fn=dn+~
9051         rp='Pathname for the vendor-supplied html pages?'
9052         . ./getfile
9053         vendorhtml3dir="$ans"
9054         vendorhtml3direxp="$ansexp"
9055         ;;
9056 esac
9057 : Use ' ' for none so value is preserved next time through Configure
9058 $test X"$vendorhtml3dir" = "X" && vendorhtml3dir=' '
9059 : Change installation prefix, if necessary.
9060 if $test X"$prefix" != X"$installprefix"; then
9061         installvendorhtml3dir=`echo $vendorhtml3direxp | $sed "s#^$prefix#$installprefix#"`
9062 else
9063         installvendorhtml3dir="$vendorhtml3direxp"
9064 fi
9065
9066 case "$vendorprefix" in
9067 '')     vendorman1dir=''
9068         vendorman1direxp=''
9069         ;;
9070 *)      : determine where vendor-supplied manual pages go.
9071         case "$vendorman1dir" in
9072         '') dflt=`echo "$man1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9073         *)      dflt=$vendorman1dir ;;
9074         esac
9075         case "$dflt" in
9076         ''|' ') dflt=none ;;
9077         esac
9078         fn=nd~+
9079         rp='Pathname for the vendor-supplied manual section 1 pages?'
9080         . ./getfile
9081         vendorman1dir="$ans"
9082         vendorman1direxp="$ansexp"
9083         ;;
9084 esac
9085 : Use ' ' for none so value is preserved next time through Configure
9086 $test X"$vendorman1dir" = "X" && vendorman1dir=' '
9087 : Change installation prefix, if necessary.
9088 if $test X"$prefix" != X"$installprefix"; then
9089         installvendorman1dir=`echo "$vendorman1direxp" | $sed "s#^$prefix#$installprefix#"`
9090 else
9091         installvendorman1dir="$vendorman1direxp"
9092 fi
9093
9094 case "$vendorprefix" in
9095 '')     vendorman3dir=''
9096         vendorman3direxp=''
9097         ;;
9098 *)      : determine where vendor-supplied module manual pages go.
9099         case "$vendorman3dir" in
9100         '') dflt=`echo "$man3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9101         *)      dflt=$vendorman3dir ;;
9102         esac
9103         case "$dflt" in
9104         ''|' ') dflt=none ;;
9105         esac
9106         fn=nd~+
9107         rp='Pathname for the vendor-supplied manual section 3 pages?'
9108         . ./getfile
9109         vendorman3dir="$ans"
9110         vendorman3direxp="$ansexp"
9111         ;;
9112 esac
9113 : Use ' ' for none so value is preserved next time through Configure
9114 $test X"$vendorman3dir" = "X" && vendorman3dir=' '
9115 : Change installation prefix, if necessary.
9116 if $test X"$prefix" != X"$installprefix"; then
9117         installvendorman3dir=`echo "$vendorman3direxp" | $sed "s#^$prefix#$installprefix#"`
9118 else
9119         installvendorman3dir="$vendorman3direxp"
9120 fi
9121
9122 case "$vendorprefix" in
9123 '')     d_vendorscript="$undef"
9124         vendorscript=''
9125         vendorscriptexp=''
9126         ;;
9127 *)      d_vendorscript="$define"
9128         : determine where vendor-supplied scripts go.
9129         case "$vendorscript" in
9130         '')     dflt=$vendorprefix/script
9131                 $test -d $dflt || dflt=$vendorbin ;;
9132         *)  dflt="$vendorscript" ;;
9133         esac
9134         $cat <<EOM
9135
9136 The installation process will create a directory for 
9137 vendor-supplied scripts.
9138
9139 EOM
9140         fn=d~+
9141         rp='Pathname for the vendor-supplied scripts directory?'
9142         . ./getfile
9143         vendorscript="$ans"
9144         vendorscriptexp="$ansexp"
9145         ;;
9146 esac
9147 : Change installation prefix, if necessary.
9148 if $test X"$prefix" != X"$installprefix"; then
9149         installvendorscript=`echo $vendorscriptexp | $sed "s#^$prefix#$installprefix#"`
9150 else
9151         installvendorscript="$vendorscriptexp"
9152 fi
9153
9154 : see if qgcvt exists
9155 set qgcvt d_qgcvt
9156 eval $inlibc
9157
9158 echo " "
9159
9160 if $test X"$d_longdbl" = X"$define"; then
9161
9162 echo "Checking how to print long doubles..." >&4
9163
9164 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
9165         $cat >try.c <<'EOCP'
9166 #include <sys/types.h>
9167 #include <stdio.h>
9168 int main() {
9169   double d = 123.456;
9170   printf("%.3f\n", d);
9171 }
9172 EOCP
9173         set try
9174         if eval $compile; then
9175                 yyy=`$run ./try`
9176                 case "$yyy" in
9177                 123.456)
9178                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
9179                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
9180                         echo "We will use %f."
9181                         ;;
9182                 esac
9183         fi
9184 fi
9185
9186 if $test X"$sPRIfldbl" = X; then
9187         $cat >try.c <<'EOCP'
9188 #include <sys/types.h>
9189 #include <stdio.h>
9190 int main() {
9191   long double d = 123.456;
9192   printf("%.3Lf\n", d);
9193 }
9194 EOCP
9195         set try
9196         if eval $compile; then
9197                 yyy=`$run ./try`
9198                 case "$yyy" in
9199                 123.456)
9200                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
9201                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
9202                         echo "We will use %Lf."
9203                         ;;
9204                 esac
9205         fi
9206 fi
9207
9208 if $test X"$sPRIfldbl" = X; then
9209         $cat >try.c <<'EOCP'
9210 #include <sys/types.h>
9211 #include <stdio.h>
9212 int main() {
9213   long double d = 123.456;
9214   printf("%.3llf\n", d);
9215 }
9216 EOCP
9217         set try
9218         if eval $compile; then
9219                 yyy=`$run ./try`
9220                 case "$yyy" in
9221                 123.456)
9222                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
9223                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
9224                         echo "We will use %llf."
9225                         ;;
9226                 esac
9227         fi
9228 fi
9229
9230 if $test X"$sPRIfldbl" = X; then
9231         $cat >try.c <<'EOCP'
9232 #include <sys/types.h>
9233 #include <stdio.h>
9234 int main() {
9235   long double d = 123.456;
9236   printf("%.3lf\n", d);
9237 }
9238 EOCP
9239         set try
9240         if eval $compile; then
9241                 yyy=`$run ./try`
9242                 case "$yyy" in
9243                 123.456)
9244                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
9245                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
9246                         echo "We will use %lf."
9247                         ;;
9248                 esac
9249         fi
9250 fi
9251
9252 if $test X"$sPRIfldbl" = X; then
9253         echo "Cannot figure out how to print long doubles." >&4
9254 else
9255         sSCNfldbl=$sPRIfldbl    # expect consistency
9256 fi
9257
9258 $rm -f try try.*
9259
9260 fi # d_longdbl
9261
9262 case "$sPRIfldbl" in
9263 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
9264         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
9265         d_SCNfldbl="$undef";
9266         ;;
9267 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
9268         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
9269         d_SCNfldbl="$define";
9270         ;;
9271 esac
9272
9273 : Check how to convert floats to strings.
9274
9275 if test "X$d_Gconvert" = X; then
9276
9277 echo " "
9278 echo "Checking for an efficient way to convert floats to strings."
9279 echo " " > try.c
9280 case "$uselongdouble" in
9281 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
9282 esac
9283 case "$d_longdbl" in
9284 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
9285 esac
9286 case "$d_PRIgldbl" in
9287 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
9288 esac
9289 $cat >>try.c <<EOP
9290 #ifdef TRY_gconvert
9291 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
9292 char *myname = "gconvert";
9293 #endif
9294 #ifdef TRY_gcvt
9295 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
9296 char *myname = "gcvt";
9297 #endif
9298 #ifdef TRY_qgcvt
9299 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
9300 char *myname = "qgcvt";
9301 #define DOUBLETYPE long double
9302 #endif
9303 #ifdef TRY_sprintf
9304 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9305 #ifdef HAS_PRIgldbl
9306 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
9307 #else
9308 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
9309 #endif
9310 #else
9311 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
9312 #endif
9313 char *myname = "sprintf";
9314 #endif
9315
9316 #ifndef DOUBLETYPE
9317 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9318 #define DOUBLETYPE long double
9319 #else
9320 #define DOUBLETYPE double
9321 #endif
9322 #endif
9323
9324 #include <stdio.h>
9325
9326 #define I_STDLIB $i_stdlib
9327 #ifdef I_STDLIB
9328 #include <stdlib.h>
9329 #endif
9330
9331 int
9332 checkit(expect, got)
9333 char *expect;
9334 char *got;
9335 {
9336     if (strcmp(expect, got)) {
9337                 printf("%s oddity:  Expected %s, got %s\n",
9338                         myname, expect, got);
9339                 exit(1);
9340         }
9341 }
9342
9343 int main()
9344
9345         char buf[64]; 
9346         buf[63] = '\0';
9347
9348         /* This must be 1st test on (which?) platform */
9349         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
9350         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
9351         checkit("0.1", buf);
9352
9353         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
9354         checkit("0.01", buf);
9355
9356         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
9357         checkit("0.001", buf);
9358
9359         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
9360         checkit("0.0001", buf);
9361
9362         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
9363         if (strlen(buf) > 5)
9364             checkit("9e-005", buf); /* for Microsoft ?? */
9365         else
9366             checkit("9e-05", buf);
9367
9368         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
9369         checkit("1", buf);
9370
9371         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
9372         checkit("1.1", buf);
9373
9374         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
9375         checkit("1.01", buf);
9376
9377         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
9378         checkit("1.001", buf);
9379
9380         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
9381         checkit("1.0001", buf);
9382
9383         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
9384         checkit("1.00001", buf);
9385
9386         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
9387         checkit("1.000001", buf);
9388
9389         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
9390         checkit("0", buf);
9391
9392         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
9393         checkit("-1", buf);
9394
9395         /* Some Linux gcvt's give 1.e+5 here. */
9396         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
9397         checkit("100000", buf);
9398         
9399         /* Some Linux gcvt's give -1.e+5 here. */
9400         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
9401         checkit("-100000", buf);
9402
9403         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
9404         checkit("123.456", buf);
9405
9406         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
9407         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
9408         /* 34 should be enough to scare even long double
9409          * places into using the e notation. */
9410         if (strlen(buf) > 5)
9411             checkit("1e+034", buf); /* for Microsoft */
9412         else
9413             checkit("1e+34", buf);
9414
9415         /* For Perl, if you add additional tests here, also add them to
9416          * t/base/num.t for benefit of platforms not using Configure or
9417          * overriding d_Gconvert */
9418
9419         exit(0);
9420 }
9421 EOP
9422 : first add preferred functions to our list
9423 xxx_list=""
9424 for xxx_convert in $gconvert_preference; do
9425     case $xxx_convert in
9426     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
9427     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
9428     esac 
9429 done
9430 : then add any others
9431 for xxx_convert in gconvert gcvt sprintf; do
9432     case "$xxx_list" in
9433     *$xxx_convert*) ;;
9434     *) xxx_list="$xxx_list $xxx_convert" ;;
9435     esac 
9436 done
9437
9438 case "$d_longdbl$uselongdouble" in
9439 "$define$define")
9440     : again, add prefered functions to our list first
9441     xxx_ld_list=""
9442     for xxx_convert in $gconvert_ld_preference; do
9443         case $xxx_convert in
9444         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9445         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9446         esac
9447     done
9448     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9449     for xxx_convert in qgcvt sprintf $xxx_list; do
9450         case "$xxx_ld_list" in
9451         $xxx_convert*|*" $xxx_convert"*) ;;
9452         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9453         esac
9454     done
9455     : if sprintf cannot do long doubles, move it to the end
9456     if test "$d_PRIgldbl" != "$define"; then
9457         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9458     fi
9459     : if no qgcvt, remove it
9460     if test "$d_qgcvt" != "$define"; then
9461         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9462     fi
9463     : use the ld_list
9464     xxx_list="$xxx_ld_list"
9465     ;;
9466 esac
9467
9468 for xxx_convert in $xxx_list; do
9469         echo "Trying $xxx_convert..."
9470         $rm -f try try$_o
9471         set try -DTRY_$xxx_convert
9472         if eval $compile; then
9473                 echo "$xxx_convert() found." >&4
9474                 if $run ./try; then
9475                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9476                         break;
9477                 else
9478                         echo "...But $xxx_convert didn't work as I expected."
9479                         xxx_convert=''
9480                 fi
9481         else
9482                 echo "$xxx_convert NOT found." >&4
9483         fi
9484 done
9485
9486 if test X$xxx_convert = X; then
9487     echo "*** WHOA THERE!!! ***" >&4
9488     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9489     xxx_convert=sprintf
9490 fi
9491
9492 case "$xxx_convert" in
9493 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9494 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9495 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9496 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9497    "$define$define$define")
9498       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9499    "$define$define$undef")
9500       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9501    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9502    esac
9503    ;;  
9504 esac
9505
9506 fi
9507
9508 : see if _fwalk exists
9509 set fwalk d__fwalk
9510 eval $inlibc
9511
9512 : Initialize h_fcntl
9513 h_fcntl=false
9514
9515 : Initialize h_sysfile
9516 h_sysfile=false
9517
9518 : access call always available on UNIX
9519 set access d_access
9520 eval $inlibc
9521
9522 : locate the flags for 'access()'
9523 case "$d_access" in
9524 "$define")
9525         echo " "
9526         $cat >access.c <<EOCP
9527 #include <sys/types.h>
9528 #ifdef I_FCNTL
9529 #include <fcntl.h>
9530 #endif
9531 #ifdef I_SYS_FILE
9532 #include <sys/file.h>
9533 #endif
9534 #ifdef I_UNISTD
9535 #include <unistd.h>
9536 #endif
9537 #$i_stdlib I_STDLIB
9538 #ifdef I_STDLIB
9539 #include <stdlib.h>
9540 #endif
9541 int main() {
9542         exit(R_OK);
9543 }
9544 EOCP
9545         : check sys/file.h first, no particular reason here
9546         if $test `./findhdr sys/file.h` && \
9547                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9548                 h_sysfile=true;
9549                 echo "<sys/file.h> defines the *_OK access constants." >&4
9550         elif $test `./findhdr fcntl.h` && \
9551                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9552                 h_fcntl=true;
9553                 echo "<fcntl.h> defines the *_OK access constants." >&4
9554         elif $test `./findhdr unistd.h` && \
9555                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9556                 echo "<unistd.h> defines the *_OK access constants." >&4
9557         else
9558                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9559         fi
9560         ;;
9561 esac
9562 $rm -f access*
9563
9564 : see if accessx exists
9565 set accessx d_accessx
9566 eval $inlibc
9567
9568 : see if aintl exists
9569 set aintl d_aintl
9570 eval $inlibc
9571
9572 : see if alarm exists
9573 set alarm d_alarm
9574 eval $inlibc
9575
9576 : see if POSIX threads are available
9577 set pthread.h i_pthread
9578 eval $inhdr
9579
9580 : define a fucntion to check prototypes
9581 $cat > protochk <<EOSH
9582 $startsh
9583 cc="$cc"
9584 optimize="$optimize"
9585 ccflags="$ccflags"
9586 prototype="$prototype"
9587 define="$define"
9588 rm=$rm
9589 usethreads=$usethreads
9590 i_pthread=$i_pthread
9591 pthread_h_first=$pthread_h_first
9592 EOSH
9593
9594 $cat >> protochk <<'EOSH'
9595
9596 $rm -f try.c
9597 foo="$1"
9598 shift
9599 while test $# -ge 2; do
9600         case "$1" in
9601                 $define) echo "#include <$2>" >> try.c ;;
9602                 literal) echo "$2" >> try.c ;;
9603         esac
9604     # Extra magic for the benefit of systems that need pthread.h
9605     # to be included early to correctly detect threadsafe functions.
9606     # Such functions must guarantee themselves, though, that the usethreads
9607     # and i_pthread have been defined, before calling protochk.
9608     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9609         echo "#include <pthread.h>" >> try.c
9610         pthread_h_done=yes
9611     fi
9612     shift 2
9613 done
9614 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9615 cat >> try.c <<'EOCP'
9616 #ifdef CAN_PROTOTYPE
9617 #define _(args) args
9618 #else
9619 #define _(args) ()
9620 #endif
9621 EOCP
9622 echo "$foo" >> try.c
9623 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9624 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9625 status=$?
9626 $rm -f try.[co]
9627 exit $status
9628 EOSH
9629 chmod +x protochk
9630 $eunicefix protochk
9631
9632 hasproto='varname=$1; func=$2; shift; shift;
9633 while $test $# -ge 2; do
9634         case "$1" in
9635         $define) echo "#include <$2>";;
9636         esac ;
9637     shift 2;
9638 done > try.c;
9639 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9640 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9641         echo "$func() prototype found.";
9642         val="$define";
9643 else
9644         echo "$func() prototype NOT found.";
9645         val="$undef";
9646 fi;
9647 set $varname;
9648 eval $setvar;
9649 $rm -f try.c tryout.c'
9650
9651 : see if sys/types.h has to be included
9652 set sys/types.h i_systypes
9653 eval $inhdr
9654
9655 : see if sys/select.h has to be included
9656 set sys/select.h i_sysselct
9657 eval $inhdr
9658
9659 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9660 while $test $# -ge 2; do
9661         case "$1" in
9662         $define) echo "#include <$2>";;
9663         esac ;
9664     shift 2;
9665 done > try.c;
9666 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9667 set try;
9668 if eval $compile; then
9669         val="$define";
9670 else
9671         val="$undef";
9672 fi;
9673 set $varname;
9674 eval $setvar;
9675 $rm -f try.c try.o'
9676
9677 : see if we should include time.h, sys/time.h, or both
9678 echo " "
9679 if test "X$timeincl" = X; then
9680         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9681         $echo $n "I'm now running the test program...$c"
9682         $cat >try.c <<EOCP
9683 #include <sys/types.h>
9684 #ifdef I_TIME
9685 #include <time.h>
9686 #endif
9687 #ifdef I_SYSTIME
9688 #ifdef SYSTIMEKERNEL
9689 #define KERNEL
9690 #endif
9691 #include <sys/time.h>
9692 #endif
9693 #ifdef I_SYSSELECT
9694 #include <sys/select.h>
9695 #endif
9696 #$i_stdlib I_STDLIB
9697 #ifdef I_STDLIB
9698 #include <stdlib.h>
9699 #endif
9700 int main()
9701 {
9702         struct tm foo;
9703 #ifdef S_TIMEVAL
9704         struct timeval bar;
9705 #endif
9706 #ifdef S_TIMEZONE
9707         struct timezone tzp;
9708 #endif
9709         if (foo.tm_sec == foo.tm_sec)
9710                 exit(0);
9711 #ifdef S_TIMEVAL
9712         if (bar.tv_sec == bar.tv_sec)
9713                 exit(0);
9714 #endif
9715         exit(1);
9716 }
9717 EOCP
9718         flags=''
9719         for s_timezone in '-DS_TIMEZONE' ''; do
9720         sysselect=''
9721         for s_timeval in '-DS_TIMEVAL' ''; do
9722         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9723         for i_time in '' '-DI_TIME'; do
9724         for i_systime in '-DI_SYSTIME' ''; do
9725                 case "$flags" in
9726                 '') $echo $n ".$c"
9727                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9728                         if eval $compile; then
9729                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9730                                 shift
9731                                 flags="$*"
9732                                 echo " "
9733                                 $echo $n "Succeeded with $flags$c"
9734                         fi
9735                         ;;
9736                 esac
9737         done
9738         done
9739         done
9740         done
9741         done
9742         timeincl=''
9743         echo " "
9744         case "$flags" in
9745         *SYSTIMEKERNEL*) i_systimek="$define"
9746                 timeincl=`./findhdr sys/time.h`
9747                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9748         *) i_systimek="$undef";;
9749         esac
9750         case "$flags" in
9751         *I_TIME*) i_time="$define"
9752                 timeincl=`./findhdr time.h`" $timeincl"
9753                 echo "We'll include <time.h>." >&4;;
9754         *) i_time="$undef";;
9755         esac
9756         case "$flags" in
9757         *I_SYSTIME*) i_systime="$define"
9758                 timeincl=`./findhdr sys/time.h`" $timeincl"
9759                 echo "We'll include <sys/time.h>." >&4;;
9760         *) i_systime="$undef";;
9761         esac
9762         $rm -f try.c try
9763 fi
9764 : see if struct tm knows about tm_zone
9765 case "$i_systime$i_time" in
9766 *$define*) 
9767         echo " "
9768         echo "Checking to see if your struct tm has tm_zone field..." >&4
9769         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9770         eval $hasfield
9771         ;;
9772 *)      val="$undef"
9773         set d_tm_tm_zone
9774         eval $setvar
9775         ;;
9776 esac
9777 case "$d_tm_tm_zone" in
9778 "$define")      echo "Yes, it does."   ;;
9779 *)              echo "No, it doesn't." ;;
9780 esac
9781 : see if struct tm knows about tm_gmtoff
9782 case "$i_systime$i_time" in
9783 *$define*) 
9784         echo " "
9785         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9786         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9787         eval $hasfield
9788         ;;
9789 *)      val="$undef"
9790         set d_tm_tm_gmtoff
9791         eval $setvar
9792         ;;
9793 esac
9794 case "$d_tm_tm_gmtoff" in
9795 "$define")      echo "Yes, it does."   ;;
9796 *)              echo "No, it doesn't." ;;
9797 esac
9798
9799 : see if asctime_r exists
9800 set asctime_r d_asctime_r
9801 eval $inlibc
9802 case "$d_asctime_r" in
9803 "$define")
9804         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
9805         case "$d_asctime_r_proto:$usethreads" in
9806         ":define")      d_asctime_r_proto=define
9807                 set d_asctime_r_proto asctime_r $hdrs
9808                 eval $hasproto ;;
9809         *)      ;;
9810         esac
9811         case "$d_asctime_r_proto" in
9812         define)
9813         case "$asctime_r_proto" in
9814         ''|0) try='char* asctime_r(const struct tm*, char*);'
9815         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9816         esac
9817         case "$asctime_r_proto" in
9818         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9819         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9820         esac
9821         case "$asctime_r_proto" in
9822         ''|0) try='int asctime_r(const struct tm*, char*);'
9823         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9824         esac
9825         case "$asctime_r_proto" in
9826         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9827         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9828         esac
9829         case "$asctime_r_proto" in
9830         ''|0)   d_asctime_r=undef
9831                 asctime_r_proto=0
9832                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9833         * )     case "$asctime_r_proto" in
9834                 REENTRANT_PROTO*) ;;
9835                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9836                 esac
9837                 echo "Prototype: $try" ;;
9838         esac
9839         ;;
9840         *)      case "$usethreads" in
9841                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9842                 esac
9843                 d_asctime_r=undef
9844                 asctime_r_proto=0
9845                 ;;
9846         esac
9847         ;;
9848 *)      asctime_r_proto=0
9849         ;;
9850 esac
9851
9852 : see if atolf exists
9853 set atolf d_atolf
9854 eval $inlibc
9855
9856 : see if atoll exists
9857 set atoll d_atoll
9858 eval $inlibc
9859
9860 : Look for GNU-cc style attribute checking
9861 echo " "
9862 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9863 $cat >attrib.c <<'EOCP'
9864 #include <stdio.h>
9865 void croak (char* pat,...) __attribute__((__format__(__printf__,1,2),noreturn));
9866 EOCP
9867 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9868         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9869                 echo "Your C compiler doesn't fully support __attribute__."
9870                 val="$undef"
9871         else
9872                 echo "Your C compiler supports __attribute__."
9873                 val="$define"
9874         fi
9875 else
9876         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9877         val="$undef"
9878 fi
9879 set d_attribut
9880 eval $setvar
9881 $rm -f attrib*
9882
9883 : see if bcmp exists
9884 set bcmp d_bcmp
9885 eval $inlibc
9886
9887 : see if bcopy exists
9888 set bcopy d_bcopy
9889 eval $inlibc
9890
9891 : see if this is a unistd.h system
9892 set unistd.h i_unistd
9893 eval $inhdr
9894
9895 : see if getpgrp exists
9896 set getpgrp d_getpgrp
9897 eval $inlibc
9898
9899 case "$d_getpgrp" in
9900 "$define")
9901         echo " "
9902         echo "Checking to see which flavor of getpgrp is in use..."
9903         $cat >try.c <<EOP
9904 #$i_unistd I_UNISTD
9905 #include <sys/types.h>
9906 #ifdef I_UNISTD
9907 #  include <unistd.h>
9908 #endif
9909 #$i_stdlib I_STDLIB
9910 #ifdef I_STDLIB
9911 #include <stdlib.h>
9912 #endif
9913 int main()
9914 {
9915         if (getuid() == 0) {
9916                 printf("(I see you are running Configure as super-user...)\n");
9917                 setuid(1);
9918         }
9919 #ifdef TRY_BSD_PGRP
9920         if (getpgrp(1) == 0)
9921                 exit(0);
9922 #else
9923         if (getpgrp() > 0)
9924                 exit(0);
9925 #endif
9926         exit(1);
9927 }
9928 EOP
9929         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9930                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9931                 val="$define"
9932         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9933                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9934                 val="$undef"
9935         else
9936                 echo "I can't seem to compile and run the test program."
9937                 if ./usg; then
9938                         xxx="a USG one, i.e. you use getpgrp()."
9939                 else
9940                         # SVR4 systems can appear rather BSD-ish.
9941                         case "$i_unistd" in
9942                         $undef)
9943                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9944                                 val="$define"
9945                                 ;;
9946                         $define)
9947                                 xxx="probably a USG one, i.e. you use getpgrp()."
9948                                 val="$undef"
9949                                 ;;
9950                         esac
9951                 fi
9952                 echo "Assuming your getpgrp is $xxx" >&4
9953         fi
9954         ;;
9955 *) val="$undef";;
9956 esac
9957 set d_bsdgetpgrp
9958 eval $setvar
9959 $rm -f try try.*
9960
9961 : see if setpgrp exists
9962 set setpgrp d_setpgrp
9963 eval $inlibc
9964
9965 case "$d_setpgrp" in
9966 "$define")
9967         echo " "
9968         echo "Checking to see which flavor of setpgrp is in use..."
9969         $cat >try.c <<EOP
9970 #$i_unistd I_UNISTD
9971 #include <sys/types.h>
9972 #ifdef I_UNISTD
9973 #  include <unistd.h>
9974 #endif
9975 #$i_stdlib I_STDLIB
9976 #ifdef I_STDLIB
9977 #include <stdlib.h>
9978 #endif
9979 int main()
9980 {
9981         if (getuid() == 0) {
9982                 printf("(I see you are running Configure as super-user...)\n");
9983                 setuid(1);
9984         }
9985 #ifdef TRY_BSD_PGRP
9986         if (-1 == setpgrp(1, 1))
9987                 exit(0);
9988 #else
9989         if (setpgrp() != -1)
9990                 exit(0);
9991 #endif
9992         exit(1);
9993 }
9994 EOP
9995         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9996                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
9997                 val="$define"
9998         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9999                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
10000                 val="$undef"
10001         else
10002                 echo "(I can't seem to compile and run the test program.)"
10003                 if ./usg; then
10004                         xxx="a USG one, i.e. you use setpgrp()."
10005                 else
10006                         # SVR4 systems can appear rather BSD-ish.
10007                         case "$i_unistd" in
10008                         $undef)
10009                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
10010                                 val="$define"
10011                                 ;;
10012                         $define)
10013                                 xxx="probably a USG one, i.e. you use setpgrp()."
10014                                 val="$undef"
10015                                 ;;
10016                         esac
10017                 fi
10018                 echo "Assuming your setpgrp is $xxx" >&4
10019         fi
10020         ;;
10021 *) val="$undef";;
10022 esac
10023 set d_bsdsetpgrp
10024 eval $setvar
10025 $rm -f try try.*
10026 : see if bzero exists
10027 set bzero d_bzero
10028 eval $inlibc
10029
10030 : see if signal is declared as pointer to function returning int or void
10031 echo " "
10032 xxx=`./findhdr signal.h`
10033 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
10034 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
10035         echo "You have int (*signal())() instead of void." >&4
10036         val="$undef"
10037 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
10038         echo "You have void (*signal())()." >&4
10039         val="$define"
10040 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
10041         echo "You have int (*signal())() instead of void." >&4
10042         val="$undef"
10043 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
10044         echo "You have void (*signal())()." >&4
10045         val="$define"
10046 else
10047         case "$d_voidsig" in
10048         '')
10049         echo "I can't determine whether signal handler returns void or int..." >&4
10050                 dflt=void
10051                 rp="What type does your signal handler return?"
10052                 . ./myread
10053                 case "$ans" in
10054                 v*) val="$define";;
10055                 *) val="$undef";;
10056                 esac;;
10057         "$define")
10058                 echo "As you already told me, signal handler returns void." >&4
10059                 val="$define"
10060                 ;;
10061         *)      echo "As you already told me, signal handler returns int." >&4
10062                 val="$undef"
10063                 ;;
10064         esac
10065 fi
10066 set d_voidsig
10067 eval $setvar
10068 case "$d_voidsig" in
10069 "$define") signal_t="void";;
10070 *) signal_t="int";;
10071 esac
10072 $rm -f $$.tmp
10073
10074 : check for ability to cast large floats to 32-bit ints.
10075 echo " "
10076 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
10077 if $test "$intsize" -ge 4; then
10078         xxx=int
10079 else
10080         xxx=long
10081 fi
10082 $cat >try.c <<EOCP
10083 #include <stdio.h>
10084 #$i_stdlib I_STDLIB
10085 #ifdef I_STDLIB
10086 #include <stdlib.h>
10087 #endif
10088 #include <sys/types.h>
10089 #include <signal.h>
10090 $signal_t blech(s) int s; { exit(3); }
10091 int main()
10092 {
10093         $xxx i32;
10094         double f, g;
10095         int result = 0;
10096         char str[16];
10097         signal(SIGFPE, blech);
10098
10099         /* Don't let compiler optimize the test away.  Store the number 
10100            in a writable string for gcc to pass to sscanf under HP/UX.
10101         */
10102         sprintf(str, "2147483647");
10103         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
10104         g = 10 * f;
10105         i32  = ($xxx) g;
10106
10107         /* x86 processors will probably give 0x8000 0000, which is a
10108            sign change.  We don't want that.  We want to mimic SPARC
10109            behavior here, which is to preserve the sign and give
10110            back 0x7fff ffff.
10111         */
10112         if (i32 != ($xxx) f)
10113                 result |= 1;
10114         exit(result);
10115 }
10116 EOCP
10117 set try
10118 if eval $compile_ok; then
10119         $run ./try
10120         yyy=$?
10121 else
10122         echo "(I can't seem to compile the test program--assuming it can't)"
10123         yyy=1
10124 fi
10125 case "$yyy" in
10126 0)      val="$define"
10127         echo "Yup, it can."
10128         ;;
10129 *)      val="$undef"
10130         echo "Nope, it can't."
10131         ;;
10132 esac
10133 set d_casti32
10134 eval $setvar
10135 $rm -f try try.*
10136
10137 : check for ability to cast negative floats to unsigned
10138 echo " "
10139 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
10140 $cat >try.c <<EOCP
10141 #include <stdio.h>
10142 #$i_stdlib I_STDLIB
10143 #ifdef I_STDLIB
10144 #include <stdlib.h>
10145 #endif
10146 #include <sys/types.h>
10147 #include <signal.h>
10148 $signal_t blech(s) int s; { exit(7); }
10149 $signal_t blech_in_list(s) int s; { exit(4); }
10150 unsigned long dummy_long(p) unsigned long p; { return p; }
10151 unsigned int dummy_int(p) unsigned int p; { return p; }
10152 unsigned short dummy_short(p) unsigned short p; { return p; }
10153 int main()
10154 {
10155         double f;
10156         unsigned long along;
10157         unsigned int aint;
10158         unsigned short ashort;
10159         int result = 0;
10160         char str[16];
10161         
10162         /* Frustrate gcc-2.7.2's optimizer which failed this test with
10163            a direct f = -123. assignment.  gcc-2.8.0 reportedly
10164            optimized the whole file away
10165         */
10166         /* Store the number in a writable string for gcc to pass to 
10167            sscanf under HP/UX.
10168         */
10169         sprintf(str, "-123");
10170         sscanf(str, "%lf", &f);  /* f = -123.; */
10171
10172         signal(SIGFPE, blech);
10173         along = (unsigned long)f;
10174         aint = (unsigned int)f;
10175         ashort = (unsigned short)f;
10176         if (along != (unsigned long)-123)
10177                 result |= 1;
10178         if (aint != (unsigned int)-123)
10179                 result |= 1;
10180         if (ashort != (unsigned short)-123)
10181                 result |= 1;
10182         sprintf(str, "1073741824.");
10183         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
10184         f = f + f;
10185         along = 0;
10186         along = (unsigned long)f;
10187         if (along != 0x80000000)
10188                 result |= 2;
10189         f -= 1.;
10190         along = 0;
10191         along = (unsigned long)f;
10192         if (along != 0x7fffffff)
10193                 result |= 1;
10194         f += 2.;
10195         along = 0;
10196         along = (unsigned long)f;
10197         if (along != 0x80000001)
10198                 result |= 2;
10199         if (result)
10200                 exit(result);
10201         signal(SIGFPE, blech_in_list);
10202         sprintf(str, "123.");
10203         sscanf(str, "%lf", &f);  /* f = 123.; */
10204         along = dummy_long((unsigned long)f);
10205         aint = dummy_int((unsigned int)f);
10206         ashort = dummy_short((unsigned short)f);
10207         if (along != (unsigned long)123)
10208                 result |= 4;
10209         if (aint != (unsigned int)123)
10210                 result |= 4;
10211         if (ashort != (unsigned short)123)
10212                 result |= 4;
10213         exit(result);
10214
10215 }
10216 EOCP
10217 set try
10218 if eval $compile_ok; then
10219         $run ./try
10220         castflags=$?
10221 else
10222         echo "(I can't seem to compile the test program--assuming it can't)"
10223         castflags=7
10224 fi
10225 case "$castflags" in
10226 0)      val="$define"
10227         echo "Yup, it can."
10228         ;;
10229 *)      val="$undef"
10230         echo "Nope, it can't."
10231         ;;
10232 esac
10233 set d_castneg
10234 eval $setvar
10235 $rm -f try.*
10236
10237 : see if vprintf exists
10238 echo " "
10239 if set vprintf val -f d_vprintf; eval $csym; $val; then
10240         echo 'vprintf() found.' >&4
10241         val="$define"
10242         $cat >try.c <<EOF
10243 #include <varargs.h>
10244 #$i_stdlib I_STDLIB
10245 #ifdef I_STDLIB
10246 #include <stdlib.h>
10247 #endif
10248
10249 int main() { xxx("foo"); }
10250
10251 xxx(va_alist)
10252 va_dcl
10253 {
10254         va_list args;
10255         char buf[10];
10256
10257         va_start(args);
10258         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
10259 }
10260 EOF
10261         set try
10262         if eval $compile && $run ./try; then
10263                 echo "Your vsprintf() returns (int)." >&4
10264                 val2="$undef"
10265         else
10266                 echo "Your vsprintf() returns (char*)." >&4
10267                 val2="$define"
10268         fi
10269 else
10270         echo 'vprintf() NOT found.' >&4
10271                 val="$undef"
10272                 val2="$undef"
10273 fi
10274 $rm -f try try.*
10275 set d_vprintf
10276 eval $setvar
10277 val=$val2
10278 set d_charvspr
10279 eval $setvar
10280
10281 : see if chown exists
10282 set chown d_chown
10283 eval $inlibc
10284
10285 : see if chroot exists
10286 set chroot d_chroot
10287 eval $inlibc
10288
10289 : see if chsize exists
10290 set chsize d_chsize
10291 eval $inlibc
10292
10293 : see if class exists
10294 set class d_class
10295 eval $inlibc
10296
10297 hasstruct='varname=$1; struct=$2; shift; shift;
10298 while $test $# -ge 2; do
10299         case "$1" in
10300         $define) echo "#include <$2>";;
10301         esac ;
10302     shift 2;
10303 done > try.c;
10304 echo "int main () { struct $struct foo; }" >> try.c;
10305 set try;
10306 if eval $compile; then
10307         val="$define";
10308 else
10309         val="$undef";
10310 fi;
10311 set $varname;
10312 eval $setvar;
10313 $rm -f try.c try.o'
10314
10315 socketlib=''
10316 sockethdr=''
10317 : see whether socket exists
10318 echo " "
10319 $echo $n "Hmm... $c" >&4
10320 if set socket val -f d_socket; eval $csym; $val; then
10321         echo "Looks like you have Berkeley networking support." >&4
10322         d_socket="$define"
10323         if set setsockopt val -f; eval $csym; $val; then
10324                 d_oldsock="$undef"
10325         else
10326                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
10327                 d_oldsock="$define"
10328         fi
10329 else
10330         if $contains socklib libc.list >/dev/null 2>&1; then
10331                 echo "Looks like you have Berkeley networking support." >&4
10332                 d_socket="$define"
10333                 : we will have to assume that it supports the 4.2 BSD interface
10334                 d_oldsock="$undef"
10335         else
10336                 echo "You don't have Berkeley networking in libc$_a..." >&4
10337                 if test "X$d_socket" = "X$define"; then
10338                    echo "...but you seem to believe that you have sockets." >&4
10339                 else
10340                         for net in net socket
10341                         do
10342                                 if test -f /usr/lib/lib$net$_a; then
10343                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
10344                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
10345                                         if $contains socket libc.list >/dev/null 2>&1; then
10346                                                 d_socket="$define"
10347                                                 socketlib="-l$net"
10348                                                 case "$net" in
10349                                                 net)
10350                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
10351                                                         sockethdr="-I/usr/netinclude"
10352                                                         ;;
10353                                                 esac
10354                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
10355                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
10356                                                         d_oldsock="$undef"
10357                                                 else
10358                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
10359                                                         d_oldsock="$define"
10360                                                 fi
10361                                                 break
10362                                         fi
10363                                 fi
10364                         done
10365                         if test "X$d_socket" != "X$define"; then
10366                            echo "or anywhere else I see." >&4
10367                            d_socket="$undef"
10368                            d_oldsock="$undef"
10369                         fi
10370                 fi
10371         fi
10372 fi
10373
10374 : see if socketpair exists
10375 set socketpair d_sockpair
10376 eval $inlibc
10377
10378
10379 echo " "
10380 echo "Checking the availability of certain socket constants..." >&4
10381 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
10382         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
10383         $cat >try.c <<EOF
10384 #include <sys/types.h>
10385 #include <sys/socket.h>
10386 int main() {
10387     int i = $ENUM;
10388 }
10389 EOF
10390         val="$undef"
10391         set try; if eval $compile; then
10392                 val="$define"
10393         fi
10394         set d_${enum}; eval $setvar
10395         $rm -f try.c try
10396 done
10397
10398 : see if this is a sys/uio.h system
10399 set sys/uio.h i_sysuio
10400 eval $inhdr
10401
10402
10403 echo " "
10404 echo "Checking to see if your system supports struct cmsghdr..." >&4
10405 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
10406 eval $hasstruct
10407 case "$d_cmsghdr_s" in
10408 "$define")      echo "Yes, it does."   ;;
10409 *)              echo "No, it doesn't." ;;
10410 esac
10411
10412
10413 : check for const keyword
10414 echo " "
10415 echo 'Checking to see if your C compiler knows about "const"...' >&4
10416 $cat >const.c <<'EOCP'
10417 typedef struct spug { int drokk; } spug;
10418 int main()
10419 {
10420         const char *foo;
10421         const spug y;
10422 }
10423 EOCP
10424 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
10425         val="$define"
10426         echo "Yup, it does."
10427 else
10428         val="$undef"
10429         echo "Nope, it doesn't."
10430 fi
10431 set d_const
10432 eval $setvar
10433
10434 : see if copysignl exists
10435 set copysignl d_copysignl
10436 eval $inlibc
10437
10438 : see if crypt exists
10439 echo " "
10440 set crypt d_crypt
10441 eval $inlibc
10442 case "$d_crypt" in
10443 $define) cryptlib='' ;;
10444 *)      if set crypt val -f d_crypt; eval $csym; $val; then
10445                 echo 'crypt() found.' >&4
10446                 val="$define"
10447                 cryptlib=''
10448         else
10449                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
10450                 if $test -z "$cryptlib"; then
10451                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
10452                 else
10453                         cryptlib=-lcrypt
10454                 fi
10455                 if $test -z "$cryptlib"; then
10456                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
10457                 else
10458                         cryptlib=-lcrypt
10459                 fi
10460                 if $test -z "$cryptlib"; then
10461                         cryptlib=`./loc libcrypt$_a "" $libpth`
10462                 else
10463                         cryptlib=-lcrypt
10464                 fi
10465                 if $test -z "$cryptlib"; then
10466                         echo 'crypt() NOT found.' >&4
10467                         val="$undef"
10468                 else
10469                         val="$define"
10470                 fi
10471         fi
10472         set d_crypt
10473         eval $setvar
10474         ;;
10475 esac
10476
10477 : see if this is a crypt.h system
10478 set crypt.h i_crypt
10479 eval $inhdr
10480
10481 : see if crypt_r exists
10482 set crypt_r d_crypt_r
10483 eval $inlibc
10484 case "$d_crypt_r" in
10485 "$define")
10486         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
10487         case "$d_crypt_r_proto:$usethreads" in
10488         ":define")      d_crypt_r_proto=define
10489                 set d_crypt_r_proto crypt_r $hdrs
10490                 eval $hasproto ;;
10491         *)      ;;
10492         esac
10493         case "$d_crypt_r_proto" in
10494         define)
10495         case "$crypt_r_proto" in
10496         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
10497         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
10498         esac
10499         case "$crypt_r_proto" in
10500         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
10501         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
10502         esac
10503         case "$crypt_r_proto" in
10504         ''|0)   d_crypt_r=undef
10505                 crypt_r_proto=0
10506                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
10507         * )     case "$crypt_r_proto" in
10508                 REENTRANT_PROTO*) ;;
10509                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
10510                 esac
10511                 echo "Prototype: $try" ;;
10512         esac
10513         ;;
10514         *)      case "$usethreads" in
10515                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10516                 esac
10517                 d_crypt_r=undef
10518                 crypt_r_proto=0
10519                 ;;
10520         esac
10521         ;;
10522 *)      crypt_r_proto=0
10523         ;;
10524 esac
10525
10526 : get csh whereabouts
10527 case "$csh" in
10528 'csh') val="$undef" ;;
10529 *) val="$define" ;;
10530 esac
10531 set d_csh
10532 eval $setvar
10533 : Respect a hint or command line value for full_csh.
10534 case "$full_csh" in
10535 '') full_csh=$csh ;;
10536 esac
10537
10538 : see if ctermid_r exists
10539 set ctermid_r d_ctermid_r
10540 eval $inlibc
10541 case "$d_ctermid_r" in
10542 "$define")
10543         hdrs="$i_systypes sys/types.h define stdio.h "
10544         case "$d_ctermid_r_proto:$usethreads" in
10545         ":define")      d_ctermid_r_proto=define
10546                 set d_ctermid_r_proto ctermid_r $hdrs
10547                 eval $hasproto ;;
10548         *)      ;;
10549         esac
10550         case "$d_ctermid_r_proto" in
10551         define)
10552         case "$ctermid_r_proto" in
10553         ''|0) try='char* ctermid_r(char*);'
10554         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10555         esac
10556         case "$ctermid_r_proto" in
10557         ''|0)   d_ctermid_r=undef
10558                 ctermid_r_proto=0
10559                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10560         * )     case "$ctermid_r_proto" in
10561                 REENTRANT_PROTO*) ;;
10562                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10563                 esac
10564                 echo "Prototype: $try" ;;
10565         esac
10566         ;;
10567         *)      case "$usethreads" in
10568                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10569                 esac
10570                 d_ctermid_r=undef
10571                 ctermid_r_proto=0
10572                 ;;
10573         esac
10574         ;;
10575 *)      ctermid_r_proto=0
10576         ;;
10577 esac
10578
10579 : see if ctime_r exists
10580 set ctime_r d_ctime_r
10581 eval $inlibc
10582 case "$d_ctime_r" in
10583 "$define")
10584         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
10585         case "$d_ctime_r_proto:$usethreads" in
10586         ":define")      d_ctime_r_proto=define
10587                 set d_ctime_r_proto ctime_r $hdrs
10588                 eval $hasproto ;;
10589         *)      ;;
10590         esac
10591         case "$d_ctime_r_proto" in
10592         define)
10593         case "$ctime_r_proto" in
10594         ''|0) try='char* ctime_r(const time_t*, char*);'
10595         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10596         esac
10597         case "$ctime_r_proto" in
10598         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10599         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10600         esac
10601         case "$ctime_r_proto" in
10602         ''|0) try='int ctime_r(const time_t*, char*);'
10603         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10604         esac
10605         case "$ctime_r_proto" in
10606         ''|0) try='int ctime_r(const time_t*, char*, int);'
10607         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10608         esac
10609         case "$ctime_r_proto" in
10610         ''|0)   d_ctime_r=undef
10611                 ctime_r_proto=0
10612                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10613         * )     case "$ctime_r_proto" in
10614                 REENTRANT_PROTO*) ;;
10615                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10616                 esac
10617                 echo "Prototype: $try" ;;
10618         esac
10619         ;;
10620         *)      case "$usethreads" in
10621                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10622                 esac
10623                 d_ctime_r=undef
10624                 ctime_r_proto=0
10625                 ;;
10626         esac
10627         ;;
10628 *)      ctime_r_proto=0
10629         ;;
10630 esac
10631
10632 : see if cuserid exists
10633 set cuserid d_cuserid
10634 eval $inlibc
10635
10636 : see if this is a limits.h system
10637 set limits.h i_limits
10638 eval $inhdr
10639
10640 : see if this is a float.h system
10641 set float.h i_float
10642 eval $inhdr
10643
10644 : See if number of significant digits in a double precision number is known
10645 echo " "
10646 $cat >dbl_dig.c <<EOM
10647 #$i_limits I_LIMITS
10648 #$i_float I_FLOAT
10649 #ifdef I_LIMITS
10650 #include <limits.h>
10651 #endif
10652 #ifdef I_FLOAT
10653 #include <float.h>
10654 #endif
10655 #ifdef DBL_DIG
10656 printf("Contains DBL_DIG");
10657 #endif
10658 EOM
10659 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10660 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10661         echo "DBL_DIG found." >&4
10662         val="$define"
10663 else
10664         echo "DBL_DIG NOT found." >&4
10665         val="$undef"
10666 fi
10667 $rm -f dbl_dig.?
10668 set d_dbl_dig
10669 eval $setvar
10670
10671 : see if dbm.h is available
10672 : see if dbmclose exists
10673 set dbmclose d_dbmclose
10674 eval $inlibc
10675
10676 case "$d_dbmclose" in
10677 $define)
10678         set dbm.h i_dbm
10679         eval $inhdr
10680         case "$i_dbm" in
10681         $define)
10682                 val="$undef"
10683                 set i_rpcsvcdbm
10684                 eval $setvar
10685                 ;;
10686         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10687                 eval $inhdr
10688                 ;;
10689         esac
10690         ;;
10691 *)      echo "We won't be including <dbm.h>"
10692         val="$undef"
10693         set i_dbm
10694         eval $setvar
10695         val="$undef"
10696         set i_rpcsvcdbm
10697         eval $setvar
10698         ;;
10699 esac
10700
10701 : see if prototype for dbminit is available
10702 echo " "
10703 set d_dbminitproto dbminit $i_dbm dbm.h
10704 eval $hasproto
10705
10706 : see if difftime exists
10707 set difftime d_difftime
10708 eval $inlibc
10709
10710 : see if this is a dirent system
10711 echo " "
10712 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10713         val="$define"
10714         echo "<dirent.h> found." >&4
10715 else
10716         val="$undef"
10717         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10718                 echo "<sys/dir.h> found." >&4
10719                 echo " "
10720         else
10721                 xinc=`./findhdr sys/ndir.h`
10722         fi
10723         echo "<dirent.h> NOT found." >&4
10724 fi
10725 set i_dirent
10726 eval $setvar
10727
10728 : Look for type of directory structure.
10729 echo " "
10730 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10731
10732 case "$direntrytype" in
10733 ''|' ')
10734         case "$i_dirent" in
10735         $define) guess1='struct dirent' ;;
10736         *) guess1='struct direct'  ;;
10737         esac
10738         ;;
10739 *)      guess1="$direntrytype"
10740         ;;
10741 esac
10742
10743 case "$guess1" in
10744 'struct dirent') guess2='struct direct' ;;
10745 *) guess2='struct dirent' ;;
10746 esac
10747                 
10748 if $contains "$guess1" try.c >/dev/null 2>&1; then
10749         direntrytype="$guess1"
10750         echo "Your directory entries are $direntrytype." >&4
10751 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10752         direntrytype="$guess2"
10753         echo "Your directory entries seem to be $direntrytype." >&4
10754 else
10755         echo "I don't recognize your system's directory entries." >&4
10756         rp="What type is used for directory entries on this system?"
10757         dflt="$guess1"
10758         . ./myread
10759         direntrytype="$ans"
10760 fi
10761 $rm -f try.c
10762
10763
10764 : see if the directory entry stores field length
10765 echo " "
10766 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10767 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10768         echo "Good, your directory entry keeps length information in d_namlen." >&4
10769         val="$define"
10770 else
10771         echo "Your directory entry does not know about the d_namlen field." >&4
10772         val="$undef"
10773 fi
10774 set d_dirnamlen
10775 eval $setvar
10776 $rm -f try.c
10777
10778 : see if this is an sysdir system
10779 set sys/dir.h i_sysdir
10780 eval $inhdr
10781
10782 : see if this is an sysndir system
10783 set sys/ndir.h i_sysndir
10784 eval $inhdr
10785
10786 : Look for dirfd
10787 echo " "
10788 $cat >dirfd.c <<EOM
10789 #include <stdio.h>
10790 #$i_stdlib I_STDLIB
10791 #ifdef I_STDLIB
10792 #include <stdlib.h>
10793 #endif
10794 #$i_dirent I_DIRENT             /**/
10795 #$i_sysdir I_SYS_DIR            /**/
10796 #$i_sysndir I_SYS_NDIR          /**/
10797 #$i_systypes I_SYS_TYPES        /**/
10798 #if defined(I_SYS_TYPES)
10799 #include <sys/types.h>
10800 #endif
10801 #if defined(I_DIRENT)
10802 #include <dirent.h>
10803 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10804 #include <sys/dir.h>
10805 #endif
10806 #else
10807 #ifdef I_SYS_NDIR
10808 #include <sys/ndir.h>
10809 #else
10810 #ifdef I_SYS_DIR
10811 #ifdef hp9000s500
10812 #include <ndir.h>       /* may be wrong in the future */
10813 #else
10814 #include <sys/dir.h>
10815 #endif
10816 #endif
10817 #endif
10818 #endif 
10819 int main() {
10820         DIR *dirp = opendir(".");
10821         if (dirfd(dirp) >= 0)
10822                 exit(0);
10823         else
10824                 exit(1);
10825 }
10826 EOM
10827 set dirfd
10828 if eval $compile; then
10829         val="$define"
10830 fi
10831 case "$val" in
10832 $define)        echo "dirfd() found." >&4       ;;
10833 *)              echo "dirfd() NOT found." >&4   ;;
10834 esac
10835 set d_dirfd
10836 eval $setvar
10837 $rm -f dirfd*
10838
10839 : see if dlerror exists
10840 xxx_runnm="$runnm"
10841 runnm=false
10842 set dlerror d_dlerror
10843 eval $inlibc
10844 runnm="$xxx_runnm"
10845
10846 : see if dlfcn is available
10847 set dlfcn.h i_dlfcn
10848 eval $inhdr
10849
10850 case "$usedl" in
10851 $define|y|true)
10852         $cat << EOM
10853
10854 On a few systems, the dynamically loaded modules that perl generates and uses
10855 will need a different extension than shared libs. The default will probably
10856 be appropriate.
10857
10858 EOM
10859         case "$dlext" in
10860         '')     dflt="$so" ;;
10861         *)      dflt="$dlext" ;;
10862         esac
10863         rp='What is the extension of dynamically loaded modules'
10864         . ./myread
10865         dlext="$ans"
10866         ;;
10867 *)
10868         dlext="none"
10869         ;;
10870 esac
10871
10872 : Check if dlsym need a leading underscore
10873 echo " "
10874 val="$undef"
10875
10876 case "$dlsrc" in
10877 dl_dlopen.xs)
10878         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10879         $cat >dyna.c <<'EOM'
10880 fred () { }
10881 EOM
10882
10883 $cat >fred.c<<EOM
10884
10885 #include <stdio.h>
10886 #$i_stdlib I_STDLIB
10887 #ifdef I_STDLIB
10888 #include <stdlib.h>
10889 #endif
10890 #$i_dlfcn I_DLFCN
10891 #ifdef I_DLFCN
10892 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10893 #else
10894 #include <sys/types.h>
10895 #include <nlist.h>
10896 #include <link.h>
10897 #endif
10898
10899 extern int fred() ;
10900
10901 int main()
10902 {
10903     void * handle ;
10904     void * symbol ;
10905 #ifndef RTLD_LAZY
10906     int mode = 1 ;
10907 #else
10908     int mode = RTLD_LAZY ;
10909 #endif
10910     handle = dlopen("./dyna.$dlext", mode) ;
10911     if (handle == NULL) {
10912         printf ("1\n") ;
10913         fflush (stdout) ;
10914         exit(0);
10915     }
10916     symbol = dlsym(handle, "fred") ;
10917     if (symbol == NULL) {
10918         /* try putting a leading underscore */
10919         symbol = dlsym(handle, "_fred") ;
10920         if (symbol == NULL) {
10921             printf ("2\n") ;
10922             fflush (stdout) ;
10923             exit(0);
10924         }
10925         printf ("3\n") ;
10926     }
10927     else
10928         printf ("4\n") ;
10929     fflush (stdout) ;
10930     exit(0);
10931 }
10932 EOM
10933         : Call the object file tmp-dyna.o in case dlext=o.
10934         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10935                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10936                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10937                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10938                 xxx=`$run ./fred`
10939                 case $xxx in
10940                 1)      echo "Test program failed using dlopen." >&4
10941                         echo "Perhaps you should not use dynamic loading." >&4;;
10942                 2)      echo "Test program failed using dlsym." >&4
10943                         echo "Perhaps you should not use dynamic loading." >&4;;
10944                 3)      echo "dlsym needs a leading underscore" >&4
10945                         val="$define" ;;
10946                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10947                 esac
10948         else
10949                 echo "I can't compile and run the test program." >&4
10950                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10951         fi
10952         ;;
10953 esac
10954                 
10955 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10956
10957 set d_dlsymun
10958 eval $setvar
10959
10960 : see if drand48_r exists
10961 set drand48_r d_drand48_r
10962 eval $inlibc
10963 case "$d_drand48_r" in
10964 "$define")
10965         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10966         case "$d_drand48_r_proto:$usethreads" in
10967         ":define")      d_drand48_r_proto=define
10968                 set d_drand48_r_proto drand48_r $hdrs
10969                 eval $hasproto ;;
10970         *)      ;;
10971         esac
10972         case "$d_drand48_r_proto" in
10973         define)
10974         case "$drand48_r_proto" in
10975         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10976         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10977         esac
10978         case "$drand48_r_proto" in
10979         ''|0)   d_drand48_r=undef
10980                 drand48_r_proto=0
10981                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10982         * )     case "$drand48_r_proto" in
10983                 REENTRANT_PROTO*) ;;
10984                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10985                 esac
10986                 echo "Prototype: $try" ;;
10987         esac
10988         ;;
10989         *)      case "$usethreads" in
10990                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10991                 esac
10992                 d_drand48_r=undef
10993                 drand48_r_proto=0
10994                 ;;
10995         esac
10996         ;;
10997 *)      drand48_r_proto=0
10998         ;;
10999 esac
11000
11001 : see if prototype for drand48 is available
11002 echo " "
11003 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
11004 eval $hasproto
11005
11006 : see if dup2 exists
11007 set dup2 d_dup2
11008 eval $inlibc
11009
11010 : see if eaccess exists
11011 set eaccess d_eaccess
11012 eval $inlibc
11013
11014 : see if endgrent exists
11015 set endgrent d_endgrent
11016 eval $inlibc
11017
11018 : see if this is an grp system
11019 set grp.h i_grp
11020 eval $inhdr
11021
11022 case "$i_grp" in
11023 $define)
11024         xxx=`./findhdr grp.h`
11025         $cppstdin $cppflags $cppminus < $xxx >$$.h
11026
11027         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
11028                 val="$define"
11029         else
11030                 val="$undef"
11031         fi
11032         set d_grpasswd
11033         eval $setvar
11034
11035         $rm -f $$.h
11036         ;;
11037 *)
11038         val="$undef";
11039         set d_grpasswd; eval $setvar
11040         ;;
11041 esac
11042
11043 : see if endgrent_r exists
11044 set endgrent_r d_endgrent_r
11045 eval $inlibc
11046 case "$d_endgrent_r" in
11047 "$define")
11048         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11049         case "$d_endgrent_r_proto:$usethreads" in
11050         ":define")      d_endgrent_r_proto=define
11051                 set d_endgrent_r_proto endgrent_r $hdrs
11052                 eval $hasproto ;;
11053         *)      ;;
11054         esac
11055         case "$d_endgrent_r_proto" in
11056         define)
11057         case "$endgrent_r_proto" in
11058         ''|0) try='int endgrent_r(FILE**);'
11059         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
11060         esac
11061         case "$endgrent_r_proto" in
11062         ''|0) try='void endgrent_r(FILE**);'
11063         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
11064         esac
11065         case "$endgrent_r_proto" in
11066         ''|0)   d_endgrent_r=undef
11067                 endgrent_r_proto=0
11068                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
11069         * )     case "$endgrent_r_proto" in
11070                 REENTRANT_PROTO*) ;;
11071                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
11072                 esac
11073                 echo "Prototype: $try" ;;
11074         esac
11075         ;;
11076         *)      case "$usethreads" in
11077                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
11078                 esac
11079                 d_endgrent_r=undef
11080                 endgrent_r_proto=0
11081                 ;;
11082         esac
11083         ;;
11084 *)      endgrent_r_proto=0
11085         ;;
11086 esac
11087
11088 : see if endhostent exists
11089 set endhostent d_endhent
11090 eval $inlibc
11091
11092 : see if this is a netdb.h system
11093 set netdb.h i_netdb
11094 eval $inhdr
11095
11096 : see if endhostent_r exists
11097 set endhostent_r d_endhostent_r
11098 eval $inlibc
11099 case "$d_endhostent_r" in
11100 "$define")
11101         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11102         case "$d_endhostent_r_proto:$usethreads" in
11103         ":define")      d_endhostent_r_proto=define
11104                 set d_endhostent_r_proto endhostent_r $hdrs
11105                 eval $hasproto ;;
11106         *)      ;;
11107         esac
11108         case "$d_endhostent_r_proto" in
11109         define)
11110         case "$endhostent_r_proto" in
11111         ''|0) try='int endhostent_r(struct hostent_data*);'
11112         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
11113         esac
11114         case "$endhostent_r_proto" in
11115         ''|0) try='void endhostent_r(struct hostent_data*);'
11116         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
11117         esac
11118         case "$endhostent_r_proto" in
11119         ''|0)   d_endhostent_r=undef
11120                 endhostent_r_proto=0
11121                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
11122         * )     case "$endhostent_r_proto" in
11123                 REENTRANT_PROTO*) ;;
11124                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
11125                 esac
11126                 echo "Prototype: $try" ;;
11127         esac
11128         ;;
11129         *)      case "$usethreads" in
11130                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
11131                 esac
11132                 d_endhostent_r=undef
11133                 endhostent_r_proto=0
11134                 ;;
11135         esac
11136         ;;
11137 *)      endhostent_r_proto=0
11138         ;;
11139 esac
11140
11141 : see if endnetent exists
11142 set endnetent d_endnent
11143 eval $inlibc
11144
11145 : see if endnetent_r exists
11146 set endnetent_r d_endnetent_r
11147 eval $inlibc
11148 case "$d_endnetent_r" in
11149 "$define")
11150         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11151         case "$d_endnetent_r_proto:$usethreads" in
11152         ":define")      d_endnetent_r_proto=define
11153                 set d_endnetent_r_proto endnetent_r $hdrs
11154                 eval $hasproto ;;
11155         *)      ;;
11156         esac
11157         case "$d_endnetent_r_proto" in
11158         define)
11159         case "$endnetent_r_proto" in
11160         ''|0) try='int endnetent_r(struct netent_data*);'
11161         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
11162         esac
11163         case "$endnetent_r_proto" in
11164         ''|0) try='void endnetent_r(struct netent_data*);'
11165         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
11166         esac
11167         case "$endnetent_r_proto" in
11168         ''|0)   d_endnetent_r=undef
11169                 endnetent_r_proto=0
11170                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
11171         * )     case "$endnetent_r_proto" in
11172                 REENTRANT_PROTO*) ;;
11173                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
11174                 esac
11175                 echo "Prototype: $try" ;;
11176         esac
11177         ;;
11178         *)      case "$usethreads" in
11179                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
11180                 esac
11181                 d_endnetent_r=undef
11182                 endnetent_r_proto=0
11183                 ;;
11184         esac
11185         ;;
11186 *)      endnetent_r_proto=0
11187         ;;
11188 esac
11189
11190 : see if endprotoent exists
11191 set endprotoent d_endpent
11192 eval $inlibc
11193
11194 : see if endprotoent_r exists
11195 set endprotoent_r d_endprotoent_r
11196 eval $inlibc
11197 case "$d_endprotoent_r" in
11198 "$define")
11199         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11200         case "$d_endprotoent_r_proto:$usethreads" in
11201         ":define")      d_endprotoent_r_proto=define
11202                 set d_endprotoent_r_proto endprotoent_r $hdrs
11203                 eval $hasproto ;;
11204         *)      ;;
11205         esac
11206         case "$d_endprotoent_r_proto" in
11207         define)
11208         case "$endprotoent_r_proto" in
11209         ''|0) try='int endprotoent_r(struct protoent_data*);'
11210         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
11211         esac
11212         case "$endprotoent_r_proto" in
11213         ''|0) try='void endprotoent_r(struct protoent_data*);'
11214         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
11215         esac
11216         case "$endprotoent_r_proto" in
11217         ''|0)   d_endprotoent_r=undef
11218                 endprotoent_r_proto=0
11219                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
11220         * )     case "$endprotoent_r_proto" in
11221                 REENTRANT_PROTO*) ;;
11222                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
11223                 esac
11224                 echo "Prototype: $try" ;;
11225         esac
11226         ;;
11227         *)      case "$usethreads" in
11228                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
11229                 esac
11230                 d_endprotoent_r=undef
11231                 endprotoent_r_proto=0
11232                 ;;
11233         esac
11234         ;;
11235 *)      endprotoent_r_proto=0
11236         ;;
11237 esac
11238
11239 : see if endpwent exists
11240 set endpwent d_endpwent
11241 eval $inlibc
11242
11243 : see if this is a pwd.h system
11244 set pwd.h i_pwd
11245 eval $inhdr
11246
11247 case "$i_pwd" in
11248 $define)
11249         xxx=`./findhdr pwd.h`
11250         $cppstdin $cppflags $cppminus < $xxx >$$.h
11251
11252         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
11253                 val="$define"
11254         else
11255                 val="$undef"
11256         fi
11257         set d_pwquota
11258         eval $setvar
11259
11260         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
11261                 val="$define"
11262         else
11263                 val="$undef"
11264         fi
11265         set d_pwage
11266         eval $setvar
11267
11268         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
11269                 val="$define"
11270         else
11271                 val="$undef"
11272         fi
11273         set d_pwchange
11274         eval $setvar
11275
11276         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
11277                 val="$define"
11278         else
11279                 val="$undef"
11280         fi
11281         set d_pwclass
11282         eval $setvar
11283
11284         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
11285                 val="$define"
11286         else
11287                 val="$undef"
11288         fi
11289         set d_pwexpire
11290         eval $setvar
11291
11292         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
11293                 val="$define"
11294         else
11295                 val="$undef"
11296         fi
11297         set d_pwcomment
11298         eval $setvar
11299
11300         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
11301                 val="$define"
11302         else
11303                 val="$undef"
11304         fi
11305         set d_pwgecos
11306         eval $setvar
11307
11308         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
11309                 val="$define"
11310         else
11311                 val="$undef"
11312         fi
11313         set d_pwpasswd
11314         eval $setvar
11315
11316         $rm -f $$.h
11317         ;;
11318 *)
11319         val="$undef"; 
11320         set d_pwquota; eval $setvar
11321         set d_pwage; eval $setvar
11322         set d_pwchange; eval $setvar
11323         set d_pwclass; eval $setvar
11324         set d_pwexpire; eval $setvar
11325         set d_pwcomment; eval $setvar
11326         set d_pwgecos; eval $setvar
11327         set d_pwpasswd; eval $setvar
11328         ;;
11329 esac
11330
11331 : see if endpwent_r exists
11332 set endpwent_r d_endpwent_r
11333 eval $inlibc
11334 case "$d_endpwent_r" in
11335 "$define")
11336         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
11337         case "$d_endpwent_r_proto:$usethreads" in
11338         ":define")      d_endpwent_r_proto=define
11339                 set d_endpwent_r_proto endpwent_r $hdrs
11340                 eval $hasproto ;;
11341         *)      ;;
11342         esac
11343         case "$d_endpwent_r_proto" in
11344         define)
11345         case "$endpwent_r_proto" in
11346         ''|0) try='int endpwent_r(FILE**);'
11347         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
11348         esac
11349         case "$endpwent_r_proto" in
11350         ''|0) try='void endpwent_r(FILE**);'
11351         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
11352         esac
11353         case "$endpwent_r_proto" in
11354         ''|0)   d_endpwent_r=undef
11355                 endpwent_r_proto=0
11356                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
11357         * )     case "$endpwent_r_proto" in
11358                 REENTRANT_PROTO*) ;;
11359                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
11360                 esac
11361                 echo "Prototype: $try" ;;
11362         esac
11363         ;;
11364         *)      case "$usethreads" in
11365                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
11366                 esac
11367                 d_endpwent_r=undef
11368                 endpwent_r_proto=0
11369                 ;;
11370         esac
11371         ;;
11372 *)      endpwent_r_proto=0
11373         ;;
11374 esac
11375
11376 : see if endservent exists
11377 set endservent d_endsent
11378 eval $inlibc
11379
11380 : see if endservent_r exists
11381 set endservent_r d_endservent_r
11382 eval $inlibc
11383 case "$d_endservent_r" in
11384 "$define")
11385         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11386         case "$d_endservent_r_proto:$usethreads" in
11387         ":define")      d_endservent_r_proto=define
11388                 set d_endservent_r_proto endservent_r $hdrs
11389                 eval $hasproto ;;
11390         *)      ;;
11391         esac
11392         case "$d_endservent_r_proto" in
11393         define)
11394         case "$endservent_r_proto" in
11395         ''|0) try='int endservent_r(struct servent_data*);'
11396         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
11397         esac
11398         case "$endservent_r_proto" in
11399         ''|0) try='void endservent_r(struct servent_data*);'
11400         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
11401         esac
11402         case "$endservent_r_proto" in
11403         ''|0)   d_endservent_r=undef
11404                 endservent_r_proto=0
11405                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
11406         * )     case "$endservent_r_proto" in
11407                 REENTRANT_PROTO*) ;;
11408                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
11409                 esac
11410                 echo "Prototype: $try" ;;
11411         esac
11412         ;;
11413         *)      case "$usethreads" in
11414                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
11415                 esac
11416                 d_endservent_r=undef
11417                 endservent_r_proto=0
11418                 ;;
11419         esac
11420         ;;
11421 *)      endservent_r_proto=0
11422         ;;
11423 esac
11424
11425 : Locate the flags for 'open()'
11426 echo " "
11427 $cat >try.c <<EOCP
11428 #include <sys/types.h>
11429 #ifdef I_FCNTL
11430 #include <fcntl.h>
11431 #endif
11432 #ifdef I_SYS_FILE
11433 #include <sys/file.h>
11434 #endif
11435 #$i_stdlib I_STDLIB
11436 #ifdef I_STDLIB
11437 #include <stdlib.h>
11438 #endif
11439 int main() {
11440         if(O_RDONLY);
11441 #ifdef O_TRUNC
11442         exit(0);
11443 #else
11444         exit(1);
11445 #endif
11446 }
11447 EOCP
11448 : check sys/file.h first to get FREAD on Sun
11449 if $test `./findhdr sys/file.h` && \
11450                 set try -DI_SYS_FILE && eval $compile; then
11451         h_sysfile=true;
11452         echo "<sys/file.h> defines the O_* constants..." >&4
11453         if $run ./try; then
11454                 echo "and you have the 3 argument form of open()." >&4
11455                 val="$define"
11456         else
11457                 echo "but not the 3 argument form of open().  Oh, well." >&4
11458                 val="$undef"
11459         fi
11460 elif $test `./findhdr fcntl.h` && \
11461                 set try -DI_FCNTL && eval $compile; then
11462         h_fcntl=true;
11463         echo "<fcntl.h> defines the O_* constants..." >&4
11464         if $run ./try; then
11465                 echo "and you have the 3 argument form of open()." >&4
11466                 val="$define"
11467         else
11468                 echo "but not the 3 argument form of open().  Oh, well." >&4
11469                 val="$undef"
11470         fi
11471 else
11472         val="$undef"
11473         echo "I can't find the O_* constant definitions!  You got problems." >&4
11474 fi
11475 set d_open3
11476 eval $setvar
11477 $rm -f try try.*
11478
11479 : see which of string.h or strings.h is needed
11480 echo " "
11481 strings=`./findhdr string.h`
11482 if $test "$strings" && $test -r "$strings"; then
11483         echo "Using <string.h> instead of <strings.h>." >&4
11484         val="$define"
11485 else
11486         val="$undef"
11487         strings=`./findhdr strings.h`
11488         if $test "$strings" && $test -r "$strings"; then
11489                 echo "Using <strings.h> instead of <string.h>." >&4
11490         else
11491                 echo "No string header found -- You'll surely have problems." >&4
11492         fi
11493 fi
11494 set i_string
11495 eval $setvar
11496 case "$i_string" in
11497 "$undef") strings=`./findhdr strings.h`;;
11498 *)        strings=`./findhdr string.h`;;
11499 esac
11500
11501 : see if this is a sys/file.h system
11502 val=''
11503 set sys/file.h val
11504 eval $inhdr
11505
11506 : do we need to include sys/file.h ?
11507 case "$val" in
11508 "$define")
11509         echo " "
11510         if $h_sysfile; then
11511                 val="$define"
11512                 echo "We'll be including <sys/file.h>." >&4
11513         else
11514                 val="$undef"
11515                 echo "We won't be including <sys/file.h>." >&4
11516         fi
11517         ;;
11518 *)
11519         h_sysfile=false
11520         ;;
11521 esac
11522 set i_sysfile
11523 eval $setvar
11524
11525 : see if fcntl.h is there
11526 val=''
11527 set fcntl.h val
11528 eval $inhdr
11529
11530 : see if we can include fcntl.h
11531 case "$val" in
11532 "$define")
11533         echo " "
11534         if $h_fcntl; then
11535                 val="$define"
11536                 echo "We'll be including <fcntl.h>." >&4
11537         else
11538                 val="$undef"
11539                 if $h_sysfile; then
11540         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11541                 else
11542                         echo "We won't be including <fcntl.h>." >&4
11543                 fi
11544         fi
11545         ;;
11546 *)
11547         h_fcntl=false
11548         val="$undef"
11549         ;;
11550 esac
11551 set i_fcntl
11552 eval $setvar
11553
11554 : check for non-blocking I/O stuff
11555 case "$h_sysfile" in
11556 true) echo "#include <sys/file.h>" > head.c;;
11557 *)
11558        case "$h_fcntl" in
11559        true) echo "#include <fcntl.h>" > head.c;;
11560        *) echo "#include <sys/fcntl.h>" > head.c;;
11561        esac
11562        ;;
11563 esac
11564 echo " "
11565 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11566 case "$o_nonblock" in
11567 '')
11568         $cat head.c > try.c
11569         $cat >>try.c <<EOCP
11570 #include <stdio.h>
11571 #$i_stdlib I_STDLIB
11572 #ifdef I_STDLIB
11573 #include <stdlib.h>
11574 #endif
11575 #$i_fcntl I_FCNTL
11576 #ifdef I_FCNTL
11577 #include <fcntl.h>
11578 #endif
11579 int main() {
11580 #ifdef O_NONBLOCK
11581         printf("O_NONBLOCK\n");
11582         exit(0);
11583 #endif
11584 #ifdef O_NDELAY
11585         printf("O_NDELAY\n");
11586         exit(0);
11587 #endif
11588 #ifdef FNDELAY
11589         printf("FNDELAY\n");
11590         exit(0);
11591 #endif
11592         exit(0);
11593 }
11594 EOCP
11595         set try
11596         if eval $compile_ok; then
11597                 o_nonblock=`$run ./try`
11598                 case "$o_nonblock" in
11599                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11600                 *) echo "Seems like we can use $o_nonblock.";;
11601                 esac
11602         else
11603                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11604         fi
11605         ;;
11606 *) echo "Using $hint value $o_nonblock.";;
11607 esac
11608 $rm -f try try.* .out core
11609
11610 echo " "
11611 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11612 case "$eagain" in
11613 '')
11614         $cat head.c > try.c
11615         $cat >>try.c <<EOCP
11616 #include <errno.h>
11617 #include <sys/types.h>
11618 #include <signal.h>
11619 #include <stdio.h> 
11620 #$i_stdlib I_STDLIB
11621 #ifdef I_STDLIB
11622 #include <stdlib.h>
11623 #endif
11624 #$i_fcntl I_FCNTL
11625 #ifdef I_FCNTL
11626 #include <fcntl.h>
11627 #endif
11628 #define MY_O_NONBLOCK $o_nonblock
11629 #ifndef errno  /* XXX need better Configure test */
11630 extern int errno;
11631 #endif
11632 #$i_unistd I_UNISTD
11633 #ifdef I_UNISTD
11634 #include <unistd.h>
11635 #endif
11636 #$i_string I_STRING
11637 #ifdef I_STRING
11638 #include <string.h>
11639 #else
11640 #include <strings.h>
11641 #endif
11642 $signal_t blech(x) int x; { exit(3); }
11643 EOCP
11644         $cat >> try.c <<'EOCP'
11645 int main()
11646 {
11647         int pd[2];
11648         int pu[2];
11649         char buf[1];
11650         char string[100];
11651
11652         pipe(pd);       /* Down: child -> parent */
11653         pipe(pu);       /* Up: parent -> child */
11654         if (0 != fork()) {
11655                 int ret;
11656                 close(pd[1]);   /* Parent reads from pd[0] */
11657                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11658 #ifdef F_SETFL
11659                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11660                         exit(1);
11661 #else
11662                 exit(4);
11663 #endif
11664                 signal(SIGALRM, blech);
11665                 alarm(5);
11666                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11667                         exit(2);
11668                 sprintf(string, "%d\n", ret);
11669                 write(2, string, strlen(string));
11670                 alarm(0);
11671 #ifdef EAGAIN
11672                 if (errno == EAGAIN) {
11673                         printf("EAGAIN\n");
11674                         goto ok;
11675                 }
11676 #endif
11677 #ifdef EWOULDBLOCK
11678                 if (errno == EWOULDBLOCK)
11679                         printf("EWOULDBLOCK\n");
11680 #endif
11681         ok:
11682                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11683                 sleep(2);                               /* Give it time to close our pipe */
11684                 alarm(5);
11685                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11686                 alarm(0);
11687                 sprintf(string, "%d\n", ret);
11688                 write(4, string, strlen(string));
11689                 exit(0);
11690         }
11691
11692         close(pd[0]);                   /* We write to pd[1] */
11693         close(pu[1]);                   /* We read from pu[0] */
11694         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11695         close(pd[1]);                   /* Pipe pd is now fully closed! */
11696         exit(0);                                /* Bye bye, thank you for playing! */
11697 }
11698 EOCP
11699         set try
11700         if eval $compile_ok; then
11701                 echo "$startsh" >mtry
11702                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11703                 chmod +x mtry
11704                 ./mtry >/dev/null 2>&1
11705                 case $? in
11706                 0) eagain=`$cat try.out`;;
11707                 1) echo "Could not perform non-blocking setting!";;
11708                 2) echo "I did a successful read() for something that was not there!";;
11709                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11710                 4) echo "Could not find F_SETFL!";;
11711                 *) echo "Something terribly wrong happened during testing.";;
11712                 esac
11713                 rd_nodata=`$cat try.ret`
11714                 echo "A read() system call with no data present returns $rd_nodata."
11715                 case "$rd_nodata" in
11716                 0|-1) ;;
11717                 *)
11718                         echo "(That's peculiar, fixing that to be -1.)"
11719                         rd_nodata=-1
11720                         ;;
11721                 esac
11722                 case "$eagain" in
11723                 '')
11724                         echo "Forcing errno EAGAIN on read() with no data available."
11725                         eagain=EAGAIN
11726                         ;;
11727                 *)
11728                         echo "Your read() sets errno to $eagain when no data is available."
11729                         ;;
11730                 esac
11731                 status=`$cat try.err`
11732                 case "$status" in
11733                 0) echo "And it correctly returns 0 to signal EOF.";;
11734                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11735                 *) echo "However, your read() returns '$status' on EOF??";;
11736                 esac
11737                 val="$define"
11738                 if test "$status" = "$rd_nodata"; then
11739                         echo "WARNING: you can't distinguish between EOF and no data!"
11740                         val="$undef"
11741                 fi
11742         else
11743                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11744                 eagain=EAGAIN
11745         fi
11746         set d_eofnblk
11747         eval $setvar
11748         ;;
11749 *)
11750         echo "Using $hint value $eagain."
11751         echo "Your read() returns $rd_nodata when no data is present."
11752         case "$d_eofnblk" in
11753         "$define") echo "And you can see EOF because read() returns 0.";;
11754         "$undef") echo "But you can't see EOF status from read() returned value.";;
11755         *)
11756                 echo "(Assuming you can't see EOF status from read anyway.)"
11757                 d_eofnblk=$undef
11758                 ;;
11759         esac
11760         ;;
11761 esac
11762 $rm -f try try.* .out core head.c mtry
11763
11764 : see if _ptr and _cnt from stdio act std
11765 echo " "
11766
11767 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
11768         echo "(Looks like you have stdio.h from BSD.)"
11769         case "$stdio_ptr" in
11770         '') stdio_ptr='((fp)->_p)'
11771                 ptr_lval=$define
11772                 ;;
11773         *)      ptr_lval=$d_stdio_ptr_lval;;
11774         esac
11775         case "$stdio_cnt" in
11776         '') stdio_cnt='((fp)->_r)'
11777                 cnt_lval=$define
11778                 ;;
11779         *)      cnt_lval=$d_stdio_cnt_lval;;
11780         esac
11781         case "$stdio_base" in
11782         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
11783         esac
11784         case "$stdio_bufsiz" in
11785         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
11786         esac
11787 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
11788         echo "(Looks like you have stdio.h from Linux.)"
11789         case "$stdio_ptr" in
11790         '') stdio_ptr='((fp)->_IO_read_ptr)'
11791                 ptr_lval=$define
11792                 ;;
11793         *)      ptr_lval=$d_stdio_ptr_lval;;
11794         esac
11795         case "$stdio_cnt" in
11796         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
11797                 cnt_lval=$undef
11798                 ;;
11799         *)      cnt_lval=$d_stdio_cnt_lval;;
11800         esac
11801         case "$stdio_base" in
11802         '') stdio_base='((fp)->_IO_read_base)';;
11803         esac
11804         case "$stdio_bufsiz" in
11805         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
11806         esac
11807 else
11808         case "$stdio_ptr" in
11809         '') stdio_ptr='((fp)->_ptr)'
11810                 ptr_lval=$define
11811                 ;;
11812         *)      ptr_lval=$d_stdio_ptr_lval;;
11813         esac
11814         case "$stdio_cnt" in
11815         '') stdio_cnt='((fp)->_cnt)'
11816                 cnt_lval=$define
11817                 ;;
11818         *)      cnt_lval=$d_stdio_cnt_lval;;
11819         esac
11820         case "$stdio_base" in
11821         '') stdio_base='((fp)->_base)';;
11822         esac
11823         case "$stdio_bufsiz" in
11824         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
11825         esac
11826 fi
11827
11828 : test whether _ptr and _cnt really work
11829 echo "Checking how std your stdio is..." >&4
11830 $cat >try.c <<EOP
11831 #include <stdio.h>
11832 #$i_stdlib I_STDLIB
11833 #ifdef I_STDLIB
11834 #include <stdlib.h>
11835 #endif
11836 #define FILE_ptr(fp)    $stdio_ptr
11837 #define FILE_cnt(fp)    $stdio_cnt
11838 int main() {
11839         FILE *fp = fopen("try.c", "r");
11840         char c = getc(fp);
11841         if (
11842                 18 <= FILE_cnt(fp) &&
11843                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11844         )
11845                 exit(0);
11846         exit(1);
11847 }
11848 EOP
11849 val="$undef"
11850 set try
11851 if eval $compile && $to try.c; then
11852         if $run ./try; then
11853                 echo "Your stdio acts pretty std."
11854                 val="$define"
11855         else
11856                 echo "Your stdio isn't very std."
11857         fi
11858 else
11859         echo "Your stdio doesn't appear very std."
11860 fi
11861 $rm -f try.c try
11862
11863 # glibc 2.2.90 and above apparently change stdio streams so Perl's
11864 # direct buffer manipulation no longer works.  The Configure tests
11865 # should be changed to correctly detect this, but until then,
11866 # the following check should at least let perl compile and run.
11867 # (This quick fix should be updated before 5.8.1.)
11868 # To be defensive, reject all unknown versions, and all versions  > 2.2.9.
11869 # A. Dougherty, June 3, 2002.
11870 case "$d_gnulibc" in
11871 $define)
11872         case "$gnulibc_version" in
11873         2.[01]*)  ;;
11874         2.2) ;;
11875         2.2.[0-9]) ;;
11876         *)  echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
11877                 val="$undef"
11878                 ;;
11879         esac
11880         ;;
11881 esac
11882 set d_stdstdio
11883 eval $setvar
11884
11885 : Can _ptr be used as an lvalue?
11886 case "$d_stdstdio$ptr_lval" in
11887 $define$define) val=$define ;;
11888 *) val=$undef ;;
11889 esac
11890 set d_stdio_ptr_lval
11891 eval $setvar
11892
11893 : Can _cnt be used as an lvalue?
11894 case "$d_stdstdio$cnt_lval" in
11895 $define$define) val=$define ;;
11896 *) val=$undef ;;
11897 esac
11898 set d_stdio_cnt_lval
11899 eval $setvar
11900
11901
11902 : test whether setting _ptr sets _cnt as a side effect
11903 d_stdio_ptr_lval_sets_cnt="$undef"
11904 d_stdio_ptr_lval_nochange_cnt="$undef"
11905 case "$d_stdio_ptr_lval$d_stdstdio" in
11906 $define$define)
11907         echo "Checking to see what happens if we set the stdio ptr..." >&4
11908 $cat >try.c <<EOP
11909 #include <stdio.h>
11910 /* Can we scream? */
11911 /* Eat dust sed :-) */
11912 /* In the buffer space, no one can hear you scream. */
11913 #$i_stdlib I_STDLIB
11914 #ifdef I_STDLIB
11915 #include <stdlib.h>
11916 #endif
11917 #define FILE_ptr(fp)    $stdio_ptr
11918 #define FILE_cnt(fp)    $stdio_cnt
11919 #include <sys/types.h>
11920 int main() {
11921         FILE *fp = fopen("try.c", "r");
11922         int c;
11923         char *ptr;
11924         size_t cnt;
11925         if (!fp) {
11926             puts("Fail even to read");
11927             exit(1);
11928         }
11929         c = getc(fp); /* Read away the first # */
11930         if (c == EOF) {
11931             puts("Fail even to read");
11932             exit(1);
11933         }
11934         if (!(
11935                 18 <= FILE_cnt(fp) &&
11936                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11937         )) {
11938                 puts("Fail even to read");
11939                 exit (1);
11940         }
11941         ptr = (char*) FILE_ptr(fp);
11942         cnt = (size_t)FILE_cnt(fp);
11943
11944         FILE_ptr(fp) += 42;
11945
11946         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
11947                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
11948                 exit (1);
11949         }
11950         if (FILE_cnt(fp) <= 20) {
11951                 printf ("Fail (<20 chars to test)");
11952                 exit (1);
11953         }
11954         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
11955                 puts("Fail compare");
11956                 exit (1);
11957         }
11958         if (cnt == FILE_cnt(fp)) {
11959                 puts("Pass_unchanged");
11960                 exit (0);
11961         }       
11962         if (FILE_cnt(fp) == (cnt - 42)) {
11963                 puts("Pass_changed");
11964                 exit (0);
11965         }
11966         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
11967         return 1;
11968
11969 }
11970 EOP
11971         set try
11972         if eval $compile && $to try.c; then
11973                 case `$run ./try` in
11974                 Pass_changed)
11975                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
11976                         d_stdio_ptr_lval_sets_cnt="$define" ;;
11977                 Pass_unchanged)
11978                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
11979                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
11980                 Fail*)
11981                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
11982                 *)
11983                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
11984         esac
11985         else
11986                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
11987         fi
11988         $rm -f try.c try
11989         ;;
11990 esac
11991
11992 : see if _base is also standard
11993 val="$undef"
11994 case "$d_stdstdio" in
11995 $define)
11996         $cat >try.c <<EOP
11997 #include <stdio.h>
11998 #$i_stdlib I_STDLIB
11999 #ifdef I_STDLIB
12000 #include <stdlib.h>
12001 #endif
12002 #define FILE_base(fp)   $stdio_base
12003 #define FILE_bufsiz(fp) $stdio_bufsiz
12004 int main() {
12005         FILE *fp = fopen("try.c", "r");
12006         char c = getc(fp);
12007         if (
12008                 19 <= FILE_bufsiz(fp) &&
12009                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
12010         )
12011                 exit(0);
12012         exit(1);
12013 }
12014 EOP
12015         set try
12016         if eval $compile && $to try.c; then
12017                 if $run ./try; then
12018                         echo "And its _base field acts std."
12019                         val="$define"
12020                 else
12021                         echo "But its _base field isn't std."
12022                 fi
12023         else
12024                 echo "However, it seems to be lacking the _base field."
12025         fi
12026         $rm -f try.c try
12027         ;;
12028 esac
12029 set d_stdiobase
12030 eval $setvar
12031
12032 : see if fast_stdio exists
12033 val="$undef"
12034 case "$d_stdstdio:$d_stdio_ptr_lval" in
12035 "$define:$define")
12036         case "$d_stdio_cnt_lval$d_stdio_ptr_lval_sets_cnt" in
12037         *$define*)
12038                 echo "You seem to have 'fast stdio' to directly manipulate the stdio buffers." >& 4
12039                 val="$define"
12040                 ;;
12041         esac
12042         ;;
12043 esac
12044 set d_faststdio
12045 eval $setvar
12046
12047
12048
12049 : see if fchdir exists
12050 set fchdir d_fchdir
12051 eval $inlibc
12052
12053 : see if fchmod exists
12054 set fchmod d_fchmod
12055 eval $inlibc
12056
12057 : see if fchown exists
12058 set fchown d_fchown
12059 eval $inlibc
12060
12061 : see if this is an fcntl system
12062 set fcntl d_fcntl
12063 eval $inlibc
12064
12065 echo " "
12066 : See if fcntl-based locking works.
12067 $cat >try.c <<EOCP
12068 #$i_stdlib I_STDLIB
12069 #ifdef I_STDLIB
12070 #include <stdlib.h>
12071 #endif
12072 #include <unistd.h>
12073 #include <fcntl.h>
12074 #include <signal.h>
12075 $signal_t blech(x) int x; { exit(3); }
12076 int main() {
12077 #if defined(F_SETLK) && defined(F_SETLKW)
12078      struct flock flock;
12079      int retval, fd;
12080      fd = open("try.c", O_RDONLY);
12081      flock.l_type = F_RDLCK;
12082      flock.l_whence = SEEK_SET;
12083      flock.l_start = flock.l_len = 0;
12084      signal(SIGALRM, blech);
12085      alarm(10);
12086      retval = fcntl(fd, F_SETLK, &flock);
12087      close(fd);
12088      (retval < 0 ? exit(2) : exit(0));
12089 #else
12090      exit(2);
12091 #endif
12092 }
12093 EOCP
12094 echo "Checking if fcntl-based file locking works... "
12095 case "$d_fcntl" in
12096 "$define")
12097         set try
12098         if eval $compile_ok; then
12099                 if $run ./try; then
12100                         echo "Yes, it seems to work."
12101                         val="$define"
12102                 else
12103                         echo "Nope, it didn't work."
12104                         val="$undef"
12105                         case "$?" in
12106                         3) $cat >&4 <<EOM
12107 ***
12108 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
12109 *** This is (almost) impossible.
12110 *** If your NFS lock daemons are not feeling well, something like
12111 *** this may happen, please investigate.  Cannot continue, aborting.
12112 ***
12113 EOM
12114                                 exit 1
12115                                 ;;
12116                         esac
12117                 fi
12118         else
12119                 echo "I'm unable to compile the test program, so I'll assume not."
12120                 val="$undef"
12121         fi
12122         ;;
12123 *) val="$undef";
12124         echo "Nope, since you don't even have fcntl()."
12125         ;;
12126 esac
12127 set d_fcntl_can_lock
12128 eval $setvar
12129 $rm -f try*
12130
12131
12132 : check for fd_set items
12133 $cat <<EOM
12134
12135 Checking to see how well your C compiler handles fd_set and friends ...
12136 EOM
12137 $cat >try.c <<EOCP
12138 #$i_stdlib I_STDLIB
12139 #ifdef I_STDLIB
12140 #include <stdlib.h>
12141 #endif
12142 #$i_systime I_SYS_TIME
12143 #$i_sysselct I_SYS_SELECT
12144 #$d_socket HAS_SOCKET
12145 #include <sys/types.h>
12146 #ifdef HAS_SOCKET
12147 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
12148 #endif
12149 #ifdef I_SYS_TIME
12150 #include <sys/time.h>
12151 #endif
12152 #ifdef I_SYS_SELECT
12153 #include <sys/select.h>
12154 #endif
12155 int main() {
12156         fd_set fds;
12157
12158 #ifdef TRYBITS
12159         if(fds.fds_bits);
12160 #endif
12161
12162 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
12163         exit(0);
12164 #else
12165         exit(1);
12166 #endif
12167 }
12168 EOCP
12169 set try -DTRYBITS
12170 if eval $compile; then
12171         d_fds_bits="$define"
12172         d_fd_set="$define"
12173         echo "Well, your system knows about the normal fd_set typedef..." >&4
12174         if $run ./try; then
12175                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
12176                 d_fd_macros="$define"
12177         else
12178                 $cat >&4 <<'EOM'
12179 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
12180 EOM
12181                 d_fd_macros="$undef"
12182         fi
12183 else
12184         $cat <<'EOM'
12185 Hmm, your compiler has some difficulty with fd_set.  Checking further...
12186 EOM
12187         set try
12188         if eval $compile; then
12189                 d_fds_bits="$undef"
12190                 d_fd_set="$define"
12191                 echo "Well, your system has some sort of fd_set available..." >&4
12192                 if $run ./try; then
12193                         echo "and you have the normal fd_set macros." >&4
12194                         d_fd_macros="$define"
12195                 else
12196                         $cat <<'EOM'
12197 but not the normal fd_set macros!  Gross!  More work for me...
12198 EOM
12199                         d_fd_macros="$undef"
12200                 fi
12201         else
12202         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
12203                 d_fd_set="$undef"
12204                 d_fds_bits="$undef"
12205                 d_fd_macros="$undef"
12206         fi
12207 fi
12208 $rm -f try try.*
12209
12210 : see if fgetpos exists
12211 set fgetpos d_fgetpos
12212 eval $inlibc
12213
12214 : see if finite exists
12215 set finite d_finite
12216 eval $inlibc
12217
12218 : see if finitel exists
12219 set finitel d_finitel
12220 eval $inlibc
12221
12222 : see if flock exists
12223 set flock d_flock
12224 eval $inlibc
12225
12226 : see if prototype for flock is available
12227 echo " "
12228 set d_flockproto flock $i_sysfile sys/file.h
12229 eval $hasproto
12230
12231 : see if fork exists
12232 set fork d_fork
12233 eval $inlibc
12234
12235 : see if fp_class exists
12236 set fp_class d_fp_class
12237 eval $inlibc
12238
12239 : see if pathconf exists
12240 set pathconf d_pathconf
12241 eval $inlibc
12242
12243 : see if fpathconf exists
12244 set fpathconf d_fpathconf
12245 eval $inlibc
12246
12247 : see if fpclass exists
12248 set fpclass d_fpclass
12249 eval $inlibc
12250
12251 : see if fpclassify exists
12252 set fpclassify d_fpclassify
12253 eval $inlibc
12254
12255 : see if fpclassl exists
12256 set fpclassl d_fpclassl
12257 eval $inlibc
12258
12259
12260 : check for fpos64_t
12261 echo " "
12262 echo "Checking to see if you have fpos64_t..." >&4
12263 $cat >try.c <<EOCP
12264 #include <stdio.h>
12265 int main() { fpos64_t x = 7; }
12266 EOCP
12267 set try
12268 if eval $compile; then
12269         val="$define"
12270         echo "You have fpos64_t."
12271 else
12272         val="$undef"
12273         echo "You do not have fpos64_t."
12274         case "$fpossize" in
12275         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
12276         esac
12277 fi
12278 $rm -f try.* try
12279 set d_fpos64_t
12280 eval $setvar
12281
12282 : see if frexpl exists
12283 set frexpl d_frexpl
12284 eval $inlibc
12285
12286 : see if this is a sys/param system
12287 set sys/param.h i_sysparam
12288 eval $inhdr
12289
12290 : see if this is a sys/mount.h system
12291 set sys/mount.h i_sysmount
12292 eval $inhdr
12293
12294
12295 echo " "
12296 echo "Checking to see if your system supports struct fs_data..." >&4
12297 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
12298 eval $hasstruct
12299 case "$d_fs_data_s" in
12300 "$define")      echo "Yes, it does."   ;;
12301 *)              echo "No, it doesn't." ;;
12302 esac
12303
12304 : see if fseeko exists
12305 set fseeko d_fseeko
12306 eval $inlibc
12307 case "$longsize" in
12308 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
12309 esac
12310
12311 : see if fsetpos exists
12312 set fsetpos d_fsetpos
12313 eval $inlibc
12314
12315
12316 : see if fstatfs exists
12317 set fstatfs d_fstatfs
12318 eval $inlibc
12319
12320
12321 : see if statvfs exists
12322 set statvfs d_statvfs
12323 eval $inlibc
12324
12325 : see if fstatvfs exists
12326 set fstatvfs d_fstatvfs
12327 eval $inlibc
12328
12329
12330 : see if fsync exists
12331 set fsync d_fsync
12332 eval $inlibc
12333
12334 : see if ftello exists
12335 set ftello d_ftello
12336 eval $inlibc
12337 case "$longsize" in
12338 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
12339 esac
12340
12341 : see if getcwd exists
12342 set getcwd d_getcwd
12343 eval $inlibc
12344
12345 : see if getespwnam exists
12346 set getespwnam d_getespwnam
12347 eval $inlibc
12348
12349
12350 : see if getfsstat exists
12351 set getfsstat d_getfsstat
12352 eval $inlibc
12353
12354 : see if getgrent exists
12355 set getgrent d_getgrent
12356 eval $inlibc
12357
12358 : see if getgrent_r exists
12359 set getgrent_r d_getgrent_r
12360 eval $inlibc
12361 case "$d_getgrent_r" in
12362 "$define")
12363         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12364         case "$d_getgrent_r_proto:$usethreads" in
12365         ":define")      d_getgrent_r_proto=define
12366                 set d_getgrent_r_proto getgrent_r $hdrs
12367                 eval $hasproto ;;
12368         *)      ;;
12369         esac
12370         case "$d_getgrent_r_proto" in
12371         define)
12372         case "$getgrent_r_proto" in
12373         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
12374         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
12375         esac
12376         case "$getgrent_r_proto" in
12377         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
12378         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
12379         esac
12380         case "$getgrent_r_proto" in
12381         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
12382         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
12383         esac
12384         case "$getgrent_r_proto" in
12385         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
12386         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
12387         esac
12388         case "$getgrent_r_proto" in
12389         ''|0) try='int getgrent_r(struct group*, char*, int);'
12390         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
12391         esac
12392         case "$getgrent_r_proto" in
12393         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
12394         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
12395         esac
12396         case "$getgrent_r_proto" in
12397         ''|0)   d_getgrent_r=undef
12398                 getgrent_r_proto=0
12399                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
12400         * )     case "$getgrent_r_proto" in
12401                 REENTRANT_PROTO*) ;;
12402                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
12403                 esac
12404                 echo "Prototype: $try" ;;
12405         esac
12406         ;;
12407         *)      case "$usethreads" in
12408                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
12409                 esac
12410                 d_getgrent_r=undef
12411                 getgrent_r_proto=0
12412                 ;;
12413         esac
12414         ;;
12415 *)      getgrent_r_proto=0
12416         ;;
12417 esac
12418
12419 : see if getgrgid_r exists
12420 set getgrgid_r d_getgrgid_r
12421 eval $inlibc
12422 case "$d_getgrgid_r" in
12423 "$define")
12424         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12425         case "$d_getgrgid_r_proto:$usethreads" in
12426         ":define")      d_getgrgid_r_proto=define
12427                 set d_getgrgid_r_proto getgrgid_r $hdrs
12428                 eval $hasproto ;;
12429         *)      ;;
12430         esac
12431         case "$d_getgrgid_r_proto" in
12432         define)
12433         case "$getgrgid_r_proto" in
12434         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
12435         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
12436         esac
12437         case "$getgrgid_r_proto" in
12438         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
12439         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
12440         esac
12441         case "$getgrgid_r_proto" in
12442         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
12443         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
12444         esac
12445         case "$getgrgid_r_proto" in
12446         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
12447         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
12448         esac
12449         case "$getgrgid_r_proto" in
12450         ''|0)   d_getgrgid_r=undef
12451                 getgrgid_r_proto=0
12452                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
12453         * )     case "$getgrgid_r_proto" in
12454                 REENTRANT_PROTO*) ;;
12455                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
12456                 esac
12457                 echo "Prototype: $try" ;;
12458         esac
12459         ;;
12460         *)      case "$usethreads" in
12461                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
12462                 esac
12463                 d_getgrgid_r=undef
12464                 getgrgid_r_proto=0
12465                 ;;
12466         esac
12467         ;;
12468 *)      getgrgid_r_proto=0
12469         ;;
12470 esac
12471
12472 : see if getgrnam_r exists
12473 set getgrnam_r d_getgrnam_r
12474 eval $inlibc
12475 case "$d_getgrnam_r" in
12476 "$define")
12477         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12478         case "$d_getgrnam_r_proto:$usethreads" in
12479         ":define")      d_getgrnam_r_proto=define
12480                 set d_getgrnam_r_proto getgrnam_r $hdrs
12481                 eval $hasproto ;;
12482         *)      ;;
12483         esac
12484         case "$d_getgrnam_r_proto" in
12485         define)
12486         case "$getgrnam_r_proto" in
12487         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
12488         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
12489         esac
12490         case "$getgrnam_r_proto" in
12491         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
12492         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
12493         esac
12494         case "$getgrnam_r_proto" in
12495         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
12496         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
12497         esac
12498         case "$getgrnam_r_proto" in
12499         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
12500         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
12501         esac
12502         case "$getgrnam_r_proto" in
12503         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
12504         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
12505         esac
12506         case "$getgrnam_r_proto" in
12507         ''|0)   d_getgrnam_r=undef
12508                 getgrnam_r_proto=0
12509                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
12510         * )     case "$getgrnam_r_proto" in
12511                 REENTRANT_PROTO*) ;;
12512                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
12513                 esac
12514                 echo "Prototype: $try" ;;
12515         esac
12516         ;;
12517         *)      case "$usethreads" in
12518                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
12519                 esac
12520                 d_getgrnam_r=undef
12521                 getgrnam_r_proto=0
12522                 ;;
12523         esac
12524         ;;
12525 *)      getgrnam_r_proto=0
12526         ;;
12527 esac
12528
12529 : see if gethostbyaddr exists
12530 set gethostbyaddr d_gethbyaddr
12531 eval $inlibc
12532
12533 : see if gethostbyname exists
12534 set gethostbyname d_gethbyname
12535 eval $inlibc
12536
12537 : see if gethostent exists
12538 set gethostent d_gethent
12539 eval $inlibc
12540
12541 : see how we will look up host name
12542 echo " "
12543 call=''
12544 if set gethostname val -f d_gethname; eval $csym; $val; then
12545         echo 'gethostname() found.' >&4
12546         d_gethname="$define"
12547         call=gethostname
12548 fi
12549 if set uname val -f d_uname; eval $csym; $val; then
12550         if ./xenix; then
12551                 $cat <<'EOM'
12552 uname() was found, but you're running xenix, and older versions of xenix
12553 have a broken uname(). If you don't really know whether your xenix is old
12554 enough to have a broken system call, use the default answer.
12555
12556 EOM
12557                 dflt=y
12558                 case "$d_uname" in
12559                 "$define") dflt=n;;
12560                 esac
12561                 rp='Is your uname() broken?'
12562                 . ./myread
12563                 case "$ans" in
12564                 n*) d_uname="$define"; call=uname;;
12565                 esac
12566         else
12567                 echo 'uname() found.' >&4
12568                 d_uname="$define"
12569                 case "$call" in
12570                 '') call=uname ;;
12571                 esac
12572         fi
12573 fi
12574 case "$d_gethname" in
12575 '') d_gethname="$undef";;
12576 esac
12577 case "$d_uname" in
12578 '') d_uname="$undef";;
12579 esac
12580 case "$d_uname$d_gethname" in
12581 *define*)
12582         dflt=n
12583         cat <<EOM
12584  
12585 Every now and then someone has a $call() that lies about the hostname
12586 but can't be fixed for political or economic reasons.  If you wish, I can
12587 pretend $call() isn't there and maybe compute hostname at run-time
12588 thanks to the '$phostname' command.
12589
12590 EOM
12591         rp="Shall I ignore $call() from now on?"
12592         . ./myread
12593         case "$ans" in
12594         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
12595         esac;;
12596 esac
12597 case "$phostname" in
12598 '') aphostname='';;
12599 *) case "$aphostname" in
12600         /*) ;;
12601         *) set X $phostname
12602                 shift
12603                 file=$1
12604                 shift
12605                 file=`./loc $file $file $pth`
12606                 aphostname=`echo $file $*`
12607                 ;;
12608         esac
12609         ;;
12610 esac
12611 case "$d_uname$d_gethname" in
12612 *define*) ;;
12613 *)
12614         case "$phostname" in
12615         '')
12616                 echo "There will be no way for $package to get your hostname." >&4;;
12617         *)
12618         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
12619                 ;;
12620         esac;;
12621 esac
12622 case "$d_phostname" in
12623 '') d_phostname="$undef";;
12624 esac
12625
12626 : see if gethostbyaddr_r exists
12627 set gethostbyaddr_r d_gethostbyaddr_r
12628 eval $inlibc
12629 case "$d_gethostbyaddr_r" in
12630 "$define")
12631         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12632         case "$d_gethostbyaddr_r_proto:$usethreads" in
12633         ":define")      d_gethostbyaddr_r_proto=define
12634                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
12635                 eval $hasproto ;;
12636         *)      ;;
12637         esac
12638         case "$d_gethostbyaddr_r_proto" in
12639         define)
12640         case "$gethostbyaddr_r_proto" in
12641         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12642         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
12643         esac
12644         case "$gethostbyaddr_r_proto" in
12645         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
12646         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
12647         esac
12648         case "$gethostbyaddr_r_proto" in
12649         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
12650         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
12651         esac
12652         case "$gethostbyaddr_r_proto" in
12653         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
12654         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
12655         esac
12656         case "$gethostbyaddr_r_proto" in
12657         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
12658         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
12659         esac
12660         case "$gethostbyaddr_r_proto" in
12661         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
12662         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
12663         esac
12664         case "$gethostbyaddr_r_proto" in
12665         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
12666         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
12667         esac
12668         case "$gethostbyaddr_r_proto" in
12669         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
12670         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
12671         esac
12672         case "$gethostbyaddr_r_proto" in
12673         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
12674         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
12675         esac
12676         case "$gethostbyaddr_r_proto" in
12677         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
12678         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
12679         esac
12680         case "$gethostbyaddr_r_proto" in
12681         ''|0) try='int gethostbyaddr_r(const void*, socklen_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12682         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_TsISBWRE ;;
12683         esac
12684         case "$gethostbyaddr_r_proto" in
12685         ''|0)   d_gethostbyaddr_r=undef
12686                 gethostbyaddr_r_proto=0
12687                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
12688         * )     case "$gethostbyaddr_r_proto" in
12689                 REENTRANT_PROTO*) ;;
12690                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
12691                 esac
12692                 echo "Prototype: $try" ;;
12693         esac
12694         ;;
12695         *)      case "$usethreads" in
12696                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
12697                 esac
12698                 d_gethostbyaddr_r=undef
12699                 gethostbyaddr_r_proto=0
12700                 ;;
12701         esac
12702         ;;
12703 *)      gethostbyaddr_r_proto=0
12704         ;;
12705 esac
12706
12707 : see if gethostbyname_r exists
12708 set gethostbyname_r d_gethostbyname_r
12709 eval $inlibc
12710 case "$d_gethostbyname_r" in
12711 "$define")
12712         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12713         case "$d_gethostbyname_r_proto:$usethreads" in
12714         ":define")      d_gethostbyname_r_proto=define
12715                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
12716                 eval $hasproto ;;
12717         *)      ;;
12718         esac
12719         case "$d_gethostbyname_r_proto" in
12720         define)
12721         case "$gethostbyname_r_proto" in
12722         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
12723         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
12724         esac
12725         case "$gethostbyname_r_proto" in
12726         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
12727         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
12728         esac
12729         case "$gethostbyname_r_proto" in
12730         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
12731         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
12732         esac
12733         case "$gethostbyname_r_proto" in
12734         ''|0)   d_gethostbyname_r=undef
12735                 gethostbyname_r_proto=0
12736                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
12737         * )     case "$gethostbyname_r_proto" in
12738                 REENTRANT_PROTO*) ;;
12739                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
12740                 esac
12741                 echo "Prototype: $try" ;;
12742         esac
12743         ;;
12744         *)      case "$usethreads" in
12745                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
12746                 esac
12747                 d_gethostbyname_r=undef
12748                 gethostbyname_r_proto=0
12749                 ;;
12750         esac
12751         ;;
12752 *)      gethostbyname_r_proto=0
12753         ;;
12754 esac
12755
12756 : see if gethostent_r exists
12757 set gethostent_r d_gethostent_r
12758 eval $inlibc
12759 case "$d_gethostent_r" in
12760 "$define")
12761         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12762         case "$d_gethostent_r_proto:$usethreads" in
12763         ":define")      d_gethostent_r_proto=define
12764                 set d_gethostent_r_proto gethostent_r $hdrs
12765                 eval $hasproto ;;
12766         *)      ;;
12767         esac
12768         case "$d_gethostent_r_proto" in
12769         define)
12770         case "$gethostent_r_proto" in
12771         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
12772         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
12773         esac
12774         case "$gethostent_r_proto" in
12775         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
12776         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
12777         esac
12778         case "$gethostent_r_proto" in
12779         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
12780         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
12781         esac
12782         case "$gethostent_r_proto" in
12783         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
12784         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
12785         esac
12786         case "$gethostent_r_proto" in
12787         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
12788         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
12789         esac
12790         case "$gethostent_r_proto" in
12791         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
12792         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
12793         esac
12794         case "$gethostent_r_proto" in
12795         ''|0)   d_gethostent_r=undef
12796                 gethostent_r_proto=0
12797                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
12798         * )     case "$gethostent_r_proto" in
12799                 REENTRANT_PROTO*) ;;
12800                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12801                 esac
12802                 echo "Prototype: $try" ;;
12803         esac
12804         ;;
12805         *)      case "$usethreads" in
12806                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12807                 esac
12808                 d_gethostent_r=undef
12809                 gethostent_r_proto=0
12810                 ;;
12811         esac
12812         ;;
12813 *)      gethostent_r_proto=0
12814         ;;
12815 esac
12816
12817 : see if prototypes for various gethostxxx netdb.h functions are available
12818 echo " "
12819 set d_gethostprotos gethostent $i_netdb netdb.h
12820 eval $hasproto
12821
12822 : see if getitimer exists
12823 set getitimer d_getitimer
12824 eval $inlibc
12825
12826 : see if getlogin exists
12827 set getlogin d_getlogin
12828 eval $inlibc
12829
12830 : see if getlogin_r exists
12831 set getlogin_r d_getlogin_r
12832 eval $inlibc
12833 case "$d_getlogin_r" in
12834 "$define")
12835         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12836         case "$d_getlogin_r_proto:$usethreads" in
12837         ":define")      d_getlogin_r_proto=define
12838                 set d_getlogin_r_proto getlogin_r $hdrs
12839                 eval $hasproto ;;
12840         *)      ;;
12841         esac
12842         case "$d_getlogin_r_proto" in
12843         define)
12844         case "$getlogin_r_proto" in
12845         ''|0) try='int getlogin_r(char*, size_t);'
12846         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12847         esac
12848         case "$getlogin_r_proto" in
12849         ''|0) try='int getlogin_r(char*, int);'
12850         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12851         esac
12852         case "$getlogin_r_proto" in
12853         ''|0) try='char* getlogin_r(char*, size_t);'
12854         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12855         esac
12856         case "$getlogin_r_proto" in
12857         ''|0) try='char* getlogin_r(char*, int);'
12858         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12859         esac
12860         case "$getlogin_r_proto" in
12861         ''|0)   d_getlogin_r=undef
12862                 getlogin_r_proto=0
12863                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12864         * )     case "$getlogin_r_proto" in
12865                 REENTRANT_PROTO*) ;;
12866                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12867                 esac
12868                 echo "Prototype: $try" ;;
12869         esac
12870         ;;
12871         *)      case "$usethreads" in
12872                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12873                 esac
12874                 d_getlogin_r=undef
12875                 getlogin_r_proto=0
12876                 ;;
12877         esac
12878         ;;
12879 *)      getlogin_r_proto=0
12880         ;;
12881 esac
12882
12883 : see if getmnt exists
12884 set getmnt d_getmnt
12885 eval $inlibc
12886
12887 : see if getmntent exists
12888 set getmntent d_getmntent
12889 eval $inlibc
12890
12891 : see if getnetbyaddr exists
12892 set getnetbyaddr d_getnbyaddr
12893 eval $inlibc
12894
12895 : see if getnetbyname exists
12896 set getnetbyname d_getnbyname
12897 eval $inlibc
12898
12899 : see if getnetent exists
12900 set getnetent d_getnent
12901 eval $inlibc
12902
12903 : see if getnetbyaddr_r exists
12904 set getnetbyaddr_r d_getnetbyaddr_r
12905 eval $inlibc
12906 case "$d_getnetbyaddr_r" in
12907 "$define")
12908         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12909         case "$d_getnetbyaddr_r_proto:$usethreads" in
12910         ":define")      d_getnetbyaddr_r_proto=define
12911                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12912                 eval $hasproto ;;
12913         *)      ;;
12914         esac
12915         case "$d_getnetbyaddr_r_proto" in
12916         define)
12917         case "$getnetbyaddr_r_proto" in
12918         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12919         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12920         esac
12921         case "$getnetbyaddr_r_proto" in
12922         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12923         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12924         esac
12925         case "$getnetbyaddr_r_proto" in
12926         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12927         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12928         esac
12929         case "$getnetbyaddr_r_proto" in
12930         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12931         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12932         esac
12933         case "$getnetbyaddr_r_proto" in
12934         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12935         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12936         esac
12937         case "$getnetbyaddr_r_proto" in
12938         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12939         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12940         esac
12941         case "$getnetbyaddr_r_proto" in
12942         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12943         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12944         esac
12945         case "$getnetbyaddr_r_proto" in
12946         ''|0) try='int getnetbyaddr_r(uint32_t, int, struct netent*, char*, size_t, struct netent**, int*);'
12947         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_uISBWRE ;;
12948         esac
12949         case "$getnetbyaddr_r_proto" in
12950         ''|0)   d_getnetbyaddr_r=undef
12951                 getnetbyaddr_r_proto=0
12952                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12953         * )     case "$getnetbyaddr_r_proto" in
12954                 REENTRANT_PROTO*) ;;
12955                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12956                 esac
12957                 echo "Prototype: $try" ;;
12958         esac
12959         ;;
12960         *)      case "$usethreads" in
12961                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12962                 esac
12963                 d_getnetbyaddr_r=undef
12964                 getnetbyaddr_r_proto=0
12965                 ;;
12966         esac
12967         ;;
12968 *)      getnetbyaddr_r_proto=0
12969         ;;
12970 esac
12971
12972 : see if getnetbyname_r exists
12973 set getnetbyname_r d_getnetbyname_r
12974 eval $inlibc
12975 case "$d_getnetbyname_r" in
12976 "$define")
12977         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12978         case "$d_getnetbyname_r_proto:$usethreads" in
12979         ":define")      d_getnetbyname_r_proto=define
12980                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12981                 eval $hasproto ;;
12982         *)      ;;
12983         esac
12984         case "$d_getnetbyname_r_proto" in
12985         define)
12986         case "$getnetbyname_r_proto" in
12987         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12988         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12989         esac
12990         case "$getnetbyname_r_proto" in
12991         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12992         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12993         esac
12994         case "$getnetbyname_r_proto" in
12995         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
12996         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
12997         esac
12998         case "$getnetbyname_r_proto" in
12999         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
13000         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
13001         esac
13002         case "$getnetbyname_r_proto" in
13003         ''|0)   d_getnetbyname_r=undef
13004                 getnetbyname_r_proto=0
13005                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
13006         * )     case "$getnetbyname_r_proto" in
13007                 REENTRANT_PROTO*) ;;
13008                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
13009                 esac
13010                 echo "Prototype: $try" ;;
13011         esac
13012         ;;
13013         *)      case "$usethreads" in
13014                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
13015                 esac
13016                 d_getnetbyname_r=undef
13017                 getnetbyname_r_proto=0
13018                 ;;
13019         esac
13020         ;;
13021 *)      getnetbyname_r_proto=0
13022         ;;
13023 esac
13024
13025 : see if getnetent_r exists
13026 set getnetent_r d_getnetent_r
13027 eval $inlibc
13028 case "$d_getnetent_r" in
13029 "$define")
13030         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13031         case "$d_getnetent_r_proto:$usethreads" in
13032         ":define")      d_getnetent_r_proto=define
13033                 set d_getnetent_r_proto getnetent_r $hdrs
13034                 eval $hasproto ;;
13035         *)      ;;
13036         esac
13037         case "$d_getnetent_r_proto" in
13038         define)
13039         case "$getnetent_r_proto" in
13040         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
13041         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
13042         esac
13043         case "$getnetent_r_proto" in
13044         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
13045         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
13046         esac
13047         case "$getnetent_r_proto" in
13048         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
13049         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
13050         esac
13051         case "$getnetent_r_proto" in
13052         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
13053         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
13054         esac
13055         case "$getnetent_r_proto" in
13056         ''|0) try='int getnetent_r(struct netent*, char*, int);'
13057         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
13058         esac
13059         case "$getnetent_r_proto" in
13060         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
13061         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
13062         esac
13063         case "$getnetent_r_proto" in
13064         ''|0)   d_getnetent_r=undef
13065                 getnetent_r_proto=0
13066                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
13067         * )     case "$getnetent_r_proto" in
13068                 REENTRANT_PROTO*) ;;
13069                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
13070                 esac
13071                 echo "Prototype: $try" ;;
13072         esac
13073         ;;
13074         *)      case "$usethreads" in
13075                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
13076                 esac
13077                 d_getnetent_r=undef
13078                 getnetent_r_proto=0
13079                 ;;
13080         esac
13081         ;;
13082 *)      getnetent_r_proto=0
13083         ;;
13084 esac
13085
13086 : see if prototypes for various getnetxxx netdb.h functions are available
13087 echo " "
13088 set d_getnetprotos getnetent $i_netdb netdb.h
13089 eval $hasproto
13090
13091 : see if getpagesize exists
13092 set getpagesize d_getpagsz
13093 eval $inlibc
13094
13095
13096 : see if getprotobyname exists
13097 set getprotobyname d_getpbyname
13098 eval $inlibc
13099
13100 : see if getprotobynumber exists
13101 set getprotobynumber d_getpbynumber
13102 eval $inlibc
13103
13104 : see if getprotoent exists
13105 set getprotoent d_getpent
13106 eval $inlibc
13107
13108 : see if getpgid exists
13109 set getpgid d_getpgid
13110 eval $inlibc
13111
13112 : see if getpgrp2 exists
13113 set getpgrp2 d_getpgrp2
13114 eval $inlibc
13115
13116 : see if getppid exists
13117 set getppid d_getppid
13118 eval $inlibc
13119
13120 : see if getpriority exists
13121 set getpriority d_getprior
13122 eval $inlibc
13123
13124 : see if getprotobyname_r exists
13125 set getprotobyname_r d_getprotobyname_r
13126 eval $inlibc
13127 case "$d_getprotobyname_r" in
13128 "$define")
13129         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13130         case "$d_getprotobyname_r_proto:$usethreads" in
13131         ":define")      d_getprotobyname_r_proto=define
13132                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
13133                 eval $hasproto ;;
13134         *)      ;;
13135         esac
13136         case "$d_getprotobyname_r_proto" in
13137         define)
13138         case "$getprotobyname_r_proto" in
13139         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
13140         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
13141         esac
13142         case "$getprotobyname_r_proto" in
13143         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
13144         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
13145         esac
13146         case "$getprotobyname_r_proto" in
13147         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
13148         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
13149         esac
13150         case "$getprotobyname_r_proto" in
13151         ''|0)   d_getprotobyname_r=undef
13152                 getprotobyname_r_proto=0
13153                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
13154         * )     case "$getprotobyname_r_proto" in
13155                 REENTRANT_PROTO*) ;;
13156                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
13157                 esac
13158                 echo "Prototype: $try" ;;
13159         esac
13160         ;;
13161         *)      case "$usethreads" in
13162                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
13163                 esac
13164                 d_getprotobyname_r=undef
13165                 getprotobyname_r_proto=0
13166                 ;;
13167         esac
13168         ;;
13169 *)      getprotobyname_r_proto=0
13170         ;;
13171 esac
13172
13173 : see if getprotobynumber_r exists
13174 set getprotobynumber_r d_getprotobynumber_r
13175 eval $inlibc
13176 case "$d_getprotobynumber_r" in
13177 "$define")
13178         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13179         case "$d_getprotobynumber_r_proto:$usethreads" in
13180         ":define")      d_getprotobynumber_r_proto=define
13181                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
13182                 eval $hasproto ;;
13183         *)      ;;
13184         esac
13185         case "$d_getprotobynumber_r_proto" in
13186         define)
13187         case "$getprotobynumber_r_proto" in
13188         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
13189         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
13190         esac
13191         case "$getprotobynumber_r_proto" in
13192         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
13193         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
13194         esac
13195         case "$getprotobynumber_r_proto" in
13196         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
13197         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
13198         esac
13199         case "$getprotobynumber_r_proto" in
13200         ''|0)   d_getprotobynumber_r=undef
13201                 getprotobynumber_r_proto=0
13202                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
13203         * )     case "$getprotobynumber_r_proto" in
13204                 REENTRANT_PROTO*) ;;
13205                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
13206                 esac
13207                 echo "Prototype: $try" ;;
13208         esac
13209         ;;
13210         *)      case "$usethreads" in
13211                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
13212                 esac
13213                 d_getprotobynumber_r=undef
13214                 getprotobynumber_r_proto=0
13215                 ;;
13216         esac
13217         ;;
13218 *)      getprotobynumber_r_proto=0
13219         ;;
13220 esac
13221
13222 : see if getprotoent_r exists
13223 set getprotoent_r d_getprotoent_r
13224 eval $inlibc
13225 case "$d_getprotoent_r" in
13226 "$define")
13227         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13228         case "$d_getprotoent_r_proto:$usethreads" in
13229         ":define")      d_getprotoent_r_proto=define
13230                 set d_getprotoent_r_proto getprotoent_r $hdrs
13231                 eval $hasproto ;;
13232         *)      ;;
13233         esac
13234         case "$d_getprotoent_r_proto" in
13235         define)
13236         case "$getprotoent_r_proto" in
13237         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
13238         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
13239         esac
13240         case "$getprotoent_r_proto" in
13241         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
13242         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
13243         esac
13244         case "$getprotoent_r_proto" in
13245         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
13246         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
13247         esac
13248         case "$getprotoent_r_proto" in
13249         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
13250         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
13251         esac
13252         case "$getprotoent_r_proto" in
13253         ''|0)   d_getprotoent_r=undef
13254                 getprotoent_r_proto=0
13255                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
13256         * )     case "$getprotoent_r_proto" in
13257                 REENTRANT_PROTO*) ;;
13258                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
13259                 esac
13260                 echo "Prototype: $try" ;;
13261         esac
13262         ;;
13263         *)      case "$usethreads" in
13264                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
13265                 esac
13266                 d_getprotoent_r=undef
13267                 getprotoent_r_proto=0
13268                 ;;
13269         esac
13270         ;;
13271 *)      getprotoent_r_proto=0
13272         ;;
13273 esac
13274
13275 : see if prototypes for various getprotoxxx netdb.h functions are available
13276 echo " "
13277 set d_getprotoprotos getprotoent $i_netdb netdb.h
13278 eval $hasproto
13279
13280 : see if getprpwnam exists
13281 set getprpwnam d_getprpwnam
13282 eval $inlibc
13283
13284 : see if getpwent exists
13285 set getpwent d_getpwent
13286 eval $inlibc
13287
13288 : see if getpwent_r exists
13289 set getpwent_r d_getpwent_r
13290 eval $inlibc
13291 case "$d_getpwent_r" in
13292 "$define")
13293         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13294         case "$d_getpwent_r_proto:$usethreads" in
13295         ":define")      d_getpwent_r_proto=define
13296                 set d_getpwent_r_proto getpwent_r $hdrs
13297                 eval $hasproto ;;
13298         *)      ;;
13299         esac
13300         case "$d_getpwent_r_proto" in
13301         define)
13302         case "$getpwent_r_proto" in
13303         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
13304         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
13305         esac
13306         case "$getpwent_r_proto" in
13307         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
13308         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
13309         esac
13310         case "$getpwent_r_proto" in
13311         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
13312         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
13313         esac
13314         case "$getpwent_r_proto" in
13315         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
13316         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
13317         esac
13318         case "$getpwent_r_proto" in
13319         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
13320         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
13321         esac
13322         case "$getpwent_r_proto" in
13323         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
13324         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
13325         esac
13326         case "$getpwent_r_proto" in
13327         ''|0)   d_getpwent_r=undef
13328                 getpwent_r_proto=0
13329                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
13330         * )     case "$getpwent_r_proto" in
13331                 REENTRANT_PROTO*) ;;
13332                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
13333                 esac
13334                 echo "Prototype: $try" ;;
13335         esac
13336         ;;
13337         *)      case "$usethreads" in
13338                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
13339                 esac
13340                 d_getpwent_r=undef
13341                 getpwent_r_proto=0
13342                 ;;
13343         esac
13344         ;;
13345 *)      getpwent_r_proto=0
13346         ;;
13347 esac
13348
13349 : see if getpwnam_r exists
13350 set getpwnam_r d_getpwnam_r
13351 eval $inlibc
13352 case "$d_getpwnam_r" in
13353 "$define")
13354         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13355         case "$d_getpwnam_r_proto:$usethreads" in
13356         ":define")      d_getpwnam_r_proto=define
13357                 set d_getpwnam_r_proto getpwnam_r $hdrs
13358                 eval $hasproto ;;
13359         *)      ;;
13360         esac
13361         case "$d_getpwnam_r_proto" in
13362         define)
13363         case "$getpwnam_r_proto" in
13364         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
13365         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
13366         esac
13367         case "$getpwnam_r_proto" in
13368         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
13369         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
13370         esac
13371         case "$getpwnam_r_proto" in
13372         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
13373         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
13374         esac
13375         case "$getpwnam_r_proto" in
13376         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
13377         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
13378         esac
13379         case "$getpwnam_r_proto" in
13380         ''|0)   d_getpwnam_r=undef
13381                 getpwnam_r_proto=0
13382                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
13383         * )     case "$getpwnam_r_proto" in
13384                 REENTRANT_PROTO*) ;;
13385                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
13386                 esac
13387                 echo "Prototype: $try" ;;
13388         esac
13389         ;;
13390         *)      case "$usethreads" in
13391                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
13392                 esac
13393                 d_getpwnam_r=undef
13394                 getpwnam_r_proto=0
13395                 ;;
13396         esac
13397         ;;
13398 *)      getpwnam_r_proto=0
13399         ;;
13400 esac
13401
13402 : see if getpwuid_r exists
13403 set getpwuid_r d_getpwuid_r
13404 eval $inlibc
13405 case "$d_getpwuid_r" in
13406 "$define")
13407         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13408         case "$d_getpwuid_r_proto:$usethreads" in
13409         ":define")      d_getpwuid_r_proto=define
13410                 set d_getpwuid_r_proto getpwuid_r $hdrs
13411                 eval $hasproto ;;
13412         *)      ;;
13413         esac
13414         case "$d_getpwuid_r_proto" in
13415         define)
13416         case "$getpwuid_r_proto" in
13417         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
13418         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
13419         esac
13420         case "$getpwuid_r_proto" in
13421         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
13422         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
13423         esac
13424         case "$getpwuid_r_proto" in
13425         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
13426         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
13427         esac
13428         case "$getpwuid_r_proto" in
13429         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
13430         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
13431         esac
13432         case "$getpwuid_r_proto" in
13433         ''|0)   d_getpwuid_r=undef
13434                 getpwuid_r_proto=0
13435                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
13436         * )     case "$getpwuid_r_proto" in
13437                 REENTRANT_PROTO*) ;;
13438                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
13439                 esac
13440                 echo "Prototype: $try" ;;
13441         esac
13442         ;;
13443         *)      case "$usethreads" in
13444                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
13445                 esac
13446                 d_getpwuid_r=undef
13447                 getpwuid_r_proto=0
13448                 ;;
13449         esac
13450         ;;
13451 *)      getpwuid_r_proto=0
13452         ;;
13453 esac
13454
13455
13456 : see if getservbyname exists
13457 set getservbyname d_getsbyname
13458 eval $inlibc
13459
13460 : see if getservbyport exists
13461 set getservbyport d_getsbyport
13462 eval $inlibc
13463
13464 : see if getservent exists
13465 set getservent d_getsent
13466 eval $inlibc
13467
13468 : see if getservbyname_r exists
13469 set getservbyname_r d_getservbyname_r
13470 eval $inlibc
13471 case "$d_getservbyname_r" in
13472 "$define")
13473         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13474         case "$d_getservbyname_r_proto:$usethreads" in
13475         ":define")      d_getservbyname_r_proto=define
13476                 set d_getservbyname_r_proto getservbyname_r $hdrs
13477                 eval $hasproto ;;
13478         *)      ;;
13479         esac
13480         case "$d_getservbyname_r_proto" in
13481         define)
13482         case "$getservbyname_r_proto" in
13483         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
13484         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
13485         esac
13486         case "$getservbyname_r_proto" in
13487         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
13488         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
13489         esac
13490         case "$getservbyname_r_proto" in
13491         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
13492         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
13493         esac
13494         case "$getservbyname_r_proto" in
13495         ''|0)   d_getservbyname_r=undef
13496                 getservbyname_r_proto=0
13497                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
13498         * )     case "$getservbyname_r_proto" in
13499                 REENTRANT_PROTO*) ;;
13500                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
13501                 esac
13502                 echo "Prototype: $try" ;;
13503         esac
13504         ;;
13505         *)      case "$usethreads" in
13506                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
13507                 esac
13508                 d_getservbyname_r=undef
13509                 getservbyname_r_proto=0
13510                 ;;
13511         esac
13512         ;;
13513 *)      getservbyname_r_proto=0
13514         ;;
13515 esac
13516
13517 : see if getservbyport_r exists
13518 set getservbyport_r d_getservbyport_r
13519 eval $inlibc
13520 case "$d_getservbyport_r" in
13521 "$define")
13522         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13523         case "$d_getservbyport_r_proto:$usethreads" in
13524         ":define")      d_getservbyport_r_proto=define
13525                 set d_getservbyport_r_proto getservbyport_r $hdrs
13526                 eval $hasproto ;;
13527         *)      ;;
13528         esac
13529         case "$d_getservbyport_r_proto" in
13530         define)
13531         case "$getservbyport_r_proto" in
13532         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
13533         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
13534         esac
13535         case "$getservbyport_r_proto" in
13536         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
13537         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
13538         esac
13539         case "$getservbyport_r_proto" in
13540         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
13541         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
13542         esac
13543         case "$getservbyport_r_proto" in
13544         ''|0)   d_getservbyport_r=undef
13545                 getservbyport_r_proto=0
13546                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
13547         * )     case "$getservbyport_r_proto" in
13548                 REENTRANT_PROTO*) ;;
13549                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
13550                 esac
13551                 echo "Prototype: $try" ;;
13552         esac
13553         ;;
13554         *)      case "$usethreads" in
13555                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
13556                 esac
13557                 d_getservbyport_r=undef
13558                 getservbyport_r_proto=0
13559                 ;;
13560         esac
13561         ;;
13562 *)      getservbyport_r_proto=0
13563         ;;
13564 esac
13565
13566 : see if getservent_r exists
13567 set getservent_r d_getservent_r
13568 eval $inlibc
13569 case "$d_getservent_r" in
13570 "$define")
13571         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13572         case "$d_getservent_r_proto:$usethreads" in
13573         ":define")      d_getservent_r_proto=define
13574                 set d_getservent_r_proto getservent_r $hdrs
13575                 eval $hasproto ;;
13576         *)      ;;
13577         esac
13578         case "$d_getservent_r_proto" in
13579         define)
13580         case "$getservent_r_proto" in
13581         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
13582         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
13583         esac
13584         case "$getservent_r_proto" in
13585         ''|0) try='int getservent_r(struct servent*, char*, int);'
13586         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
13587         esac
13588         case "$getservent_r_proto" in
13589         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
13590         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
13591         esac
13592         case "$getservent_r_proto" in
13593         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
13594         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
13595         esac
13596         case "$getservent_r_proto" in
13597         ''|0)   d_getservent_r=undef
13598                 getservent_r_proto=0
13599                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
13600         * )     case "$getservent_r_proto" in
13601                 REENTRANT_PROTO*) ;;
13602                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
13603                 esac
13604                 echo "Prototype: $try" ;;
13605         esac
13606         ;;
13607         *)      case "$usethreads" in
13608                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
13609                 esac
13610                 d_getservent_r=undef
13611                 getservent_r_proto=0
13612                 ;;
13613         esac
13614         ;;
13615 *)      getservent_r_proto=0
13616         ;;
13617 esac
13618
13619 : see if prototypes for various getservxxx netdb.h functions are available
13620 echo " "
13621 set d_getservprotos getservent $i_netdb netdb.h
13622 eval $hasproto
13623
13624 : see if getspnam exists
13625 set getspnam d_getspnam
13626 eval $inlibc
13627
13628 : see if this is a shadow.h system
13629 set shadow.h i_shadow
13630 eval $inhdr
13631
13632 : see if getspnam_r exists
13633 set getspnam_r d_getspnam_r
13634 eval $inlibc
13635 case "$d_getspnam_r" in
13636 "$define")
13637         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
13638         case "$d_getspnam_r_proto:$usethreads" in
13639         ":define")      d_getspnam_r_proto=define
13640                 set d_getspnam_r_proto getspnam_r $hdrs
13641                 eval $hasproto ;;
13642         *)      ;;
13643         esac
13644         case "$d_getspnam_r_proto" in
13645         define)
13646         case "$getspnam_r_proto" in
13647         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
13648         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
13649         esac
13650         case "$getspnam_r_proto" in
13651         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
13652         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
13653         esac
13654         case "$getspnam_r_proto" in
13655         ''|0)   d_getspnam_r=undef
13656                 getspnam_r_proto=0
13657                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
13658         * )     case "$getspnam_r_proto" in
13659                 REENTRANT_PROTO*) ;;
13660                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
13661                 esac
13662                 echo "Prototype: $try" ;;
13663         esac
13664         ;;
13665         *)      case "$usethreads" in
13666                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
13667                 esac
13668                 d_getspnam_r=undef
13669                 getspnam_r_proto=0
13670                 ;;
13671         esac
13672         ;;
13673 *)      getspnam_r_proto=0
13674         ;;
13675 esac
13676
13677 : see if gettimeofday or ftime exists
13678 set gettimeofday d_gettimeod
13679 eval $inlibc
13680 case "$d_gettimeod" in
13681 "$undef")
13682         set ftime d_ftime 
13683         eval $inlibc
13684         ;;
13685 *)
13686         val="$undef"; set d_ftime; eval $setvar
13687         ;;
13688 esac
13689 case "$d_gettimeod$d_ftime" in
13690 "$undef$undef")
13691         echo " "
13692         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
13693         ;;
13694 esac
13695
13696 : see if gmtime_r exists
13697 set gmtime_r d_gmtime_r
13698 eval $inlibc
13699 case "$d_gmtime_r" in
13700 "$define")
13701         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13702         case "$d_gmtime_r_proto:$usethreads" in
13703         ":define")      d_gmtime_r_proto=define
13704                 set d_gmtime_r_proto gmtime_r $hdrs
13705                 eval $hasproto ;;
13706         *)      ;;
13707         esac
13708         case "$d_gmtime_r_proto" in
13709         define)
13710         case "$gmtime_r_proto" in
13711         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13712         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13713         esac
13714         case "$gmtime_r_proto" in
13715         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13716         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13717         esac
13718         case "$gmtime_r_proto" in
13719         ''|0)   d_gmtime_r=undef
13720                 gmtime_r_proto=0
13721                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13722         * )     case "$gmtime_r_proto" in
13723                 REENTRANT_PROTO*) ;;
13724                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13725                 esac
13726                 echo "Prototype: $try" ;;
13727         esac
13728         ;;
13729         *)      case "$usethreads" in
13730                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13731                 esac
13732                 d_gmtime_r=undef
13733                 gmtime_r_proto=0
13734                 ;;
13735         esac
13736         ;;
13737 *)      gmtime_r_proto=0
13738         ;;
13739 esac
13740
13741 : see if hasmntopt exists
13742 set hasmntopt d_hasmntopt
13743 eval $inlibc
13744
13745 : see if this is a netinet/in.h or sys/in.h system
13746 set netinet/in.h i_niin sys/in.h i_sysin
13747 eval $inhdr
13748
13749 : see if arpa/inet.h has to be included
13750 set arpa/inet.h i_arpainet
13751 eval $inhdr
13752
13753 : see if htonl --and friends-- exists
13754 val=''
13755 set htonl val
13756 eval $inlibc
13757
13758 : Maybe they are macros.
13759 case "$val" in
13760 $undef)
13761         $cat >htonl.c <<EOM
13762 #include <stdio.h>
13763 #include <sys/types.h>
13764 #$i_niin I_NETINET_IN
13765 #$i_sysin I_SYS_IN
13766 #$i_arpainet I_ARPA_INET
13767 #ifdef I_NETINET_IN
13768 #include <netinet/in.h>
13769 #endif
13770 #ifdef I_SYS_IN
13771 #include <sys/in.h>
13772 #endif
13773 #ifdef I_ARPA_INET
13774 #include <arpa/inet.h>
13775 #endif
13776 #ifdef htonl
13777 printf("Defined as a macro.");
13778 #endif
13779 EOM
13780         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
13781         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
13782                 val="$define"
13783                 echo "But it seems to be defined as a macro." >&4
13784         fi
13785         $rm -f htonl.?
13786         ;;
13787 esac
13788 set d_htonl
13789 eval $setvar
13790
13791 : see if ilogbl exists
13792 set ilogbl d_ilogbl
13793 eval $inlibc
13794
13795 : index or strchr
13796 echo " "
13797 if set index val -f; eval $csym; $val; then
13798         if set strchr val -f d_strchr; eval $csym; $val; then
13799                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
13800                         val="$define"
13801                         vali="$undef"
13802                         echo "strchr() found." >&4
13803                 else
13804                         val="$undef"
13805                         vali="$define"
13806                         echo "index() found." >&4
13807                 fi
13808         else
13809                 val="$undef"
13810                 vali="$define"
13811                 echo "index() found." >&4
13812         fi
13813 else
13814         if set strchr val -f d_strchr; eval $csym; $val; then
13815                 val="$define"
13816                 vali="$undef"
13817                 echo "strchr() found." >&4
13818         else
13819                 echo "No index() or strchr() found!" >&4
13820                 val="$undef"
13821                 vali="$undef"
13822         fi
13823 fi
13824 set d_strchr; eval $setvar
13825 val="$vali"
13826 set d_index; eval $setvar
13827
13828 : check whether inet_aton exists
13829 set inet_aton d_inetaton
13830 eval $inlibc
13831
13832 : Look for isascii
13833 echo " "
13834 $cat >isascii.c <<EOCP
13835 #include <stdio.h>
13836 #include <ctype.h>
13837 #$i_stdlib I_STDLIB
13838 #ifdef I_STDLIB
13839 #include <stdlib.h>
13840 #endif
13841 int main() {
13842         int c = 'A';
13843         if (isascii(c))
13844                 exit(0);
13845         else
13846                 exit(1);
13847 }
13848 EOCP
13849 set isascii
13850 if eval $compile; then
13851         echo "isascii() found." >&4
13852         val="$define"
13853 else
13854         echo "isascii() NOT found." >&4
13855         val="$undef"
13856 fi
13857 set d_isascii
13858 eval $setvar
13859 $rm -f isascii*
13860
13861 : see if isfinite exists
13862 set isfinite d_isfinite
13863 eval $inlibc
13864
13865 : see if isinf exists
13866 set isinf d_isinf
13867 eval $inlibc
13868
13869 : see if isnan exists
13870 set isnan d_isnan
13871 eval $inlibc
13872
13873 : see if isnanl exists
13874 set isnanl d_isnanl
13875 eval $inlibc
13876
13877 : see if killpg exists
13878 set killpg d_killpg
13879 eval $inlibc
13880
13881 : see if lchown exists
13882 echo " "
13883 $cat > try.c <<'EOCP'
13884 /* System header to define __stub macros and hopefully few prototypes,
13885     which can conflict with char lchown(); below.  */
13886 #include <assert.h>
13887 /* Override any gcc2 internal prototype to avoid an error.  */
13888 /* We use char because int might match the return type of a gcc2
13889    builtin and then its argument prototype would still apply.  */
13890 char lchown();
13891 int main() {
13892     /*  The GNU C library defines this for functions which it implements
13893         to always fail with ENOSYS.  Some functions are actually named
13894         something starting with __ and the normal name is an alias.  */
13895 #if defined (__stub_lchown) || defined (__stub___lchown)
13896 choke me
13897 #else
13898 lchown();
13899 #endif
13900 ; return 0; }
13901 EOCP
13902 set try
13903 if eval $compile; then
13904     $echo "lchown() found." >&4
13905     val="$define"
13906 else
13907     $echo "lchown() NOT found." >&4
13908     val="$undef"
13909 fi
13910 set d_lchown
13911 eval $setvar
13912
13913 : See if number of significant digits in a double precision number is known
13914 echo " "
13915 $cat >ldbl_dig.c <<EOM
13916 #$i_limits I_LIMITS
13917 #$i_float I_FLOAT
13918 #ifdef I_LIMITS
13919 #include <limits.h>
13920 #endif
13921 #ifdef I_FLOAT
13922 #include <float.h>
13923 #endif
13924 #ifdef LDBL_DIG
13925 printf("Contains LDBL_DIG");
13926 #endif
13927 EOM
13928 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13929 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13930         echo "LDBL_DIG found." >&4
13931         val="$define"
13932 else
13933         echo "LDBL_DIG NOT found." >&4
13934         val="$undef"
13935 fi
13936 $rm -f ldbl_dig.?
13937 set d_ldbl_dig
13938 eval $setvar
13939
13940 : see if link exists
13941 set link d_link
13942 eval $inlibc
13943
13944 : see if localtime_r exists
13945 set localtime_r d_localtime_r
13946 eval $inlibc
13947 case "$d_localtime_r" in
13948 "$define")
13949         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13950         case "$d_localtime_r_proto:$usethreads" in
13951         ":define")      d_localtime_r_proto=define
13952                 set d_localtime_r_proto localtime_r $hdrs
13953                 eval $hasproto ;;
13954         *)      ;;
13955         esac
13956         case "$d_localtime_r_proto" in
13957         define)
13958         case "$localtime_r_proto" in
13959         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13960         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13961         esac
13962         case "$localtime_r_proto" in
13963         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13964         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13965         esac
13966         case "$localtime_r_proto" in
13967         ''|0)   d_localtime_r=undef
13968                 localtime_r_proto=0
13969                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13970         * )     case "$localtime_r_proto" in
13971                 REENTRANT_PROTO*) ;;
13972                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13973                 esac
13974                 echo "Prototype: $try" ;;
13975         esac
13976         ;;
13977         *)      case "$usethreads" in
13978                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13979                 esac
13980                 d_localtime_r=undef
13981                 localtime_r_proto=0
13982                 ;;
13983         esac
13984         ;;
13985 *)      localtime_r_proto=0
13986         ;;
13987 esac
13988
13989 : see if localeconv exists
13990 set localeconv d_locconv
13991 eval $inlibc
13992
13993 : see if lockf exists
13994 set lockf d_lockf
13995 eval $inlibc
13996
13997 : see if prototype for lseek is available
13998 echo " "
13999 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
14000 eval $hasproto
14001
14002 : see if lstat exists
14003 set lstat d_lstat
14004 eval $inlibc
14005
14006 : see if madvise exists
14007 set madvise d_madvise
14008 eval $inlibc
14009
14010 : see if mblen exists
14011 set mblen d_mblen
14012 eval $inlibc
14013
14014 : see if mbstowcs exists
14015 set mbstowcs d_mbstowcs
14016 eval $inlibc
14017
14018 : see if mbtowc exists
14019 set mbtowc d_mbtowc
14020 eval $inlibc
14021
14022 : see if memchr exists
14023 set memchr d_memchr
14024 eval $inlibc
14025
14026 : see if memcmp exists
14027 set memcmp d_memcmp
14028 eval $inlibc
14029
14030 : see if memcpy exists
14031 set memcpy d_memcpy
14032 eval $inlibc
14033
14034 : see if memmove exists
14035 set memmove d_memmove
14036 eval $inlibc
14037
14038 : see if memset exists
14039 set memset d_memset
14040 eval $inlibc
14041
14042 : see if mkdir exists
14043 set mkdir d_mkdir
14044 eval $inlibc
14045
14046 : see if mkdtemp exists
14047 set mkdtemp d_mkdtemp
14048 eval $inlibc
14049
14050 : see if mkfifo exists
14051 set mkfifo d_mkfifo
14052 eval $inlibc
14053
14054 : see if mkstemp exists
14055 set mkstemp d_mkstemp
14056 eval $inlibc
14057
14058 : see if mkstemps exists
14059 set mkstemps d_mkstemps
14060 eval $inlibc
14061
14062 : see if mktime exists
14063 set mktime d_mktime
14064 eval $inlibc
14065
14066 : see if this is a sys/mman.h system
14067 set sys/mman.h i_sysmman
14068 eval $inhdr
14069
14070 : see if mmap exists
14071 set mmap d_mmap
14072 eval $inlibc
14073 : see what shmat returns
14074 : default to something harmless
14075 mmaptype='void *'
14076 case "$i_sysmman$d_mmap" in
14077 "$define$define")
14078         $cat >mmap.c <<'END'
14079 #include <sys/mman.h>
14080 void *mmap();
14081 END
14082         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
14083                 mmaptype='void *'
14084         else
14085                 mmaptype='caddr_t'
14086         fi
14087         echo "and it returns ($mmaptype)." >&4
14088         ;;
14089 esac
14090
14091
14092
14093 : see if sqrtl exists
14094 set sqrtl d_sqrtl
14095 eval $inlibc
14096
14097 : see if scalbnl exists
14098 set scalbnl d_scalbnl
14099 eval $inlibc
14100
14101 : see if modfl exists
14102 set modfl d_modfl
14103 eval $inlibc
14104
14105 : see if prototype for modfl is available
14106 echo " "
14107 set d_modflproto modfl math.h
14108 eval $hasproto
14109
14110 d_modfl_pow32_bug="$undef"
14111
14112 case "$d_longdbl$d_modfl" in
14113 $define$define)
14114         $cat <<EOM
14115 Checking to see whether your modfl() is okay for large values...
14116 EOM
14117 $cat >try.c <<EOCP
14118 #include <math.h> 
14119 #include <stdio.h>
14120 EOCP
14121 if $test "X$d_modflproto" != "X$define"; then
14122         $cat >>try.c <<EOCP
14123 /* Sigh. many current glibcs provide the function, but do not prototype it.  */ 
14124 long double modfl (long double, long double *);
14125 EOCP
14126 fi
14127 $cat >>try.c <<EOCP
14128 int main() {
14129     long double nv = 4294967303.15;
14130     long double v, w;
14131     v = modfl(nv, &w);         
14132 #ifdef __GLIBC__
14133     printf("glibc");
14134 #endif
14135     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
14136     return 0;
14137 }
14138 EOCP
14139         case "$osname:$gccversion" in
14140         aix:)   saveccflags="$ccflags"
14141                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
14142         esac
14143         set try
14144         if eval $compile; then
14145                 foo=`$run ./try`
14146                 case "$foo" in
14147                 *" 4294967303.150000 1.150000 4294967302.000000")
14148                         echo >&4 "Your modfl() is broken for large values."
14149                         d_modfl_pow32_bug="$define"
14150                         case "$foo" in
14151                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
14152                         ;;
14153                         esac
14154                         ;;
14155                 *" 4294967303.150000 0.150000 4294967303.000000")
14156                         echo >&4 "Your modfl() seems okay for large values."
14157                         ;;
14158                 *)      echo >&4 "I don't understand your modfl() at all."
14159                         d_modfl="$undef"
14160                         ;;
14161                 esac
14162                 $rm -f try.* try core core.try.*
14163         else
14164                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
14165                 d_modfl="$undef"
14166         fi
14167         case "$osname:$gccversion" in
14168         aix:)   ccflags="$saveccflags" ;; # restore
14169         esac
14170         ;;
14171 esac
14172
14173 if $test "$uselongdouble" = "$define"; then
14174     message=""
14175     if $test "$d_sqrtl" != "$define"; then
14176         message="$message sqrtl"
14177     fi
14178     if $test "$d_modfl" != "$define"; then
14179         if $test "$d_aintl:$d_copysignl" = "$define:$define"; then
14180             echo "You have both aintl and copysignl, so I can emulate modfl."
14181         else
14182             message="$message modfl"
14183         fi
14184     fi
14185     if $test "$d_frexpl" != "$define"; then
14186         if $test "$d_ilogbl:$d_scalbnl" = "$define:$define"; then
14187             echo "You have both ilogbl and scalbnl, so I can emulate frexpl."
14188         else
14189             message="$message frexpl"
14190         fi
14191     fi
14192
14193     if $test "$message" != ""; then
14194         $cat <<EOM >&4
14195
14196 *** You requested the use of long doubles but you do not seem to have
14197 *** the following mathematical functions needed for long double support:
14198 ***    $message
14199 *** Please rerun Configure without -Duselongdouble and/or -Dusemorebits.
14200 *** Cannot continue, aborting.
14201
14202 EOM
14203
14204         exit 1
14205     fi
14206 fi
14207
14208 : see if mprotect exists
14209 set mprotect d_mprotect
14210 eval $inlibc
14211
14212 : see if msgctl exists
14213 set msgctl d_msgctl
14214 eval $inlibc
14215
14216 : see if msgget exists
14217 set msgget d_msgget
14218 eval $inlibc
14219
14220 : see if msgsnd exists
14221 set msgsnd d_msgsnd
14222 eval $inlibc
14223
14224 : see if msgrcv exists
14225 set msgrcv d_msgrcv
14226 eval $inlibc
14227
14228 : see how much of the 'msg*(2)' library is present.
14229 h_msg=true
14230 echo " "
14231 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
14232 *"$undef"*) h_msg=false;;
14233 esac
14234 case "$osname" in
14235 freebsd)
14236     case "`ipcs 2>&1`" in
14237     "SVID messages"*"not configured"*)
14238         echo "Your $osname does not have the msg*(2) configured." >&4
14239         h_msg=false
14240         val="$undef"
14241         set msgctl d_msgctl
14242         eval $setvar
14243         set msgget d_msgget
14244         eval $setvar
14245         set msgsnd d_msgsnd
14246         eval $setvar
14247         set msgrcv d_msgrcv
14248         eval $setvar
14249         ;;
14250     esac
14251     ;;
14252 esac
14253 : we could also check for sys/ipc.h ...
14254 if $h_msg && $test `./findhdr sys/msg.h`; then
14255         echo "You have the full msg*(2) library." >&4
14256         val="$define"
14257 else
14258         echo "You don't have the full msg*(2) library." >&4
14259         val="$undef"
14260 fi
14261 set d_msg
14262 eval $setvar
14263
14264
14265 echo " "
14266 echo "Checking to see if your system supports struct msghdr..." >&4
14267 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
14268 eval $hasstruct
14269 case "$d_msghdr_s" in
14270 "$define")      echo "Yes, it does."   ;;
14271 *)              echo "No, it doesn't." ;;
14272 esac
14273
14274
14275 : see if msync exists
14276 set msync d_msync
14277 eval $inlibc
14278
14279 : see if munmap exists
14280 set munmap d_munmap
14281 eval $inlibc
14282
14283 : see if nice exists
14284 set nice d_nice
14285 eval $inlibc
14286
14287 : see if this is a langinfo.h system
14288 set langinfo.h i_langinfo
14289 eval $inhdr
14290
14291 : see if nl_langinfo exists
14292 set nl_langinfo d_nl_langinfo
14293 eval $inlibc
14294
14295 : check for length of character
14296 echo " "
14297 case "$charsize" in
14298 '')
14299         echo "Checking to see how big your characters are (hey, you never know)..." >&4
14300         $cat >try.c <<EOCP
14301 #include <stdio.h>
14302 #$i_stdlib I_STDLIB
14303 #ifdef I_STDLIB
14304 #include <stdlib.h>
14305 #endif
14306 int main()
14307 {
14308     printf("%d\n", (int)sizeof(char));
14309     exit(0);
14310 }
14311 EOCP
14312         set try
14313         if eval $compile_ok; then
14314                 dflt=`$run ./try`
14315         else
14316                 dflt='1'
14317                 echo "(I can't seem to compile the test program.  Guessing...)"
14318         fi
14319         ;;
14320 *)
14321         dflt="$charsize"
14322         ;;
14323 esac
14324 rp="What is the size of a character (in bytes)?"
14325 . ./myread
14326 charsize="$ans"
14327 $rm -f try.c try
14328
14329 : check for volatile keyword
14330 echo " "
14331 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
14332 $cat >try.c <<'EOCP'
14333 int main()
14334 {
14335         typedef struct _goo_struct goo_struct;
14336         goo_struct * volatile goo = ((goo_struct *)0);
14337         struct _goo_struct {
14338                 long long_int;
14339                 int reg_int;
14340                 char char_var;
14341         };
14342         typedef unsigned short foo_t;
14343         char *volatile foo;
14344         volatile int bar;
14345         volatile foo_t blech;
14346         foo = foo;
14347 }
14348 EOCP
14349 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
14350         val="$define"
14351         echo "Yup, it does."
14352 else
14353         val="$undef"
14354         echo "Nope, it doesn't."
14355 fi
14356 set d_volatile
14357 eval $setvar
14358 $rm -f try.*
14359
14360
14361 echo " "
14362 $echo "Choosing the C types to be used for Perl's internal types..." >&4
14363
14364 case "$use64bitint:$d_quad:$quadtype" in
14365 define:define:?*)
14366         ivtype="$quadtype"
14367         uvtype="$uquadtype"
14368         ivsize=8
14369         uvsize=8
14370         ;;
14371 *)      ivtype="long"
14372         uvtype="unsigned long"
14373         ivsize=$longsize
14374         uvsize=$longsize
14375         ;;
14376 esac
14377
14378 case "$uselongdouble:$d_longdbl" in
14379 define:define)
14380         nvtype="long double"
14381         nvsize=$longdblsize
14382         ;;
14383 *)      nvtype=double
14384         nvsize=$doublesize
14385         ;;
14386 esac
14387
14388 $echo "(IV will be "$ivtype", $ivsize bytes)"
14389 $echo "(UV will be "$uvtype", $uvsize bytes)"
14390 $echo "(NV will be "$nvtype", $nvsize bytes)"
14391
14392 $cat >try.c <<EOCP
14393 #$i_inttypes I_INTTYPES
14394 #ifdef I_INTTYPES
14395 #include <inttypes.h>
14396 #endif
14397 #include <stdio.h>
14398 int main() {
14399 #ifdef INT8
14400    int8_t i =  INT8_MAX;
14401   uint8_t u = UINT8_MAX;
14402   printf("int8_t\n");
14403 #endif
14404 #ifdef INT16
14405    int16_t i =  INT16_MAX;
14406   uint16_t i = UINT16_MAX;
14407   printf("int16_t\n");
14408 #endif
14409 #ifdef INT32
14410    int32_t i =  INT32_MAX;
14411   uint32_t u = UINT32_MAX;
14412   printf("int32_t\n");
14413 #endif
14414 }
14415 EOCP
14416
14417 case "$i8type" in
14418 '')     case "$charsize" in
14419         1)      i8type=char
14420                 u8type="unsigned char"
14421                 i8size=$charsize
14422                 u8size=$charsize
14423                 ;;
14424         esac
14425         ;;
14426 esac
14427 case "$i8type" in
14428 '')     set try -DINT8
14429         if eval $compile; then
14430                 case "`$run ./try`" in
14431                 int8_t) i8type=int8_t
14432                         u8type=uint8_t
14433                         i8size=1
14434                         u8size=1
14435                         ;;
14436                 esac
14437         fi
14438         ;;
14439 esac
14440 case "$i8type" in
14441 '')     if $test $charsize -ge 1; then
14442                 i8type=char
14443                 u8type="unsigned char"
14444                 i8size=$charsize
14445                 u8size=$charsize
14446         fi
14447         ;;
14448 esac
14449
14450 case "$i16type" in
14451 '')     case "$shortsize" in
14452         2)      i16type=short
14453                 u16type="unsigned short"
14454                 i16size=$shortsize
14455                 u16size=$shortsize
14456                 ;;
14457         esac
14458         ;;
14459 esac
14460 case "$i16type" in
14461 '')     set try -DINT16
14462         if eval $compile; then
14463                 case "`$run ./try`" in
14464                 int16_t)
14465                         i16type=int16_t
14466                         u16type=uint16_t
14467                         i16size=2
14468                         u16size=2
14469                         ;;
14470                 esac
14471         fi
14472         ;;
14473 esac
14474 case "$i16type" in
14475 '')     if $test $shortsize -ge 2; then
14476                 i16type=short
14477                 u16type="unsigned short"
14478                 i16size=$shortsize
14479                 u16size=$shortsize
14480         fi
14481         ;;
14482 esac
14483
14484 case "$i32type" in
14485 '')     case "$longsize" in
14486         4)      i32type=long
14487                 u32type="unsigned long"
14488                 i32size=$longsize
14489                 u32size=$longsize
14490                 ;;
14491         *)      case "$intsize" in
14492                 4)      i32type=int
14493                         u32type="unsigned int"
14494                         i32size=$intsize
14495                         u32size=$intsize
14496                         ;;
14497                 esac
14498                 ;;
14499         esac
14500         ;;
14501 esac
14502 case "$i32type" in
14503 '')     set try -DINT32
14504         if eval $compile; then
14505                 case "`$run ./try`" in
14506                 int32_t)
14507                         i32type=int32_t
14508                         u32type=uint32_t
14509                         i32size=4
14510                         u32size=4
14511                         ;;
14512                 esac
14513         fi
14514         ;;
14515 esac
14516 case "$i32type" in
14517 '')     if $test $intsize -ge 4; then
14518                 i32type=int
14519                 u32type="unsigned int"
14520                 i32size=$intsize
14521                 u32size=$intsize
14522         fi
14523         ;;
14524 esac
14525
14526 case "$i64type" in
14527 '')     case "$d_quad:$quadtype" in
14528         define:?*)
14529                 i64type="$quadtype"
14530                 u64type="$uquadtype"
14531                 i64size=8
14532                 u64size=8
14533                 ;;
14534         esac
14535         ;;
14536 esac
14537
14538 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
14539 : volatile so that the compiler has to store it out to memory.
14540 if test X"$d_volatile" = X"$define"; then
14541         volatile=volatile
14542 fi
14543 $cat <<EOP >try.c
14544 #include <stdio.h>
14545 #$i_stdlib I_STDLIB
14546 #ifdef I_STDLIB
14547 #include <stdlib.h>
14548 #endif
14549 #include <sys/types.h>
14550 #include <signal.h>
14551 #ifdef SIGFPE
14552 $volatile int bletched = 0;
14553 $signal_t blech(s) int s; { bletched = 1; }
14554 #endif
14555 int main() {
14556     $uvtype u = 0;
14557     $nvtype d;
14558     int     n = 8 * $uvsize;
14559     int     i;
14560 #ifdef SIGFPE
14561     signal(SIGFPE, blech);
14562 #endif
14563
14564     for (i = 0; i < n; i++) {
14565       u = u << 1 | ($uvtype)1;
14566       d = ($nvtype)u;
14567       if (($uvtype)d != u)
14568         break;
14569       if (d <= 0)
14570         break;
14571       d = ($nvtype)(u - 1);
14572       if (($uvtype)d != (u - 1))
14573         break;
14574 #ifdef SIGFPE
14575       if (bletched) {
14576         break;
14577 #endif
14578       } 
14579     }
14580     printf("%d\n", ((i == n) ? -n : i));
14581     exit(0);
14582 }
14583 EOP
14584 set try
14585
14586 d_nv_preserves_uv="$undef"
14587 if eval $compile; then
14588         nv_preserves_uv_bits="`$run ./try`"
14589 fi
14590 case "$nv_preserves_uv_bits" in
14591 \-[1-9]*)       
14592         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
14593         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
14594         d_nv_preserves_uv="$define"
14595         ;;
14596 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
14597         d_nv_preserves_uv="$undef" ;;
14598 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
14599         nv_preserves_uv_bits="$undef" ;;
14600 esac
14601
14602 $rm -f try.* try
14603
14604
14605 : check for off64_t
14606 echo " "
14607 echo "Checking to see if you have off64_t..." >&4
14608 $cat >try.c <<EOCP
14609 #include <sys/types.h>
14610 #include <unistd.h>
14611 int main() { off64_t x = 7; }
14612 EOCP
14613 set try
14614 if eval $compile; then
14615         val="$define"
14616         echo "You have off64_t."
14617 else
14618         val="$undef"
14619         echo "You do not have off64_t."
14620         case "$lseeksize" in
14621         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
14622         esac
14623 fi
14624 $rm -f try.* try
14625 set d_off64_t
14626 eval $setvar
14627
14628 : how to create joinable pthreads
14629 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
14630         echo " "
14631         echo "Checking what constant to use for creating joinable pthreads..." >&4 
14632         $cat >try.c <<'EOCP'
14633 #include <pthread.h>
14634 int main() {
14635     int detachstate = JOINABLE;
14636 }
14637 EOCP
14638         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
14639         if eval $compile; then
14640                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
14641                 val="$undef" # Yes, undef.
14642                 set d_old_pthread_create_joinable
14643                 eval $setvar
14644                 val=""
14645                 set old_pthread_create_joinable
14646                 eval $setvar
14647         else
14648                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
14649                 if eval $compile; then
14650                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
14651                         val="$define"
14652                         set d_old_pthread_create_joinable
14653                         eval $setvar
14654                         val=PTHREAD_CREATE_UNDETACHED
14655                         set old_pthread_create_joinable
14656                         eval $setvar
14657                 else            
14658                         set try -DJOINABLE=__UNDETACHED
14659                         if eval $compile; then
14660                                 echo "You seem to use __UNDETACHED." >&4
14661                                 val="$define"
14662                                 set d_old_pthread_create_joinable
14663                                 eval $setvar
14664                                 val=__UNDETACHED
14665                                 set old_pthread_create_joinable
14666                                 eval $setvar
14667                         else
14668                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
14669                                 val="$define"
14670                                 set d_old_pthread_create_joinable
14671                                 eval $setvar
14672                                 val=0
14673                                 set old_pthread_create_joinable
14674                                 eval $setvar
14675                         fi
14676                 fi
14677         fi
14678         $rm -f try try.*
14679 else
14680     d_old_pthread_create_joinable="$undef"
14681     old_pthread_create_joinable=""
14682 fi
14683
14684 : see if pause exists
14685 set pause d_pause
14686 eval $inlibc
14687
14688 : see if pipe exists
14689 set pipe d_pipe
14690 eval $inlibc
14691
14692 : see if poll exists
14693 set poll d_poll
14694 eval $inlibc
14695
14696 : see if readlink exists
14697 set readlink d_readlink
14698 eval $inlibc
14699
14700 echo " "
14701 procselfexe=''
14702 val="$undef"
14703 case "$d_readlink" in
14704 "$define")
14705         if $issymlink /proc/self/exe ; then
14706                 $ls -l /proc/self/exe > reflect
14707                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14708                         echo "You have Linux-like /proc/self/exe."
14709                         procselfexe='"/proc/self/exe"'
14710                         val="$define"
14711                 fi
14712         fi
14713         if $issymlink /proc/curproc/file ; then
14714                 $ls -l /proc/curproc/file > reflect
14715                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14716                         echo "You have BSD-like /proc/curproc/file."
14717                         procselfexe='"/proc/curproc/file"'
14718                         val="$define"
14719                 fi
14720         fi
14721         ;;
14722 esac
14723 $rm -f reflect
14724 set d_procselfexe
14725 eval $setvar
14726
14727 : see whether the pthread_atfork exists
14728 $cat >try.c <<EOP
14729 #include <pthread.h>
14730 #include <stdio.h>
14731 int main() {
14732 #ifdef  PTHREAD_ATFORK
14733         pthread_atfork(NULL,NULL,NULL);
14734 #endif
14735 }
14736 EOP
14737
14738 : see if pthread_atfork exists
14739 set try -DPTHREAD_ATFORK
14740 if eval $compile; then
14741     val="$define"
14742 else
14743     val="$undef"
14744 fi
14745 case "$usethreads" in
14746 $define)
14747         case "$val" in
14748         $define) echo 'pthread_atfork found.' >&4        ;;
14749         *)       echo 'pthread_atfork NOT found.' >&4    ;;
14750         esac
14751 esac
14752 set d_pthread_atfork
14753 eval $setvar
14754
14755 : see if pthread_attr_setscope exists
14756 set pthread_attr_setscope d_pthread_attr_setscope
14757 eval $inlibc
14758
14759
14760 : see whether the various POSIXish _yields exist
14761 $cat >try.c <<EOP
14762 #include <pthread.h>
14763 #include <stdio.h>
14764 int main() {
14765 #ifdef SCHED_YIELD
14766         sched_yield();
14767 #else
14768 #ifdef PTHREAD_YIELD
14769         pthread_yield();
14770 #else
14771 #ifdef PTHREAD_YIELD_NULL
14772         pthread_yield(NULL);
14773 #endif
14774 #endif
14775 #endif
14776 }
14777 EOP
14778 : see if sched_yield exists
14779 set try -DSCHED_YIELD
14780 if eval $compile; then
14781     val="$define"
14782     sched_yield='sched_yield()'
14783 else
14784     val="$undef"
14785 fi
14786 case "$usethreads" in
14787 $define)
14788         case "$val" in
14789         $define) echo 'sched_yield() found.' >&4        ;;
14790         *)       echo 'sched_yield() NOT found.' >&4    ;;
14791         esac
14792 esac
14793 set d_sched_yield
14794 eval $setvar
14795
14796 : see if pthread_yield exists
14797 set try -DPTHREAD_YIELD
14798 if eval $compile; then
14799     val="$define"
14800     case "$sched_yield" in
14801     '') sched_yield='pthread_yield()' ;;
14802     esac
14803 else
14804     set try -DPTHREAD_YIELD_NULL
14805     if eval $compile; then
14806         val="$define"
14807         case "$sched_yield" in
14808         '') sched_yield='pthread_yield(NULL)' ;;
14809         esac
14810     else
14811         val="$undef"
14812     fi
14813 fi
14814 case "$usethreads" in
14815 $define)
14816         case "$val" in
14817         $define) echo 'pthread_yield() found.' >&4      ;;
14818         *)       echo 'pthread_yield() NOT found.' >&4  ;;
14819         esac
14820         ;;
14821 esac
14822 set d_pthread_yield
14823 eval $setvar
14824
14825 case "$sched_yield" in
14826 '') sched_yield=undef ;;
14827 esac
14828
14829 $rm -f try try.*
14830
14831 : see if random_r exists
14832 set random_r d_random_r
14833 eval $inlibc
14834 case "$d_random_r" in
14835 "$define")
14836         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
14837         case "$d_random_r_proto:$usethreads" in
14838         ":define")      d_random_r_proto=define
14839                 set d_random_r_proto random_r $hdrs
14840                 eval $hasproto ;;
14841         *)      ;;
14842         esac
14843         case "$d_random_r_proto" in
14844         define)
14845         case "$random_r_proto" in
14846         ''|0) try='int random_r(int*, struct random_data*);'
14847         ./protochk "extern $try" $hdrs && random_r_proto=I_iS ;;
14848         esac
14849         case "$random_r_proto" in
14850         ''|0) try='int random_r(long*, struct random_data*);'
14851         ./protochk "extern $try" $hdrs && random_r_proto=I_lS ;;
14852         esac
14853         case "$random_r_proto" in
14854         ''|0) try='int random_r(struct random_data*, int32_t*);'
14855         ./protochk "extern $try" $hdrs && random_r_proto=I_St ;;
14856         esac
14857         case "$random_r_proto" in
14858         ''|0)   d_random_r=undef
14859                 random_r_proto=0
14860                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
14861         * )     case "$random_r_proto" in
14862                 REENTRANT_PROTO*) ;;
14863                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
14864                 esac
14865                 echo "Prototype: $try" ;;
14866         esac
14867         ;;
14868         *)      case "$usethreads" in
14869                 define) echo "random_r has no prototype, not using it." >&4 ;;
14870                 esac
14871                 d_random_r=undef
14872                 random_r_proto=0
14873                 ;;
14874         esac
14875         ;;
14876 *)      random_r_proto=0
14877         ;;
14878 esac
14879
14880 : see if readdir and friends exist
14881 set readdir d_readdir
14882 eval $inlibc
14883 set seekdir d_seekdir
14884 eval $inlibc
14885 set telldir d_telldir
14886 eval $inlibc
14887 set rewinddir d_rewinddir
14888 eval $inlibc
14889
14890 : see if readdir64_r exists
14891 set readdir64_r d_readdir64_r
14892 eval $inlibc
14893 case "$d_readdir64_r" in
14894 "$define")
14895         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14896         case "$d_readdir64_r_proto:$usethreads" in
14897         ":define")      d_readdir64_r_proto=define
14898                 set d_readdir64_r_proto readdir64_r $hdrs
14899                 eval $hasproto ;;
14900         *)      ;;
14901         esac
14902         case "$d_readdir64_r_proto" in
14903         define)
14904         case "$readdir64_r_proto" in
14905         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
14906         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
14907         esac
14908         case "$readdir64_r_proto" in
14909         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
14910         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
14911         esac
14912         case "$readdir64_r_proto" in
14913         ''|0)   d_readdir64_r=undef
14914                 readdir64_r_proto=0
14915                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
14916         * )     case "$readdir64_r_proto" in
14917                 REENTRANT_PROTO*) ;;
14918                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
14919                 esac
14920                 echo "Prototype: $try" ;;
14921         esac
14922         ;;
14923         *)      case "$usethreads" in
14924                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
14925                 esac
14926                 d_readdir64_r=undef
14927                 readdir64_r_proto=0
14928                 ;;
14929         esac
14930         ;;
14931 *)      readdir64_r_proto=0
14932         ;;
14933 esac
14934
14935 : see if readdir_r exists
14936 set readdir_r d_readdir_r
14937 eval $inlibc
14938 case "$d_readdir_r" in
14939 "$define")
14940         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14941         case "$d_readdir_r_proto:$usethreads" in
14942         ":define")      d_readdir_r_proto=define
14943                 set d_readdir_r_proto readdir_r $hdrs
14944                 eval $hasproto ;;
14945         *)      ;;
14946         esac
14947         case "$d_readdir_r_proto" in
14948         define)
14949         case "$readdir_r_proto" in
14950         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14951         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14952         esac
14953         case "$readdir_r_proto" in
14954         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14955         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14956         esac
14957         case "$readdir_r_proto" in
14958         ''|0)   d_readdir_r=undef
14959                 readdir_r_proto=0
14960                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14961         * )     case "$readdir_r_proto" in
14962                 REENTRANT_PROTO*) ;;
14963                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14964                 esac
14965                 echo "Prototype: $try" ;;
14966         esac
14967         ;;
14968         *)      case "$usethreads" in
14969                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14970                 esac
14971                 d_readdir_r=undef
14972                 readdir_r_proto=0
14973                 ;;
14974         esac
14975         ;;
14976 *)      readdir_r_proto=0
14977         ;;
14978 esac
14979
14980 : see if readv exists
14981 set readv d_readv
14982 eval $inlibc
14983
14984 : see if recvmsg exists
14985 set recvmsg d_recvmsg
14986 eval $inlibc
14987
14988 : see if rename exists
14989 set rename d_rename
14990 eval $inlibc
14991
14992 : see if rmdir exists
14993 set rmdir d_rmdir
14994 eval $inlibc
14995
14996 : see if memory.h is available.
14997 val=''
14998 set memory.h val
14999 eval $inhdr
15000
15001 : See if it conflicts with string.h
15002 case "$val" in
15003 $define)
15004         case "$strings" in
15005         '') ;;
15006         *)
15007                 $cppstdin $cppflags $cppminus < $strings > mem.h
15008                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
15009                         echo " "
15010                         echo "We won't be including <memory.h>."
15011                         val="$undef"
15012                 fi
15013                 $rm -f mem.h
15014                 ;;
15015         esac
15016 esac
15017 set i_memory
15018 eval $setvar
15019
15020 : can bcopy handle overlapping blocks?
15021 echo " "
15022 val="$undef"
15023 case "$d_memmove" in
15024 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
15025 *)      case "$d_bcopy" in
15026         "$define")
15027                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
15028                 $cat >try.c <<EOCP
15029 #$i_memory I_MEMORY
15030 #$i_stdlib I_STDLIB
15031 #$i_string I_STRING
15032 #$i_unistd I_UNISTD
15033 EOCP
15034         $cat >>try.c <<'EOCP'
15035 #include <stdio.h>
15036 #ifdef I_MEMORY
15037 #  include <memory.h>
15038 #endif
15039 #ifdef I_STDLIB
15040 #  include <stdlib.h>
15041 #endif
15042 #ifdef I_STRING
15043 #  include <string.h>
15044 #else
15045 #  include <strings.h>
15046 #endif
15047 #ifdef I_UNISTD
15048 #  include <unistd.h>  /* Needed for NetBSD */
15049 #endif
15050 int main()
15051 {
15052 char buf[128], abc[128];
15053 char *b;
15054 int len;
15055 int off;
15056 int align;
15057
15058 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15059    try to store the string in read-only memory. */
15060 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
15061
15062 for (align = 7; align >= 0; align--) {
15063         for (len = 36; len; len--) {
15064                 b = buf+align;
15065                 bcopy(abc, b, len);
15066                 for (off = 1; off <= len; off++) {
15067                         bcopy(b, b+off, len);
15068                         bcopy(b+off, b, len);
15069                         if (bcmp(b, abc, len))
15070                                 exit(1);
15071                 }
15072         }
15073 }
15074 exit(0);
15075 }
15076 EOCP
15077                 set try
15078                 if eval $compile_ok; then
15079                         if ./try 2>/dev/null; then
15080                                 echo "Yes, it can."
15081                                 val="$define"
15082                         else
15083                                 echo "It can't, sorry."
15084                         fi
15085                 else
15086                         echo "(I can't compile the test program, so we'll assume not...)"
15087                 fi
15088                 ;;
15089         esac
15090         $rm -f try.* try core
15091         ;;
15092 esac
15093 set d_safebcpy
15094 eval $setvar
15095
15096 : can memcpy handle overlapping blocks?
15097 echo " "
15098 val="$undef"
15099 case "$d_memmove" in
15100 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
15101 *)      case "$d_memcpy" in
15102         "$define")
15103                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
15104                 $cat >try.c <<EOCP
15105 #$i_memory I_MEMORY
15106 #$i_stdlib I_STDLIB
15107 #$i_string I_STRING
15108 #$i_unistd I_UNISTD
15109 EOCP
15110         $cat >>try.c <<'EOCP'
15111 #include <stdio.h>
15112 #ifdef I_MEMORY
15113 #  include <memory.h>
15114 #endif
15115 #ifdef I_STDLIB
15116 #  include <stdlib.h>
15117 #endif
15118 #ifdef I_STRING
15119 #  include <string.h>
15120 #else
15121 #  include <strings.h>
15122 #endif
15123 #ifdef I_UNISTD
15124 #  include <unistd.h>  /* Needed for NetBSD */
15125 #endif
15126 int main()
15127 {
15128 char buf[128], abc[128];
15129 char *b;
15130 int len;
15131 int off;
15132 int align;
15133
15134 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15135    try to store the string in read-only memory. */
15136 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
15137
15138 for (align = 7; align >= 0; align--) {
15139         for (len = 36; len; len--) {
15140                 b = buf+align;
15141                 memcpy(b, abc, len);
15142                 for (off = 1; off <= len; off++) {
15143                         memcpy(b+off, b, len);
15144                         memcpy(b, b+off, len);
15145                         if (memcmp(b, abc, len))
15146                                 exit(1);
15147                 }
15148         }
15149 }
15150 exit(0);
15151 }
15152 EOCP
15153                 set try
15154                 if eval $compile_ok; then
15155                         if ./try 2>/dev/null; then
15156                                 echo "Yes, it can."
15157                                 val="$define"
15158                         else
15159                                 echo "It can't, sorry."
15160                         fi
15161                 else
15162                         echo "(I can't compile the test program, so we'll assume not...)"
15163                 fi
15164                 ;;
15165         esac
15166         $rm -f try.* try core
15167         ;;
15168 esac
15169 set d_safemcpy
15170 eval $setvar
15171
15172 : can memcmp be trusted to compare relative magnitude?
15173 val="$undef"
15174 case "$d_memcmp" in
15175 "$define")
15176         echo " "
15177         echo "Checking if your memcmp() can compare relative magnitude..." >&4
15178         $cat >try.c <<EOCP
15179 #$i_memory I_MEMORY
15180 #$i_stdlib I_STDLIB
15181 #$i_string I_STRING
15182 #$i_unistd I_UNISTD
15183 EOCP
15184         $cat >>try.c <<'EOCP'
15185 #include <stdio.h>
15186 #ifdef I_MEMORY
15187 #  include <memory.h>
15188 #endif
15189 #ifdef I_STDLIB
15190 #  include <stdlib.h>
15191 #endif
15192 #ifdef I_STRING
15193 #  include <string.h>
15194 #else
15195 #  include <strings.h>
15196 #endif
15197 #ifdef I_UNISTD
15198 #  include <unistd.h>  /* Needed for NetBSD */
15199 #endif
15200 int main()
15201 {
15202 char a = -1;
15203 char b = 0;
15204 if ((a < b) && memcmp(&a, &b, 1) < 0)
15205         exit(1);
15206 exit(0);
15207 }
15208 EOCP
15209         set try
15210         if eval $compile_ok; then
15211                 if $run ./try 2>/dev/null; then
15212                         echo "Yes, it can."
15213                         val="$define"
15214                 else
15215                         echo "No, it can't (it uses signed chars)."
15216                 fi
15217         else
15218                 echo "(I can't compile the test program, so we'll assume not...)"
15219         fi
15220         ;;
15221 esac
15222 $rm -f try.* try core
15223 set d_sanemcmp
15224 eval $setvar
15225
15226 : see if prototype for sbrk is available
15227 echo " "
15228 set d_sbrkproto sbrk $i_unistd unistd.h
15229 eval $hasproto
15230
15231 : see if select exists
15232 set select d_select
15233 eval $inlibc
15234
15235 : see if semctl exists
15236 set semctl d_semctl
15237 eval $inlibc
15238
15239 : see if semget exists
15240 set semget d_semget
15241 eval $inlibc
15242
15243 : see if semop exists
15244 set semop d_semop
15245 eval $inlibc
15246
15247 : see how much of the 'sem*(2)' library is present.
15248 h_sem=true
15249 echo " "
15250 case "$d_semctl$d_semget$d_semop" in
15251 *"$undef"*) h_sem=false;;
15252 esac
15253 case "$osname" in
15254 freebsd)
15255     case "`ipcs 2>&1`" in
15256     "SVID messages"*"not configured"*)
15257         echo "Your $osname does not have the sem*(2) configured." >&4
15258         h_sem=false
15259         val="$undef"
15260         set semctl d_semctl
15261         eval $setvar
15262         set semget d_semget
15263         eval $setvar
15264         set semop d_semop
15265         eval $setvar
15266         ;;
15267     esac
15268     ;;
15269 esac
15270 : we could also check for sys/ipc.h ...
15271 if $h_sem && $test `./findhdr sys/sem.h`; then
15272         echo "You have the full sem*(2) library." >&4
15273         val="$define"
15274 else
15275         echo "You don't have the full sem*(2) library." >&4
15276         val="$undef"
15277 fi
15278 set d_sem
15279 eval $setvar
15280
15281 : see whether sys/sem.h defines union semun
15282 echo " "
15283 $cat > try.c <<'END'
15284 #include <sys/types.h>
15285 #include <sys/ipc.h>
15286 #include <sys/sem.h>
15287 int main () { union semun semun; semun.buf = 0; }
15288 END
15289 set try
15290 if eval $compile; then
15291     echo "You have union semun in <sys/sem.h>." >&4
15292     val="$define"
15293 else
15294     echo "You do not have union semun in <sys/sem.h>." >&4
15295     val="$undef"
15296 fi
15297 $rm -f try try.c
15298 set d_union_semun
15299 eval $setvar
15300
15301 : see how to do semctl IPC_STAT
15302 case "$d_sem" in
15303 $define)
15304     echo " "
15305     $cat > try.h <<END
15306 #ifndef S_IRUSR
15307 #   ifdef S_IREAD
15308 #       define S_IRUSR S_IREAD
15309 #       define S_IWUSR S_IWRITE
15310 #       define S_IXUSR S_IEXEC
15311 #   else
15312 #       define S_IRUSR 0400
15313 #       define S_IWUSR 0200
15314 #       define S_IXUSR 0100
15315 #   endif
15316 #   define S_IRGRP (S_IRUSR>>3)
15317 #   define S_IWGRP (S_IWUSR>>3)
15318 #   define S_IXGRP (S_IXUSR>>3)
15319 #   define S_IROTH (S_IRUSR>>6)
15320 #   define S_IWOTH (S_IWUSR>>6)
15321 #   define S_IXOTH (S_IXUSR>>6)
15322 #endif
15323 #ifndef S_IRWXU
15324 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
15325 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
15326 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
15327 #endif
15328 END
15329     : see whether semctl IPC_STAT can use union semun
15330     val="$undef"
15331     case "$d_semctl_semun" in
15332     '')
15333       $cat > try.c <<END
15334 #include <sys/types.h>
15335 #include <sys/ipc.h>
15336 #include <sys/sem.h>
15337 #include <sys/stat.h>
15338 #include <stdio.h>
15339 #include <errno.h>
15340 #include "try.h"
15341 #ifndef errno
15342 extern int errno;
15343 #endif
15344 #$d_union_semun HAS_UNION_SEMUN
15345 int main() {
15346     union semun
15347 #ifndef HAS_UNION_SEMUN
15348     {
15349         int val;
15350         struct semid_ds *buf;
15351         unsigned short *array;
15352     }
15353 #endif
15354     arg;
15355     int sem, st;
15356
15357 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
15358     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15359     if (sem > -1) {
15360         struct semid_ds argbuf;
15361         arg.buf = &argbuf;
15362 #       ifdef IPC_STAT
15363         st = semctl(sem, 0, IPC_STAT, arg);
15364         if (st == 0)
15365             printf("semun\n");
15366         else
15367 #       endif /* IPC_STAT */
15368             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15369 #       ifdef IPC_RMID
15370         if (semctl(sem, 0, IPC_RMID, arg) != 0)
15371 #       endif /* IPC_RMID */
15372             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15373     } else
15374 #endif /* IPC_PRIVATE && ... */
15375         printf("semget failed: errno = %d\n", errno);
15376   return 0;
15377 }
15378 END
15379       set try
15380       if eval $compile; then
15381           xxx=`$run ./try`
15382           case "$xxx" in
15383           semun) val="$define" ;;
15384           esac
15385       fi
15386       $rm -f try try.c
15387       ;;
15388     esac
15389     set d_semctl_semun
15390     eval $setvar
15391     case "$d_semctl_semun" in
15392     $define)
15393         echo "You can use union semun for semctl IPC_STAT." >&4
15394         also='also'
15395         ;;
15396     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
15397         also=''
15398         ;;
15399     esac
15400
15401     : see whether semctl IPC_STAT can use struct semid_ds pointer
15402     val="$undef"
15403     case "$d_semctl_semid_ds" in
15404     '')
15405       $cat > try.c <<'END'
15406 #include <sys/types.h>
15407 #include <sys/ipc.h>
15408 #include <sys/sem.h>
15409 #include <sys/stat.h>
15410 #include "try.h"
15411 #include <stdio.h>
15412 #include <errno.h>
15413 #ifndef errno
15414 extern int errno;
15415 #endif
15416 int main() {
15417     struct semid_ds arg;
15418     int sem, st;
15419
15420 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
15421     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15422     if (sem > -1) {
15423 #       ifdef IPC_STAT
15424         st = semctl(sem, 0, IPC_STAT, &arg);
15425         if (st == 0)
15426             printf("semid_ds\n");
15427         else
15428 #       endif /* IPC_STAT */
15429             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15430 #       ifdef IPC_RMID
15431         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
15432 #       endif /* IPC_RMID */
15433             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15434     } else
15435 #endif /* IPC_PRIVATE && ... */
15436         printf("semget failed: errno = %d\n", errno);
15437
15438     return 0;
15439 }
15440 END
15441       set try
15442       if eval $compile; then
15443           xxx=`$run ./try`
15444           case "$xxx" in
15445           semid_ds) val="$define" ;;
15446           esac
15447       fi
15448       $rm -f try try.c
15449       ;;
15450     esac
15451     set d_semctl_semid_ds
15452     eval $setvar
15453     case "$d_semctl_semid_ds" in
15454     $define)
15455         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
15456         ;;
15457     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
15458         ;;
15459     esac
15460     $rm -f try.h
15461     ;;
15462 *)  val="$undef"
15463
15464     # We do not have the full sem*(2) library, so assume we can not
15465     # use either.
15466
15467     set d_semctl_semun
15468     eval $setvar
15469
15470     set d_semctl_semid_ds
15471     eval $setvar
15472     ;;
15473 esac
15474
15475 : see if sendmsg exists
15476 set sendmsg d_sendmsg
15477 eval $inlibc
15478
15479 : see if setegid exists
15480 set setegid d_setegid
15481 eval $inlibc
15482
15483 : see if seteuid exists
15484 set seteuid d_seteuid
15485 eval $inlibc
15486
15487 : see if setgrent exists
15488 set setgrent d_setgrent
15489 eval $inlibc
15490
15491 : see if setgrent_r exists
15492 set setgrent_r d_setgrent_r
15493 eval $inlibc
15494 case "$d_setgrent_r" in
15495 "$define")
15496         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
15497         case "$d_setgrent_r_proto:$usethreads" in
15498         ":define")      d_setgrent_r_proto=define
15499                 set d_setgrent_r_proto setgrent_r $hdrs
15500                 eval $hasproto ;;
15501         *)      ;;
15502         esac
15503         case "$d_setgrent_r_proto" in
15504         define)
15505         case "$setgrent_r_proto" in
15506         ''|0) try='int setgrent_r(FILE**);'
15507         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
15508         esac
15509         case "$setgrent_r_proto" in
15510         ''|0) try='void setgrent_r(FILE**);'
15511         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
15512         esac
15513         case "$setgrent_r_proto" in
15514         ''|0)   d_setgrent_r=undef
15515                 setgrent_r_proto=0
15516                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
15517         * )     case "$setgrent_r_proto" in
15518                 REENTRANT_PROTO*) ;;
15519                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
15520                 esac
15521                 echo "Prototype: $try" ;;
15522         esac
15523         ;;
15524         *)      case "$usethreads" in
15525                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
15526                 esac
15527                 d_setgrent_r=undef
15528                 setgrent_r_proto=0
15529                 ;;
15530         esac
15531         ;;
15532 *)      setgrent_r_proto=0
15533         ;;
15534 esac
15535
15536 : see if sethostent exists
15537 set sethostent d_sethent
15538 eval $inlibc
15539
15540 : see if sethostent_r exists
15541 set sethostent_r d_sethostent_r
15542 eval $inlibc
15543 case "$d_sethostent_r" in
15544 "$define")
15545         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15546         case "$d_sethostent_r_proto:$usethreads" in
15547         ":define")      d_sethostent_r_proto=define
15548                 set d_sethostent_r_proto sethostent_r $hdrs
15549                 eval $hasproto ;;
15550         *)      ;;
15551         esac
15552         case "$d_sethostent_r_proto" in
15553         define)
15554         case "$sethostent_r_proto" in
15555         ''|0) try='int sethostent_r(int, struct hostent_data*);'
15556         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
15557         esac
15558         case "$sethostent_r_proto" in
15559         ''|0) try='void sethostent_r(int, struct hostent_data*);'
15560         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
15561         esac
15562         case "$sethostent_r_proto" in
15563         ''|0)   d_sethostent_r=undef
15564                 sethostent_r_proto=0
15565                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
15566         * )     case "$sethostent_r_proto" in
15567                 REENTRANT_PROTO*) ;;
15568                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
15569                 esac
15570                 echo "Prototype: $try" ;;
15571         esac
15572         ;;
15573         *)      case "$usethreads" in
15574                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
15575                 esac
15576                 d_sethostent_r=undef
15577                 sethostent_r_proto=0
15578                 ;;
15579         esac
15580         ;;
15581 *)      sethostent_r_proto=0
15582         ;;
15583 esac
15584
15585 : see if setitimer exists
15586 set setitimer d_setitimer
15587 eval $inlibc
15588
15589 : see if setlinebuf exists
15590 set setlinebuf d_setlinebuf
15591 eval $inlibc
15592
15593 : see if setlocale exists
15594 set setlocale d_setlocale
15595 eval $inlibc
15596
15597 : see if locale.h is available
15598 set locale.h i_locale
15599 eval $inhdr
15600
15601 : see if setlocale_r exists
15602 set setlocale_r d_setlocale_r
15603 eval $inlibc
15604 case "$d_setlocale_r" in
15605 "$define")
15606         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
15607         case "$d_setlocale_r_proto:$usethreads" in
15608         ":define")      d_setlocale_r_proto=define
15609                 set d_setlocale_r_proto setlocale_r $hdrs
15610                 eval $hasproto ;;
15611         *)      ;;
15612         esac
15613         case "$d_setlocale_r_proto" in
15614         define)
15615         case "$setlocale_r_proto" in
15616         ''|0) try='int setlocale_r(int, const char*, char*, int);'
15617         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
15618         esac
15619         case "$setlocale_r_proto" in
15620         ''|0)   d_setlocale_r=undef
15621                 setlocale_r_proto=0
15622                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
15623         * )     case "$setlocale_r_proto" in
15624                 REENTRANT_PROTO*) ;;
15625                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
15626                 esac
15627                 echo "Prototype: $try" ;;
15628         esac
15629         ;;
15630         *)      case "$usethreads" in
15631                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
15632                 esac
15633                 d_setlocale_r=undef
15634                 setlocale_r_proto=0
15635                 ;;
15636         esac
15637         ;;
15638 *)      setlocale_r_proto=0
15639         ;;
15640 esac
15641
15642 : see if setnetent exists
15643 set setnetent d_setnent
15644 eval $inlibc
15645
15646 : see if setnetent_r exists
15647 set setnetent_r d_setnetent_r
15648 eval $inlibc
15649 case "$d_setnetent_r" in
15650 "$define")
15651         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15652         case "$d_setnetent_r_proto:$usethreads" in
15653         ":define")      d_setnetent_r_proto=define
15654                 set d_setnetent_r_proto setnetent_r $hdrs
15655                 eval $hasproto ;;
15656         *)      ;;
15657         esac
15658         case "$d_setnetent_r_proto" in
15659         define)
15660         case "$setnetent_r_proto" in
15661         ''|0) try='int setnetent_r(int, struct netent_data*);'
15662         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
15663         esac
15664         case "$setnetent_r_proto" in
15665         ''|0) try='void setnetent_r(int, struct netent_data*);'
15666         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
15667         esac
15668         case "$setnetent_r_proto" in
15669         ''|0)   d_setnetent_r=undef
15670                 setnetent_r_proto=0
15671                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
15672         * )     case "$setnetent_r_proto" in
15673                 REENTRANT_PROTO*) ;;
15674                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
15675                 esac
15676                 echo "Prototype: $try" ;;
15677         esac
15678         ;;
15679         *)      case "$usethreads" in
15680                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
15681                 esac
15682                 d_setnetent_r=undef
15683                 setnetent_r_proto=0
15684                 ;;
15685         esac
15686         ;;
15687 *)      setnetent_r_proto=0
15688         ;;
15689 esac
15690
15691 : see if setprotoent exists
15692 set setprotoent d_setpent
15693 eval $inlibc
15694
15695 : see if setpgid exists
15696 set setpgid d_setpgid
15697 eval $inlibc
15698
15699 : see if setpgrp2 exists
15700 set setpgrp2 d_setpgrp2
15701 eval $inlibc
15702
15703 : see if setpriority exists
15704 set setpriority d_setprior
15705 eval $inlibc
15706
15707 : see if setproctitle exists
15708 set setproctitle d_setproctitle
15709 eval $inlibc
15710
15711 : see if setprotoent_r exists
15712 set setprotoent_r d_setprotoent_r
15713 eval $inlibc
15714 case "$d_setprotoent_r" in
15715 "$define")
15716         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15717         case "$d_setprotoent_r_proto:$usethreads" in
15718         ":define")      d_setprotoent_r_proto=define
15719                 set d_setprotoent_r_proto setprotoent_r $hdrs
15720                 eval $hasproto ;;
15721         *)      ;;
15722         esac
15723         case "$d_setprotoent_r_proto" in
15724         define)
15725         case "$setprotoent_r_proto" in
15726         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
15727         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
15728         esac
15729         case "$setprotoent_r_proto" in
15730         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
15731         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
15732         esac
15733         case "$setprotoent_r_proto" in
15734         ''|0)   d_setprotoent_r=undef
15735                 setprotoent_r_proto=0
15736                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
15737         * )     case "$setprotoent_r_proto" in
15738                 REENTRANT_PROTO*) ;;
15739                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
15740                 esac
15741                 echo "Prototype: $try" ;;
15742         esac
15743         ;;
15744         *)      case "$usethreads" in
15745                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
15746                 esac
15747                 d_setprotoent_r=undef
15748                 setprotoent_r_proto=0
15749                 ;;
15750         esac
15751         ;;
15752 *)      setprotoent_r_proto=0
15753         ;;
15754 esac
15755
15756 : see if setpwent exists
15757 set setpwent d_setpwent
15758 eval $inlibc
15759
15760 : see if setpwent_r exists
15761 set setpwent_r d_setpwent_r
15762 eval $inlibc
15763 case "$d_setpwent_r" in
15764 "$define")
15765         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
15766         case "$d_setpwent_r_proto:$usethreads" in
15767         ":define")      d_setpwent_r_proto=define
15768                 set d_setpwent_r_proto setpwent_r $hdrs
15769                 eval $hasproto ;;
15770         *)      ;;
15771         esac
15772         case "$d_setpwent_r_proto" in
15773         define)
15774         case "$setpwent_r_proto" in
15775         ''|0) try='int setpwent_r(FILE**);'
15776         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
15777         esac
15778         case "$setpwent_r_proto" in
15779         ''|0) try='void setpwent_r(FILE**);'
15780         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
15781         esac
15782         case "$setpwent_r_proto" in
15783         ''|0)   d_setpwent_r=undef
15784                 setpwent_r_proto=0
15785                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
15786         * )     case "$setpwent_r_proto" in
15787                 REENTRANT_PROTO*) ;;
15788                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
15789                 esac
15790                 echo "Prototype: $try" ;;
15791         esac
15792         ;;
15793         *)      case "$usethreads" in
15794                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
15795                 esac
15796                 d_setpwent_r=undef
15797                 setpwent_r_proto=0
15798                 ;;
15799         esac
15800         ;;
15801 *)      setpwent_r_proto=0
15802         ;;
15803 esac
15804
15805 : see if setregid exists
15806 set setregid d_setregid
15807 eval $inlibc
15808 set setresgid d_setresgid
15809 eval $inlibc
15810
15811 : see if setreuid exists
15812 set setreuid d_setreuid
15813 eval $inlibc
15814 set setresuid d_setresuid
15815 eval $inlibc
15816
15817 : see if setrgid exists
15818 set setrgid d_setrgid
15819 eval $inlibc
15820
15821 : see if setruid exists
15822 set setruid d_setruid
15823 eval $inlibc
15824
15825 : see if setservent exists
15826 set setservent d_setsent
15827 eval $inlibc
15828
15829 : see if setservent_r exists
15830 set setservent_r d_setservent_r
15831 eval $inlibc
15832 case "$d_setservent_r" in
15833 "$define")
15834         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15835         case "$d_setservent_r_proto:$usethreads" in
15836         ":define")      d_setservent_r_proto=define
15837                 set d_setservent_r_proto setservent_r $hdrs
15838                 eval $hasproto ;;
15839         *)      ;;
15840         esac
15841         case "$d_setservent_r_proto" in
15842         define)
15843         case "$setservent_r_proto" in
15844         ''|0) try='int setservent_r(int, struct servent_data*);'
15845         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
15846         esac
15847         case "$setservent_r_proto" in
15848         ''|0) try='void setservent_r(int, struct servent_data*);'
15849         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
15850         esac
15851         case "$setservent_r_proto" in
15852         ''|0)   d_setservent_r=undef
15853                 setservent_r_proto=0
15854                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
15855         * )     case "$setservent_r_proto" in
15856                 REENTRANT_PROTO*) ;;
15857                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
15858                 esac
15859                 echo "Prototype: $try" ;;
15860         esac
15861         ;;
15862         *)      case "$usethreads" in
15863                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
15864                 esac
15865                 d_setservent_r=undef
15866                 setservent_r_proto=0
15867                 ;;
15868         esac
15869         ;;
15870 *)      setservent_r_proto=0
15871         ;;
15872 esac
15873
15874 : see if setsid exists
15875 set setsid d_setsid
15876 eval $inlibc
15877
15878 : see if setvbuf exists
15879 set setvbuf d_setvbuf
15880 eval $inlibc
15881
15882 : see if sfio.h is available
15883 set sfio.h i_sfio
15884 eval $inhdr
15885
15886
15887 : see if sfio library is available
15888 case "$i_sfio" in
15889 $define)
15890         val=''
15891         set sfreserve val
15892         eval $inlibc
15893         ;;
15894 *)
15895         val="$undef"
15896         ;;
15897 esac
15898 : Ok, but do we want to use it.
15899 case "$val" in
15900 $define)
15901         case "$usesfio" in
15902         true|$define|[yY]*) dflt='y';;
15903         *) dflt='n';;
15904         esac
15905         echo "$package can use the sfio library, but it is experimental."
15906         case "$useperlio" in
15907         "$undef")
15908             echo "For sfio also the PerlIO abstraction layer is needed."
15909             echo "Earlier you said you wouldn't want that."
15910             ;;
15911         esac
15912         rp="You seem to have sfio available, do you want to try using it?"
15913         . ./myread
15914         case "$ans" in
15915         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
15916                 useperlio="$define"
15917                 val="$define"
15918                 ;;
15919         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
15920                 val="$undef"
15921                 ;;
15922         esac
15923         ;;
15924 *)      case "$usesfio" in
15925         true|$define|[yY]*)
15926                 echo "Sorry, cannot find sfio on this machine." >&4
15927                 echo "Ignoring your setting of usesfio=$usesfio." >&4
15928                 val="$undef"
15929                 ;;
15930         esac
15931         ;;
15932 esac
15933 set d_sfio
15934 eval $setvar
15935 case "$d_sfio" in
15936 $define) usesfio='true';;
15937 *) usesfio='false';;
15938 esac
15939 case "$d_sfio" in
15940 $define) ;;
15941 *)      : Remove sfio from list of libraries to use
15942         case "$libs" in
15943         *-lsfio*)
15944                 echo "Removing unneeded -lsfio from library list" >&4
15945                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
15946                 shift
15947                 libs="$*"
15948                 echo "libs = $libs" >&4
15949                 ;;
15950         esac
15951 ;;
15952 esac
15953
15954
15955 : see if shmctl exists
15956 set shmctl d_shmctl
15957 eval $inlibc
15958
15959 : see if shmget exists
15960 set shmget d_shmget
15961 eval $inlibc
15962
15963 : see if shmat exists
15964 set shmat d_shmat
15965 eval $inlibc
15966 : see what shmat returns
15967 case "$d_shmat" in
15968 "$define")
15969         $cat >shmat.c <<'END'
15970 #include <sys/shm.h>
15971 void *shmat();
15972 END
15973         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15974                 shmattype='void *'
15975         else
15976                 shmattype='char *'
15977         fi
15978         echo "and it returns ($shmattype)." >&4
15979         : see if a prototype for shmat is available
15980         xxx=`./findhdr sys/shm.h`
15981         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15982         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15983                 val="$define"
15984         else
15985                 val="$undef"
15986         fi
15987         $rm -f shmat.[co]
15988         ;;
15989 *)
15990         val="$undef"
15991         ;;
15992 esac
15993 set d_shmatprototype
15994 eval $setvar
15995
15996 : see if shmdt exists
15997 set shmdt d_shmdt
15998 eval $inlibc
15999
16000 : see how much of the 'shm*(2)' library is present.
16001 h_shm=true
16002 echo " "
16003 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
16004 *"$undef"*) h_shm=false;;
16005 esac
16006 case "$osname" in
16007 freebsd)
16008     case "`ipcs 2>&1`" in
16009     "SVID shared memory"*"not configured"*)
16010         echo "Your $osname does not have the shm*(2) configured." >&4
16011         h_shm=false
16012         val="$undef"
16013         set shmctl d_shmctl
16014         evat $setvar
16015         set shmget d_shmget
16016         evat $setvar
16017         set shmat d_shmat
16018         evat $setvar
16019         set shmdt d_shmdt
16020         evat $setvar
16021         ;;
16022     esac
16023     ;;
16024 esac
16025 : we could also check for sys/ipc.h ...
16026 if $h_shm && $test `./findhdr sys/shm.h`; then
16027         echo "You have the full shm*(2) library." >&4
16028         val="$define"
16029 else
16030         echo "You don't have the full shm*(2) library." >&4
16031         val="$undef"
16032 fi
16033 set d_shm
16034 eval $setvar
16035
16036 echo " "
16037 : see if we have sigaction
16038 if set sigaction val -f d_sigaction; eval $csym; $val; then
16039         echo 'sigaction() found.' >&4
16040         $cat > try.c <<EOP
16041 #include <stdio.h>
16042 #include <sys/types.h>
16043 #include <signal.h>
16044 #$i_stdlib I_STDLIB
16045 #ifdef I_STDLIB
16046 #include <stdlib.h>
16047 #endif
16048 int main()
16049 {
16050     struct sigaction act, oact;
16051     act.sa_flags = 0;
16052     oact.sa_handler = 0;
16053     /* so that act and oact are used */
16054     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
16055 }
16056 EOP
16057         set try
16058         if eval $compile_ok; then
16059                 val="$define"
16060         else
16061                 echo "But you don't seem to have a useable struct sigaction." >&4
16062                 val="$undef"
16063         fi
16064 else
16065         echo 'sigaction NOT found.' >&4
16066         val="$undef"
16067 fi
16068 set d_sigaction; eval $setvar
16069 $rm -f try try$_o try.c
16070
16071 : see if sigprocmask exists
16072 set sigprocmask d_sigprocmask
16073 eval $inlibc
16074
16075 : see if sigsetjmp exists
16076 echo " "
16077 case "$d_sigsetjmp" in
16078 '')
16079         $cat >try.c <<EOP
16080 #include <setjmp.h>
16081 #$i_stdlib I_STDLIB
16082 #ifdef I_STDLIB
16083 #include <stdlib.h>
16084 #endif
16085 sigjmp_buf env;
16086 int set = 1;
16087 int main()
16088 {
16089         if (sigsetjmp(env,1))
16090                 exit(set);
16091         set = 0;
16092         siglongjmp(env, 1);
16093         exit(1);
16094 }
16095 EOP
16096         set try
16097         if eval $compile; then
16098                 if $run ./try >/dev/null 2>&1; then
16099                         echo "POSIX sigsetjmp found." >&4
16100                         val="$define"
16101                 else
16102                         $cat >&4 <<EOM
16103 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
16104 I'll ignore them.
16105 EOM
16106                         val="$undef"
16107                 fi
16108         else
16109                 echo "sigsetjmp not found." >&4
16110                 val="$undef"
16111         fi
16112         ;;
16113 *) val="$d_sigsetjmp"
16114         case "$d_sigsetjmp" in
16115         $define) echo "POSIX sigsetjmp found." >&4;;
16116         $undef) echo "sigsetjmp not found." >&4;;
16117         esac
16118         ;;
16119 esac
16120 set d_sigsetjmp
16121 eval $setvar
16122 $rm -f try.c try
16123
16124 : see if sockatmark exists
16125 set sockatmark d_sockatmark
16126 eval $inlibc
16127
16128 : see if prototype for sockatmark is available
16129 echo " "
16130 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
16131 eval $hasproto
16132
16133 : see if socks5_init exists
16134 set socks5_init d_socks5_init
16135 eval $inlibc
16136
16137 : see if srand48_r exists
16138 set srand48_r d_srand48_r
16139 eval $inlibc
16140 case "$d_srand48_r" in
16141 "$define")
16142         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16143         case "$d_srand48_r_proto:$usethreads" in
16144         ":define")      d_srand48_r_proto=define
16145                 set d_srand48_r_proto srand48_r $hdrs
16146                 eval $hasproto ;;
16147         *)      ;;
16148         esac
16149         case "$d_srand48_r_proto" in
16150         define)
16151         case "$srand48_r_proto" in
16152         ''|0) try='int srand48_r(long, struct drand48_data*);'
16153         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
16154         esac
16155         case "$srand48_r_proto" in
16156         ''|0)   d_srand48_r=undef
16157                 srand48_r_proto=0
16158                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
16159         * )     case "$srand48_r_proto" in
16160                 REENTRANT_PROTO*) ;;
16161                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
16162                 esac
16163                 echo "Prototype: $try" ;;
16164         esac
16165         ;;
16166         *)      case "$usethreads" in
16167                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
16168                 esac
16169                 d_srand48_r=undef
16170                 srand48_r_proto=0
16171                 ;;
16172         esac
16173         ;;
16174 *)      srand48_r_proto=0
16175         ;;
16176 esac
16177
16178 : see if srandom_r exists
16179 set srandom_r d_srandom_r
16180 eval $inlibc
16181 case "$d_srandom_r" in
16182 "$define")
16183         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16184         case "$d_srandom_r_proto:$usethreads" in
16185         ":define")      d_srandom_r_proto=define
16186                 set d_srandom_r_proto srandom_r $hdrs
16187                 eval $hasproto ;;
16188         *)      ;;
16189         esac
16190         case "$d_srandom_r_proto" in
16191         define)
16192         case "$srandom_r_proto" in
16193         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
16194         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
16195         esac
16196         case "$srandom_r_proto" in
16197         ''|0)   d_srandom_r=undef
16198                 srandom_r_proto=0
16199                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
16200         * )     case "$srandom_r_proto" in
16201                 REENTRANT_PROTO*) ;;
16202                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
16203                 esac
16204                 echo "Prototype: $try" ;;
16205         esac
16206         ;;
16207         *)      case "$usethreads" in
16208                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
16209                 esac
16210                 d_srandom_r=undef
16211                 srandom_r_proto=0
16212                 ;;
16213         esac
16214         ;;
16215 *)      srandom_r_proto=0
16216         ;;
16217 esac
16218
16219 : see if prototype for setresgid is available
16220 echo " "
16221 set d_sresgproto setresgid $i_unistd unistd.h
16222 eval $hasproto
16223
16224 : see if prototype for setresuid is available
16225 echo " "
16226 set d_sresuproto setresuid $i_unistd unistd.h
16227 eval $hasproto
16228
16229 : see if sys/stat.h is available
16230 set sys/stat.h i_sysstat
16231 eval $inhdr
16232
16233
16234 : see if stat knows about block sizes
16235 echo " "
16236 echo "Checking to see if your struct stat has st_blocks field..." >&4
16237 set d_statblks stat st_blocks $i_sysstat sys/stat.h
16238 eval $hasfield
16239
16240
16241 : see if this is a sys/vfs.h system
16242 set sys/vfs.h i_sysvfs
16243 eval $inhdr
16244
16245
16246 : see if this is a sys/statfs.h system
16247 set sys/statfs.h i_sysstatfs
16248 eval $inhdr
16249
16250
16251 echo " "
16252 echo "Checking to see if your system supports struct statfs..." >&4
16253 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
16254 eval $hasstruct
16255 case "$d_statfs_s" in
16256 "$define")      echo "Yes, it does."   ;;
16257 *)              echo "No, it doesn't." ;;
16258 esac
16259
16260
16261
16262 : see if struct statfs knows about f_flags
16263 case "$d_statfs_s" in
16264 define) 
16265         echo " "
16266         echo "Checking to see if your struct statfs has f_flags field..." >&4
16267         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
16268         eval $hasfield
16269         ;;
16270 *)      val="$undef"
16271         set d_statfs_f_flags
16272         eval $setvar
16273         ;;
16274 esac
16275 case "$d_statfs_f_flags" in
16276 "$define")      echo "Yes, it does."   ;;
16277 *)              echo "No, it doesn't." ;;
16278 esac
16279
16280 $cat >&4 <<EOM
16281 Checking how to access stdio streams by file descriptor number...
16282 EOM
16283 case "$stdio_stream_array" in
16284 '')     $cat >try.c <<EOCP
16285 #include <stdio.h>
16286 int main() {
16287   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
16288     printf("yes\n");
16289 }
16290 EOCP
16291         for s in _iob __iob __sF
16292         do
16293                 set try -DSTDIO_STREAM_ARRAY=$s
16294                 if eval $compile; then
16295                         case "`$run ./try`" in
16296                         yes)    stdio_stream_array=$s; break ;;
16297                         esac
16298                 fi
16299         done
16300         $rm -f try.* try$exe_ext
16301 esac
16302 case "$stdio_stream_array" in
16303 '')     $cat >&4 <<EOM
16304 I can't figure out how to access stdio streams by file descriptor number.
16305 EOM
16306         d_stdio_stream_array="$undef"
16307         ;;
16308 *)      $cat >&4 <<EOM
16309 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
16310 EOM
16311         d_stdio_stream_array="$define"
16312         ;;
16313 esac
16314
16315 : see if strcoll exists
16316 set strcoll d_strcoll
16317 eval $inlibc
16318
16319 : check for structure copying
16320 echo " "
16321 echo "Checking to see if your C compiler can copy structs..." >&4
16322 $cat >try.c <<'EOCP'
16323 int main()
16324 {
16325         struct blurfl {
16326                 int dyick;
16327         } foo, bar;
16328
16329         foo = bar;
16330 }
16331 EOCP
16332 if $cc -c try.c >/dev/null 2>&1 ; then
16333         val="$define"
16334         echo "Yup, it can."
16335 else
16336         val="$undef"
16337         echo "Nope, it can't."
16338 fi
16339 set d_strctcpy
16340 eval $setvar
16341 $rm -f try.*
16342
16343 : see if strerror and/or sys_errlist[] exist
16344 echo " "
16345 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
16346     if set strerror val -f d_strerror; eval $csym; $val; then
16347                 echo 'strerror() found.' >&4
16348                 d_strerror="$define"
16349                 d_strerrm='strerror(e)'
16350                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16351                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
16352                         d_syserrlst="$define"
16353                 else
16354                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
16355                         d_syserrlst="$undef"
16356                 fi
16357     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
16358                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
16359                 echo 'strerror() found in string header.' >&4
16360                 d_strerror="$define"
16361                 d_strerrm='strerror(e)'
16362                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16363                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
16364                                 d_syserrlst="$define"
16365                 else
16366                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
16367                         d_syserrlst="$undef"
16368                 fi
16369     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
16370                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
16371                 d_strerror="$undef"
16372                 d_syserrlst="$define"
16373                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
16374     else
16375                 echo 'strerror() and sys_errlist[] NOT found.' >&4
16376                 d_strerror="$undef"
16377                 d_syserrlst="$undef"
16378                 d_strerrm='"unknown"'
16379     fi
16380 fi
16381
16382 : see if strerror_r exists
16383 set strerror_r d_strerror_r
16384 eval $inlibc
16385 case "$d_strerror_r" in
16386 "$define")
16387         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
16388         case "$d_strerror_r_proto:$usethreads" in
16389         ":define")      d_strerror_r_proto=define
16390                 set d_strerror_r_proto strerror_r $hdrs
16391                 eval $hasproto ;;
16392         *)      ;;
16393         esac
16394         case "$d_strerror_r_proto" in
16395         define)
16396         case "$strerror_r_proto" in
16397         ''|0) try='int strerror_r(int, char*, size_t);'
16398         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
16399         esac
16400         case "$strerror_r_proto" in
16401         ''|0) try='int strerror_r(int, char*, int);'
16402         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
16403         esac
16404         case "$strerror_r_proto" in
16405         ''|0) try='char* strerror_r(int, char*, size_t);'
16406         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
16407         esac
16408         case "$strerror_r_proto" in
16409         ''|0)   d_strerror_r=undef
16410                 strerror_r_proto=0
16411                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
16412         * )     case "$strerror_r_proto" in
16413                 REENTRANT_PROTO*) ;;
16414                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
16415                 esac
16416                 echo "Prototype: $try" ;;
16417         esac
16418         ;;
16419         *)      case "$usethreads" in
16420                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
16421                 esac
16422                 d_strerror_r=undef
16423                 strerror_r_proto=0
16424                 ;;
16425         esac
16426         ;;
16427 *)      strerror_r_proto=0
16428         ;;
16429 esac
16430
16431 : see if strftime exists
16432 set strftime d_strftime
16433 eval $inlibc
16434
16435 : see if strlcat exists
16436 set strlcat d_strlcat
16437 eval $inlibc
16438
16439 : see if strlcpy exists
16440 set strlcpy d_strlcpy
16441 eval $inlibc
16442
16443 : see if strtod exists
16444 set strtod d_strtod
16445 eval $inlibc
16446
16447 : see if strtol exists
16448 set strtol d_strtol
16449 eval $inlibc
16450
16451 : see if strtold exists
16452 set strtold d_strtold
16453 eval $inlibc
16454
16455 : see if strtoll exists
16456 set strtoll d_strtoll
16457 eval $inlibc
16458
16459 case "$d_longlong-$d_strtoll" in
16460 "$define-$define")
16461         $cat <<EOM
16462 Checking whether your strtoll() works okay...
16463 EOM
16464         $cat >try.c <<'EOCP'
16465 #include <errno.h>
16466 #ifdef __hpux
16467 #define strtoll __strtoll
16468 #endif
16469 #ifdef __EMX__
16470 #define strtoll _strtoll
16471 #endif
16472 #include <stdio.h>
16473 extern long long int strtoll(char *s, char **, int); 
16474 static int bad = 0;
16475 int check(char *s, long long ell, int een) {
16476         long long gll;
16477         errno = 0;
16478         gll = strtoll(s, 0, 10);
16479         if (!((gll == ell) && (errno == een)))
16480                 bad++;
16481 }
16482 int main() {
16483         check(" 1",                                      1LL, 0);
16484         check(" 0",                                      0LL, 0);
16485         check("-1",                                     -1LL, 0);
16486         check("-9223372036854775808", -9223372036854775808LL, 0);
16487         check("-9223372036854775808", -9223372036854775808LL, 0);
16488         check(" 9223372036854775807",  9223372036854775807LL, 0);
16489         check("-9223372036854775808", -9223372036854775808LL, 0);
16490         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
16491         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
16492         if (!bad)
16493                 printf("ok\n");
16494 }
16495 EOCP
16496         set try
16497         if eval $compile; then
16498                 yyy=`$run ./try`
16499                 case "$yyy" in
16500                 ok) echo "Your strtoll() seems to be working okay." ;;
16501                 *) cat <<EOM >&4
16502 Your strtoll() doesn't seem to be working okay.
16503 EOM
16504                    d_strtoll="$undef"
16505                    ;;
16506                 esac
16507         else
16508                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16509                 d_strtoll="$undef"
16510         fi
16511         ;;
16512 esac
16513
16514 : see if strtoq exists
16515 set strtoq d_strtoq
16516 eval $inlibc
16517
16518 : see if strtoul exists
16519 set strtoul d_strtoul
16520 eval $inlibc
16521
16522 case "$d_strtoul" in
16523 "$define")
16524         $cat <<EOM
16525 Checking whether your strtoul() works okay...
16526 EOM
16527         $cat >try.c <<'EOCP'
16528 #include <errno.h>
16529 #include <stdio.h>
16530 extern unsigned long int strtoul(char *s, char **, int); 
16531 static int bad = 0;
16532 void check(char *s, unsigned long eul, int een) {
16533         unsigned long gul;
16534         errno = 0;
16535         gul = strtoul(s, 0, 10);
16536         if (!((gul == eul) && (errno == een)))
16537                 bad++;
16538 }
16539 int main() {
16540         check(" 1", 1L, 0);
16541         check(" 0", 0L, 0);
16542 EOCP
16543         case "$longsize" in
16544         8)
16545             $cat >>try.c <<'EOCP'
16546         check("18446744073709551615", 18446744073709551615UL, 0);
16547         check("18446744073709551616", 18446744073709551615UL, ERANGE);
16548 #if 0 /* strtoul() for /^-/ strings is undefined. */
16549         check("-1", 18446744073709551615UL, 0);
16550         check("-18446744073709551614", 2, 0);
16551         check("-18446744073709551615", 1, 0);
16552         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
16553         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
16554 #endif
16555 EOCP
16556                 ;;
16557         4)
16558                     $cat >>try.c <<'EOCP'
16559         check("4294967295", 4294967295UL, 0);
16560         check("4294967296", 4294967295UL, ERANGE);
16561 #if 0 /* strtoul() for /^-/ strings is undefined. */
16562         check("-1", 4294967295UL, 0);
16563         check("-4294967294", 2, 0);
16564         check("-4294967295", 1, 0);
16565         check("-4294967296", 4294967295UL, ERANGE);
16566         check("-4294967297", 4294967295UL, ERANGE);
16567 #endif
16568 EOCP
16569                 ;;
16570         *)
16571 : Should we write these tests to be more portable by sprintf-ing
16572 : ~0 and then manipulating that char string as input for strtol?
16573                 ;;
16574         esac
16575         $cat >>try.c <<'EOCP'
16576         if (!bad)
16577                 printf("ok\n");
16578         return 0;
16579 }
16580 EOCP
16581         set try
16582         if eval $compile; then
16583                 case "`$run ./try`" in
16584                 ok) echo "Your strtoul() seems to be working okay." ;;
16585                 *) cat <<EOM >&4
16586 Your strtoul() doesn't seem to be working okay.
16587 EOM
16588                    d_strtoul="$undef"
16589                    ;;
16590                 esac
16591         fi
16592         ;;
16593 esac
16594
16595 : see if strtoull exists
16596 set strtoull d_strtoull
16597 eval $inlibc
16598
16599 case "$d_longlong-$d_strtoull" in
16600 "$define-$define")
16601         $cat <<EOM
16602 Checking whether your strtoull() works okay...
16603 EOM
16604         $cat >try.c <<'EOCP'
16605 #include <errno.h>
16606 #ifdef __hpux
16607 #define strtoull __strtoull
16608 #endif
16609 #include <stdio.h>
16610 extern unsigned long long int strtoull(char *s, char **, int); 
16611 static int bad = 0;
16612 int check(char *s, long long eull, int een) {
16613         long long gull;
16614         errno = 0;
16615         gull = strtoull(s, 0, 10);
16616         if (!((gull == eull) && (errno == een)))
16617                 bad++;
16618 }
16619 int main() {
16620         check(" 1",                                        1LL, 0);
16621         check(" 0",                                        0LL, 0);
16622         check("18446744073709551615",  18446744073709551615ULL, 0);
16623         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16624 #if 0 /* strtoull() for /^-/ strings is undefined. */
16625         check("-1",                    18446744073709551615ULL, 0);
16626         check("-18446744073709551614",                     2LL, 0);
16627         check("-18446744073709551615",                     1LL, 0);
16628         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16629         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16630 #endif
16631         if (!bad)
16632                 printf("ok\n");
16633 }
16634 EOCP
16635         set try
16636         if eval $compile; then
16637                 case "`$run ./try`" in
16638                 ok) echo "Your strtoull() seems to be working okay." ;;
16639                 *) cat <<EOM >&4
16640 Your strtoull() doesn't seem to be working okay.
16641 EOM
16642                    d_strtoull="$undef"
16643                    ;;
16644                 esac
16645         fi
16646         ;;
16647 esac
16648
16649 : see if strtouq exists
16650 set strtouq d_strtouq
16651 eval $inlibc
16652
16653 case "$d_strtouq" in
16654 "$define")
16655         $cat <<EOM
16656 Checking whether your strtouq() works okay...
16657 EOM
16658         $cat >try.c <<'EOCP'
16659 #include <errno.h>
16660 #include <stdio.h>
16661 extern unsigned long long int strtouq(char *s, char **, int); 
16662 static int bad = 0;
16663 void check(char *s, unsigned long long eull, int een) {
16664         unsigned long long gull;
16665         errno = 0;
16666         gull = strtouq(s, 0, 10);
16667         if (!((gull == eull) && (errno == een)))
16668                 bad++;
16669 }
16670 int main() {
16671         check(" 1",                                        1LL, 0);
16672         check(" 0",                                        0LL, 0);
16673         check("18446744073709551615",  18446744073709551615ULL, 0);
16674         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16675 #if 0 /* strtouq() for /^-/ strings is undefined. */
16676         check("-1",                    18446744073709551615ULL, 0);
16677         check("-18446744073709551614",                     2LL, 0);
16678         check("-18446744073709551615",                     1LL, 0);
16679         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16680         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16681 #endif
16682         if (!bad)
16683                 printf("ok\n");
16684         return 0;
16685 }
16686 EOCP
16687         set try
16688         if eval $compile; then
16689                 case "`$run ./try`" in
16690                 ok) echo "Your strtouq() seems to be working okay." ;;
16691                 *) cat <<EOM >&4
16692 Your strtouq() doesn't seem to be working okay.
16693 EOM
16694                    d_strtouq="$undef"
16695                    ;;
16696                 esac
16697         fi
16698         ;;
16699 esac
16700
16701 : see if strxfrm exists
16702 set strxfrm d_strxfrm
16703 eval $inlibc
16704
16705 : see if symlink exists
16706 set symlink d_symlink
16707 eval $inlibc
16708
16709 : see if syscall exists
16710 set syscall d_syscall
16711 eval $inlibc
16712
16713 : see if prototype for syscall is available
16714 echo " "
16715 set d_syscallproto syscall $i_unistd unistd.h
16716 eval $hasproto
16717
16718 : see if sysconf exists
16719 set sysconf d_sysconf
16720 eval $inlibc
16721
16722 : see if system exists
16723 set system d_system
16724 eval $inlibc
16725
16726 : see if tcgetpgrp exists
16727 set tcgetpgrp d_tcgetpgrp
16728 eval $inlibc
16729
16730 : see if tcsetpgrp exists
16731 set tcsetpgrp d_tcsetpgrp
16732 eval $inlibc
16733
16734 : see if prototype for telldir is available
16735 echo " "
16736 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16737 eval $hasproto
16738
16739 : see if time exists
16740 echo " "
16741 if test "X$d_time" = X -o X"$timetype" = X; then
16742     if set time val -f d_time; eval $csym; $val; then
16743                 echo 'time() found.' >&4
16744                 val="$define"
16745                 rp="What is the type returned by time() on this system?"
16746                 set time_t timetype long stdio.h sys/types.h
16747                 eval $typedef_ask
16748     else
16749                 echo 'time() not found, hope that will do.' >&4
16750                 val="$undef"
16751                 timetype='int';
16752     fi
16753     set d_time
16754     eval $setvar
16755 fi
16756
16757 : see if this is a sys/times.h system
16758 set sys/times.h i_systimes
16759 eval $inhdr
16760
16761 : see if times exists
16762 echo " "
16763 if set times val -f d_times; eval $csym; $val; then
16764         echo 'times() found.' >&4
16765         d_times="$define"
16766         inc=''
16767         case "$i_systimes" in
16768         "$define") inc='sys/times.h';;
16769         esac
16770         rp="What is the type returned by times() on this system?"
16771         set clock_t clocktype long stdio.h sys/types.h $inc
16772         eval $typedef_ask
16773 else
16774         echo 'times() NOT found, hope that will do.' >&4
16775         d_times="$undef"
16776         clocktype='int'
16777 fi
16778
16779 : see if tmpnam_r exists
16780 set tmpnam_r d_tmpnam_r
16781 eval $inlibc
16782 case "$d_tmpnam_r" in
16783 "$define")
16784         hdrs="$i_systypes sys/types.h define stdio.h "
16785         case "$d_tmpnam_r_proto:$usethreads" in
16786         ":define")      d_tmpnam_r_proto=define
16787                 set d_tmpnam_r_proto tmpnam_r $hdrs
16788                 eval $hasproto ;;
16789         *)      ;;
16790         esac
16791         case "$d_tmpnam_r_proto" in
16792         define)
16793         case "$tmpnam_r_proto" in
16794         ''|0) try='char* tmpnam_r(char*);'
16795         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16796         esac
16797         case "$tmpnam_r_proto" in
16798         ''|0)   d_tmpnam_r=undef
16799                 tmpnam_r_proto=0
16800                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16801         * )     case "$tmpnam_r_proto" in
16802                 REENTRANT_PROTO*) ;;
16803                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16804                 esac
16805                 echo "Prototype: $try" ;;
16806         esac
16807         ;;
16808         *)      case "$usethreads" in
16809                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16810                 esac
16811                 d_tmpnam_r=undef
16812                 tmpnam_r_proto=0
16813                 ;;
16814         esac
16815         ;;
16816 *)      tmpnam_r_proto=0
16817         ;;
16818 esac
16819
16820 : see if truncate exists
16821 set truncate d_truncate
16822 eval $inlibc
16823
16824 : see if ttyname_r exists
16825 set ttyname_r d_ttyname_r
16826 eval $inlibc
16827 case "$d_ttyname_r" in
16828 "$define")
16829         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16830         case "$d_ttyname_r_proto:$usethreads" in
16831         ":define")      d_ttyname_r_proto=define
16832                 set d_ttyname_r_proto ttyname_r $hdrs
16833                 eval $hasproto ;;
16834         *)      ;;
16835         esac
16836         case "$d_ttyname_r_proto" in
16837         define)
16838         case "$ttyname_r_proto" in
16839         ''|0) try='int ttyname_r(int, char*, size_t);'
16840         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16841         esac
16842         case "$ttyname_r_proto" in
16843         ''|0) try='int ttyname_r(int, char*, int);'
16844         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16845         esac
16846         case "$ttyname_r_proto" in
16847         ''|0) try='char* ttyname_r(int, char*, int);'
16848         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16849         esac
16850         case "$ttyname_r_proto" in
16851         ''|0)   d_ttyname_r=undef
16852                 ttyname_r_proto=0
16853                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16854         * )     case "$ttyname_r_proto" in
16855                 REENTRANT_PROTO*) ;;
16856                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16857                 esac
16858                 echo "Prototype: $try" ;;
16859         esac
16860         ;;
16861         *)      case "$usethreads" in
16862                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16863                 esac
16864                 d_ttyname_r=undef
16865                 ttyname_r_proto=0
16866                 ;;
16867         esac
16868         ;;
16869 *)      ttyname_r_proto=0
16870         ;;
16871 esac
16872
16873 : see if tzname[] exists
16874 echo " "
16875 if set tzname val -a d_tzname; eval $csym; $val; then
16876         val="$define"
16877         echo 'tzname[] found.' >&4
16878 else
16879         val="$undef"
16880         echo 'tzname[] NOT found.' >&4
16881 fi
16882 set d_tzname
16883 eval $setvar
16884
16885 case "$osname" in
16886 next|rhapsody|darwin) multiarch="$define" ;;
16887 esac
16888 case "$multiarch" in
16889 ''|[nN]*) multiarch="$undef" ;;
16890 esac
16891
16892 : check for ordering of bytes in a UV
16893 echo " "
16894 case "$usecrosscompile$multiarch" in
16895 *$define*)
16896         $cat <<EOM
16897 You seem to be either cross-compiling or doing a multiarchitecture build,
16898 skipping the byteorder check.
16899
16900 EOM
16901         byteorder='ffff'
16902         ;;
16903 *)
16904         case "$byteorder" in
16905         '')
16906                 $cat <<'EOM'
16907 In the following, larger digits indicate more significance.  A big-endian
16908 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16909 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16910 machines may have weird orders like 3412.  A Cray will report 87654321,
16911 an Alpha will report 12345678. If the test program works the default is
16912 probably right.
16913 I'm now running the test program...
16914 EOM
16915                 $cat >try.c <<EOCP
16916 #include <stdio.h>
16917 #$i_stdlib I_STDLIB
16918 #ifdef I_STDLIB
16919 #include <stdlib.h>
16920 #endif
16921 #include <sys/types.h>
16922 typedef $uvtype UV;
16923 int main()
16924 {
16925         int i;
16926         union {
16927                 UV l;
16928                 char c[$uvsize];
16929         } u;
16930
16931         if ($uvsize > 4)
16932                 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
16933         else
16934                 u.l = (UV)0x04030201;
16935         for (i = 0; i < $uvsize; i++)
16936                 printf("%c", u.c[i]+'0');
16937         printf("\n");
16938         exit(0);
16939 }
16940 EOCP
16941                 xxx_prompt=y
16942                 set try
16943                 if eval $compile && ./try > /dev/null; then
16944                         dflt=`$run ./try`
16945                         case "$dflt" in
16946                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16947                                 echo "(The test program ran ok.)"
16948                                 echo "byteorder=$dflt"
16949                                 xxx_prompt=n
16950                         ;;
16951                         ????|????????) echo "(The test program ran ok.)" ;;
16952                         *) echo "(The test program didn't run right for some reason.)" ;;
16953                         esac
16954                 else
16955                         dflt='4321'
16956                         cat <<'EOM'
16957 (I can't seem to compile the test program.  Guessing big-endian...)
16958 EOM
16959                 fi
16960                 case "$xxx_prompt" in
16961                 y)
16962                         rp="What is the order of bytes in $uvtype?"
16963                         . ./myread
16964                         byteorder="$ans"
16965                         ;;
16966                 *)      byteorder=$dflt
16967                         ;;
16968                 esac
16969                 ;;
16970         esac
16971         $rm -f try.c try
16972         ;;
16973 esac
16974
16975
16976 $cat <<EOM
16977
16978 Checking to see whether you can access character data unalignedly...
16979 EOM
16980 case "$d_u32align" in
16981 '')   $cat >try.c <<EOCP
16982 #include <stdio.h>
16983 #$i_stdlib I_STDLIB
16984 #ifdef I_STDLIB
16985 #include <stdlib.h>
16986 #endif
16987 #define U32 $u32type
16988 #define BYTEORDER 0x$byteorder
16989 #define U8 $u8type
16990 #include <signal.h>
16991 #ifdef SIGBUS
16992 $signal_t bletch(s) int s; { exit(4); }
16993 #endif
16994 int main() {
16995 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
16996     U8 buf[8];
16997     U32 *up;
16998     int i;
16999
17000     if (sizeof(U32) != 4) {
17001         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
17002         exit(1);
17003     }
17004
17005     fflush(stdout);
17006
17007 #ifdef SIGBUS
17008     signal(SIGBUS, bletch);
17009 #endif
17010
17011     buf[0] = 0;
17012     buf[1] = 0;
17013     buf[2] = 0;
17014     buf[3] = 1;
17015     buf[4] = 0;
17016     buf[5] = 0;
17017     buf[6] = 0;
17018     buf[7] = 1;
17019
17020     for (i = 0; i < 4; i++) {
17021         up = (U32*)(buf + i);
17022         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
17023                (*up == 1 << (8*(3-i)))  /* little-endian */
17024               )
17025            )
17026         {
17027             printf("read failed (%x)\n", *up);
17028             exit(2);
17029         }
17030     }
17031
17032     /* write test */
17033     for (i = 0; i < 4; i++) {
17034         up = (U32*)(buf + i);
17035         *up = 0xBeef;
17036         if (*up != 0xBeef) {
17037             printf("write failed (%x)\n", *up);
17038             exit(3);
17039         }
17040     }
17041
17042     exit(0);
17043 #else
17044     printf("1\n");
17045     exit(1);
17046 #endif
17047     return 0;
17048 }
17049 EOCP
17050 set try
17051 if eval $compile_ok; then
17052         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
17053         $run ./try 2>&1 >/dev/null
17054         case "$?" in
17055         0)      cat >&4 <<EOM
17056 You can access character data pretty unalignedly.
17057 EOM
17058                 d_u32align="$undef"
17059                 ;;
17060         *)      cat >&4 <<EOM
17061 It seems that you must access character data in an aligned manner.
17062 EOM
17063                 d_u32align="$define"
17064                 ;;
17065         esac
17066 else
17067         rp='Can you access character data at unaligned addresses?'
17068         dflt='n'
17069         . ./myread
17070         case "$ans" in
17071         [yY]*)  d_u32align="$undef"  ;;
17072         *)      d_u32align="$define" ;;
17073         esac
17074 fi
17075 $rm -f core core.try.* try.core
17076 ;;
17077 esac
17078
17079 : see if ualarm exists
17080 set ualarm d_ualarm
17081 eval $inlibc
17082
17083 : see if umask exists
17084 set umask d_umask
17085 eval $inlibc
17086
17087 : see if unordered exists
17088 set unordered d_unordered
17089 eval $inlibc
17090
17091 : see if usleep exists
17092 set usleep d_usleep
17093 eval $inlibc
17094
17095 : see if prototype for usleep is available
17096 echo " "
17097 set d_usleepproto usleep $i_unistd unistd.h
17098 eval $hasproto
17099
17100 : see if ustat exists
17101 set ustat d_ustat
17102 eval $inlibc
17103
17104 : backward compatibility for d_hvfork
17105 if test X$d_hvfork != X; then
17106         d_vfork="$d_hvfork"
17107         d_hvfork=''
17108 fi
17109 : see if there is a vfork
17110 val=''
17111 set vfork val
17112 eval $inlibc
17113
17114 : Ok, but do we want to use it. vfork is reportedly unreliable in 
17115 : perl on Solaris 2.x, and probably elsewhere.
17116 case "$val" in
17117 $define)
17118         echo " "
17119         case "$usevfork" in
17120         false) dflt='n';;
17121         *) dflt='y';;
17122         esac
17123         cat <<'EOM'
17124  
17125 Perl can only use a vfork() that doesn't suffer from strict
17126 restrictions on calling functions or modifying global data in
17127 the child.  For example, glibc-2.1 contains such a vfork()
17128 that is unsuitable.  If your system provides a proper fork()
17129 call, chances are that you do NOT want perl to use vfork().
17130
17131 EOM
17132         rp="Do you still want to use vfork()?"
17133         . ./myread
17134         case "$ans" in
17135         y|Y) ;;
17136         *)
17137                 echo "Ok, we won't use vfork()."
17138                 val="$undef"
17139                 ;;
17140         esac
17141         ;;
17142 esac
17143 set d_vfork
17144 eval $setvar
17145 case "$d_vfork" in
17146 $define) usevfork='true';;
17147 *) usevfork='false';;
17148 esac
17149
17150 : see if closedir exists
17151 set closedir d_closedir
17152 eval $inlibc
17153
17154 case "$d_closedir" in
17155 "$define")
17156         echo " "
17157         echo "Checking whether closedir() returns a status..." >&4
17158         cat > try.c <<EOM
17159 #$i_dirent I_DIRENT             /**/
17160 #$i_sysdir I_SYS_DIR            /**/
17161 #$i_sysndir I_SYS_NDIR          /**/
17162 #$i_systypes I_SYS_TYPES        /**/
17163
17164 #if defined(I_SYS_TYPES)
17165 #include <sys/types.h>
17166 #endif
17167 #if defined(I_DIRENT)
17168 #include <dirent.h>
17169 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
17170 #include <sys/dir.h>
17171 #endif
17172 #else
17173 #ifdef I_SYS_NDIR
17174 #include <sys/ndir.h>
17175 #else
17176 #ifdef I_SYS_DIR
17177 #ifdef hp9000s500
17178 #include <ndir.h>       /* may be wrong in the future */
17179 #else
17180 #include <sys/dir.h>
17181 #endif
17182 #endif
17183 #endif
17184 #endif 
17185 int main() { return closedir(opendir(".")); }
17186 EOM
17187         set try
17188         if eval $compile_ok; then
17189                 if $run ./try > /dev/null 2>&1 ; then
17190                         echo "Yes, it does."
17191                         val="$undef"
17192                 else
17193                         echo "No, it doesn't."
17194                         val="$define"
17195                 fi
17196         else
17197                 echo "(I can't seem to compile the test program--assuming it doesn't)"
17198                 val="$define"
17199         fi
17200         ;;
17201 *)
17202         val="$undef";
17203         ;;
17204 esac
17205 set d_void_closedir
17206 eval $setvar
17207 $rm -f try try.*
17208 : see if there is a wait4
17209 set wait4 d_wait4
17210 eval $inlibc
17211
17212 : see if waitpid exists
17213 set waitpid d_waitpid
17214 eval $inlibc
17215
17216 : see if wcstombs exists
17217 set wcstombs d_wcstombs
17218 eval $inlibc
17219
17220 : see if wctomb exists
17221 set wctomb d_wctomb
17222 eval $inlibc
17223
17224 : see if writev exists
17225 set writev d_writev
17226 eval $inlibc
17227
17228 : preserve RCS keywords in files with variable substitution, grrr
17229 Date='$Date'
17230 Id='$Id'
17231 Log='$Log'
17232 RCSfile='$RCSfile'
17233 Revision='$Revision'
17234
17235 : check for alignment requirements
17236 echo " "
17237 case "$usecrosscompile$multiarch" in
17238 *$define*)
17239         $cat <<EOM
17240 You seem to be either cross-compiling or doing a multiarchitecture build,
17241 skipping the memory alignment check.
17242
17243 EOM
17244         case "$alignbytes" in
17245         '') alignbytes=8 ;;
17246         esac
17247         ;;
17248 *)
17249         case "$alignbytes" in
17250         '') echo "Checking alignment constraints..." >&4
17251                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
17252                         $cat >try.c <<'EOCP'
17253 typedef long double NV;
17254 EOCP
17255                 else
17256                         $cat >try.c <<'EOCP'
17257 typedef double NV;
17258 EOCP
17259                 fi
17260                 $cat >>try.c <<'EOCP'
17261 #include <stdio.h>
17262 struct foobar {
17263         char foo;
17264         NV bar;
17265 } try_algn;
17266 int main()
17267 {
17268     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
17269     return(0);
17270 }
17271 EOCP
17272                 set try
17273                 if eval $compile_ok; then
17274                         dflt=`$run ./try`
17275                 else
17276                         dflt='8'
17277                         echo "(I can't seem to compile the test program...)"
17278                 fi
17279                 ;;
17280         *) dflt="$alignbytes"
17281                 ;;
17282         esac
17283         rp="Doubles must be aligned on a how-many-byte boundary?"
17284         . ./myread
17285         alignbytes="$ans"
17286         $rm -f try.c try
17287         ;;
17288 esac
17289
17290
17291 : set the base revision
17292 baserev=5.0
17293
17294 : how do we concatenate cpp tokens here?
17295 echo " "
17296 echo "Checking to see how your cpp does stuff like concatenate tokens..." >&4
17297 $cat >cpp_stuff.c <<'EOCP'
17298 #define RCAT(a,b)a/**/b
17299 #define ACAT(a,b)a ## b
17300 RCAT(Rei,ser)
17301 ACAT(Cir,cus)
17302 EOCP
17303 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
17304 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
17305         echo "Oh!  Smells like ANSI's been here." >&4
17306         echo "We can catify or stringify, separately or together!"
17307         cpp_stuff=42
17308 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
17309         echo "Ah, yes!  The good old days!" >&4
17310         echo "However, in the good old days we don't know how to stringify and"
17311         echo "catify at the same time."
17312         cpp_stuff=1
17313 else
17314         $cat >&4 <<EOM
17315 Hmm, I don't seem to be able to concatenate tokens with your cpp.
17316 You're going to have to edit the values of CAT[2-5] in config.h...
17317 EOM
17318         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
17319 fi
17320 $rm -f cpp_stuff.*
17321
17322 : see if this is a db.h system
17323 set db.h i_db
17324 eval $inhdr
17325
17326 case "$i_db" in
17327 $define)
17328         : Check db version.
17329         echo " "
17330         echo "Checking Berkeley DB version ..." >&4
17331         $cat >try.c <<EOCP
17332 #$d_const HASCONST
17333 #ifndef HASCONST
17334 #define const
17335 #endif
17336 #include <sys/types.h>
17337 #include <stdio.h>
17338 #$i_stdlib I_STDLIB
17339 #ifdef I_STDLIB
17340 #include <stdlib.h>
17341 #endif
17342 #include <db.h>
17343 int main(int argc, char *argv[])
17344 {
17345 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
17346     int Major, Minor, Patch ;
17347     unsigned long Version ;
17348     (void)db_version(&Major, &Minor, &Patch) ;
17349     if (argc == 2) {
17350         printf("%d %d %d %d %d %d\n",
17351                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
17352                Major, Minor, Patch);
17353         exit(0);
17354     }
17355     printf("You have Berkeley DB Version 2 or greater.\n");
17356
17357     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
17358                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
17359     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
17360                 Major, Minor, Patch) ;
17361
17362     /* check that db.h & libdb are compatible */
17363     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
17364         printf("db.h and libdb are incompatible.\n") ;
17365         exit(3);        
17366     }
17367
17368     printf("db.h and libdb are compatible.\n") ;
17369
17370     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
17371                 + DB_VERSION_PATCH ;
17372
17373     /* needs to be >= 2.3.4 */
17374     if (Version < 2003004) {
17375     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
17376         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
17377         exit(2);        
17378     }
17379
17380     exit(0);
17381 #else
17382 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
17383     if (argc == 2) {
17384         printf("1 0 0\n");
17385         exit(0);
17386     }
17387     printf("You have Berkeley DB Version 1.\n");
17388     exit(0);    /* DB version < 2: the coast is clear. */
17389 #else
17390     exit(1);    /* <db.h> not Berkeley DB? */
17391 #endif
17392 #endif
17393 }
17394 EOCP
17395         set try
17396         if eval $compile_ok && $run ./try; then
17397                 echo 'Looks OK.' >&4
17398                 set `$run ./try 1`
17399                 db_version_major=$1
17400                 db_version_minor=$2
17401                 db_version_patch=$3
17402         else
17403                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
17404                 i_db=$undef
17405                 case " $libs " in
17406                 *"-ldb "*)
17407                         : Remove db from list of libraries to use
17408                         echo "Removing unusable -ldb from library list" >&4
17409                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
17410                         shift
17411                         libs="$*"
17412                         echo "libs = $libs" >&4
17413                         ;;
17414                 esac
17415         fi
17416         $rm -f try.*
17417         ;;
17418 esac
17419
17420 case "$i_db" in
17421 define)
17422         : Check the return type needed for hash 
17423         echo " "
17424         echo "Checking return type needed for hash for Berkeley DB ..." >&4
17425         $cat >try.c <<EOCP
17426 #$d_const HASCONST
17427 #ifndef HASCONST
17428 #define const
17429 #endif
17430 #include <sys/types.h>
17431 #include <db.h>
17432
17433 #ifndef DB_VERSION_MAJOR
17434 u_int32_t hash_cb (ptr, size)
17435 const void *ptr;
17436 size_t size;
17437 {
17438 }
17439 HASHINFO info;
17440 int main()
17441 {
17442         info.hash = hash_cb;
17443 }
17444 #endif
17445 EOCP
17446         if $cc $ccflags -c try.c >try.out 2>&1 ; then
17447                 if $contains warning try.out >>/dev/null 2>&1 ; then
17448                         db_hashtype='int'
17449                 else
17450                         db_hashtype='u_int32_t'
17451                 fi
17452         else
17453                 : XXX Maybe we should just give up here.
17454                 db_hashtype=u_int32_t
17455                 $cat try.out >&4
17456                 echo "Help:  I can't seem to compile the db test program." >&4
17457                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
17458         fi
17459         $rm -f try.*
17460         echo "Your version of Berkeley DB uses $db_hashtype for hash."
17461         ;;
17462 *)      db_hashtype=u_int32_t
17463         ;;
17464 esac
17465 case "$i_db" in
17466 define)
17467         : Check the return type needed for prefix 
17468         echo " "
17469         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
17470         cat >try.c <<EOCP
17471 #$d_const HASCONST
17472 #ifndef HASCONST
17473 #define const
17474 #endif
17475 #include <sys/types.h>
17476 #include <db.h>
17477
17478 #ifndef DB_VERSION_MAJOR
17479 size_t prefix_cb (key1, key2)
17480 const DBT *key1;
17481 const DBT *key2;
17482 {
17483 }
17484 BTREEINFO info;
17485 int main()
17486 {
17487         info.prefix = prefix_cb;
17488 }
17489 #endif
17490 EOCP
17491         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
17492                 if $contains warning try.out >>/dev/null 2>&1 ; then
17493                         db_prefixtype='int'
17494                 else
17495                         db_prefixtype='size_t'
17496                 fi
17497         else
17498                 db_prefixtype='size_t'
17499                 : XXX Maybe we should just give up here.
17500                 $cat try.out >&4
17501                 echo "Help:  I can't seem to compile the db test program." >&4
17502                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
17503         fi
17504         $rm -f try.*
17505         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
17506         ;;
17507 *)      db_prefixtype='size_t'
17508         ;;
17509 esac
17510
17511
17512 : How can we generate normalized random numbers ?
17513 echo " "
17514 echo "Looking for a random number function..." >&4
17515 case "$randfunc" in
17516 '')
17517         if set drand48 val -f; eval $csym; $val; then
17518                 dflt="drand48"
17519                 echo "Good, found drand48()." >&4
17520         elif set random val -f; eval $csym; $val; then
17521                 dflt="random"
17522                 echo "OK, found random()." >&4
17523         else
17524                 dflt="rand"
17525                 echo "Yick, looks like I have to use rand()." >&4
17526         fi
17527         echo " "
17528         ;;
17529 *)
17530         dflt="$randfunc"
17531         ;;
17532 esac
17533 cont=true
17534
17535 case "$ccflags" in
17536 *-Dmy_rand=*|*-Dmy_srand=*)
17537         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
17538         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
17539         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
17540         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
17541         ;;
17542 esac
17543
17544 while $test "$cont"; do
17545         rp="Use which function to generate random numbers?"
17546         . ./myread
17547         if $test "$ans" = "$dflt"; then
17548                 : null
17549         else
17550                 randbits=''
17551         fi
17552         randfunc="$ans"
17553         if set $ans val -f; eval $csym; $val; then
17554                 cont=''
17555         else
17556                 dflt=y
17557                 rp="I cannot find function $ans. Use that name anyway?"
17558                 . ./myread
17559                 dflt=rand
17560                 case "$ans" in
17561                         [yY]*) cont='';;
17562                 esac
17563         fi
17564         case "$cont" in
17565         '')
17566                 case "$randfunc" in
17567                 drand48)
17568                         drand01="drand48()"
17569                         seedfunc="srand48"
17570                         randbits=48
17571                         randseedtype=long
17572                         ;;
17573                 rand|random)
17574                         case "$randbits" in
17575                         '')
17576 echo "Checking to see how many bits your $randfunc() function produces..." >&4
17577                                 $cat >try.c <<EOCP
17578 #$i_unistd I_UNISTD
17579 #$i_stdlib I_STDLIB
17580 #include <stdio.h>
17581 #ifdef I_UNISTD
17582 #  include <unistd.h>
17583 #endif
17584 #ifdef I_STDLIB
17585 #  include <stdlib.h>
17586 #endif
17587 int main()
17588 {
17589         register int i;
17590         register unsigned long tmp;
17591         register unsigned long max = 0L;
17592
17593         for (i = 1000; i; i--) {
17594                 tmp = (unsigned long) $randfunc();
17595                 if (tmp > max) max = tmp;
17596         }
17597         for (i = 0; max; i++)
17598                 max /= 2;
17599         printf("%d\n",i);
17600 }
17601 EOCP
17602                                 set try
17603                                 if eval $compile_ok; then
17604                                         dflt=`try`
17605                                 else
17606                                         dflt='?'
17607                                         echo "(I can't seem to compile the test program...)"
17608                                 fi
17609                                 ;;
17610                         *)
17611                                 dflt="$randbits"
17612                                 ;;
17613                         esac
17614                         rp="How many bits does your $randfunc() function produce?"
17615                         . ./myread
17616                         randbits="$ans"
17617                         $rm -f try.c try
17618                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17619                         seedfunc="s$randfunc"
17620                         randseedtype=unsigned
17621                         ;;
17622                 *)
17623                         dflt="31"
17624                         rp="How many bits does your $randfunc() function produce?"
17625                         . ./myread
17626                         randbits="$ans"
17627                         seedfunc="s$randfunc"
17628                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17629                         if set $seedfunc val -f; eval $csym; $val; then
17630                                 echo "(Using $seedfunc() to seed random generator)"
17631                         else
17632                                 echo "(Warning: no $seedfunc() to seed random generator)"
17633                                 seedfunc=rand
17634                         fi
17635                         randseedtype=unsigned
17636                         ;;
17637                 esac
17638                 ;;
17639         esac
17640 done
17641
17642 echo " "
17643 echo "Determining whether or not we are on an EBCDIC system..." >&4
17644 $cat >try.c <<'EOM'
17645 int main()
17646 {
17647   if ('M'==0xd4) return 0;
17648   return 1;
17649 }
17650 EOM
17651
17652 val=$undef
17653 set try
17654 if eval $compile_ok; then
17655         if $run ./try; then
17656                 echo "You seem to speak EBCDIC." >&4
17657                 val="$define"
17658         else
17659                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
17660         fi
17661 else
17662         echo "I'm unable to compile the test program." >&4
17663         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
17664 fi
17665 $rm -f try try.*
17666 set ebcdic
17667 eval $setvar
17668
17669 echo " "
17670 $cat >&4 <<EOM
17671 Checking how to flush all pending stdio output...
17672 EOM
17673 # I only know how to find the first 32 possibly open files on SunOS.
17674 # See also hints/sunos_4_1.sh and util.c  --AD
17675 case "$osname" in
17676 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
17677 esac
17678 $cat >>try.c <<EOCP
17679 #include <stdio.h>
17680 #$i_stdlib I_STDLIB
17681 #ifdef I_STDLIB
17682 #include <stdlib.h>
17683 #endif
17684 #$i_unistd I_UNISTD
17685 #ifdef I_UNISTD
17686 # include <unistd.h>
17687 #endif
17688 #$d_sysconf HAS_SYSCONF
17689 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
17690 #ifdef HAS_STDIO_STREAM_ARRAY
17691 # define STDIO_STREAM_ARRAY $stdio_stream_array
17692 #endif
17693 int main() {
17694   FILE* p;
17695   unlink("try.out");
17696   p = fopen("try.out", "w");
17697 #ifdef TRY_FPUTC
17698   fputc('x', p);
17699 #else
17700 # ifdef TRY_FPRINTF
17701   fprintf(p, "x");
17702 # endif
17703 #endif
17704 #ifdef TRY_FFLUSH_NULL
17705   fflush(NULL);
17706 #endif
17707 #ifdef TRY_FFLUSH_ALL
17708   {
17709     long open_max = -1;
17710 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
17711     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
17712 # else
17713 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
17714     open_max = sysconf(_SC_OPEN_MAX);
17715 #  else
17716 #   ifdef FOPEN_MAX
17717     open_max = FOPEN_MAX;
17718 #   else
17719 #    ifdef OPEN_MAX
17720     open_max = OPEN_MAX;
17721 #    else
17722 #     ifdef _NFILE
17723     open_max = _NFILE;
17724 #     endif
17725 #    endif
17726 #   endif
17727 #  endif
17728 # endif 
17729 # ifdef HAS_STDIO_STREAM_ARRAY
17730     if (open_max > 0) {
17731       long i;
17732       for (i = 0; i < open_max; i++)
17733             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17734                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17735                 STDIO_STREAM_ARRAY[i]._flag)
17736                 fflush(&STDIO_STREAM_ARRAY[i]);
17737     }   
17738   }
17739 # endif
17740 #endif
17741   _exit(42);
17742 }
17743 EOCP
17744 : first we have to find out how _not_ to flush
17745 $to try.c
17746 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17747     output=''
17748     set try -DTRY_FPUTC
17749     if eval $compile; then
17750             $run ./try 2>/dev/null
17751             code="$?"
17752             $from try.out
17753             if $test ! -s try.out -a "X$code" = X42; then
17754                 output=-DTRY_FPUTC
17755             fi
17756     fi
17757     case "$output" in
17758     '')
17759             set try -DTRY_FPRINTF
17760             if eval $compile; then
17761                     $run ./try 2>/dev/null
17762                     code="$?"
17763                     $from try.out
17764                     if $test ! -s try.out -a "X$code" = X42; then
17765                         output=-DTRY_FPRINTF
17766                     fi
17767             fi
17768         ;;
17769     esac
17770 fi
17771 : check for fflush NULL behaviour
17772 case "$fflushNULL" in
17773 '')     set try -DTRY_FFLUSH_NULL $output
17774         if eval $compile; then
17775                 $run ./try 2>/dev/null
17776                 code="$?"
17777                 $from try.out
17778                 if $test -s try.out -a "X$code" = X42; then
17779                         fflushNULL="`$cat try.out`"
17780                 else
17781                         if $test "X$code" != X42; then
17782                                 $cat >&4 <<EOM
17783 (If this test failed, don't worry, we'll try another method shortly.)
17784 EOM
17785                         fi
17786                 fi
17787         fi
17788         $rm -f core try.core core.try.*
17789         case "$fflushNULL" in
17790         x)      $cat >&4 <<EOM
17791 Your fflush(NULL) works okay for output streams.
17792 Let's see if it clobbers input pipes...
17793 EOM
17794 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17795 # bug that improperly flushes the input end of pipes.  So we avoid the
17796 # autoflush on fork/system/exec support for now. :-(
17797 $cat >tryp.c <<EOCP
17798 #include <stdio.h>
17799 int
17800 main(int argc, char **argv)
17801 {
17802     char buf[1024];
17803     int i;
17804     char *bp = buf;
17805     while (1) {
17806         while ((i = getc(stdin)) != -1
17807                && (*bp++ = i) != '\n'
17808                && bp < &buf[1024])
17809         /* DO NOTHING */ ;
17810         *bp = '\0';
17811         fprintf(stdout, "%s", buf);
17812         fflush(NULL);
17813         if (i == -1)
17814             return 0;
17815         bp = buf;
17816     }
17817 }
17818 EOCP
17819                 fflushNULL="$define"
17820                 set tryp
17821                 if eval $compile; then
17822                     $rm -f tryp.out
17823                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17824                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17825                        $cat >&4 <<EOM
17826 fflush(NULL) seems to behave okay with input streams.
17827 EOM
17828                         fflushNULL="$define"
17829                     else
17830                         $cat >&4 <<EOM
17831 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17832 EOM
17833                         fflushNULL="$undef"
17834                     fi
17835                 fi
17836                 $rm -f core tryp.c tryp.core core.tryp.*
17837                 ;;
17838         '')     $cat >&4 <<EOM
17839 Your fflush(NULL) isn't working (contrary to ANSI C).
17840 EOM
17841                 fflushNULL="$undef"
17842                 ;;
17843         *)      $cat >&4 <<EOM
17844 Cannot figure out whether your fflush(NULL) works or not.
17845 I'm assuming it doesn't (contrary to ANSI C).
17846 EOM
17847                 fflushNULL="$undef"
17848                 ;;
17849         esac
17850         ;;
17851 $define|true|[yY]*)
17852         fflushNULL="$define"
17853         ;;
17854 *)
17855         fflushNULL="$undef"
17856         ;;
17857 esac
17858 : check explicit looping only if NULL did not work, and if the pipe
17859 : bug does not show up on an explicit flush too
17860 case "$fflushNULL" in
17861 "$undef")
17862         $cat >tryp.c <<EOCP
17863 #include <stdio.h>
17864 int
17865 main(int argc, char **argv)
17866 {
17867     char buf[1024];
17868     int i;
17869     char *bp = buf;
17870     while (1) {
17871         while ((i = getc(stdin)) != -1
17872                && (*bp++ = i) != '\n'
17873                && bp < &buf[1024])
17874         /* DO NOTHING */ ;
17875         *bp = '\0';
17876         fprintf(stdout, "%s", buf);
17877         fflush(stdin);
17878         if (i == -1)
17879             return 0;
17880         bp = buf;
17881     }
17882 }
17883 EOCP
17884         set tryp
17885         if eval $compile; then
17886             $rm -f tryp.out
17887             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17888             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17889                $cat >&4 <<EOM
17890 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17891 EOM
17892                 : now check for fflushall behaviour
17893                 case "$fflushall" in
17894                 '')     set try -DTRY_FFLUSH_ALL $output
17895                         if eval $compile; then
17896                                 $cat >&4 <<EOM
17897 (Now testing the other method--but note that this also may fail.)
17898 EOM
17899                                 $run ./try 2>/dev/null
17900                                 code=$?
17901                                 $from try.out
17902                                 if $test -s try.out -a "X$code" = X42; then
17903                                         fflushall="`$cat try.out`"
17904                                 fi
17905                         fi
17906                         $rm -f core try.core core.try.*
17907                         case "$fflushall" in
17908                         x)      $cat >&4 <<EOM
17909 Whew. Flushing explicitly all the stdio streams works.
17910 EOM
17911                                 fflushall="$define"
17912                                 ;;
17913                         '')     $cat >&4 <<EOM
17914 Sigh. Flushing explicitly all the stdio streams doesn't work.
17915 EOM
17916                                 fflushall="$undef"
17917                                 ;;
17918                         *)      $cat >&4 <<EOM
17919 Cannot figure out whether flushing stdio streams explicitly works or not.
17920 I'm assuming it doesn't.
17921 EOM
17922                                 fflushall="$undef"
17923                                 ;;
17924                         esac
17925                         ;;
17926                 "$define"|true|[yY]*)
17927                         fflushall="$define"
17928                         ;;
17929                 *)
17930                         fflushall="$undef"
17931                         ;;
17932                 esac
17933             else
17934                 $cat >&4 <<EOM
17935 All is futile.  Even fflush(stdin) clobbers input pipes!
17936 EOM
17937                 fflushall="$undef"
17938             fi
17939         else
17940             fflushall="$undef"
17941         fi
17942         $rm -f core tryp.c tryp.core core.tryp.*
17943         ;;
17944 *)      fflushall="$undef"
17945         ;;
17946 esac
17947
17948 case "$fflushNULL$fflushall" in
17949 undefundef)
17950         $cat <<EOM
17951 OK, I give up.  I cannot figure out how to flush pending stdio output.
17952 We won't be flushing handles at all before fork/exec/popen.
17953 EOM
17954         ;;
17955 esac
17956 $rm -f try.* try$exe_ext
17957
17958 : Store the full pathname to the ar program for use in the C program
17959 : Respect a hint or command line value for full_ar.
17960 case "$full_ar" in
17961 '') full_ar=$ar ;;
17962 esac
17963
17964 : Store the full pathname to the sed program for use in the C program
17965 full_sed=$sed
17966
17967 : see what type gids are declared as in the kernel
17968 echo " "
17969 echo "Looking for the type for group ids returned by getgid()."
17970 set gid_t gidtype xxx stdio.h sys/types.h
17971 eval $typedef
17972 case "$gidtype" in
17973 xxx)
17974         xxx=`./findhdr sys/user.h`
17975         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17976         case $1 in
17977         unsigned) dflt="$1 $2" ;;
17978         *) dflt="$1" ;;
17979         esac
17980         ;;
17981 *) dflt="$gidtype";;
17982 esac
17983 case "$gidtype" in
17984 gid_t) echo "gid_t found." ;;
17985 *)      rp="What is the type for group ids returned by getgid()?"
17986         . ./myread
17987         gidtype="$ans"
17988         ;;
17989 esac
17990
17991 echo " "
17992 case "$gidtype" in
17993 *_t) zzz="$gidtype"     ;;
17994 *)   zzz="gid"          ;;
17995 esac
17996 echo "Checking the size of $zzz..." >&4 
17997 cat > try.c <<EOCP
17998 #include <sys/types.h>
17999 #include <stdio.h>
18000 #$i_stdlib I_STDLIB
18001 #ifdef I_STDLIB
18002 #include <stdlib.h>
18003 #endif
18004 int main() {
18005     printf("%d\n", (int)sizeof($gidtype));
18006     exit(0);
18007 }
18008 EOCP
18009 set try
18010 if eval $compile_ok; then
18011         yyy=`$run ./try`
18012         case "$yyy" in
18013         '')     gidsize=4
18014                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
18015                 ;;
18016         *)      gidsize=$yyy
18017                 echo "Your $zzz is $gidsize bytes long."
18018                 ;;
18019         esac
18020 else
18021         gidsize=4
18022         echo "(I can't compile the test program--guessing $gidsize.)" >&4
18023 fi
18024
18025
18026 echo " "
18027 case "$gidtype" in
18028 *_t) zzz="$gidtype"     ;;
18029 *)   zzz="gid"          ;;
18030 esac
18031 echo "Checking the sign of $zzz..." >&4 
18032 cat > try.c <<EOCP
18033 #include <sys/types.h>
18034 #include <stdio.h>
18035 int main() {
18036         $gidtype foo = -1;
18037         if (foo < 0)
18038                 printf("-1\n");
18039         else
18040                 printf("1\n");
18041 }
18042 EOCP
18043 set try
18044 if eval $compile; then
18045         yyy=`$run ./try`
18046         case "$yyy" in
18047         '')     gidsign=1
18048                 echo "(I can't execute the test program--guessing unsigned.)" >&4
18049                 ;;
18050         *)      gidsign=$yyy
18051                 case "$gidsign" in
18052                  1) echo "Your $zzz is unsigned." ;;
18053                 -1) echo "Your $zzz is signed."   ;;
18054                 esac
18055                 ;;
18056         esac
18057 else
18058         gidsign=1
18059         echo "(I can't compile the test program--guessing unsigned.)" >&4
18060 fi
18061
18062
18063 echo " "
18064
18065 if $test X"$quadtype" != X; then
18066
18067 echo "Checking how to print 64-bit integers..." >&4
18068
18069 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
18070         $cat >try.c <<'EOCP'
18071 #include <sys/types.h>
18072 #include <stdio.h>
18073 int main() {
18074   int q = 12345678901;
18075   printf("%ld\n", q);
18076 }
18077 EOCP
18078         set try
18079         if eval $compile; then
18080                 yyy=`$run ./try`
18081                 case "$yyy" in
18082                 12345678901)
18083                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
18084                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
18085                         echo "We will use %d."
18086                         ;;
18087                 esac
18088         fi
18089 fi
18090
18091 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
18092         $cat >try.c <<'EOCP'
18093 #include <sys/types.h>
18094 #include <stdio.h>
18095 int main() {
18096   long q = 12345678901;
18097   printf("%ld\n", q);
18098 }
18099 EOCP
18100         set try
18101         if eval $compile; then
18102                 yyy=`$run ./try`
18103                 case "$yyy" in
18104                 12345678901)
18105                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
18106                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
18107                         echo "We will use %ld."
18108                         ;;
18109                 esac
18110         fi
18111 fi
18112
18113 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
18114         $cat >try.c <<'EOCP'
18115 #include <sys/types.h>
18116 #include <inttypes.h>
18117 #include <stdio.h>
18118 int main() {
18119   int64_t q = 12345678901;
18120   printf("%" PRId64 "\n", q);
18121 }
18122 EOCP
18123         set try
18124         if eval $compile; then
18125                 yyy=`$run ./try`
18126                 case "$yyy" in
18127                 12345678901)
18128                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
18129                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
18130                         echo "We will use the C9X style."
18131                         ;;
18132                 esac
18133         fi
18134 fi
18135
18136 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18137         $cat >try.c <<EOCP
18138 #include <sys/types.h>
18139 #include <stdio.h>
18140 int main() {
18141   $quadtype q = 12345678901;
18142   printf("%Ld\n", q);
18143 }
18144 EOCP
18145         set try
18146         if eval $compile; then
18147                 yyy=`$run ./try`
18148                 case "$yyy" in
18149                 12345678901)
18150                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
18151                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
18152                         echo "We will use %Ld."
18153                         ;;
18154                 esac
18155         fi
18156 fi
18157
18158 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
18159         $cat >try.c <<'EOCP'
18160 #include <sys/types.h>
18161 #include <stdio.h>
18162 int main() {
18163   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
18164   printf("%lld\n", q);
18165 }
18166 EOCP
18167         set try
18168         if eval $compile; then
18169                 yyy=`$run ./try`
18170                 case "$yyy" in
18171                 12345678901)
18172                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
18173                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
18174                         echo "We will use the %lld style."
18175                         ;;
18176                 esac
18177         fi
18178 fi
18179
18180 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18181         $cat >try.c <<EOCP
18182 #include <sys/types.h>
18183 #include <stdio.h>
18184 int main() {
18185   $quadtype q = 12345678901;
18186   printf("%qd\n", q);
18187 }
18188 EOCP
18189         set try
18190         if eval $compile; then
18191                 yyy=`$run ./try`
18192                 case "$yyy" in
18193                 12345678901)
18194                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
18195                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
18196                         echo "We will use %qd."
18197                         ;;
18198                 esac
18199         fi
18200 fi
18201
18202 if $test X"$sPRId64" = X; then
18203         echo "Cannot figure out how to print 64-bit integers." >&4
18204 fi
18205
18206 $rm -f try try.*
18207
18208 fi
18209
18210 case "$sPRId64" in
18211 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
18212         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
18213         ;;
18214 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
18215         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
18216         ;;
18217 esac
18218
18219
18220 echo " "
18221 $echo "Checking the format strings to be used for Perl's internal types..." >&4
18222
18223 if $test X"$ivsize" = X8; then
18224         ivdformat="$sPRId64"
18225         uvuformat="$sPRIu64"
18226         uvoformat="$sPRIo64"
18227         uvxformat="$sPRIx64"
18228         uvXUformat="$sPRIXU64"
18229 else
18230         if $test X"$ivsize" = X"$longsize"; then
18231                 ivdformat='"ld"'
18232                 uvuformat='"lu"'
18233                 uvoformat='"lo"'
18234                 uvxformat='"lx"'
18235                 uvXUformat='"lX"'
18236         else
18237                 if $test X"$ivsize" = X"$intsize"; then
18238                         ivdformat='"d"'
18239                         uvuformat='"u"'
18240                         uvoformat='"o"'
18241                         uvxformat='"x"'
18242                         uvXUformat='"X"'
18243                 else
18244                         : far out
18245                         if $test X"$ivsize" = X"$shortsize"; then
18246                                 ivdformat='"hd"'
18247                                 uvuformat='"hu"'
18248                                 uvoformat='"ho"'
18249                                 uvxformat='"hx"'
18250                                 uvXUformat='"hX"'
18251                         fi
18252                 fi
18253         fi
18254 fi
18255
18256 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
18257         nveformat="$sPRIeldbl"
18258         nvfformat="$sPRIfldbl"
18259         nvgformat="$sPRIgldbl"
18260         nvEUformat="$sPRIEUldbl"
18261         nvFUformat="$sPRIFUldbl"
18262         nvGUformat="$sPRIGUldbl"
18263 else
18264         nveformat='"e"'
18265         nvfformat='"f"'
18266         nvgformat='"g"'
18267         nvEUformat='"E"'
18268         nvFUformat='"F"'
18269         nvGUformat='"G"'
18270 fi
18271
18272 case "$ivdformat" in
18273 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
18274     exit 1
18275     ;;
18276 esac
18277
18278
18279 echo " "
18280 $echo "Checking the format string to be used for gids..." >&4
18281
18282 case "$gidsign" in
18283 -1)     if $test X"$gidsize" = X"$ivsize"; then
18284                 gidformat="$ivdformat"
18285         else
18286                 if $test X"$gidsize" = X"$longsize"; then
18287                         gidformat='"ld"'
18288                 else
18289                         if $test X"$gidsize" = X"$intsize"; then
18290                                 gidformat='"d"'
18291                         else
18292                                 if $test X"$gidsize" = X"$shortsize"; then
18293                                         gidformat='"hd"'
18294                                 fi
18295                         fi
18296                 fi
18297         fi
18298         ;;
18299 *)      if $test X"$gidsize" = X"$uvsize"; then
18300                 gidformat="$uvuformat"
18301         else
18302                 if $test X"$gidsize" = X"$longsize"; then
18303                         gidformat='"lu"'
18304                 else
18305                         if $test X"$gidsize" = X"$intsize"; then
18306                                 gidformat='"u"'
18307                         else
18308                                 if $test X"$gidsize" = X"$shortsize"; then
18309                                         gidformat='"hu"'
18310                                 fi
18311                         fi
18312                 fi
18313         fi
18314         ;;
18315 esac
18316
18317 : see if getgroups exists
18318 set getgroups d_getgrps
18319 eval $inlibc
18320
18321 : see if setgroups exists
18322 set setgroups d_setgrps
18323 eval $inlibc
18324
18325
18326 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
18327 echo " "
18328 case "$d_getgrps$d_setgrps" in
18329 *define*)
18330         case "$groupstype" in
18331         '') dflt="$gidtype" ;;
18332         *)  dflt="$groupstype" ;;
18333         esac
18334         $cat <<EOM
18335 What type of pointer is the second argument to getgroups() and setgroups()?
18336 Usually this is the same as group ids, $gidtype, but not always.
18337
18338 EOM
18339         rp='What type pointer is the second argument to getgroups() and setgroups()?'
18340         . ./myread
18341         groupstype="$ans"
18342         ;;
18343 *)  groupstype="$gidtype";;
18344 esac
18345
18346 echo " "
18347 echo "Checking if your $make program sets \$(MAKE)..." >&4
18348 case "$make_set_make" in
18349 '')
18350         $sed 's/^X //' > testmake.mak << 'EOF'
18351 Xall:
18352 X       @echo 'maketemp="$(MAKE)"'
18353 EOF
18354         case "`$make -f testmake.mak 2>/dev/null`" in
18355         *maketemp=*) make_set_make='#' ;;
18356         *)      make_set_make="MAKE=$make" ;;
18357         esac
18358         $rm -f testmake.mak
18359         ;;
18360 esac
18361 case "$make_set_make" in
18362 '#') echo "Yup, it does.";;
18363 *) echo "Nope, it doesn't.";;
18364 esac
18365
18366 : see what type is used for mode_t
18367 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
18368 set mode_t modetype int stdio.h sys/types.h
18369 eval $typedef_ask
18370
18371 : see if stdarg is available
18372 echo " "
18373 if $test `./findhdr stdarg.h`; then
18374         echo "<stdarg.h> found." >&4
18375         valstd="$define"
18376 else
18377         echo "<stdarg.h> NOT found." >&4
18378         valstd="$undef"
18379 fi
18380
18381 : see if varags is available
18382 echo " "
18383 if $test `./findhdr varargs.h`; then
18384         echo "<varargs.h> found." >&4
18385 else
18386         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
18387 fi
18388
18389 : set up the varargs testing programs
18390 $cat > varargs.c <<EOP
18391 #ifdef I_STDARG
18392 #include <stdarg.h>
18393 #endif
18394 #ifdef I_VARARGS
18395 #include <varargs.h>
18396 #endif
18397
18398 #ifdef I_STDARG
18399 int f(char *p, ...)
18400 #else
18401 int f(va_alist)
18402 va_dcl
18403 #endif
18404 {
18405         va_list ap;
18406 #ifndef I_STDARG
18407         char *p;
18408 #endif
18409 #ifdef I_STDARG
18410         va_start(ap,p);
18411 #else
18412         va_start(ap);
18413         p = va_arg(ap, char *);
18414 #endif
18415         va_end(ap);
18416 }
18417 EOP
18418 $cat > varargs <<EOP
18419 $startsh
18420 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
18421         echo "true"
18422 else
18423         echo "false"
18424 fi
18425 $rm -f varargs$_o
18426 EOP
18427 chmod +x varargs
18428
18429 : now check which varargs header should be included
18430 echo " "
18431 i_varhdr=''
18432 case "$valstd" in
18433 "$define")
18434         if `./varargs I_STDARG`; then
18435                 val='stdarg.h'
18436         elif `./varargs I_VARARGS`; then
18437                 val='varargs.h'
18438         fi
18439         ;;
18440 *)
18441         if `./varargs I_VARARGS`; then
18442                 val='varargs.h'
18443         fi
18444         ;;
18445 esac
18446 case "$val" in
18447 '')
18448 echo "I could not find the definition for va_dcl... You have problems..." >&4
18449         val="$undef"; set i_stdarg; eval $setvar
18450         val="$undef"; set i_varargs; eval $setvar
18451         ;;
18452 *) 
18453         set i_varhdr
18454         eval $setvar
18455         case "$i_varhdr" in
18456         stdarg.h)
18457                 val="$define"; set i_stdarg; eval $setvar
18458                 val="$undef"; set i_varargs; eval $setvar
18459                 ;;
18460         varargs.h)
18461                 val="$undef"; set i_stdarg; eval $setvar
18462                 val="$define"; set i_varargs; eval $setvar
18463                 ;;
18464         esac
18465         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
18466 esac
18467 $rm -f varargs*
18468
18469 : see if we need va_copy
18470 echo " "
18471 case "$i_stdarg" in
18472 "$define")
18473         $cat >try.c <<EOCP
18474 #include <stdarg.h>
18475 #include <stdio.h>
18476 #$i_stdlib I_STDLIB
18477 #ifdef I_STDLIB
18478 #include <stdlib.h>
18479 #endif
18480 #include <signal.h>
18481
18482 int
18483 ivfprintf(FILE *f, const char *fmt, va_list *valp)
18484 {
18485   return vfprintf(f, fmt, *valp);
18486 }
18487  
18488 int    
18489 myvfprintf(FILE *f, const  char *fmt, va_list val)
18490 {
18491   return ivfprintf(f, fmt, &val);
18492 }
18493       
18494 int
18495 myprintf(char *fmt, ...) 
18496 {
18497   va_list val;
18498   va_start(val, fmt);
18499   return myvfprintf(stdout, fmt, val); 
18500 }         
18501
18502 int
18503 main(int ac, char **av)
18504 {
18505   signal(SIGSEGV, exit);
18506
18507   myprintf("%s%cs all right, then\n", "that", '\'');                            
18508   exit(0);      
18509 }
18510 EOCP
18511         set try
18512         if eval $compile && $run ./try 2>&1 >/dev/null; then
18513                 case "`$run ./try`" in
18514                 "that's all right, then")
18515                         okay=yes
18516                         ;;
18517                 esac
18518         fi
18519         case "$okay" in
18520         yes)    echo "It seems that you don't need va_copy()." >&4
18521                 need_va_copy="$undef"
18522                 ;;
18523         *)      echo "It seems that va_copy() or similar will be needed." >&4
18524                 need_va_copy="$define"
18525                 ;;
18526         esac
18527         $rm -f try.* core core.* *.core *.core.*
18528         ;;
18529 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
18530         ;;
18531 esac
18532
18533 : see what type is used for size_t
18534 rp="What is the type used for the length parameter for string functions?"
18535 set size_t sizetype 'unsigned int' stdio.h sys/types.h
18536 eval $typedef_ask
18537
18538 : check for type of arguments to gethostbyaddr. 
18539 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
18540         case "$d_gethbyaddr" in
18541         $define)
18542                 $cat <<EOM
18543
18544 Checking to see what type of arguments are accepted by gethostbyaddr().
18545 EOM
18546                 hdrs="$define sys/types.h
18547                         $d_socket sys/socket.h 
18548                         $i_niin netinet/in.h 
18549                         $i_netdb netdb.h
18550                         $i_unistd unistd.h"
18551                 : The first arg can 'char *' or 'void *'
18552                 : The second arg is some of integral type
18553                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
18554                         for yyy in size_t long int; do
18555                                 case "$netdb_host_type" in
18556                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
18557                                         if ./protochk "$try" $hdrs; then
18558                                                 echo "Your system accepts $xxx for the first arg."
18559                                                 echo "...and $yyy for the second arg."
18560                                                 netdb_host_type="$xxx"
18561                                                 netdb_hlen_type="$yyy"
18562                                         fi
18563                                         ;;
18564                                 esac
18565                         done
18566                 done
18567                 : In case none of those worked, prompt the user.
18568                 case "$netdb_host_type" in
18569                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
18570                         dflt='char *'
18571                         . ./myread
18572                         netdb_host_type=$ans
18573                         rp='What is the type for the 2nd argument to gethostbyaddr?'
18574                         dflt="$sizetype"
18575                         . ./myread
18576                         netdb_hlen_type=$ans
18577                         ;;
18578                 esac
18579                 ;;
18580         *)      : no gethostbyaddr, so pick harmless defaults
18581                 netdb_host_type='char *'
18582                 netdb_hlen_type="$sizetype"
18583                 ;;
18584         esac
18585         # Remove the "const" if needed. -- but then we'll have a 
18586         # prototype clash!
18587         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
18588 fi
18589
18590 : check for type of argument to gethostbyname. 
18591 if test "X$netdb_name_type" = X ; then
18592         case "$d_gethbyname" in
18593         $define)
18594                 $cat <<EOM
18595
18596 Checking to see what type of argument is accepted by gethostbyname().
18597 EOM
18598                 hdrs="$define sys/types.h
18599                         $d_socket sys/socket.h 
18600                         $i_niin netinet/in.h 
18601                         $i_netdb netdb.h
18602                         $i_unistd unistd.h"
18603                 for xxx in "const char *" "char *"; do
18604                         case "$netdb_name_type" in
18605                         '')     try="extern struct hostent *gethostbyname($xxx);"
18606                                 if ./protochk "$try" $hdrs; then
18607                                         echo "Your system accepts $xxx."
18608                                         netdb_name_type="$xxx"
18609                                 fi
18610                                 ;;
18611                         esac
18612                 done
18613                 : In case none of those worked, prompt the user.
18614                 case "$netdb_name_type" in
18615                 '')     rp='What is the type for the 1st argument to gethostbyname?'
18616                         dflt='char *'
18617                         . ./myread
18618                         netdb_name_type=$ans
18619                         ;;
18620                 esac
18621                 ;;
18622         *)      : no gethostbyname, so pick harmless default
18623                 netdb_name_type='char *'
18624                 ;;
18625         esac
18626 fi
18627
18628 : check for type of 1st argument to getnetbyaddr. 
18629 if test "X$netdb_net_type" = X ; then
18630         case "$d_getnbyaddr" in
18631         $define)
18632                 $cat <<EOM
18633
18634 Checking to see what type of 1st argument is accepted by getnetbyaddr().
18635 EOM
18636                 hdrs="$define sys/types.h
18637                         $d_socket sys/socket.h 
18638                         $i_niin netinet/in.h 
18639                         $i_netdb netdb.h
18640                         $i_unistd unistd.h"
18641                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
18642                         case "$netdb_net_type" in
18643                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
18644                                 if ./protochk "$try" $hdrs; then
18645                                         echo "Your system accepts $xxx."
18646                                         netdb_net_type="$xxx"
18647                                 fi
18648                                 ;;
18649                         esac
18650                 done
18651                 : In case none of those worked, prompt the user.
18652                 case "$netdb_net_type" in
18653                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
18654                         dflt='long'
18655                         . ./myread
18656                         netdb_net_type=$ans
18657                         ;;
18658                 esac
18659                 ;;
18660         *)      : no getnetbyaddr, so pick harmless default
18661                 netdb_net_type='long'
18662                 ;;
18663         esac
18664 fi
18665 : locate the preferred pager for this system
18666 fn=f/
18667 case "$pager" in
18668 '')
18669         dflt=''
18670         case "$pg" in
18671         /*) dflt=$pg;;
18672         [a-zA-Z]:/*) dflt=$pg;;
18673         esac
18674         case "$more" in
18675         /*) dflt=$more;;
18676         [a-zA-Z]:/*) dflt=$more;;
18677         esac
18678         case "$less" in
18679         /*) dflt=$less;;
18680         [a-zA-Z]:/*) dflt=$less;;
18681         esac
18682         case "$dflt" in
18683         '') dflt=/usr/ucb/more;;
18684         esac
18685         ;;
18686 *)      dflt="$pager"
18687         : Instruct ./getfile to trust the hinted or previous pager value,
18688         : even if it does not begin with a slash.  For example, on os2,
18689         : pager might be cmd /c more.  See comments in UU/getfile.
18690         fn="f/($pager)"
18691         ;;
18692 esac
18693 echo " "
18694 rp='What pager is used on your system?'
18695 . ./getfile
18696 pager="$ans"
18697
18698 : see what type pids are declared as in the kernel
18699 rp="What is the type of process ids on this system?"
18700 set pid_t pidtype int stdio.h sys/types.h
18701 eval $typedef_ask
18702
18703 : see if ar generates random libraries by itself
18704 echo " "
18705 echo "Checking how to generate random libraries on your machine..." >&4
18706 echo 'int bar1() { return bar2(); }' > bar1.c
18707 echo 'int bar2() { return 2; }' > bar2.c
18708 $cat > foo.c <<EOP
18709 #$i_stdlib I_STDLIB
18710 #ifdef I_STDLIB
18711 #include <stdlib.h>
18712 #endif
18713 int main() { printf("%d\n", bar1()); exit(0); }
18714 EOP
18715 $cc $ccflags -c bar1.c >/dev/null 2>&1
18716 $cc $ccflags -c bar2.c >/dev/null 2>&1
18717 $cc $ccflags -c foo.c >/dev/null 2>&1
18718 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
18719 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18720         $run ./foobar >/dev/null 2>&1; then
18721         echo "$ar appears to generate random libraries itself."
18722         orderlib=false
18723         ranlib=":"
18724 elif $ar ts bar$_a >/dev/null 2>&1 &&
18725         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18726         $run ./foobar >/dev/null 2>&1; then
18727                 echo "a table of contents needs to be added with '$ar ts'."
18728                 orderlib=false
18729                 ranlib="$ar ts"
18730 else
18731         case "$ranlib" in
18732         :) ranlib='';;
18733         '')
18734                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18735                 $test -f $ranlib || ranlib=''
18736                 ;;
18737         esac
18738         if $test -n "$ranlib"; then
18739                 echo "your system has '$ranlib'; we'll use that."
18740                 orderlib=false
18741         else
18742                 echo "your system doesn't seem to support random libraries"
18743                 echo "so we'll use lorder and tsort to order the libraries."
18744                 orderlib=true
18745                 ranlib=":"
18746         fi
18747 fi
18748 $rm -f foo* bar* 
18749
18750 : check for type of arguments to select. 
18751 case "$selecttype" in
18752 '') case "$d_select" in
18753         $define)
18754                 echo " "
18755                 $cat <<EOM
18756 Checking to see what type of arguments are accepted by select().
18757 EOM
18758                 hdrs="$define sys/types.h
18759                         $i_systime sys/time.h 
18760                         $i_sysselct sys/select.h
18761                         $d_socket sys/socket.h"
18762                 : The first arg can be int, unsigned, or size_t
18763                 : The last arg may or may not be 'const'
18764                 val=''
18765                 : void pointer has been seen but using that
18766                 : breaks the selectminbits test
18767                 for xxx in 'fd_set *' 'int *'; do
18768                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18769                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18770                                         case "$val" in
18771                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18772                                                 if ./protochk "$try" $hdrs; then
18773                                                         echo "Your system accepts $xxx."
18774                                                         val="$xxx"
18775                                                 fi
18776                                                 ;;
18777                                         esac
18778                                 done
18779                         done
18780                 done
18781                 case "$val" in
18782                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18783                         case "$d_fd_set" in
18784                                 $define) dflt="fd_set *" ;;
18785                                 *)              dflt="int *" ;;
18786                         esac
18787                         . ./myread
18788                         val=$ans
18789                         ;;
18790                 esac
18791                 selecttype="$val"
18792                 ;;
18793         *)      : no select, so pick a harmless default
18794                 selecttype='int *'
18795                 ;;
18796         esac
18797         ;;
18798 esac
18799
18800 : check for the select 'width'
18801 case "$selectminbits" in
18802 '') safebits=`expr $ptrsize \* 8`
18803     case "$d_select" in
18804         $define)
18805                 $cat <<EOM
18806
18807 Checking to see on how many bits at a time your select() operates...
18808 EOM
18809                 $cat >try.c <<EOCP
18810 #include <sys/types.h>
18811 #$i_time I_TIME
18812 #$i_systime I_SYS_TIME
18813 #$i_systimek I_SYS_TIME_KERNEL
18814 #ifdef I_TIME
18815 #   include <time.h>
18816 #endif
18817 #ifdef I_SYS_TIME
18818 #   ifdef I_SYS_TIME_KERNEL
18819 #       define KERNEL
18820 #   endif
18821 #   include <sys/time.h>
18822 #   ifdef I_SYS_TIME_KERNEL
18823 #       undef KERNEL
18824 #   endif
18825 #endif
18826 #$i_sysselct I_SYS_SELECT
18827 #ifdef I_SYS_SELECT
18828 #include <sys/select.h>
18829 #endif
18830 #$d_socket HAS_SOCKET
18831 #ifdef HAS_SOCKET
18832 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18833 #endif
18834 #include <stdio.h>
18835 #$i_stdlib I_STDLIB
18836 #ifdef I_STDLIB
18837 #include <stdlib.h>
18838 #endif
18839 $selecttype b;
18840 #define S sizeof(*(b))
18841 #define MINBITS 64
18842 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18843 #define NBITS  (NBYTES * 8)
18844 int main() {
18845     char *s = malloc(NBYTES);
18846     struct timeval t;
18847     int i;
18848     FILE* fp;
18849     int fd;
18850
18851     if (!s)
18852         exit(1);
18853     fclose(stdin);
18854     fp = fopen("try.c", "r");
18855     if (fp == 0)
18856       exit(2);
18857     fd = fileno(fp);
18858     if (fd < 0)
18859       exit(3);
18860     b = ($selecttype)s;
18861     for (i = 0; i < NBITS; i++)
18862         FD_SET(i, b);
18863     t.tv_sec  = 0;
18864     t.tv_usec = 0;
18865     select(fd + 1, b, 0, 0, &t);
18866     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18867     free(s);
18868     printf("%d\n", i + 1);
18869     return 0;
18870 }
18871 EOCP
18872                 set try
18873                 if eval $compile_ok; then
18874                         selectminbits=`$run ./try`
18875                         case "$selectminbits" in
18876                         '')     cat >&4 <<EOM
18877 Cannot figure out on how many bits at a time your select() operates.
18878 I'll play safe and guess it is $safebits bits.
18879 EOM
18880                                 selectminbits=$safebits
18881                                 bits="$safebits bits"
18882                                 ;;
18883                         1)      bits="1 bit" ;;
18884                         *)      bits="$selectminbits bits" ;;
18885                         esac
18886                         echo "Your select() operates on $bits at a time." >&4
18887                 else
18888                         rp='What is the minimum number of bits your select() operates on?'
18889                         case "$byteorder" in
18890                         12345678)       dflt=64 ;;
18891                         1234)           dflt=32 ;;
18892                         *)              dflt=1  ;;
18893                         esac
18894                         . ./myread
18895                         val=$ans
18896                         selectminbits="$val"
18897                 fi
18898                 $rm -f try.* try
18899                 ;;
18900         *)      : no select, so pick a harmless default
18901                 selectminbits=$safebits
18902                 ;;
18903         esac
18904         ;;
18905 esac
18906
18907 : Trace out the files included by signal.h, then look for SIGxxx names.
18908 : Remove SIGARRAYSIZE used by HPUX.
18909 : Remove SIGSTKSIZE used by Linux.
18910 : Remove SIGSTKSZ used by Posix.
18911 : Remove SIGTYP void lines used by OS2.
18912 : Some cpps, like os390, dont give the file name anywhere
18913 if [ "X$fieldn" = X ]; then
18914         : Just make some guesses.  We check them later.
18915         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18916 else
18917         xxx=`echo '#include <signal.h>' |
18918         $cppstdin $cppminus $cppflags 2>/dev/null |
18919         $grep '^[       ]*#.*include' | 
18920         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18921 fi
18922 : Check this list of files to be sure we have parsed the cpp output ok.
18923 : This will also avoid potentially non-existent files, such 
18924 : as ../foo/bar.h
18925 xxxfiles=''
18926 for xx in $xxx /dev/null ; do
18927         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18928 done
18929 : If we have found no files, at least try signal.h
18930 case "$xxxfiles" in
18931 '')     xxxfiles=`./findhdr signal.h` ;;
18932 esac
18933 xxx=`awk '
18934 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18935         print substr($2, 4, 20)
18936 }
18937 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18938         print substr($3, 4, 20)
18939 }' $xxxfiles`
18940 : Append some common names just in case the awk scan failed.
18941 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18942 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18943 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18944 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18945 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18946
18947 : generate a few handy files for later
18948 $cat > signal.c <<EOCP
18949 #include <sys/types.h>
18950 #include <signal.h>
18951 #$i_stdlib I_STDLIB
18952 #ifdef I_STDLIB
18953 #include <stdlib.h>
18954 #endif
18955 #include <stdio.h>
18956 int main() {
18957
18958 /* Strange style to avoid deeply-nested #if/#else/#endif */
18959 #ifndef NSIG
18960 #  ifdef _NSIG
18961 #    define NSIG (_NSIG)
18962 #  endif
18963 #endif
18964
18965 #ifndef NSIG
18966 #  ifdef SIGMAX
18967 #    define NSIG (SIGMAX+1)
18968 #  endif
18969 #endif
18970
18971 #ifndef NSIG
18972 #  ifdef SIG_MAX
18973 #    define NSIG (SIG_MAX+1)
18974 #  endif
18975 #endif
18976
18977 #ifndef NSIG
18978 #  ifdef MAXSIG
18979 #    define NSIG (MAXSIG+1)
18980 #  endif
18981 #endif
18982
18983 #ifndef NSIG
18984 #  ifdef MAX_SIG
18985 #    define NSIG (MAX_SIG+1)
18986 #  endif
18987 #endif
18988
18989 #ifndef NSIG
18990 #  ifdef SIGARRAYSIZE
18991 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18992 #  endif
18993 #endif
18994
18995 #ifndef NSIG
18996 #  ifdef _sys_nsig
18997 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
18998 #  endif
18999 #endif
19000
19001 /* Default to some arbitrary number that's big enough to get most
19002    of the common signals.
19003 */
19004 #ifndef NSIG
19005 #    define NSIG 50
19006 #endif
19007
19008 printf("NSIG %d\n", NSIG);
19009
19010 #ifndef JUST_NSIG
19011
19012 EOCP
19013
19014 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
19015 {
19016         printf "#ifdef SIG"; printf $1; printf "\n"
19017         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
19018         printf $1; printf ");\n"
19019         printf "#endif\n"
19020 }
19021 END {
19022         printf "#endif /* JUST_NSIG */\n";
19023         printf "exit(0);\n}\n";
19024 }
19025 ' >>signal.c
19026 $cat >signal.awk <<'EOP'
19027 BEGIN { ndups = 0 }
19028 $1 ~ /^NSIG$/ { nsig = $2 }
19029 ($1 !~ /^NSIG$/) && (NF == 2) && ($2 ~ /^[0-9][0-9]*$/) {
19030     if ($2 > maxsig) { maxsig = $2 }
19031     if (sig_name[$2]) {
19032         dup_name[ndups] = $1
19033         dup_num[ndups] = $2
19034         ndups++ 
19035     }
19036     else {
19037         sig_name[$2] = $1
19038         sig_num[$2] = $2
19039     }
19040 }
19041 END { 
19042     if (nsig == 0) {
19043         nsig = maxsig + 1
19044     }
19045     printf("NSIG %d\n", nsig);
19046     for (n = 1; n < nsig; n++) {
19047         if (sig_name[n]) {
19048             printf("%s %d\n", sig_name[n], sig_num[n])
19049         }
19050         else {
19051             printf("NUM%d %d\n", n, n) 
19052         }
19053     }
19054     for (n = 0; n < ndups; n++) {
19055         printf("%s %d\n", dup_name[n], dup_num[n])
19056     }
19057 }
19058 EOP
19059 $cat >signal_cmd <<EOS
19060 $startsh
19061 if $test -s signal.lst; then
19062     echo "Using your existing signal.lst file"
19063         exit 0
19064 fi
19065 xxx="$xxx"
19066 EOS
19067 $cat >>signal_cmd <<'EOS'
19068
19069 set signal
19070 if eval $compile_ok; then
19071         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
19072 else
19073         echo "(I can't seem be able to compile the whole test program)" >&4
19074         echo "(I'll try it in little pieces.)" >&4
19075         set signal -DJUST_NSIG
19076         if eval $compile_ok; then
19077                 $run ./signal$_exe > signal.nsg
19078                 $cat signal.nsg
19079         else
19080                 echo "I can't seem to figure out how many signals you have." >&4
19081                 echo "Guessing 50." >&4
19082                 echo 'NSIG 50' > signal.nsg
19083         fi
19084         : Now look at all the signal names, one at a time.
19085         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
19086                 $cat > signal.c <<EOCP
19087 #include <sys/types.h>
19088 #include <signal.h>
19089 #include <stdio.h>
19090 int main() {
19091 printf("$xx %d\n", SIG${xx});
19092 return 0;
19093 }
19094 EOCP
19095                 set signal
19096                 if eval $compile; then
19097                         echo "SIG${xx} found."
19098                         $run ./signal$_exe  >> signal.ls1
19099                 else
19100                         echo "SIG${xx} NOT found."
19101                 fi
19102         done
19103         if $test -s signal.ls1; then
19104                 $cat signal.nsg signal.ls1 |
19105                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
19106         fi
19107
19108 fi
19109 if $test -s signal.lst; then
19110         :
19111 else
19112         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
19113         echo 'kill -l' >signal
19114         set X `csh -f <signal`
19115         $rm -f signal
19116         shift
19117         case $# in
19118         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
19119         esac
19120         echo $@ | $tr ' ' $trnl | \
19121             $awk '{ printf "%s %d\n", $1, ++s; }
19122                   END { printf "NSIG %d\n", ++s }' >signal.lst
19123 fi
19124 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
19125 EOS
19126 chmod a+x signal_cmd
19127 $eunicefix signal_cmd
19128
19129 : generate list of signal names
19130 echo " "
19131 case "$sig_name_init" in
19132 '') doinit=yes ;;
19133 *)  case "$sig_num_init" in
19134     ''|*,*) doinit=yes ;;
19135     esac ;;
19136 esac
19137 case "$doinit" in
19138 yes)
19139         echo "Generating a list of signal names and numbers..." >&4
19140         . ./signal_cmd
19141         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
19142         sig_name=`$awk 'BEGIN { printf "ZERO " }
19143                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
19144         sig_num=`$awk  'BEGIN { printf "0 " }
19145                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
19146         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
19147                              !/^NSIG/   { printf "\"%s\", ", $1 }
19148                              END        { printf "0\n" }' signal.lst`
19149         sig_num_init=`$awk  'BEGIN      { printf "0, " }
19150                              !/^NSIG/   { printf "%d, ", $2}
19151                              END        { printf "0\n"}' signal.lst`
19152         ;;
19153 esac
19154 echo "The following $sig_count signals are available:"
19155 echo " "
19156 echo $sig_name | $awk \
19157 'BEGIN { linelen = 0 }
19158 {
19159         for (i = 1; i <= NF; i++) {
19160                 name = "SIG" $i " "
19161                 linelen = linelen + length(name)
19162                 if (linelen > 70) {
19163                         printf "\n"
19164                         linelen = length(name)
19165                 }
19166                 printf "%s", name
19167         }
19168         printf "\n"
19169 }'
19170 sig_size=`echo $sig_name | awk '{print NF}'`
19171 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
19172
19173 echo " "
19174 case "$sizetype" in
19175 *_t) zzz="$sizetype"    ;;
19176 *)   zzz="filesize"     ;;
19177 esac
19178 echo "Checking the size of $zzz..." >&4 
19179 cat > try.c <<EOCP
19180 #include <sys/types.h>
19181 #include <stdio.h>
19182 #$i_stdlib I_STDLIB
19183 #ifdef I_STDLIB
19184 #include <stdlib.h>
19185 #endif
19186 int main() {
19187     printf("%d\n", (int)sizeof($sizetype));
19188     exit(0);
19189 }
19190 EOCP
19191 set try
19192 if eval $compile_ok; then
19193         yyy=`$run ./try`
19194         case "$yyy" in
19195         '')     sizesize=4
19196                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
19197                 ;;
19198         *)      sizesize=$yyy
19199                 echo "Your $zzz size is $sizesize bytes."
19200                 ;;
19201         esac
19202 else
19203         sizesize=4
19204         echo "(I can't compile the test program--guessing $sizesize.)" >&4
19205 fi
19206
19207
19208 : check for socklen_t
19209 echo " "
19210 echo "Checking to see if you have socklen_t..." >&4
19211 $cat >try.c <<EOCP
19212 #include <sys/types.h>
19213 #$d_socket HAS_SOCKET
19214 #ifdef HAS_SOCKET
19215 #include <sys/socket.h>
19216 #endif
19217 int main() { socklen_t x = 16; }
19218 EOCP
19219 set try
19220 if eval $compile; then
19221         val="$define"
19222         echo "You have socklen_t."
19223 else
19224         val="$undef"
19225         echo "You do not have socklen_t."
19226         case "$sizetype" in
19227         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
19228         esac
19229 fi
19230 $rm -f try try.*
19231 set d_socklen_t
19232 eval $setvar
19233
19234 : see if this is a socks.h system
19235 set socks.h i_socks
19236 eval $inhdr
19237
19238 : check for type of the size argument to socket calls
19239 case "$d_socket" in
19240 "$define")
19241         $cat <<EOM
19242
19243 Checking to see what type is the last argument of accept().
19244 EOM
19245         yyy=''
19246         case "$d_socklen_t" in
19247         "$define") yyy="$yyy socklen_t"
19248         esac
19249         yyy="$yyy $sizetype int long unsigned"
19250         for xxx in $yyy; do
19251                 case "$socksizetype" in
19252                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
19253                         case "$usesocks" in
19254                         "$define")
19255                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
19256                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19257                                         socksizetype="$xxx"
19258                                 fi
19259                                 ;;
19260                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
19261                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19262                                         socksizetype="$xxx"
19263                                 fi
19264                                 ;;
19265                         esac
19266                         ;;
19267                 esac
19268         done
19269 : In case none of those worked, prompt the user.
19270         case "$socksizetype" in
19271         '')     rp='What is the type for socket address structure sizes?'
19272                 dflt='int'
19273                 . ./myread
19274                 socksizetype=$ans
19275                 ;;
19276         esac
19277         ;;
19278 *)      : no sockets, so pick relatively harmless default
19279         socksizetype='int'
19280         ;;
19281 esac
19282
19283 : see what type is used for signed size_t
19284 set ssize_t ssizetype int stdio.h sys/types.h
19285 eval $typedef
19286 dflt="$ssizetype"
19287 $cat > try.c <<EOM
19288 #include <stdio.h>
19289 #$i_stdlib I_STDLIB
19290 #ifdef I_STDLIB
19291 #include <stdlib.h>
19292 #endif
19293 #include <sys/types.h>
19294 #define Size_t $sizetype
19295 #define SSize_t $dflt
19296 int main()
19297 {
19298         if (sizeof(Size_t) == sizeof(SSize_t))
19299                 printf("$dflt\n");
19300         else if (sizeof(Size_t) == sizeof(int))
19301                 printf("int\n");
19302         else 
19303                 printf("long\n");
19304         exit(0);
19305 }
19306 EOM
19307 echo " "
19308 set try
19309 if eval $compile_ok && $run ./try > /dev/null; then
19310         ssizetype=`$run ./try`
19311         echo "I'll be using $ssizetype for functions returning a byte count." >&4
19312 else
19313         $cat >&4 <<EOM
19314 Help! I can't compile and run the ssize_t test program: please enlighten me!
19315 (This is probably a misconfiguration in your system or libraries, and
19316 you really ought to fix it.  Still, I'll try anyway.)
19317
19318 I need a type that is the same size as $sizetype, but is guaranteed to
19319 be signed.  Common values are ssize_t, int and long.
19320
19321 EOM
19322         rp="What signed type is the same size as $sizetype?"
19323         . ./myread
19324         ssizetype="$ans"
19325 fi
19326 $rm -f try try.*
19327
19328 : see what type of char stdio uses.
19329 echo " "
19330 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
19331 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
19332         echo "Your stdio uses unsigned chars." >&4
19333         stdchar="unsigned char"
19334 else
19335         echo "Your stdio uses signed chars." >&4
19336         stdchar="char"
19337 fi
19338 $rm -f stdioh
19339
19340
19341
19342 : see what type uids are declared as in the kernel
19343 echo " "
19344 echo "Looking for the type for user ids returned by getuid()."
19345 set uid_t uidtype xxx stdio.h sys/types.h
19346 eval $typedef
19347 case "$uidtype" in
19348 xxx)
19349         xxx=`./findhdr sys/user.h`
19350         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
19351         case $1 in
19352         unsigned) dflt="$1 $2" ;;
19353         *) dflt="$1" ;;
19354         esac
19355         ;;
19356 *) dflt="$uidtype";;
19357 esac
19358 case "$uidtype" in
19359 uid_t)  echo "uid_t found." ;;
19360 *)      rp="What is the type for user ids returned by getuid()?"
19361         . ./myread
19362         uidtype="$ans"
19363         ;;
19364 esac
19365
19366 echo " "
19367 case "$uidtype" in
19368 *_t) zzz="$uidtype"     ;;
19369 *)   zzz="uid"          ;;
19370 esac
19371 echo "Checking the size of $zzz..." >&4 
19372 cat > try.c <<EOCP
19373 #include <sys/types.h>
19374 #include <stdio.h>
19375 #$i_stdlib I_STDLIB
19376 #ifdef I_STDLIB
19377 #include <stdlib.h>
19378 #endif
19379 int main() {
19380     printf("%d\n", (int)sizeof($uidtype));
19381     exit(0);
19382 }
19383 EOCP
19384 set try
19385 if eval $compile_ok; then
19386         yyy=`$run ./try`
19387         case "$yyy" in
19388         '')     uidsize=4
19389                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
19390                 ;;
19391         *)      uidsize=$yyy
19392                 echo "Your $zzz is $uidsize bytes long."
19393                 ;;
19394         esac
19395 else
19396         uidsize=4
19397         echo "(I can't compile the test program--guessing $uidsize.)" >&4
19398 fi
19399
19400 echo " "
19401 case "$uidtype" in
19402 *_t) zzz="$uidtype"     ;;
19403 *)   zzz="uid"          ;;
19404 esac
19405 echo "Checking the sign of $zzz..." >&4
19406 cat > try.c <<EOCP
19407 #include <sys/types.h>
19408 #include <stdio.h>
19409 int main() {
19410         $uidtype foo = -1;
19411         if (foo < 0)
19412                 printf("-1\n");
19413         else
19414                 printf("1\n");
19415 }
19416 EOCP
19417 set try
19418 if eval $compile; then
19419         yyy=`$run ./try`
19420         case "$yyy" in
19421         '')     uidsign=1
19422                 echo "(I can't execute the test program--guessing unsigned.)" >&4
19423                 ;;
19424         *)      uidsign=$yyy
19425                 case "$uidsign" in
19426                  1) echo "Your $zzz is unsigned." ;;
19427                 -1) echo "Your $zzz is signed."   ;;
19428                 esac
19429                 ;;
19430         esac
19431 else
19432         uidsign=1
19433         echo "(I can't compile the test program--guessing unsigned.)" >&4
19434 fi
19435
19436
19437
19438 echo " "
19439 $echo "Checking the format string to be used for uids..." >&4
19440
19441 case "$uidsign" in
19442 -1)     if $test X"$uidsize" = X"$ivsize"; then
19443                 uidformat="$ivdformat"
19444         else
19445                 if $test X"$uidsize" = X"$longsize"; then
19446                         uidformat='"ld"'
19447                 else
19448                         if $test X"$uidsize" = X"$intsize"; then
19449                                 uidformat='"d"'
19450                         else
19451                                 if $test X"$uidsize" = X"$shortsize"; then
19452                                         uidformat='"hd"'
19453                                 fi
19454                         fi
19455                 fi
19456         fi
19457         ;;
19458 *)      if $test X"$uidsize" = X"$uvsize"; then
19459                 uidformat="$uvuformat"
19460         else
19461                 if $test X"$uidsize" = X"$longsize"; then
19462                         uidformat='"lu"'
19463                 else
19464                         if $test X"$uidsize" = X"$intsize"; then
19465                                 uidformat='"u"'
19466                         else
19467                                 if $test X"$uidsize" = X"$shortsize"; then
19468                                         uidformat='"hu"'
19469                                 fi
19470                         fi
19471                 fi
19472         fi
19473         ;;
19474 esac
19475
19476 : determine compiler compiler
19477 case "$yacc" in
19478 '')
19479         dflt=yacc;;
19480 *)
19481         dflt="$yacc";;
19482 esac
19483 echo " "
19484 comp='yacc'
19485 if $test -f "$byacc$_exe"; then
19486         dflt="$byacc"
19487         comp="byacc or $comp"
19488 fi
19489 if $test -f "$bison$_exe"; then
19490         comp="$comp or bison -y"
19491 fi
19492 rp="Which compiler compiler ($comp) shall I use?"
19493 . ./myread
19494 yacc="$ans"
19495 case "$yacc" in
19496 *bis*)
19497         case "$yacc" in
19498         *-y*) ;;
19499         *)
19500                 yacc="$yacc -y"
19501                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
19502                 ;;
19503         esac
19504         ;;
19505 esac
19506
19507 : see if this is a fp.h system
19508 set fp.h i_fp
19509 eval $inhdr
19510
19511 : see if this is a fp_class.h system
19512 set fp_class.h i_fp_class
19513 eval $inhdr
19514
19515 : see if this is a ieeefp.h system
19516 case "$i_ieeefp" in
19517 '' ) set ieeefp.h i_ieeefp
19518      eval $inhdr
19519      ;;
19520 esac
19521
19522 : see if this is a libutil.h system
19523 set libutil.h i_libutil
19524 eval $inhdr
19525
19526 : see if mach cthreads are available
19527 if test "X$usethreads" = "X$define"; then
19528         set mach/cthreads.h i_machcthr
19529         eval $inhdr
19530 else
19531         i_machcthr="$undef"
19532 fi
19533
19534
19535
19536 : see if this is a math.h system
19537 set math.h i_math
19538 eval $inhdr
19539
19540 : see if this is a mntent.h system
19541 set mntent.h i_mntent
19542 eval $inhdr
19543
19544 : see if ndbm.h is available
19545 set ndbm.h t_ndbm
19546 eval $inhdr
19547
19548 case "$t_ndbm" in
19549 $undef)
19550     # Some Linux distributions such as RedHat 7.1 put the
19551     # ndbm.h header in /usr/include/gdbm/ndbm.h.
19552     if $test -f /usr/include/gdbm/ndbm.h; then
19553         echo '<gdbm/ndbm.h> found.'
19554         ccflags="$ccflags -I/usr/include/gdbm"
19555         cppflags="$cppflags -I/usr/include/gdbm"
19556         t_ndbm=$define
19557     fi
19558     ;;
19559 esac
19560
19561 case "$t_ndbm" in
19562 $define)
19563         : see if dbm_open exists
19564         set dbm_open d_dbm_open
19565         eval $inlibc
19566         case "$d_dbm_open" in
19567         $undef)
19568                 t_ndbm="$undef"
19569                 echo "We won't be including <ndbm.h>"
19570                 ;;
19571         esac
19572         ;;
19573 esac
19574 val="$t_ndbm"
19575 set i_ndbm
19576 eval $setvar
19577
19578 : see if net/errno.h is available
19579 val=''
19580 set net/errno.h val
19581 eval $inhdr
19582
19583 : Unfortunately, it causes problems on some systems.  Arrgh.
19584 case "$val" in
19585 $define)
19586         cat > try.c <<'EOM'
19587 #include <stdio.h>
19588 #include <errno.h>
19589 #include <net/errno.h>
19590 int func()
19591 {
19592         return ENOTSOCK;
19593 }
19594 EOM
19595         if $cc $ccflags -c try.c >/dev/null 2>&1; then
19596                 echo "We'll be including <net/errno.h>." >&4
19597         else
19598                 echo "We won't be including <net/errno.h>." >&4
19599                 val="$undef"
19600         fi
19601         $rm -f try.* try
19602         ;;
19603 esac
19604 set i_neterrno
19605 eval $setvar
19606
19607 : see if netinet/tcp.h is available
19608 set netinet/tcp.h i_netinettcp
19609 eval $inhdr
19610
19611 : see if this is a poll.h system
19612 set poll.h i_poll
19613 eval $inhdr
19614
19615 : see if this is a prot.h system
19616 set prot.h i_prot
19617 eval $inhdr
19618
19619 echo " "
19620 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
19621 $cat <<'EOSH' > Cppsym.know
19622 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
19623 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
19624 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
19625 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
19626 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
19627 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
19628 bull c cadmus clipper CMU COFF COMPILER_VERSION
19629 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
19630 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
19631 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
19632 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
19633 GLIBC GLIBC_MINOR
19634 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
19635 H3050R H3050RX hbullx20 hcx host_mips
19636 hp200 hp300 hp700 HP700 hp800 hp9000
19637 hp9000s200 hp9000s300 hp9000s400 hp9000s500
19638 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
19639 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
19640 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
19641 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
19642 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
19643 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
19644 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
19645 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
19646 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
19647 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
19648 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
19649 MATH_HAS_NO_SIDE_EFFECTS
19650 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
19651 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
19652 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
19653 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
19654 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
19655 NetBSD news1500 news1700 news1800 news1900 news3700
19656 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
19657 ns32016 ns32332 ns32k nsc32000
19658 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
19659 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
19660 pc532 pdp11 PGC PIC plexus PORTAR posix
19661 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
19662 POSIX_C_SOURCE POSIX_SOURCE POWER
19663 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
19664 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
19665 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
19666 sony sony_news sonyrisc sparc sparclite spectrum
19667 stardent stdc STDC_EXT stratos sun sun3 sun386
19668 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
19669 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
19670 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
19671 sysV68 sysV88 Tek4132 Tek4300 titan
19672 TM3200 TM5400 TM5600
19673 tower tower32 tower32_200 tower32_600 tower32_700
19674 tower32_800 tower32_850 tss
19675 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
19676 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
19677 unix UNIX95 UNIX99 unixpc unos
19678 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
19679 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
19680 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
19681 USGr4 USGr4_2
19682 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
19683 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
19684 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
19685 z8000
19686 EOSH
19687 # Maybe put other stuff here too.
19688 cat <<EOSH >>Cppsym.know
19689 $osname
19690 EOSH
19691 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
19692 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
19693 $cat Cppsym.know > Cppsym.c
19694 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
19695 $rm -f Cppsym.a Cppsym.b Cppsym.c
19696 cat <<EOSH > Cppsym
19697 $startsh
19698 if $test \$# -gt 0; then
19699     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
19700     if $test -s Cppsym.got; then
19701         $rm -f Cppsym.got
19702         exit 0
19703     fi
19704     $rm -f Cppsym.got
19705     exit 1
19706 else
19707     $tr " " "$trnl" | ./Cppsym.try
19708     exit 0
19709 fi
19710 EOSH
19711 chmod +x Cppsym
19712 $eunicefix Cppsym
19713 cat <<EOSH > Cppsym.try
19714 $startsh
19715 cat <<'EOCP' > try.c
19716 #include <stdio.h>
19717 int main() {
19718 EOCP
19719 $awk \\
19720 EOSH
19721 cat <<'EOSH' >> Cppsym.try
19722 'length($1) > 0 {
19723     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
19724     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
19725     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
19726     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
19727 }'       >> try.c
19728 echo 'return 0;}' >> try.c
19729 EOSH
19730 cat <<EOSH >> Cppsym.try
19731 ccflags="$ccflags"
19732 case "$osname-$gccversion" in
19733 irix-) ccflags="\$ccflags -woff 1178" ;;
19734 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
19735 esac
19736 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
19737 EOSH
19738 chmod +x Cppsym.try
19739 $eunicefix Cppsym.try
19740 ./Cppsym < Cppsym.know > Cppsym.true
19741 : now check the C compiler for additional symbols
19742 postprocess_cc_v=''
19743 case "$osname" in
19744 aix) postprocess_cc_v="|$tr , ' '" ;;
19745 esac
19746 $cat >ccsym <<EOS
19747 $startsh
19748 $cat >tmp.c <<EOF
19749 extern int foo;
19750 EOF
19751 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
19752 do
19753         case "\$i" in
19754         -D*) echo "\$i" | $sed 's/^-D//';;
19755         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
19756         esac
19757 done
19758 $rm -f try.c
19759 EOS
19760 postprocess_cc_v=''
19761 chmod +x ccsym
19762 $eunicefix ccsym
19763 ./ccsym > ccsym1.raw
19764 if $test -s ccsym1.raw; then
19765        $sort ccsym1.raw | $uniq >ccsym.raw
19766 else
19767        mv ccsym1.raw ccsym.raw
19768 fi
19769
19770 $awk '/\=/ { print $0; next }
19771         { print $0"=1" }' ccsym.raw >ccsym.list
19772 $awk '/\=/ { print $0; next }
19773         { print $0"=1" }' Cppsym.true >ccsym.true
19774 $comm -13 ccsym.true ccsym.list >ccsym.own
19775 $comm -12 ccsym.true ccsym.list >ccsym.com
19776 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19777 also=''
19778 if $test -z ccsym.raw; then
19779         echo "Your C compiler doesn't seem to define any symbols!" >&4
19780         echo " "
19781         echo "However, your C preprocessor defines the following symbols:"
19782         $cat Cppsym.true
19783         ccsymbols=''
19784         cppsymbols=`$cat Cppsym.true`
19785         cppsymbols=`echo $cppsymbols`
19786         cppccsymbols="$cppsymbols"
19787 else
19788         if $test -s ccsym.com; then
19789                 echo "Your C compiler and pre-processor define these symbols:"
19790                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19791                 also='also '
19792                 symbols='ones'
19793                 cppccsymbols=`$cat ccsym.com`
19794                 cppccsymbols=`echo $cppccsymbols`
19795                 $test "$silent" || sleep 1
19796         fi
19797         if $test -s ccsym.cpp; then
19798                 $test "$also" && echo " "
19799                 echo "Your C pre-processor ${also}defines the following symbols:"
19800                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19801                 also='further '
19802                 cppsymbols=`$cat ccsym.cpp`
19803                 cppsymbols=`echo $cppsymbols`
19804                 $test "$silent" || sleep 1
19805         fi
19806         if $test -s ccsym.own; then
19807                 $test "$also" && echo " "
19808                 echo "Your C compiler ${also}defines the following cpp symbols:"
19809                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19810                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19811                 ccsymbols=`$cat ccsym.own`
19812                 ccsymbols=`echo $ccsymbols`
19813                 $test "$silent" || sleep 1
19814         fi
19815 fi
19816
19817 : see if this is a termio system
19818 val="$undef"
19819 val2="$undef"
19820 val3="$undef"
19821 if $test `./findhdr termios.h`; then
19822         set tcsetattr i_termios
19823         eval $inlibc
19824         val3="$i_termios"
19825 fi
19826 echo " "
19827 case "$val3" in
19828 "$define") echo "You have POSIX termios.h... good!" >&4;;
19829 *) if ./Cppsym pyr; then
19830                 case "`/bin/universe`" in
19831                 ucb) if $test `./findhdr sgtty.h`; then
19832                                 val2="$define"
19833                                 echo "<sgtty.h> found." >&4
19834                         else
19835                                 echo "System is pyramid with BSD universe."
19836                                 echo "<sgtty.h> not found--you could have problems." >&4
19837                         fi;;
19838                 *) if $test `./findhdr termio.h`; then
19839                                 val="$define"
19840                                 echo "<termio.h> found." >&4
19841                         else
19842                                 echo "System is pyramid with USG universe."
19843                                 echo "<termio.h> not found--you could have problems." >&4
19844                         fi;;
19845                 esac
19846         elif ./usg; then
19847                 if $test `./findhdr termio.h`; then
19848                         echo "<termio.h> found." >&4
19849                         val="$define"
19850                 elif $test `./findhdr sgtty.h`; then
19851                         echo "<sgtty.h> found." >&4
19852                         val2="$define"
19853                 else
19854 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19855                 fi
19856         else
19857                 if $test `./findhdr sgtty.h`; then
19858                         echo "<sgtty.h> found." >&4
19859                         val2="$define"
19860                 elif $test `./findhdr termio.h`; then
19861                         echo "<termio.h> found." >&4
19862                         val="$define"
19863                 else
19864 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19865                 fi
19866         fi;;
19867 esac
19868 set i_termio; eval $setvar
19869 val=$val2; set i_sgtty; eval $setvar
19870 val=$val3; set i_termios; eval $setvar
19871
19872 : see if stddef is available
19873 set stddef.h i_stddef
19874 eval $inhdr
19875
19876 : see if this is a sunmath.h system
19877 set sunmath.h i_sunmath
19878 eval $inhdr
19879
19880 : see if sys/access.h is available
19881 set sys/access.h i_sysaccess
19882 eval $inhdr
19883
19884 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19885 set sys/filio.h i_sysfilio
19886 eval $inhdr
19887 echo " "
19888 if $test `./findhdr sys/ioctl.h`; then
19889         val="$define"
19890         echo '<sys/ioctl.h> found.' >&4
19891 else
19892         val="$undef"
19893         if $test $i_sysfilio = "$define"; then
19894             echo '<sys/ioctl.h> NOT found.' >&4
19895         else
19896                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19897                 $test $i_termio = "$define" && xxx="termio.h"
19898                 $test $i_termios = "$define" && xxx="termios.h"
19899 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19900         fi
19901 fi
19902 set i_sysioctl
19903 eval $setvar
19904
19905 : see if socket ioctl defs are in sys/sockio.h
19906 echo " "
19907 xxx=`./findhdr sys/sockio.h`
19908 if $test "$xxx"; then
19909         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19910                 val="$define"
19911                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19912         else
19913                 val="$undef"
19914                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19915         fi
19916 else
19917         val="$undef"
19918         $cat <<EOM
19919 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19920 EOM
19921 fi
19922 set i_syssockio
19923 eval $setvar
19924
19925
19926 : see if this is a syslog.h system
19927 set syslog.h i_syslog
19928 eval $inhdr
19929
19930
19931 : see if this is a sys/mode.h system
19932 set sys/mode.h i_sysmode
19933 eval $inhdr
19934
19935 : see if sys/resource.h has to be included
19936 set sys/resource.h i_sysresrc
19937 eval $inhdr
19938
19939 : see if sys/security.h is available
19940 set sys/security.h i_syssecrt
19941 eval $inhdr
19942
19943 : see if this is a sys/statvfs.h system
19944 set sys/statvfs.h i_sysstatvfs
19945 eval $inhdr
19946
19947 : see if this is a sys/un.h system
19948 set sys/un.h i_sysun
19949 eval $inhdr
19950
19951
19952 : see if this is a sys/utsname.h system
19953 set sys/utsname.h i_sysutsname
19954 eval $inhdr
19955
19956 : see if this is a syswait system
19957 set sys/wait.h i_syswait
19958 eval $inhdr
19959
19960 : see if this is a ustat.h system
19961 set ustat.h i_ustat
19962 eval $inhdr
19963
19964 : see if this is an utime system
19965 set utime.h i_utime
19966 eval $inhdr
19967
19968 : see if this is a values.h system
19969 set values.h i_values
19970 eval $inhdr
19971
19972 : see if this is a vfork system
19973 case "$d_vfork" in
19974 "$define")
19975         set vfork.h i_vfork
19976         eval $inhdr
19977         ;;
19978 *)
19979         i_vfork="$undef"
19980         ;;
19981 esac
19982
19983 : see if gdbm.h is available
19984 set gdbm.h t_gdbm
19985 eval $inhdr
19986 case "$t_gdbm" in
19987 $define)
19988         : see if gdbm_open exists
19989         set gdbm_open d_gdbm_open
19990         eval $inlibc
19991         case "$d_gdbm_open" in
19992         $undef)
19993                 t_gdbm="$undef"
19994                 echo "We won't be including <gdbm.h>"
19995                 ;;
19996         esac
19997         ;;
19998 esac
19999 val="$t_gdbm"
20000 set i_gdbm
20001 eval $setvar
20002
20003 echo " "
20004 echo "Looking for extensions..." >&4
20005 : If we are using the old config.sh, known_extensions may contain
20006 : old or inaccurate or duplicate values.
20007 known_extensions=''
20008 nonxs_extensions=''
20009 : We do not use find because it might not be available.
20010 : We do not just use MANIFEST because the user may have dropped
20011 : some additional extensions into the source tree and expect them
20012 : to be built.
20013
20014 : Function to recursively find available extensions, ignoring DynaLoader
20015 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
20016 find_extensions='
20017     for xxx in *; do
20018        case "$xxx" in
20019            DynaLoader|dynaload) ;;
20020            *)
20021            if $test -f $xxx/$xxx.xs; then
20022                known_extensions="$known_extensions $1$xxx";
20023            elif $test -f $xxx/Makefile.PL; then
20024                nonxs_extensions="$nonxs_extensions $1$xxx";
20025            else
20026                if $test -d $xxx -a $# -lt 10; then
20027                    set $1$xxx/ $*;
20028                    cd "$xxx";
20029                    eval $find_extensions;
20030                    cd ..;
20031                    shift;
20032                fi;
20033            fi
20034            ;;
20035        esac;
20036     done'
20037 tdir=`pwd`
20038 cd "$rsrc/ext"
20039 set X
20040 shift
20041 eval $find_extensions
20042 # Special case:  Add in threads/shared since it is not picked up by the
20043 # recursive find above (and adding in general recursive finding breaks
20044 # SDBM_File/sdbm).  A.D.  10/25/2001.
20045 known_extensions="$known_extensions threads/shared"
20046 set X $nonxs_extensions
20047 shift
20048 nonxs_extensions="$*"
20049 set X $known_extensions
20050 shift
20051 known_extensions="$*"
20052 cd "$tdir"
20053
20054 : Now see which are supported on this system.
20055 avail_ext=''
20056 for xxx in $known_extensions ; do
20057         case "$xxx" in
20058         DB_File|db_file)
20059                 case "$i_db" in
20060                 $define) avail_ext="$avail_ext $xxx" ;;
20061                 esac
20062                 ;;
20063         GDBM_File|gdbm_fil)
20064                 case "$i_gdbm" in 
20065                 $define) avail_ext="$avail_ext $xxx" ;;
20066                 esac
20067                 ;;
20068         I18N/Langinfo|i18n_lan)
20069                 case "$i_langinfo$d_nl_langinfo" in 
20070                 $define$define) avail_ext="$avail_ext $xxx" ;;
20071                 esac
20072                 ;;
20073         NDBM_File|ndbm_fil)
20074                 case "$i_ndbm" in
20075                 $define)
20076                     case "$osname-$use64bitint" in
20077                     hpux-define)
20078                         case "$libs" in
20079                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
20080                         esac
20081                         ;;
20082                     *) avail_ext="$avail_ext $xxx" ;;
20083                     esac
20084                     ;;
20085                 esac
20086                 ;;
20087         ODBM_File|odbm_fil) 
20088                 case "${i_dbm}${i_rpcsvcdbm}" in
20089                 *"${define}"*)
20090                     case "$osname-$use64bitint" in
20091                     hpux-define)
20092                         case "$libs" in
20093                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
20094                         esac
20095                         ;;
20096                     *) avail_ext="$avail_ext $xxx" ;;
20097                     esac
20098                     ;;
20099                 esac
20100                 ;;
20101         POSIX|posix)
20102                 case "$useposix" in
20103                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20104                 esac
20105                 ;;
20106         Opcode|opcode)
20107                 case "$useopcode" in
20108                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20109                 esac
20110                 ;;
20111         Socket|socket)
20112                 case "$d_socket" in 
20113                 true|$define|y)
20114                     case "$osname" in
20115                     beos) ;; # not unless BONE
20116                     *) avail_ext="$avail_ext $xxx" ;;
20117                     esac
20118                     ;;
20119                 esac
20120                 ;;
20121         Sys/Syslog|sys/syslog)
20122                 : XXX syslog requires socket
20123                 case "$d_socket" in 
20124                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
20125                 esac
20126                 ;;
20127         Thread|thread)
20128                 case "$usethreads" in
20129                 true|$define|y)
20130                         case "$useithreads" in
20131                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
20132                         esac
20133                 esac
20134                 ;;
20135         XS/APItest|xs/apitest)
20136                 # This is just for testing.  Skip it unless we have dynamic loading.
20137
20138                 case "$usedl" in
20139                 $define) avail_ext="$avail_ext $xxx" ;;
20140                 esac
20141                 ;;
20142         XS/Typemap|xs/typemap)
20143                 # This is just for testing.  Skip it unless we have dynamic loading.
20144                 case "$usedl" in
20145                 $define) avail_ext="$avail_ext $xxx" ;;
20146                 esac
20147                 ;;
20148         threads|threads/shared)
20149                 # threads and threads::shared are special cases.
20150                 # To stop people from asking "Perl 5.8.0 was supposed
20151                 # to have this new fancy threads implementation but my
20152                 # perl doesn't have it" and from people trying to
20153                 # (re)install the threads module using CPAN.pm and
20154                 # CPAN.pm then offering to reinstall Perl 5.8.0,
20155                 # the threads.pm and threads/shared.pm will always be
20156                 # there, croaking informatively ("you need to rebuild
20157                 # all of Perl with threads, sorry") when threads haven't
20158                 # been compiled in.
20159                 # --jhi
20160                 avail_ext="$avail_ext $xxx"
20161                 ;;
20162         IPC/SysV|ipc/sysv)
20163                 : XXX Do we need a useipcsysv variable here
20164                 case "${d_msg}${d_sem}${d_shm}" in 
20165                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
20166                 esac
20167                 ;;
20168         *)      avail_ext="$avail_ext $xxx"
20169                 ;;
20170         esac
20171 done
20172
20173 set X $avail_ext
20174 shift
20175 avail_ext="$*"
20176
20177 case "$onlyextensions" in
20178 '') ;;
20179 *)  keepextensions=''
20180     echo "You have requested that only certains extensions be included..." >&4
20181     for i in $onlyextensions; do
20182         case " $avail_ext " in
20183         *" $i "*)
20184             echo "Keeping extension $i."
20185             keepextensions="$keepextensions $i"
20186             ;;
20187         *) echo "Ignoring extension $i." ;;
20188         esac
20189     done
20190     avail_ext="$keepextensions"
20191     ;;
20192 esac
20193
20194 case "$noextensions" in
20195 '') ;;
20196 *)  keepextensions=''
20197     echo "You have requested that certain extensions be ignored..." >&4
20198     for i in $avail_ext; do
20199         case " $noextensions " in
20200         *" $i "*) echo "Ignoring extension $i." ;;
20201         *) echo "Keeping extension $i.";
20202            keepextensions="$keepextensions $i"
20203            ;;
20204         esac
20205     done
20206     avail_ext="$keepextensions"
20207     ;;
20208 esac
20209
20210 : Now see which nonxs extensions are supported on this system.
20211 : For now assume all are.
20212 nonxs_ext=''
20213 for xxx in $nonxs_extensions ; do
20214         case "$xxx" in
20215         *)      nonxs_ext="$nonxs_ext $xxx"
20216                 ;;
20217         esac
20218 done
20219
20220 set X $nonxs_ext
20221 shift
20222 nonxs_ext="$*"
20223
20224 case $usedl in
20225 $define)
20226         $cat <<EOM
20227 A number of extensions are supplied with $package.  You may choose to
20228 compile these extensions for dynamic loading (the default), compile
20229 them into the $package executable (static loading), or not include
20230 them at all.  Answer "none" to include no extensions.
20231 Note that DynaLoader is always built and need not be mentioned here.
20232
20233 EOM
20234         case "$dynamic_ext" in
20235         '')
20236                 : Exclude those listed in static_ext
20237                 dflt=''
20238                 for xxx in $avail_ext; do
20239                         case " $static_ext " in
20240                         *" $xxx "*) ;;
20241                         *) dflt="$dflt $xxx" ;;
20242                         esac
20243                 done
20244                 set X $dflt
20245                 shift
20246                 dflt="$*"
20247                 ;;
20248         *)      dflt="$dynamic_ext"
20249                 # Perhaps we are reusing an old out-of-date config.sh.
20250                 case "$hint" in
20251                 previous)
20252                         if test X"$dynamic_ext" != X"$avail_ext"; then
20253                                 $cat <<EOM
20254 NOTICE:  Your previous config.sh list may be incorrect. 
20255 The extensions now available to you are 
20256         ${avail_ext}
20257 but the default list from your previous config.sh is
20258         ${dynamic_ext} 
20259
20260 EOM
20261                         fi
20262                         ;;
20263                 esac
20264                 ;;
20265         esac
20266         case "$dflt" in
20267         '')     dflt=none;;
20268         esac
20269         rp="What extensions do you wish to load dynamically?"
20270         . ./myread
20271         case "$ans" in
20272         none) dynamic_ext=' ' ;;
20273         *) dynamic_ext="$ans" ;;
20274         esac
20275
20276         case "$static_ext" in
20277         '')
20278                 : Exclude those already listed in dynamic linking
20279                 dflt=''
20280                 for xxx in $avail_ext; do
20281                         case " $dynamic_ext " in
20282                         *" $xxx "*) ;;
20283                         *) dflt="$dflt $xxx" ;;
20284                         esac
20285                 done
20286                 set X $dflt
20287                 shift
20288                 dflt="$*"
20289                 ;;
20290         *)  dflt="$static_ext" 
20291                 ;;
20292         esac
20293
20294         case "$dflt" in
20295         '')     dflt=none;;
20296         esac
20297         rp="What extensions do you wish to load statically?"
20298         . ./myread
20299         case "$ans" in
20300         none) static_ext=' ' ;;
20301         *) static_ext="$ans" ;;
20302         esac
20303         ;;
20304 *)
20305         $cat <<EOM
20306 A number of extensions are supplied with $package.  Answer "none" 
20307 to include no extensions. 
20308 Note that DynaLoader is always built and need not be mentioned here.
20309
20310 EOM
20311         case "$static_ext" in
20312         '') dflt="$avail_ext" ;;
20313         *)      dflt="$static_ext"
20314                 # Perhaps we are reusing an old out-of-date config.sh.
20315                 case "$hint" in
20316                 previous)
20317                         if test X"$static_ext" != X"$avail_ext"; then
20318                                 $cat <<EOM
20319 NOTICE:  Your previous config.sh list may be incorrect. 
20320 The extensions now available to you are 
20321         ${avail_ext}
20322 but the default list from your previous config.sh is
20323         ${static_ext} 
20324
20325 EOM
20326                         fi
20327                         ;;
20328                 esac
20329                 ;;
20330         esac
20331         : Exclude those that are not xs extensions
20332         case "$dflt" in
20333         '')     dflt=none;;
20334         esac
20335         rp="What extensions do you wish to include?"
20336         . ./myread
20337         case "$ans" in
20338         none) static_ext=' ' ;;
20339         *) static_ext="$ans" ;;
20340         esac
20341         ;;
20342 esac
20343 #        
20344 # Encode is a special case.  If we are building Encode as a static
20345 # extension, we need to explicitly list its subextensions as well.
20346 # For other nested extensions, this is handled automatically by
20347 # the appropriate Makefile.PL.
20348 case " $static_ext " in
20349         *" Encode "*) # Add the subextensions of Encode
20350         cd "$rsrc/ext"
20351         for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
20352                 static_ext="$static_ext Encode/$xxx"
20353         done
20354         cd "$tdir"
20355         ;;
20356 esac
20357
20358 set X $dynamic_ext $static_ext $nonxs_ext
20359 shift
20360 extensions="$*"
20361
20362 # Sanity check:  We require an extension suitable for use with
20363 # AnyDBM_File, as well as Fcntl and IO.  (Failure to have these
20364 # should show up as failures in the test suite, but it's helpful to
20365 # catch them now.) The 'extensions' list is normally sorted
20366 # alphabetically, so we need to accept either
20367 #    DB_File ... Fcntl ... IO  ....
20368 # or something like
20369 #    Fcntl ... NDBM_File ... IO  ....
20370 case " $extensions"  in
20371 *"_File "*" Fcntl "*" IO "*) ;; # DB_File
20372 *" Fcntl "*"_File "*" IO "*) ;; # GDBM_File
20373 *" Fcntl "*" IO "*"_File "*) ;; # NDBM_File
20374 *) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
20375    echo "WARNING: The Perl you are building will be quite crippled." >& 4
20376    ;;
20377 esac
20378
20379 : Remove libraries needed only for extensions
20380 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
20381 : The exception is SunOS 4.x, which needs them.
20382 case "${osname}X${osvers}" in
20383 sunos*X4*)
20384     perllibs="$libs"
20385     ;;
20386 *) case "$usedl" in
20387     $define|true|[yY]*)
20388             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
20389             shift
20390             perllibs="$*"
20391             ;;
20392     *)  perllibs="$libs"
20393             ;;
20394     esac
20395     ;;
20396 esac
20397
20398 : Remove build directory name from cppstdin so it can be used from
20399 : either the present location or the final installed location.
20400 echo " "
20401 : Get out of the UU directory to get correct path name.
20402 cd ..
20403 case "$cppstdin" in
20404 `pwd`/cppstdin)
20405         echo "Stripping down cppstdin path name"
20406         cppstdin=cppstdin
20407         ;;
20408 esac
20409 cd UU
20410
20411 : end of configuration questions
20412 echo " "
20413 echo "End of configuration questions."
20414 echo " "
20415
20416 : back to where it started
20417 if test -d ../UU; then
20418         cd ..
20419 fi
20420
20421 : configuration may be patched via a 'config.arch' file
20422 if $test -f config.arch; then
20423         echo "I see a config.arch file, loading it."
20424         . ./config.arch
20425 fi
20426
20427 : configuration may be patched via a 'config.over' file
20428 if $test -f config.over; then
20429         echo " "
20430         dflt=y
20431         rp='I see a config.over file.  Do you wish to load it?'
20432         . UU/myread
20433         case "$ans" in
20434         n*) echo "OK, I'll ignore it.";;
20435         *)      . ./config.over
20436                 echo "Configuration override changes have been loaded."
20437                 ;;
20438         esac
20439 fi
20440
20441 : in case they want portability, strip down executable paths
20442 case "$d_portable" in
20443 "$define")
20444         echo " "
20445         echo "Stripping down executable paths..." >&4
20446         for file in $loclist $trylist; do
20447                 eval temp=\$$file
20448                 eval $file=`basename $temp`
20449         done
20450         ;;
20451 esac
20452
20453 : create config.sh file
20454 echo " "
20455 echo "Creating config.sh..." >&4
20456 $spitshell <<EOT >config.sh
20457 $startsh
20458 #
20459 # This file was produced by running the Configure script. It holds all the
20460 # definitions figured out by Configure. Should you modify one of these values,
20461 # do not forget to propagate your changes by running "Configure -der". You may
20462 # instead choose to run each of the .SH files by yourself, or "Configure -S".
20463 #
20464
20465 # Package name      : $package
20466 # Source directory  : $src
20467 # Configuration time: $cf_time
20468 # Configured by     : $cf_by
20469 # Target system     : $myuname
20470
20471 Author='$Author'
20472 Date='$Date'
20473 Header='$Header'
20474 Id='$Id'
20475 Locker='$Locker'
20476 Log='$Log'
20477 Mcc='$Mcc'
20478 RCSfile='$RCSfile'
20479 Revision='$Revision'
20480 Source='$Source'
20481 State='$State'
20482 _a='$_a'
20483 _exe='$_exe'
20484 _o='$_o'
20485 afs='$afs'
20486 afsroot='$afsroot'
20487 alignbytes='$alignbytes'
20488 ansi2knr='$ansi2knr'
20489 aphostname='$aphostname'
20490 api_revision='$api_revision'
20491 api_subversion='$api_subversion'
20492 api_version='$api_version'
20493 api_versionstring='$api_versionstring'
20494 ar='$ar'
20495 archlib='$archlib'
20496 archlibexp='$archlibexp'
20497 archname64='$archname64'
20498 archname='$archname'
20499 archobjs='$archobjs'
20500 asctime_r_proto='$asctime_r_proto'
20501 awk='$awk'
20502 baserev='$baserev'
20503 bash='$bash'
20504 bin='$bin'
20505 binexp='$binexp'
20506 bison='$bison'
20507 byacc='$byacc'
20508 byteorder='$byteorder'
20509 c='$c'
20510 castflags='$castflags'
20511 cat='$cat'
20512 cc='$cc'
20513 cccdlflags='$cccdlflags'
20514 ccdlflags='$ccdlflags'
20515 ccflags='$ccflags'
20516 ccflags_uselargefiles='$ccflags_uselargefiles'
20517 ccname='$ccname'
20518 ccsymbols='$ccsymbols'
20519 ccversion='$ccversion'
20520 cf_by='$cf_by'
20521 cf_email='$cf_email'
20522 cf_time='$cf_time'
20523 charsize='$charsize'
20524 chgrp='$chgrp'
20525 chmod='$chmod'
20526 chown='$chown'
20527 clocktype='$clocktype'
20528 comm='$comm'
20529 compress='$compress'
20530 contains='$contains'
20531 cp='$cp'
20532 cpio='$cpio'
20533 cpp='$cpp'
20534 cpp_stuff='$cpp_stuff'
20535 cppccsymbols='$cppccsymbols'
20536 cppflags='$cppflags'
20537 cpplast='$cpplast'
20538 cppminus='$cppminus'
20539 cpprun='$cpprun'
20540 cppstdin='$cppstdin'
20541 cppsymbols='$cppsymbols'
20542 crypt_r_proto='$crypt_r_proto'
20543 cryptlib='$cryptlib'
20544 csh='$csh'
20545 ctermid_r_proto='$ctermid_r_proto'
20546 ctime_r_proto='$ctime_r_proto'
20547 d_Gconvert='$d_Gconvert'
20548 d_PRIEUldbl='$d_PRIEUldbl'
20549 d_PRIFUldbl='$d_PRIFUldbl'
20550 d_PRIGUldbl='$d_PRIGUldbl'
20551 d_PRIXU64='$d_PRIXU64'
20552 d_PRId64='$d_PRId64'
20553 d_PRIeldbl='$d_PRIeldbl'
20554 d_PRIfldbl='$d_PRIfldbl'
20555 d_PRIgldbl='$d_PRIgldbl'
20556 d_PRIi64='$d_PRIi64'
20557 d_PRIo64='$d_PRIo64'
20558 d_PRIu64='$d_PRIu64'
20559 d_PRIx64='$d_PRIx64'
20560 d_SCNfldbl='$d_SCNfldbl'
20561 d__fwalk='$d__fwalk'
20562 d_access='$d_access'
20563 d_accessx='$d_accessx'
20564 d_aintl='$d_aintl'
20565 d_alarm='$d_alarm'
20566 d_archlib='$d_archlib'
20567 d_asctime_r='$d_asctime_r'
20568 d_atolf='$d_atolf'
20569 d_atoll='$d_atoll'
20570 d_attribut='$d_attribut'
20571 d_bcmp='$d_bcmp'
20572 d_bcopy='$d_bcopy'
20573 d_bsd='$d_bsd'
20574 d_bsdgetpgrp='$d_bsdgetpgrp'
20575 d_bsdsetpgrp='$d_bsdsetpgrp'
20576 d_bzero='$d_bzero'
20577 d_casti32='$d_casti32'
20578 d_castneg='$d_castneg'
20579 d_charvspr='$d_charvspr'
20580 d_chown='$d_chown'
20581 d_chroot='$d_chroot'
20582 d_chsize='$d_chsize'
20583 d_class='$d_class'
20584 d_closedir='$d_closedir'
20585 d_cmsghdr_s='$d_cmsghdr_s'
20586 d_const='$d_const'
20587 d_copysignl='$d_copysignl'
20588 d_crypt='$d_crypt'
20589 d_crypt_r='$d_crypt_r'
20590 d_csh='$d_csh'
20591 d_ctermid_r='$d_ctermid_r'
20592 d_ctime_r='$d_ctime_r'
20593 d_cuserid='$d_cuserid'
20594 d_dbl_dig='$d_dbl_dig'
20595 d_dbminitproto='$d_dbminitproto'
20596 d_difftime='$d_difftime'
20597 d_dirfd='$d_dirfd'
20598 d_dirnamlen='$d_dirnamlen'
20599 d_dlerror='$d_dlerror'
20600 d_dlopen='$d_dlopen'
20601 d_dlsymun='$d_dlsymun'
20602 d_dosuid='$d_dosuid'
20603 d_drand48_r='$d_drand48_r'
20604 d_drand48proto='$d_drand48proto'
20605 d_dup2='$d_dup2'
20606 d_eaccess='$d_eaccess'
20607 d_endgrent='$d_endgrent'
20608 d_endgrent_r='$d_endgrent_r'
20609 d_endhent='$d_endhent'
20610 d_endhostent_r='$d_endhostent_r'
20611 d_endnent='$d_endnent'
20612 d_endnetent_r='$d_endnetent_r'
20613 d_endpent='$d_endpent'
20614 d_endprotoent_r='$d_endprotoent_r'
20615 d_endpwent='$d_endpwent'
20616 d_endpwent_r='$d_endpwent_r'
20617 d_endsent='$d_endsent'
20618 d_endservent_r='$d_endservent_r'
20619 d_eofnblk='$d_eofnblk'
20620 d_eunice='$d_eunice'
20621 d_faststdio='$d_faststdio'
20622 d_fchdir='$d_fchdir'
20623 d_fchmod='$d_fchmod'
20624 d_fchown='$d_fchown'
20625 d_fcntl='$d_fcntl'
20626 d_fcntl_can_lock='$d_fcntl_can_lock'
20627 d_fd_macros='$d_fd_macros'
20628 d_fd_set='$d_fd_set'
20629 d_fds_bits='$d_fds_bits'
20630 d_fgetpos='$d_fgetpos'
20631 d_finite='$d_finite'
20632 d_finitel='$d_finitel'
20633 d_flexfnam='$d_flexfnam'
20634 d_flock='$d_flock'
20635 d_flockproto='$d_flockproto'
20636 d_fork='$d_fork'
20637 d_fp_class='$d_fp_class'
20638 d_fpathconf='$d_fpathconf'
20639 d_fpclass='$d_fpclass'
20640 d_fpclassify='$d_fpclassify'
20641 d_fpclassl='$d_fpclassl'
20642 d_fpos64_t='$d_fpos64_t'
20643 d_frexpl='$d_frexpl'
20644 d_fs_data_s='$d_fs_data_s'
20645 d_fseeko='$d_fseeko'
20646 d_fsetpos='$d_fsetpos'
20647 d_fstatfs='$d_fstatfs'
20648 d_fstatvfs='$d_fstatvfs'
20649 d_fsync='$d_fsync'
20650 d_ftello='$d_ftello'
20651 d_ftime='$d_ftime'
20652 d_getcwd='$d_getcwd'
20653 d_getespwnam='$d_getespwnam'
20654 d_getfsstat='$d_getfsstat'
20655 d_getgrent='$d_getgrent'
20656 d_getgrent_r='$d_getgrent_r'
20657 d_getgrgid_r='$d_getgrgid_r'
20658 d_getgrnam_r='$d_getgrnam_r'
20659 d_getgrps='$d_getgrps'
20660 d_gethbyaddr='$d_gethbyaddr'
20661 d_gethbyname='$d_gethbyname'
20662 d_gethent='$d_gethent'
20663 d_gethname='$d_gethname'
20664 d_gethostbyaddr_r='$d_gethostbyaddr_r'
20665 d_gethostbyname_r='$d_gethostbyname_r'
20666 d_gethostent_r='$d_gethostent_r'
20667 d_gethostprotos='$d_gethostprotos'
20668 d_getitimer='$d_getitimer'
20669 d_getlogin='$d_getlogin'
20670 d_getlogin_r='$d_getlogin_r'
20671 d_getmnt='$d_getmnt'
20672 d_getmntent='$d_getmntent'
20673 d_getnbyaddr='$d_getnbyaddr'
20674 d_getnbyname='$d_getnbyname'
20675 d_getnent='$d_getnent'
20676 d_getnetbyaddr_r='$d_getnetbyaddr_r'
20677 d_getnetbyname_r='$d_getnetbyname_r'
20678 d_getnetent_r='$d_getnetent_r'
20679 d_getnetprotos='$d_getnetprotos'
20680 d_getpagsz='$d_getpagsz'
20681 d_getpbyname='$d_getpbyname'
20682 d_getpbynumber='$d_getpbynumber'
20683 d_getpent='$d_getpent'
20684 d_getpgid='$d_getpgid'
20685 d_getpgrp2='$d_getpgrp2'
20686 d_getpgrp='$d_getpgrp'
20687 d_getppid='$d_getppid'
20688 d_getprior='$d_getprior'
20689 d_getprotobyname_r='$d_getprotobyname_r'
20690 d_getprotobynumber_r='$d_getprotobynumber_r'
20691 d_getprotoent_r='$d_getprotoent_r'
20692 d_getprotoprotos='$d_getprotoprotos'
20693 d_getprpwnam='$d_getprpwnam'
20694 d_getpwent='$d_getpwent'
20695 d_getpwent_r='$d_getpwent_r'
20696 d_getpwnam_r='$d_getpwnam_r'
20697 d_getpwuid_r='$d_getpwuid_r'
20698 d_getsbyname='$d_getsbyname'
20699 d_getsbyport='$d_getsbyport'
20700 d_getsent='$d_getsent'
20701 d_getservbyname_r='$d_getservbyname_r'
20702 d_getservbyport_r='$d_getservbyport_r'
20703 d_getservent_r='$d_getservent_r'
20704 d_getservprotos='$d_getservprotos'
20705 d_getspnam='$d_getspnam'
20706 d_getspnam_r='$d_getspnam_r'
20707 d_gettimeod='$d_gettimeod'
20708 d_gmtime_r='$d_gmtime_r'
20709 d_gnulibc='$d_gnulibc'
20710 d_grpasswd='$d_grpasswd'
20711 d_hasmntopt='$d_hasmntopt'
20712 d_htonl='$d_htonl'
20713 d_ilogbl='$d_ilogbl'
20714 d_index='$d_index'
20715 d_inetaton='$d_inetaton'
20716 d_int64_t='$d_int64_t'
20717 d_isascii='$d_isascii'
20718 d_isfinite='$d_isfinite'
20719 d_isinf='$d_isinf'
20720 d_isnan='$d_isnan'
20721 d_isnanl='$d_isnanl'
20722 d_killpg='$d_killpg'
20723 d_lchown='$d_lchown'
20724 d_ldbl_dig='$d_ldbl_dig'
20725 d_link='$d_link'
20726 d_localtime_r='$d_localtime_r'
20727 d_locconv='$d_locconv'
20728 d_lockf='$d_lockf'
20729 d_longdbl='$d_longdbl'
20730 d_longlong='$d_longlong'
20731 d_lseekproto='$d_lseekproto'
20732 d_lstat='$d_lstat'
20733 d_madvise='$d_madvise'
20734 d_mblen='$d_mblen'
20735 d_mbstowcs='$d_mbstowcs'
20736 d_mbtowc='$d_mbtowc'
20737 d_memchr='$d_memchr'
20738 d_memcmp='$d_memcmp'
20739 d_memcpy='$d_memcpy'
20740 d_memmove='$d_memmove'
20741 d_memset='$d_memset'
20742 d_mkdir='$d_mkdir'
20743 d_mkdtemp='$d_mkdtemp'
20744 d_mkfifo='$d_mkfifo'
20745 d_mkstemp='$d_mkstemp'
20746 d_mkstemps='$d_mkstemps'
20747 d_mktime='$d_mktime'
20748 d_mmap='$d_mmap'
20749 d_modfl='$d_modfl'
20750 d_modfl_pow32_bug='$d_modfl_pow32_bug'
20751 d_modflproto='$d_modflproto'
20752 d_mprotect='$d_mprotect'
20753 d_msg='$d_msg'
20754 d_msg_ctrunc='$d_msg_ctrunc'
20755 d_msg_dontroute='$d_msg_dontroute'
20756 d_msg_oob='$d_msg_oob'
20757 d_msg_peek='$d_msg_peek'
20758 d_msg_proxy='$d_msg_proxy'
20759 d_msgctl='$d_msgctl'
20760 d_msgget='$d_msgget'
20761 d_msghdr_s='$d_msghdr_s'
20762 d_msgrcv='$d_msgrcv'
20763 d_msgsnd='$d_msgsnd'
20764 d_msync='$d_msync'
20765 d_munmap='$d_munmap'
20766 d_mymalloc='$d_mymalloc'
20767 d_nice='$d_nice'
20768 d_nl_langinfo='$d_nl_langinfo'
20769 d_nv_preserves_uv='$d_nv_preserves_uv'
20770 d_off64_t='$d_off64_t'
20771 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
20772 d_oldpthreads='$d_oldpthreads'
20773 d_oldsock='$d_oldsock'
20774 d_open3='$d_open3'
20775 d_pathconf='$d_pathconf'
20776 d_pause='$d_pause'
20777 d_perl_otherlibdirs='$d_perl_otherlibdirs'
20778 d_phostname='$d_phostname'
20779 d_pipe='$d_pipe'
20780 d_poll='$d_poll'
20781 d_portable='$d_portable'
20782 d_procselfexe='$d_procselfexe'
20783 d_pthread_atfork='$d_pthread_atfork'
20784 d_pthread_attr_setscope='$d_pthread_attr_setscope'
20785 d_pthread_yield='$d_pthread_yield'
20786 d_pwage='$d_pwage'
20787 d_pwchange='$d_pwchange'
20788 d_pwclass='$d_pwclass'
20789 d_pwcomment='$d_pwcomment'
20790 d_pwexpire='$d_pwexpire'
20791 d_pwgecos='$d_pwgecos'
20792 d_pwpasswd='$d_pwpasswd'
20793 d_pwquota='$d_pwquota'
20794 d_qgcvt='$d_qgcvt'
20795 d_quad='$d_quad'
20796 d_random_r='$d_random_r'
20797 d_readdir64_r='$d_readdir64_r'
20798 d_readdir='$d_readdir'
20799 d_readdir_r='$d_readdir_r'
20800 d_readlink='$d_readlink'
20801 d_readv='$d_readv'
20802 d_recvmsg='$d_recvmsg'
20803 d_rename='$d_rename'
20804 d_rewinddir='$d_rewinddir'
20805 d_rmdir='$d_rmdir'
20806 d_safebcpy='$d_safebcpy'
20807 d_safemcpy='$d_safemcpy'
20808 d_sanemcmp='$d_sanemcmp'
20809 d_sbrkproto='$d_sbrkproto'
20810 d_scalbnl='$d_scalbnl'
20811 d_sched_yield='$d_sched_yield'
20812 d_scm_rights='$d_scm_rights'
20813 d_seekdir='$d_seekdir'
20814 d_select='$d_select'
20815 d_sem='$d_sem'
20816 d_semctl='$d_semctl'
20817 d_semctl_semid_ds='$d_semctl_semid_ds'
20818 d_semctl_semun='$d_semctl_semun'
20819 d_semget='$d_semget'
20820 d_semop='$d_semop'
20821 d_sendmsg='$d_sendmsg'
20822 d_setegid='$d_setegid'
20823 d_seteuid='$d_seteuid'
20824 d_setgrent='$d_setgrent'
20825 d_setgrent_r='$d_setgrent_r'
20826 d_setgrps='$d_setgrps'
20827 d_sethent='$d_sethent'
20828 d_sethostent_r='$d_sethostent_r'
20829 d_setitimer='$d_setitimer'
20830 d_setlinebuf='$d_setlinebuf'
20831 d_setlocale='$d_setlocale'
20832 d_setlocale_r='$d_setlocale_r'
20833 d_setnent='$d_setnent'
20834 d_setnetent_r='$d_setnetent_r'
20835 d_setpent='$d_setpent'
20836 d_setpgid='$d_setpgid'
20837 d_setpgrp2='$d_setpgrp2'
20838 d_setpgrp='$d_setpgrp'
20839 d_setprior='$d_setprior'
20840 d_setproctitle='$d_setproctitle'
20841 d_setprotoent_r='$d_setprotoent_r'
20842 d_setpwent='$d_setpwent'
20843 d_setpwent_r='$d_setpwent_r'
20844 d_setregid='$d_setregid'
20845 d_setresgid='$d_setresgid'
20846 d_setresuid='$d_setresuid'
20847 d_setreuid='$d_setreuid'
20848 d_setrgid='$d_setrgid'
20849 d_setruid='$d_setruid'
20850 d_setsent='$d_setsent'
20851 d_setservent_r='$d_setservent_r'
20852 d_setsid='$d_setsid'
20853 d_setvbuf='$d_setvbuf'
20854 d_sfio='$d_sfio'
20855 d_shm='$d_shm'
20856 d_shmat='$d_shmat'
20857 d_shmatprototype='$d_shmatprototype'
20858 d_shmctl='$d_shmctl'
20859 d_shmdt='$d_shmdt'
20860 d_shmget='$d_shmget'
20861 d_sigaction='$d_sigaction'
20862 d_sigprocmask='$d_sigprocmask'
20863 d_sigsetjmp='$d_sigsetjmp'
20864 d_sockatmark='$d_sockatmark'
20865 d_sockatmarkproto='$d_sockatmarkproto'
20866 d_socket='$d_socket'
20867 d_socklen_t='$d_socklen_t'
20868 d_sockpair='$d_sockpair'
20869 d_socks5_init='$d_socks5_init'
20870 d_sqrtl='$d_sqrtl'
20871 d_srand48_r='$d_srand48_r'
20872 d_srandom_r='$d_srandom_r'
20873 d_sresgproto='$d_sresgproto'
20874 d_sresuproto='$d_sresuproto'
20875 d_statblks='$d_statblks'
20876 d_statfs_f_flags='$d_statfs_f_flags'
20877 d_statfs_s='$d_statfs_s'
20878 d_statvfs='$d_statvfs'
20879 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20880 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20881 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20882 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20883 d_stdio_stream_array='$d_stdio_stream_array'
20884 d_stdiobase='$d_stdiobase'
20885 d_stdstdio='$d_stdstdio'
20886 d_strchr='$d_strchr'
20887 d_strcoll='$d_strcoll'
20888 d_strctcpy='$d_strctcpy'
20889 d_strerrm='$d_strerrm'
20890 d_strerror='$d_strerror'
20891 d_strerror_r='$d_strerror_r'
20892 d_strftime='$d_strftime'
20893 d_strlcat='$d_strlcat'
20894 d_strlcpy='$d_strlcpy'
20895 d_strtod='$d_strtod'
20896 d_strtol='$d_strtol'
20897 d_strtold='$d_strtold'
20898 d_strtoll='$d_strtoll'
20899 d_strtoq='$d_strtoq'
20900 d_strtoul='$d_strtoul'
20901 d_strtoull='$d_strtoull'
20902 d_strtouq='$d_strtouq'
20903 d_strxfrm='$d_strxfrm'
20904 d_suidsafe='$d_suidsafe'
20905 d_symlink='$d_symlink'
20906 d_syscall='$d_syscall'
20907 d_syscallproto='$d_syscallproto'
20908 d_sysconf='$d_sysconf'
20909 d_sysernlst='$d_sysernlst'
20910 d_syserrlst='$d_syserrlst'
20911 d_system='$d_system'
20912 d_tcgetpgrp='$d_tcgetpgrp'
20913 d_tcsetpgrp='$d_tcsetpgrp'
20914 d_telldir='$d_telldir'
20915 d_telldirproto='$d_telldirproto'
20916 d_time='$d_time'
20917 d_times='$d_times'
20918 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20919 d_tm_tm_zone='$d_tm_tm_zone'
20920 d_tmpnam_r='$d_tmpnam_r'
20921 d_truncate='$d_truncate'
20922 d_ttyname_r='$d_ttyname_r'
20923 d_tzname='$d_tzname'
20924 d_u32align='$d_u32align'
20925 d_ualarm='$d_ualarm'
20926 d_umask='$d_umask'
20927 d_uname='$d_uname'
20928 d_union_semun='$d_union_semun'
20929 d_unordered='$d_unordered'
20930 d_usleep='$d_usleep'
20931 d_usleepproto='$d_usleepproto'
20932 d_ustat='$d_ustat'
20933 d_vendorarch='$d_vendorarch'
20934 d_vendorbin='$d_vendorbin'
20935 d_vendorlib='$d_vendorlib'
20936 d_vendorscript='$d_vendorscript'
20937 d_vfork='$d_vfork'
20938 d_void_closedir='$d_void_closedir'
20939 d_voidsig='$d_voidsig'
20940 d_voidtty='$d_voidtty'
20941 d_volatile='$d_volatile'
20942 d_vprintf='$d_vprintf'
20943 d_wait4='$d_wait4'
20944 d_waitpid='$d_waitpid'
20945 d_wcstombs='$d_wcstombs'
20946 d_wctomb='$d_wctomb'
20947 d_writev='$d_writev'
20948 d_xenix='$d_xenix'
20949 date='$date'
20950 db_hashtype='$db_hashtype'
20951 db_prefixtype='$db_prefixtype'
20952 db_version_major='$db_version_major'
20953 db_version_minor='$db_version_minor'
20954 db_version_patch='$db_version_patch'
20955 defvoidused='$defvoidused'
20956 direntrytype='$direntrytype'
20957 dlext='$dlext'
20958 dlsrc='$dlsrc'
20959 doublesize='$doublesize'
20960 drand01='$drand01'
20961 drand48_r_proto='$drand48_r_proto'
20962 dynamic_ext='$dynamic_ext'
20963 eagain='$eagain'
20964 ebcdic='$ebcdic'
20965 echo='$echo'
20966 egrep='$egrep'
20967 emacs='$emacs'
20968 endgrent_r_proto='$endgrent_r_proto'
20969 endhostent_r_proto='$endhostent_r_proto'
20970 endnetent_r_proto='$endnetent_r_proto'
20971 endprotoent_r_proto='$endprotoent_r_proto'
20972 endpwent_r_proto='$endpwent_r_proto'
20973 endservent_r_proto='$endservent_r_proto'
20974 eunicefix='$eunicefix'
20975 exe_ext='$exe_ext'
20976 expr='$expr'
20977 extensions='$extensions'
20978 extras='$extras'
20979 fflushNULL='$fflushNULL'
20980 fflushall='$fflushall'
20981 find='$find'
20982 firstmakefile='$firstmakefile'
20983 flex='$flex'
20984 fpossize='$fpossize'
20985 fpostype='$fpostype'
20986 freetype='$freetype'
20987 from='$from'
20988 full_ar='$full_ar'
20989 full_csh='$full_csh'
20990 full_sed='$full_sed'
20991 gccansipedantic='$gccansipedantic'
20992 gccosandvers='$gccosandvers'
20993 gccversion='$gccversion'
20994 getgrent_r_proto='$getgrent_r_proto'
20995 getgrgid_r_proto='$getgrgid_r_proto'
20996 getgrnam_r_proto='$getgrnam_r_proto'
20997 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
20998 gethostbyname_r_proto='$gethostbyname_r_proto'
20999 gethostent_r_proto='$gethostent_r_proto'
21000 getlogin_r_proto='$getlogin_r_proto'
21001 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
21002 getnetbyname_r_proto='$getnetbyname_r_proto'
21003 getnetent_r_proto='$getnetent_r_proto'
21004 getprotobyname_r_proto='$getprotobyname_r_proto'
21005 getprotobynumber_r_proto='$getprotobynumber_r_proto'
21006 getprotoent_r_proto='$getprotoent_r_proto'
21007 getpwent_r_proto='$getpwent_r_proto'
21008 getpwnam_r_proto='$getpwnam_r_proto'
21009 getpwuid_r_proto='$getpwuid_r_proto'
21010 getservbyname_r_proto='$getservbyname_r_proto'
21011 getservbyport_r_proto='$getservbyport_r_proto'
21012 getservent_r_proto='$getservent_r_proto'
21013 getspnam_r_proto='$getspnam_r_proto'
21014 gidformat='$gidformat'
21015 gidsign='$gidsign'
21016 gidsize='$gidsize'
21017 gidtype='$gidtype'
21018 glibpth='$glibpth'
21019 gmake='$gmake'
21020 gmtime_r_proto='$gmtime_r_proto'
21021 gnulibc_version='$gnulibc_version'
21022 grep='$grep'
21023 groupcat='$groupcat'
21024 groupstype='$groupstype'
21025 gzip='$gzip'
21026 h_fcntl='$h_fcntl'
21027 h_sysfile='$h_sysfile'
21028 hint='$hint'
21029 hostcat='$hostcat'
21030 html1dir='$html1dir'
21031 html1direxp='$html1direxp'
21032 html3dir='$html3dir'
21033 html3direxp='$html3direxp'
21034 i16size='$i16size'
21035 i16type='$i16type'
21036 i32size='$i32size'
21037 i32type='$i32type'
21038 i64size='$i64size'
21039 i64type='$i64type'
21040 i8size='$i8size'
21041 i8type='$i8type'
21042 i_arpainet='$i_arpainet'
21043 i_bsdioctl='$i_bsdioctl'
21044 i_crypt='$i_crypt'
21045 i_db='$i_db'
21046 i_dbm='$i_dbm'
21047 i_dirent='$i_dirent'
21048 i_dld='$i_dld'
21049 i_dlfcn='$i_dlfcn'
21050 i_fcntl='$i_fcntl'
21051 i_float='$i_float'
21052 i_fp='$i_fp'
21053 i_fp_class='$i_fp_class'
21054 i_gdbm='$i_gdbm'
21055 i_grp='$i_grp'
21056 i_ieeefp='$i_ieeefp'
21057 i_inttypes='$i_inttypes'
21058 i_langinfo='$i_langinfo'
21059 i_libutil='$i_libutil'
21060 i_limits='$i_limits'
21061 i_locale='$i_locale'
21062 i_machcthr='$i_machcthr'
21063 i_malloc='$i_malloc'
21064 i_math='$i_math'
21065 i_memory='$i_memory'
21066 i_mntent='$i_mntent'
21067 i_ndbm='$i_ndbm'
21068 i_netdb='$i_netdb'
21069 i_neterrno='$i_neterrno'
21070 i_netinettcp='$i_netinettcp'
21071 i_niin='$i_niin'
21072 i_poll='$i_poll'
21073 i_prot='$i_prot'
21074 i_pthread='$i_pthread'
21075 i_pwd='$i_pwd'
21076 i_rpcsvcdbm='$i_rpcsvcdbm'
21077 i_sfio='$i_sfio'
21078 i_sgtty='$i_sgtty'
21079 i_shadow='$i_shadow'
21080 i_socks='$i_socks'
21081 i_stdarg='$i_stdarg'
21082 i_stddef='$i_stddef'
21083 i_stdlib='$i_stdlib'
21084 i_string='$i_string'
21085 i_sunmath='$i_sunmath'
21086 i_sysaccess='$i_sysaccess'
21087 i_sysdir='$i_sysdir'
21088 i_sysfile='$i_sysfile'
21089 i_sysfilio='$i_sysfilio'
21090 i_sysin='$i_sysin'
21091 i_sysioctl='$i_sysioctl'
21092 i_syslog='$i_syslog'
21093 i_sysmman='$i_sysmman'
21094 i_sysmode='$i_sysmode'
21095 i_sysmount='$i_sysmount'
21096 i_sysndir='$i_sysndir'
21097 i_sysparam='$i_sysparam'
21098 i_sysresrc='$i_sysresrc'
21099 i_syssecrt='$i_syssecrt'
21100 i_sysselct='$i_sysselct'
21101 i_syssockio='$i_syssockio'
21102 i_sysstat='$i_sysstat'
21103 i_sysstatfs='$i_sysstatfs'
21104 i_sysstatvfs='$i_sysstatvfs'
21105 i_systime='$i_systime'
21106 i_systimek='$i_systimek'
21107 i_systimes='$i_systimes'
21108 i_systypes='$i_systypes'
21109 i_sysuio='$i_sysuio'
21110 i_sysun='$i_sysun'
21111 i_sysutsname='$i_sysutsname'
21112 i_sysvfs='$i_sysvfs'
21113 i_syswait='$i_syswait'
21114 i_termio='$i_termio'
21115 i_termios='$i_termios'
21116 i_time='$i_time'
21117 i_unistd='$i_unistd'
21118 i_ustat='$i_ustat'
21119 i_utime='$i_utime'
21120 i_values='$i_values'
21121 i_varargs='$i_varargs'
21122 i_varhdr='$i_varhdr'
21123 i_vfork='$i_vfork'
21124 ignore_versioned_solibs='$ignore_versioned_solibs'
21125 inc_version_list='$inc_version_list'
21126 inc_version_list_init='$inc_version_list_init'
21127 incpath='$incpath'
21128 inews='$inews'
21129 installarchlib='$installarchlib'
21130 installbin='$installbin'
21131 installhtml1dir='$installhtml1dir'
21132 installhtml3dir='$installhtml3dir'
21133 installman1dir='$installman1dir'
21134 installman3dir='$installman3dir'
21135 installprefix='$installprefix'
21136 installprefixexp='$installprefixexp'
21137 installprivlib='$installprivlib'
21138 installscript='$installscript'
21139 installsitearch='$installsitearch'
21140 installsitebin='$installsitebin'
21141 installsitehtml1dir='$installsitehtml1dir'
21142 installsitehtml3dir='$installsitehtml3dir'
21143 installsitelib='$installsitelib'
21144 installsiteman1dir='$installsiteman1dir'
21145 installsiteman3dir='$installsiteman3dir'
21146 installsitescript='$installsitescript'
21147 installstyle='$installstyle'
21148 installusrbinperl='$installusrbinperl'
21149 installvendorarch='$installvendorarch'
21150 installvendorbin='$installvendorbin'
21151 installvendorhtml1dir='$installvendorhtml1dir'
21152 installvendorhtml3dir='$installvendorhtml3dir'
21153 installvendorlib='$installvendorlib'
21154 installvendorman1dir='$installvendorman1dir'
21155 installvendorman3dir='$installvendorman3dir'
21156 installvendorscript='$installvendorscript'
21157 intsize='$intsize'
21158 issymlink='$issymlink'
21159 ivdformat='$ivdformat'
21160 ivsize='$ivsize'
21161 ivtype='$ivtype'
21162 known_extensions='$known_extensions'
21163 ksh='$ksh'
21164 ld='$ld'
21165 lddlflags='$lddlflags'
21166 ldflags='$ldflags'
21167 ldflags_uselargefiles='$ldflags_uselargefiles'
21168 ldlibpthname='$ldlibpthname'
21169 less='$less'
21170 lib_ext='$lib_ext'
21171 libc='$libc'
21172 libperl='$libperl'
21173 libpth='$libpth'
21174 libs='$libs'
21175 libsdirs='$libsdirs'
21176 libsfiles='$libsfiles'
21177 libsfound='$libsfound'
21178 libspath='$libspath'
21179 libswanted='$libswanted'
21180 libswanted_uselargefiles='$libswanted_uselargefiles'
21181 line='$line'
21182 lint='$lint'
21183 lkflags='$lkflags'
21184 ln='$ln'
21185 lns='$lns'
21186 localtime_r_proto='$localtime_r_proto'
21187 locincpth='$locincpth'
21188 loclibpth='$loclibpth'
21189 longdblsize='$longdblsize'
21190 longlongsize='$longlongsize'
21191 longsize='$longsize'
21192 lp='$lp'
21193 lpr='$lpr'
21194 ls='$ls'
21195 lseeksize='$lseeksize'
21196 lseektype='$lseektype'
21197 mail='$mail'
21198 mailx='$mailx'
21199 make='$make'
21200 make_set_make='$make_set_make'
21201 mallocobj='$mallocobj'
21202 mallocsrc='$mallocsrc'
21203 malloctype='$malloctype'
21204 man1dir='$man1dir'
21205 man1direxp='$man1direxp'
21206 man1ext='$man1ext'
21207 man3dir='$man3dir'
21208 man3direxp='$man3direxp'
21209 man3ext='$man3ext'
21210 mips_type='$mips_type'
21211 mistrustnm='$mistrustnm'
21212 mkdir='$mkdir'
21213 mmaptype='$mmaptype'
21214 modetype='$modetype'
21215 more='$more'
21216 multiarch='$multiarch'
21217 mv='$mv'
21218 myarchname='$myarchname'
21219 mydomain='$mydomain'
21220 myhostname='$myhostname'
21221 myuname='$myuname'
21222 n='$n'
21223 need_va_copy='$need_va_copy'
21224 netdb_hlen_type='$netdb_hlen_type'
21225 netdb_host_type='$netdb_host_type'
21226 netdb_name_type='$netdb_name_type'
21227 netdb_net_type='$netdb_net_type'
21228 nm='$nm'
21229 nm_opt='$nm_opt'
21230 nm_so_opt='$nm_so_opt'
21231 nonxs_ext='$nonxs_ext'
21232 nroff='$nroff'
21233 nvEUformat='$nvEUformat'
21234 nvFUformat='$nvFUformat'
21235 nvGUformat='$nvGUformat'
21236 nv_preserves_uv_bits='$nv_preserves_uv_bits'
21237 nveformat='$nveformat'
21238 nvfformat='$nvfformat'
21239 nvgformat='$nvgformat'
21240 nvsize='$nvsize'
21241 nvtype='$nvtype'
21242 o_nonblock='$o_nonblock'
21243 obj_ext='$obj_ext'
21244 old_pthread_create_joinable='$old_pthread_create_joinable'
21245 optimize='$optimize'
21246 orderlib='$orderlib'
21247 osname='$osname'
21248 osvers='$osvers'
21249 otherlibdirs='$otherlibdirs'
21250 package='$package'
21251 pager='$pager'
21252 passcat='$passcat'
21253 patchlevel='$patchlevel'
21254 path_sep='$path_sep'
21255 perl5='$perl5'
21256 perl='$perl'
21257 perl_patchlevel='$perl_patchlevel'
21258 perladmin='$perladmin'
21259 perllibs='$perllibs'
21260 perlpath='$perlpath'
21261 pg='$pg'
21262 phostname='$phostname'
21263 pidtype='$pidtype'
21264 plibpth='$plibpth'
21265 pmake='$pmake'
21266 pr='$pr'
21267 prefix='$prefix'
21268 prefixexp='$prefixexp'
21269 privlib='$privlib'
21270 privlibexp='$privlibexp'
21271 procselfexe='$procselfexe'
21272 prototype='$prototype'
21273 ptrsize='$ptrsize'
21274 quadkind='$quadkind'
21275 quadtype='$quadtype'
21276 randbits='$randbits'
21277 randfunc='$randfunc'
21278 random_r_proto='$random_r_proto'
21279 randseedtype='$randseedtype'
21280 ranlib='$ranlib'
21281 rd_nodata='$rd_nodata'
21282 readdir64_r_proto='$readdir64_r_proto'
21283 readdir_r_proto='$readdir_r_proto'
21284 revision='$revision'
21285 rm='$rm'
21286 rmail='$rmail'
21287 run='$run'
21288 runnm='$runnm'
21289 sPRIEUldbl='$sPRIEUldbl'
21290 sPRIFUldbl='$sPRIFUldbl'
21291 sPRIGUldbl='$sPRIGUldbl'
21292 sPRIXU64='$sPRIXU64'
21293 sPRId64='$sPRId64'
21294 sPRIeldbl='$sPRIeldbl'
21295 sPRIfldbl='$sPRIfldbl'
21296 sPRIgldbl='$sPRIgldbl'
21297 sPRIi64='$sPRIi64'
21298 sPRIo64='$sPRIo64'
21299 sPRIu64='$sPRIu64'
21300 sPRIx64='$sPRIx64'
21301 sSCNfldbl='$sSCNfldbl'
21302 sched_yield='$sched_yield'
21303 scriptdir='$scriptdir'
21304 scriptdirexp='$scriptdirexp'
21305 sed='$sed'
21306 seedfunc='$seedfunc'
21307 selectminbits='$selectminbits'
21308 selecttype='$selecttype'
21309 sendmail='$sendmail'
21310 setgrent_r_proto='$setgrent_r_proto'
21311 sethostent_r_proto='$sethostent_r_proto'
21312 setlocale_r_proto='$setlocale_r_proto'
21313 setnetent_r_proto='$setnetent_r_proto'
21314 setprotoent_r_proto='$setprotoent_r_proto'
21315 setpwent_r_proto='$setpwent_r_proto'
21316 setservent_r_proto='$setservent_r_proto'
21317 sh='$sh'
21318 shar='$shar'
21319 sharpbang='$sharpbang'
21320 shmattype='$shmattype'
21321 shortsize='$shortsize'
21322 shrpenv='$shrpenv'
21323 shsharp='$shsharp'
21324 sig_count='$sig_count'
21325 sig_name='$sig_name'
21326 sig_name_init='$sig_name_init'
21327 sig_num='$sig_num'
21328 sig_num_init='$sig_num_init'
21329 sig_size='$sig_size'
21330 signal_t='$signal_t'
21331 sitearch='$sitearch'
21332 sitearchexp='$sitearchexp'
21333 sitebin='$sitebin'
21334 sitebinexp='$sitebinexp'
21335 sitehtml1dir='$sitehtml1dir'
21336 sitehtml1direxp='$sitehtml1direxp'
21337 sitehtml3dir='$sitehtml3dir'
21338 sitehtml3direxp='$sitehtml3direxp'
21339 sitelib='$sitelib'
21340 sitelib_stem='$sitelib_stem'
21341 sitelibexp='$sitelibexp'
21342 siteman1dir='$siteman1dir'
21343 siteman1direxp='$siteman1direxp'
21344 siteman3dir='$siteman3dir'
21345 siteman3direxp='$siteman3direxp'
21346 siteprefix='$siteprefix'
21347 siteprefixexp='$siteprefixexp'
21348 sitescript='$sitescript'
21349 sitescriptexp='$sitescriptexp'
21350 sizesize='$sizesize'
21351 sizetype='$sizetype'
21352 sleep='$sleep'
21353 smail='$smail'
21354 so='$so'
21355 sockethdr='$sockethdr'
21356 socketlib='$socketlib'
21357 socksizetype='$socksizetype'
21358 sort='$sort'
21359 spackage='$spackage'
21360 spitshell='$spitshell'
21361 srand48_r_proto='$srand48_r_proto'
21362 srandom_r_proto='$srandom_r_proto'
21363 src='$src'
21364 ssizetype='$ssizetype'
21365 startperl='$startperl'
21366 startsh='$startsh'
21367 static_ext='$static_ext'
21368 stdchar='$stdchar'
21369 stdio_base='$stdio_base'
21370 stdio_bufsiz='$stdio_bufsiz'
21371 stdio_cnt='$stdio_cnt'
21372 stdio_filbuf='$stdio_filbuf'
21373 stdio_ptr='$stdio_ptr'
21374 stdio_stream_array='$stdio_stream_array'
21375 strerror_r_proto='$strerror_r_proto'
21376 strings='$strings'
21377 submit='$submit'
21378 subversion='$subversion'
21379 sysman='$sysman'
21380 tail='$tail'
21381 tar='$tar'
21382 targetarch='$targetarch'
21383 tbl='$tbl'
21384 tee='$tee'
21385 test='$test'
21386 timeincl='$timeincl'
21387 timetype='$timetype'
21388 tmpnam_r_proto='$tmpnam_r_proto'
21389 to='$to'
21390 touch='$touch'
21391 tr='$tr'
21392 trnl='$trnl'
21393 troff='$troff'
21394 ttyname_r_proto='$ttyname_r_proto'
21395 u16size='$u16size'
21396 u16type='$u16type'
21397 u32size='$u32size'
21398 u32type='$u32type'
21399 u64size='$u64size'
21400 u64type='$u64type'
21401 u8size='$u8size'
21402 u8type='$u8type'
21403 uidformat='$uidformat'
21404 uidsign='$uidsign'
21405 uidsize='$uidsize'
21406 uidtype='$uidtype'
21407 uname='$uname'
21408 uniq='$uniq'
21409 uquadtype='$uquadtype'
21410 use5005threads='$use5005threads'
21411 use64bitall='$use64bitall'
21412 use64bitint='$use64bitint'
21413 usecrosscompile='$usecrosscompile'
21414 usedl='$usedl'
21415 usefaststdio='$usefaststdio'
21416 useithreads='$useithreads'
21417 uselargefiles='$uselargefiles'
21418 uselongdouble='$uselongdouble'
21419 usemallocwrap='$usemallocwrap'
21420 usemorebits='$usemorebits'
21421 usemultiplicity='$usemultiplicity'
21422 usemymalloc='$usemymalloc'
21423 usenm='$usenm'
21424 useopcode='$useopcode'
21425 useperlio='$useperlio'
21426 useposix='$useposix'
21427 usereentrant='$usereentrant'
21428 userelocatableinc='$userelocatableinc'
21429 usesfio='$usesfio'
21430 useshrplib='$useshrplib'
21431 usesocks='$usesocks'
21432 usethreads='$usethreads'
21433 usevendorprefix='$usevendorprefix'
21434 usevfork='$usevfork'
21435 usrinc='$usrinc'
21436 uuname='$uuname'
21437 uvXUformat='$uvXUformat'
21438 uvoformat='$uvoformat'
21439 uvsize='$uvsize'
21440 uvtype='$uvtype'
21441 uvuformat='$uvuformat'
21442 uvxformat='$uvxformat'
21443 vendorarch='$vendorarch'
21444 vendorarchexp='$vendorarchexp'
21445 vendorbin='$vendorbin'
21446 vendorbinexp='$vendorbinexp'
21447 vendorhtml1dir='$vendorhtml1dir'
21448 vendorhtml1direxp='$vendorhtml1direxp'
21449 vendorhtml3dir='$vendorhtml3dir'
21450 vendorhtml3direxp='$vendorhtml3direxp'
21451 vendorlib='$vendorlib'
21452 vendorlib_stem='$vendorlib_stem'
21453 vendorlibexp='$vendorlibexp'
21454 vendorman1dir='$vendorman1dir'
21455 vendorman1direxp='$vendorman1direxp'
21456 vendorman3dir='$vendorman3dir'
21457 vendorman3direxp='$vendorman3direxp'
21458 vendorprefix='$vendorprefix'
21459 vendorprefixexp='$vendorprefixexp'
21460 vendorscript='$vendorscript'
21461 vendorscriptexp='$vendorscriptexp'
21462 version='$version'
21463 version_patchlevel_string='$version_patchlevel_string'
21464 versiononly='$versiononly'
21465 vi='$vi'
21466 voidflags='$voidflags'
21467 xlibpth='$xlibpth'
21468 yacc='$yacc'
21469 yaccflags='$yaccflags'
21470 zcat='$zcat'
21471 zip='$zip'
21472 EOT
21473
21474 : Add in command line options if available
21475 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
21476
21477 : add special variables
21478 $test -f $src/patchlevel.h && \
21479 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
21480 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
21481 echo "PERL_CONFIG_SH=true" >>config.sh
21482
21483 : propagate old symbols
21484 if $test -f UU/config.sh; then
21485         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
21486         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
21487         $sort | $uniq -u >UU/oldsyms
21488         set X `cat UU/oldsyms`
21489         shift
21490         case $# in
21491         0) ;;
21492         *)
21493                 cat <<EOM
21494 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
21495 EOM
21496                 echo "# Variables propagated from previous config.sh file." >>config.sh
21497                 for sym in `cat UU/oldsyms`; do
21498                         echo "    Propagating $hint variable "'$'"$sym..."
21499                         eval 'tmp="$'"${sym}"'"'
21500                         echo "$tmp" | \
21501                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
21502                 done
21503                 ;;
21504         esac
21505 fi
21506
21507 : Finish up by extracting the .SH files
21508 case "$alldone" in
21509 exit)
21510         $rm -rf UU
21511         echo "Extraction done."
21512         exit 0
21513         ;;
21514 cont)
21515         ;;
21516 '')
21517         dflt=''
21518         nostick=true
21519         $cat <<EOM
21520
21521 If you'd like to make any changes to the config.sh file before I begin
21522 to configure things, do it as a shell escape now (e.g. !vi config.sh).
21523
21524 EOM
21525         rp="Press return or use a shell escape to edit config.sh:"
21526         . UU/myread
21527         nostick=''
21528         case "$ans" in
21529         '') ;;
21530         *) : in case they cannot read
21531                 sh 1>&4 -c "$ans";;
21532         esac
21533         ;;
21534 esac
21535
21536 : if this fails, just run all the .SH files by hand
21537 . ./config.sh
21538
21539 echo " "
21540 exec 1>&4
21541 pwd=`pwd`
21542 . ./UU/extract
21543 cd "$pwd"
21544
21545 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
21546         dflt=y
21547         case "$silent" in
21548         true) ;;
21549         *)
21550                 $cat <<EOM
21551
21552 Now you need to generate make dependencies by running "$make depend".
21553 You might prefer to run it in background: "$make depend > makedepend.out &"
21554 It can take a while, so you might not want to run it right now.
21555
21556 EOM
21557                 ;;
21558         esac
21559         rp="Run $make depend now?"
21560         . UU/myread
21561         case "$ans" in
21562         y*)
21563                 $make depend && echo "Now you must run '$make'."
21564                 ;;
21565         *)
21566                 echo "You must run '$make depend' then '$make'."
21567                 ;;
21568         esac
21569 elif test -f [Mm]akefile; then
21570         echo " "
21571         echo "Now you must run a $make."
21572 else
21573         echo "Configure done."
21574 fi
21575
21576 if $test -f Policy.sh; then
21577     $cat <<EOM
21578
21579 If you compile $package on a different machine or from a different object
21580 directory, copy the Policy.sh file from this object directory to the
21581 new one before you run Configure -- this will help you with most of
21582 the policy defaults.
21583
21584 EOM
21585 fi
21586 if $test -f config.msg; then
21587     echo "Hmm.  I also noted the following information while running:"
21588     echo " "
21589     $cat config.msg >&4
21590     $rm -f config.msg
21591 fi
21592 $rm -f kit*isdone ark*isdone
21593 $rm -rf UU
21594
21595 : End of Configure
21596