07682b631f16db3fb2724fc855402e51f0d71f8f
[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 Wed May  7 21:05:53 EET DST 2003 [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 /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 perllibs=''
192 dynamic_ext=''
193 extensions=''
194 known_extensions=''
195 nonxs_ext=''
196 static_ext=''
197 useopcode=''
198 useposix=''
199 extras=''
200 d_bsd=''
201 d_eunice=''
202 d_xenix=''
203 eunicefix=''
204 Mcc=''
205 ar=''
206 awk=''
207 bash=''
208 bison=''
209 byacc=''
210 cat=''
211 chgrp=''
212 chmod=''
213 chown=''
214 comm=''
215 compress=''
216 cp=''
217 cpio=''
218 cpp=''
219 csh=''
220 date=''
221 echo=''
222 egrep=''
223 emacs=''
224 expr=''
225 find=''
226 flex=''
227 gmake=''
228 grep=''
229 gzip=''
230 inews=''
231 ksh=''
232 less=''
233 line=''
234 lint=''
235 ln=''
236 lp=''
237 lpr=''
238 ls=''
239 mail=''
240 mailx=''
241 make=''
242 mkdir=''
243 more=''
244 mv=''
245 nm=''
246 nroff=''
247 perl=''
248 pg=''
249 pmake=''
250 pr=''
251 rm=''
252 rmail=''
253 sed=''
254 sendmail=''
255 shar=''
256 sleep=''
257 smail=''
258 sort=''
259 submit=''
260 tail=''
261 tar=''
262 tbl=''
263 tee=''
264 test=''
265 touch=''
266 tr=''
267 troff=''
268 uname=''
269 uniq=''
270 uuname=''
271 vi=''
272 zcat=''
273 zip=''
274 full_ar=''
275 full_sed=''
276 libswanted=''
277 hint=''
278 myuname=''
279 osname=''
280 osvers=''
281 Author=''
282 Date=''
283 Header=''
284 Id=''
285 Locker=''
286 Log=''
287 RCSfile=''
288 Revision=''
289 Source=''
290 State=''
291 _a=''
292 _exe=''
293 _o=''
294 archobjs=''
295 exe_ext=''
296 firstmakefile=''
297 lib_ext=''
298 obj_ext=''
299 path_sep=''
300 afs=''
301 afsroot=''
302 alignbytes=''
303 ansi2knr=''
304 archlib=''
305 archlibexp=''
306 d_archlib=''
307 installarchlib=''
308 archname=''
309 myarchname=''
310 d_atolf=''
311 d_atoll=''
312 baserev=''
313 bin=''
314 binexp=''
315 installbin=''
316 byteorder=''
317 cc=''
318 ccflags=''
319 cppflags=''
320 ldflags=''
321 lkflags=''
322 locincpth=''
323 optimize=''
324 cf_email=''
325 cf_by=''
326 cf_time=''
327 charsize=''
328 contains=''
329 cpp_stuff=''
330 cpplast=''
331 cppminus=''
332 cpprun=''
333 cppstdin=''
334 d__fwalk=''
335 d_access=''
336 d_accessx=''
337 d_aintl=''
338 d_alarm=''
339 asctime_r_proto=''
340 d_asctime_r=''
341 d_attribut=''
342 d_bcmp=''
343 d_bcopy=''
344 d_bzero=''
345 d_casti32=''
346 castflags=''
347 d_castneg=''
348 d_chown=''
349 d_chroot=''
350 d_chsize=''
351 d_class=''
352 d_closedir=''
353 d_void_closedir=''
354 d_cmsghdr_s=''
355 d_const=''
356 d_copysignl=''
357 cryptlib=''
358 d_crypt=''
359 crypt_r_proto=''
360 d_crypt_r=''
361 d_csh=''
362 full_csh=''
363 ctermid_r_proto=''
364 d_ctermid_r=''
365 ctime_r_proto=''
366 d_ctime_r=''
367 d_cuserid=''
368 d_dbl_dig=''
369 d_dbminitproto=''
370 d_difftime=''
371 d_dirfd=''
372 d_dlerror=''
373 d_dlopen=''
374 d_dlsymun=''
375 d_dosuid=''
376 d_suidsafe=''
377 d_drand48_r=''
378 drand48_r_proto=''
379 d_drand48proto=''
380 d_dup2=''
381 d_eaccess=''
382 d_endgrent=''
383 d_endgrent_r=''
384 endgrent_r_proto=''
385 d_endhent=''
386 d_endhostent_r=''
387 endhostent_r_proto=''
388 d_endnent=''
389 d_endnetent_r=''
390 endnetent_r_proto=''
391 d_endpent=''
392 d_endprotoent_r=''
393 endprotoent_r_proto=''
394 d_endpwent=''
395 d_endpwent_r=''
396 endpwent_r_proto=''
397 d_endsent=''
398 d_endservent_r=''
399 endservent_r_proto=''
400 d_faststdio=''
401 d_fchdir=''
402 d_fchmod=''
403 d_fchown=''
404 d_fcntl=''
405 d_fcntl_can_lock=''
406 d_fd_macros=''
407 d_fd_set=''
408 d_fds_bits=''
409 d_fgetpos=''
410 d_finite=''
411 d_finitel=''
412 d_flexfnam=''
413 d_flock=''
414 d_flockproto=''
415 d_fork=''
416 d_fp_class=''
417 d_fpclass=''
418 d_fpclassify=''
419 d_fpclassl=''
420 d_fpos64_t=''
421 d_frexpl=''
422 d_fs_data_s=''
423 d_fseeko=''
424 d_fsetpos=''
425 d_fstatfs=''
426 d_fsync=''
427 d_ftello=''
428 d_ftime=''
429 d_gettimeod=''
430 d_Gconvert=''
431 d_getcwd=''
432 d_getespwnam=''
433 d_getfsstat=''
434 d_getgrent=''
435 d_getgrent_r=''
436 getgrent_r_proto=''
437 d_getgrgid_r=''
438 getgrgid_r_proto=''
439 d_getgrnam_r=''
440 getgrnam_r_proto=''
441 d_getgrps=''
442 d_gethbyaddr=''
443 d_gethbyname=''
444 d_gethent=''
445 aphostname=''
446 d_gethname=''
447 d_phostname=''
448 d_uname=''
449 d_gethostbyaddr_r=''
450 gethostbyaddr_r_proto=''
451 d_gethostbyname_r=''
452 gethostbyname_r_proto=''
453 d_gethostent_r=''
454 gethostent_r_proto=''
455 d_gethostprotos=''
456 d_getitimer=''
457 d_getlogin=''
458 d_getlogin_r=''
459 getlogin_r_proto=''
460 d_getmnt=''
461 d_getmntent=''
462 d_getnbyaddr=''
463 d_getnbyname=''
464 d_getnent=''
465 d_getnetbyaddr_r=''
466 getnetbyaddr_r_proto=''
467 d_getnetbyname_r=''
468 getnetbyname_r_proto=''
469 d_getnetent_r=''
470 getnetent_r_proto=''
471 d_getnetprotos=''
472 d_getpagsz=''
473 d_getpent=''
474 d_getpgid=''
475 d_getpgrp2=''
476 d_bsdgetpgrp=''
477 d_getpgrp=''
478 d_getppid=''
479 d_getprior=''
480 d_getpbyname=''
481 d_getpbynumber=''
482 d_getprotobyname_r=''
483 getprotobyname_r_proto=''
484 d_getprotobynumber_r=''
485 getprotobynumber_r_proto=''
486 d_getprotoent_r=''
487 getprotoent_r_proto=''
488 d_getprotoprotos=''
489 d_getprpwnam=''
490 d_getpwent=''
491 d_getpwent_r=''
492 getpwent_r_proto=''
493 d_getpwnam_r=''
494 getpwnam_r_proto=''
495 d_getpwuid_r=''
496 getpwuid_r_proto=''
497 d_getsent=''
498 d_getservbyname_r=''
499 getservbyname_r_proto=''
500 d_getservbyport_r=''
501 getservbyport_r_proto=''
502 d_getservent_r=''
503 getservent_r_proto=''
504 d_getservprotos=''
505 d_getspnam=''
506 d_getspnam_r=''
507 getspnam_r_proto=''
508 d_getsbyname=''
509 d_getsbyport=''
510 d_gmtime_r=''
511 gmtime_r_proto=''
512 d_gnulibc=''
513 gnulibc_version=''
514 d_hasmntopt=''
515 d_htonl=''
516 d_ilogbl=''
517 d_inetaton=''
518 d_int64_t=''
519 d_isascii=''
520 d_isfinite=''
521 d_isinf=''
522 d_isnan=''
523 d_isnanl=''
524 d_killpg=''
525 d_lchown=''
526 d_ldbl_dig=''
527 d_link=''
528 d_localtime_r=''
529 localtime_r_proto=''
530 d_locconv=''
531 d_lockf=''
532 d_longdbl=''
533 longdblsize=''
534 d_longlong=''
535 longlongsize=''
536 d_lseekproto=''
537 d_lstat=''
538 d_madvise=''
539 d_mblen=''
540 d_mbstowcs=''
541 d_mbtowc=''
542 d_memchr=''
543 d_memcmp=''
544 d_memcpy=''
545 d_memmove=''
546 d_memset=''
547 d_mkdir=''
548 d_mkdtemp=''
549 d_mkfifo=''
550 d_mkstemp=''
551 d_mkstemps=''
552 d_mktime=''
553 d_mmap=''
554 mmaptype=''
555 d_modfl=''
556 d_modfl_pow32_bug=''
557 d_modflproto=''
558 d_mprotect=''
559 d_msg=''
560 d_msgctl=''
561 d_msgget=''
562 d_msghdr_s=''
563 d_msgrcv=''
564 d_msgsnd=''
565 d_msync=''
566 d_munmap=''
567 d_nanosleep=''
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_yield=''
584 d_sched_yield=''
585 sched_yield=''
586 d_qgcvt=''
587 d_random_r=''
588 random_r_proto=''
589 d_readdir64_r=''
590 readdir64_r_proto=''
591 d_readdir=''
592 d_rewinddir=''
593 d_seekdir=''
594 d_telldir=''
595 d_readdir_r=''
596 readdir_r_proto=''
597 d_readlink=''
598 d_readv=''
599 d_recvmsg=''
600 d_rename=''
601 d_rmdir=''
602 d_safebcpy=''
603 d_safemcpy=''
604 d_sanemcmp=''
605 d_sbrkproto=''
606 d_scalbnl=''
607 d_select=''
608 d_sem=''
609 d_semctl=''
610 d_semget=''
611 d_semop=''
612 d_sendmsg=''
613 d_setegid=''
614 d_seteuid=''
615 d_setgrent=''
616 d_setgrent_r=''
617 setgrent_r_proto=''
618 d_setgrps=''
619 d_sethent=''
620 d_sethostent_r=''
621 sethostent_r_proto=''
622 d_setitimer=''
623 d_setlinebuf=''
624 d_setlocale=''
625 d_setlocale_r=''
626 setlocale_r_proto=''
627 d_setnent=''
628 d_setnetent_r=''
629 setnetent_r_proto=''
630 d_setpent=''
631 d_setpgid=''
632 d_setpgrp2=''
633 d_bsdsetpgrp=''
634 d_setpgrp=''
635 d_setprior=''
636 d_setproctitle=''
637 d_setprotoent_r=''
638 setprotoent_r_proto=''
639 d_setpwent=''
640 d_setpwent_r=''
641 setpwent_r_proto=''
642 d_setregid=''
643 d_setresgid=''
644 d_setresuid=''
645 d_setreuid=''
646 d_setrgid=''
647 d_setruid=''
648 d_setsent=''
649 d_setservent_r=''
650 setservent_r_proto=''
651 d_setsid=''
652 d_setvbuf=''
653 d_sfio=''
654 usesfio=''
655 d_shm=''
656 d_shmat=''
657 d_shmatprototype=''
658 shmattype=''
659 d_shmctl=''
660 d_shmdt=''
661 d_shmget=''
662 d_sigaction=''
663 d_sigprocmask=''
664 d_sigsetjmp=''
665 d_sockatmark=''
666 d_sockatmarkproto=''
667 d_msg_ctrunc=''
668 d_msg_dontroute=''
669 d_msg_oob=''
670 d_msg_peek=''
671 d_msg_proxy=''
672 d_oldsock=''
673 d_scm_rights=''
674 d_socket=''
675 d_sockpair=''
676 sockethdr=''
677 socketlib=''
678 d_socklen_t=''
679 d_socks5_init=''
680 d_sqrtl=''
681 d_srand48_r=''
682 srand48_r_proto=''
683 d_srandom_r=''
684 srandom_r_proto=''
685 d_sresgproto=''
686 d_sresuproto=''
687 d_statblks=''
688 d_statfs_f_flags=''
689 d_statfs_s=''
690 d_fstatvfs=''
691 d_statvfs=''
692 d_stdio_cnt_lval=''
693 d_stdio_ptr_lval=''
694 d_stdio_ptr_lval_nochange_cnt=''
695 d_stdio_ptr_lval_sets_cnt=''
696 d_stdiobase=''
697 d_stdstdio=''
698 stdio_base=''
699 stdio_bufsiz=''
700 stdio_cnt=''
701 stdio_filbuf=''
702 stdio_ptr=''
703 d_index=''
704 d_strchr=''
705 d_strcoll=''
706 d_strctcpy=''
707 d_strerrm=''
708 d_strerror=''
709 d_sysernlst=''
710 d_syserrlst=''
711 d_strerror_r=''
712 strerror_r_proto=''
713 d_strftime=''
714 d_strtod=''
715 d_strtol=''
716 d_strtold=''
717 d_strtoll=''
718 d_strtoq=''
719 d_strtoul=''
720 d_strtoull=''
721 d_strtouq=''
722 d_strxfrm=''
723 d_symlink=''
724 d_syscall=''
725 d_syscallproto=''
726 d_sysconf=''
727 d_system=''
728 d_tcgetpgrp=''
729 d_tcsetpgrp=''
730 d_telldirproto=''
731 d_time=''
732 timetype=''
733 clocktype=''
734 d_times=''
735 d_tmpnam_r=''
736 tmpnam_r_proto=''
737 d_truncate=''
738 d_ttyname_r=''
739 ttyname_r_proto=''
740 d_tzname=''
741 d_u32align=''
742 d_ualarm=''
743 d_umask=''
744 d_semctl_semid_ds=''
745 d_semctl_semun=''
746 d_union_semun=''
747 d_unordered=''
748 d_usleep=''
749 d_usleepproto=''
750 d_ustat=''
751 d_vfork=''
752 usevfork=''
753 d_voidsig=''
754 signal_t=''
755 d_volatile=''
756 d_charvspr=''
757 d_vprintf=''
758 d_wait4=''
759 d_waitpid=''
760 d_wcstombs=''
761 d_wctomb=''
762 d_writev=''
763 dlext=''
764 cccdlflags=''
765 ccdlflags=''
766 dlsrc=''
767 ld=''
768 lddlflags=''
769 usedl=''
770 doublesize=''
771 ebcdic=''
772 fflushNULL=''
773 fflushall=''
774 fpossize=''
775 fpostype=''
776 gccansipedantic=''
777 gccosandvers=''
778 gccversion=''
779 gidformat=''
780 gidsign=''
781 gidsize=''
782 gidtype=''
783 groupstype=''
784 h_fcntl=''
785 h_sysfile=''
786 html1dir=''
787 html1direxp=''
788 installhtml1dir=''
789 html3dir=''
790 html3direxp=''
791 installhtml3dir=''
792 i_arpainet=''
793 i_crypt=''
794 db_hashtype=''
795 db_prefixtype=''
796 db_version_major=''
797 db_version_minor=''
798 db_version_patch=''
799 i_db=''
800 i_dbm=''
801 i_rpcsvcdbm=''
802 d_dirnamlen=''
803 direntrytype=''
804 i_dirent=''
805 i_dld=''
806 i_dlfcn=''
807 i_fcntl=''
808 i_float=''
809 i_fp=''
810 i_fp_class=''
811 i_gdbm=''
812 d_grpasswd=''
813 i_grp=''
814 i_ieeefp=''
815 i_inttypes=''
816 i_langinfo=''
817 i_libutil=''
818 i_limits=''
819 i_locale=''
820 i_machcthr=''
821 i_malloc=''
822 i_math=''
823 i_memory=''
824 i_mntent=''
825 i_ndbm=''
826 i_netdb=''
827 i_neterrno=''
828 i_netinettcp=''
829 i_niin=''
830 i_sysin=''
831 i_poll=''
832 i_prot=''
833 i_pthread=''
834 d_pwage=''
835 d_pwchange=''
836 d_pwclass=''
837 d_pwcomment=''
838 d_pwexpire=''
839 d_pwgecos=''
840 d_pwpasswd=''
841 d_pwquota=''
842 i_pwd=''
843 i_sfio=''
844 i_shadow=''
845 i_socks=''
846 i_stddef=''
847 i_stdlib=''
848 i_string=''
849 strings=''
850 i_sunmath=''
851 i_sysaccess=''
852 i_sysdir=''
853 i_sysfile=''
854 d_voidtty=''
855 i_bsdioctl=''
856 i_sysfilio=''
857 i_sysioctl=''
858 i_syssockio=''
859 i_syslog=''
860 i_sysmman=''
861 i_sysmode=''
862 i_sysmount=''
863 i_sysndir=''
864 i_sysparam=''
865 i_sysresrc=''
866 i_syssecrt=''
867 i_sysselct=''
868 i_sysstat=''
869 i_sysstatfs=''
870 i_sysstatvfs=''
871 i_systimes=''
872 i_systypes=''
873 i_sysuio=''
874 i_sysun=''
875 i_sysutsname=''
876 i_sysvfs=''
877 i_syswait=''
878 i_sgtty=''
879 i_termio=''
880 i_termios=''
881 d_tm_tm_gmtoff=''
882 d_tm_tm_zone=''
883 i_systime=''
884 i_systimek=''
885 i_time=''
886 timeincl=''
887 i_unistd=''
888 i_ustat=''
889 i_utime=''
890 i_values=''
891 i_stdarg=''
892 i_varargs=''
893 i_varhdr=''
894 i_vfork=''
895 inc_version_list=''
896 inc_version_list_init=''
897 installprefix=''
898 installprefixexp=''
899 installstyle=''
900 installusrbinperl=''
901 intsize=''
902 longsize=''
903 shortsize=''
904 issymlink=''
905 libc=''
906 ldlibpthname=''
907 libperl=''
908 shrpenv=''
909 useshrplib=''
910 glibpth=''
911 libpth=''
912 loclibpth=''
913 plibpth=''
914 xlibpth=''
915 ignore_versioned_solibs=''
916 libs=''
917 libsdirs=''
918 libsfiles=''
919 libsfound=''
920 libspath=''
921 lns=''
922 d_PRIEUldbl=''
923 d_PRIFUldbl=''
924 d_PRIGUldbl=''
925 d_PRIeldbl=''
926 d_PRIfldbl=''
927 d_PRIgldbl=''
928 d_SCNfldbl=''
929 sPRIEUldbl=''
930 sPRIFUldbl=''
931 sPRIGUldbl=''
932 sPRIeldbl=''
933 sPRIfldbl=''
934 sPRIgldbl=''
935 sSCNfldbl=''
936 lseeksize=''
937 lseektype=''
938 make_set_make=''
939 d_mymalloc=''
940 freetype=''
941 mallocobj=''
942 mallocsrc=''
943 malloctype=''
944 usemymalloc=''
945 installman1dir=''
946 man1dir=''
947 man1direxp=''
948 man1ext=''
949 installman3dir=''
950 man3dir=''
951 man3direxp=''
952 man3ext=''
953 modetype=''
954 multiarch=''
955 mydomain=''
956 myhostname=''
957 phostname=''
958 c=''
959 n=''
960 d_eofnblk=''
961 eagain=''
962 o_nonblock=''
963 rd_nodata=''
964 need_va_copy=''
965 netdb_hlen_type=''
966 netdb_host_type=''
967 netdb_name_type=''
968 netdb_net_type=''
969 groupcat=''
970 hostcat=''
971 passcat=''
972 orderlib=''
973 ranlib=''
974 d_perl_otherlibdirs=''
975 otherlibdirs=''
976 package=''
977 spackage=''
978 pager=''
979 api_revision=''
980 api_subversion=''
981 api_version=''
982 api_versionstring=''
983 patchlevel=''
984 perl_patchlevel=''
985 revision=''
986 subversion=''
987 version=''
988 version_patchlevel_string=''
989 perl5=''
990 perladmin=''
991 perlpath=''
992 d_nv_preserves_uv=''
993 i16size=''
994 i16type=''
995 i32size=''
996 i32type=''
997 i64size=''
998 i64type=''
999 i8size=''
1000 i8type=''
1001 ivsize=''
1002 ivtype=''
1003 nv_preserves_uv_bits=''
1004 nvsize=''
1005 nvtype=''
1006 u16size=''
1007 u16type=''
1008 u32size=''
1009 u32type=''
1010 u64size=''
1011 u64type=''
1012 u8size=''
1013 u8type=''
1014 uvsize=''
1015 uvtype=''
1016 ivdformat=''
1017 nvEUformat=''
1018 nvFUformat=''
1019 nvGUformat=''
1020 nveformat=''
1021 nvfformat=''
1022 nvgformat=''
1023 uvXUformat=''
1024 uvoformat=''
1025 uvuformat=''
1026 uvxformat=''
1027 pidtype=''
1028 prefix=''
1029 prefixexp=''
1030 installprivlib=''
1031 privlib=''
1032 privlibexp=''
1033 prototype=''
1034 ptrsize=''
1035 d_PRIXU64=''
1036 d_PRId64=''
1037 d_PRIi64=''
1038 d_PRIo64=''
1039 d_PRIu64=''
1040 d_PRIx64=''
1041 sPRIXU64=''
1042 sPRId64=''
1043 sPRIi64=''
1044 sPRIo64=''
1045 sPRIu64=''
1046 sPRIx64=''
1047 d_quad=''
1048 quadkind=''
1049 quadtype=''
1050 uquadtype=''
1051 drand01=''
1052 randbits=''
1053 randfunc=''
1054 randseedtype=''
1055 seedfunc=''
1056 installscript=''
1057 scriptdir=''
1058 scriptdirexp=''
1059 selectminbits=''
1060 selecttype=''
1061 sh=''
1062 sig_count=''
1063 sig_name=''
1064 sig_name_init=''
1065 sig_num=''
1066 sig_num_init=''
1067 sig_size=''
1068 installsitearch=''
1069 sitearch=''
1070 sitearchexp=''
1071 installsitebin=''
1072 sitebin=''
1073 sitebinexp=''
1074 installsitehtml1=''
1075 sitehtml1=''
1076 sitehtml1exp=''
1077 installsitehtml3=''
1078 sitehtml3=''
1079 sitehtml3exp=''
1080 installsitelib=''
1081 sitelib=''
1082 sitelib_stem=''
1083 sitelibexp=''
1084 installsiteman1=''
1085 siteman1=''
1086 siteman1exp=''
1087 installsiteman3=''
1088 siteman3=''
1089 siteman3exp=''
1090 siteprefix=''
1091 siteprefixexp=''
1092 installsitescript=''
1093 sitescript=''
1094 sitescriptexp=''
1095 sizesize=''
1096 sizetype=''
1097 so=''
1098 socksizetype=''
1099 sharpbang=''
1100 shsharp=''
1101 spitshell=''
1102 src=''
1103 ssizetype=''
1104 startperl=''
1105 startsh=''
1106 stdchar=''
1107 d_stdio_stream_array=''
1108 stdio_stream_array=''
1109 sysman=''
1110 trnl=''
1111 uidformat=''
1112 uidsign=''
1113 uidsize=''
1114 uidtype=''
1115 archname64=''
1116 use64bitall=''
1117 use64bitint=''
1118 usefaststdio=''
1119 ccflags_uselargefiles=''
1120 ldflags_uselargefiles=''
1121 libswanted_uselargefiles=''
1122 uselargefiles=''
1123 uselongdouble=''
1124 usemorebits=''
1125 usemultiplicity=''
1126 nm_opt=''
1127 nm_so_opt=''
1128 runnm=''
1129 usenm=''
1130 useperlio=''
1131 usesocks=''
1132 d_oldpthreads=''
1133 use5005threads=''
1134 useithreads=''
1135 usereentrant=''
1136 usethreads=''
1137 incpath=''
1138 mips_type=''
1139 usrinc=''
1140 d_vendorarch=''
1141 installvendorarch=''
1142 vendorarch=''
1143 vendorarchexp=''
1144 d_vendorbin=''
1145 installvendorbin=''
1146 vendorbin=''
1147 vendorbinexp=''
1148 installvendorhtml1=''
1149 vendorhtml1=''
1150 vendorhtml1exp=''
1151 installvendorhtml3=''
1152 vendorhtml3=''
1153 vendorhtml3exp=''
1154 d_vendorlib=''
1155 installvendorlib=''
1156 vendorlib=''
1157 vendorlib_stem=''
1158 vendorlibexp=''
1159 installvendorman1=''
1160 vendorman1=''
1161 vendorman1exp=''
1162 installvendorman3=''
1163 vendorman3=''
1164 vendorman3exp=''
1165 usevendorprefix=''
1166 vendorprefix=''
1167 vendorprefixexp=''
1168 d_vendorscript=''
1169 installvendorscript=''
1170 vendorscript=''
1171 vendorscriptexp=''
1172 versiononly=''
1173 defvoidused=''
1174 voidflags=''
1175 pm_apiversion=''
1176 xs_apiversion=''
1177 yacc=''
1178 yaccflags=''
1179 CONFIG=''
1180
1181 define='define'
1182 undef='undef'
1183 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
1184 rmlist=''
1185
1186 : We must find out about Eunice early
1187 eunicefix=':'
1188 if test -f /etc/unixtovms; then
1189         eunicefix=/etc/unixtovms
1190 fi
1191 if test -f /etc/unixtovms.exe; then
1192         eunicefix=/etc/unixtovms.exe
1193 fi
1194
1195 : Set executable suffix now -- needed before hints available
1196 if test -f "/libs/version.library"; then
1197 : Amiga OS
1198     _exe=""
1199 elif test -f "/system/gnu_library/bin/ar.pm"; then
1200 : Stratus VOS
1201     _exe=".pm"
1202 elif test -n "$DJGPP"; then
1203 : DOS DJGPP
1204     _exe=".exe"
1205 elif test -d c:/. -o -n "$is_os2" ; then
1206 : OS/2 or cygwin
1207     _exe=".exe"
1208 fi
1209
1210 i_whoami=''
1211 : Possible local include directories to search.
1212 : Set locincpth to "" in a hint file to defeat local include searches.
1213 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1214 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1215 :
1216 : no include file wanted by default
1217 inclwanted=''
1218
1219 siteman1=''
1220 siteman3=''
1221 sitescript=''
1222 : Trailing extension.  Override this in a hint file, if needed.
1223 : Extra object files, if any, needed on this platform.
1224 archobjs=''
1225 groupstype=''
1226 libnames=''
1227 : change the next line if compiling for Xenix/286 on Xenix/386
1228 xlibpth='/usr/lib/386 /lib/386'
1229 : Possible local library directories to search.
1230 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1231 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1232
1233 : general looking path for locating libraries
1234 glibpth="/lib /usr/lib $xlibpth"
1235 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1236 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1237 test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1238
1239 : Private path used by Configure to find libraries.  Its value
1240 : is prepended to libpth. This variable takes care of special
1241 : machines, like the mips.  Usually, it should be empty.
1242 plibpth=''
1243
1244 : default library list
1245 libswanted=''
1246 : some systems want to use only the non-versioned libso:s
1247 ignore_versioned_solibs=''
1248 : full support for void wanted by default
1249 defvoidused=15
1250
1251 ccname=''
1252 ccversion=''
1253 perllibs=''
1254 : set useposix=false in your hint file to disable the POSIX extension.
1255 useposix=true
1256 : set useopcode=false in your hint file to disable the Opcode extension.
1257 useopcode=true
1258 archname64=''
1259 ccflags_uselargefiles=''
1260 ldflags_uselargefiles=''
1261 libswanted_uselargefiles=''
1262 : set usemultiplicity on the Configure command line to enable multiplicity.
1263 : set usesocks on the Configure command line to enable socks.
1264 archname=''
1265 : set usethreads on the Configure command line to enable threads.
1266 usereentrant='undef'
1267 : List of libraries we want.
1268 : If anyone needs -lnet, put it in a hint file.
1269 libswanted='sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl'
1270 libswanted="$libswanted dld ld sun m c cposix posix"
1271 libswanted="$libswanted ndir dir crypt sec"
1272 libswanted="$libswanted ucb bsd BSD PW x util rt posix4"
1273 : We probably want to search /usr/shlib before most other libraries.
1274 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1275 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1276 glibpth="/usr/shlib $glibpth"
1277 : Do not use vfork unless overridden by a hint file.
1278 usevfork=false
1279
1280 : Find the basic shell for Bourne shell scripts
1281 case "$sh" in
1282 '')
1283         case "$SYSTYPE" in
1284         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1285         *) xxx='/bin/sh';;
1286         esac
1287         if test -f "$xxx"; then
1288                 sh="$xxx"
1289         else
1290                 : Build up a list and do a single loop so we can 'break' out.
1291                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1292                 for xxx in sh bash ksh pdksh ash; do
1293                         for p in $pth; do
1294                                 try="$try ${p}/${xxx}"
1295                         done
1296                 done
1297                 for xxx in $try; do
1298                         if test -f "$xxx"; then
1299                                 sh="$xxx";
1300                                 break
1301                         elif test "X$_exe" != X -a -f "$xxx$_exe"; then
1302                                 sh="$xxx";
1303                                 break
1304                         elif test -f "$xxx.exe"; then
1305                                 sh="$xxx";
1306                                 break
1307                         fi
1308                 done
1309         fi
1310         ;;
1311 esac
1312
1313 case "$sh" in
1314 '')     cat >&2 <<EOM
1315 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
1316
1317 Usually it's in /bin/sh.  How did you even get this far?
1318 Please contact me (Perl Maintainers) at perlbug@perl.org and 
1319 we'll try to straighten this all out.
1320 EOM
1321         exit 1
1322         ;;
1323 esac
1324
1325 : see if sh knows # comments
1326 if `$sh -c '#' >/dev/null 2>&1`; then
1327         shsharp=true
1328         spitshell=cat
1329         xcat=/bin/cat
1330         test -f $xcat$_exe || xcat=/usr/bin/cat
1331         if test ! -f $xcat$_exe; then
1332                 for p in `echo $PATH | sed -e "s/$p_/ /g"` $paths; do
1333                         if test -f $p/cat$_exe; then
1334                                 xcat=$p/cat
1335                                 break
1336                         fi
1337                 done
1338                 if test ! -f $xcat$_exe; then
1339                         echo "Can't find cat anywhere!"
1340                         exit 1
1341                 fi
1342         fi
1343         echo "#!$xcat" >sharp
1344         $eunicefix sharp
1345         chmod +x sharp
1346         ./sharp > today
1347         if test -s today; then
1348                 sharpbang='#!'
1349         else
1350                 echo "#! $xcat" > sharp
1351                 $eunicefix sharp
1352                 chmod +x sharp
1353                 ./sharp > today
1354                 if test -s today; then
1355                         sharpbang='#! '
1356                 else
1357                         sharpbang=': use '
1358                 fi
1359         fi
1360 else
1361         echo " "
1362         echo "Your $sh doesn't grok # comments--I will strip them later on."
1363         shsharp=false
1364         cd ..
1365         echo "exec grep -v '^[  ]*#'" >spitshell
1366         chmod +x spitshell
1367         $eunicefix spitshell
1368         spitshell=`pwd`/spitshell
1369         cd UU
1370         echo "I presume that if # doesn't work, #! won't work either!"
1371         sharpbang=': use '
1372 fi
1373 rm -f sharp today
1374
1375 : figure out how to guarantee sh startup
1376 case "$startsh" in
1377 '') startsh=${sharpbang}${sh} ;;
1378 *)
1379 esac
1380 cat >sharp <<EOSS
1381 $startsh
1382 set abc
1383 test "$?abc" != 1
1384 EOSS
1385
1386 chmod +x sharp
1387 $eunicefix sharp
1388 if ./sharp; then
1389         : echo "Yup, it does."
1390 else
1391         echo "Hmm... '$startsh' does not guarantee sh startup..."
1392         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1393 fi
1394 rm -f sharp
1395
1396
1397 : Save command line options in file UU/cmdline.opt for later use in
1398 : generating config.sh.
1399 cat > cmdline.opt <<EOSH
1400 # Configure command line arguments.
1401 config_arg0='$0'
1402 config_args='$*'
1403 config_argc=$#
1404 EOSH
1405 argn=1
1406 args_exp=''
1407 args_sep=''
1408 for arg in "$@"; do
1409         cat >>cmdline.opt <<EOSH
1410 config_arg$argn='$arg'
1411 EOSH
1412         # Extreme backslashitis: replace each ' by '"'"'
1413         cat <<EOC | sed -e "s/'/'"'"'"'"'"'"'/g" > cmdl.opt
1414 $arg
1415 EOC
1416         arg_exp=`cat cmdl.opt`
1417         args_exp="$args_exp$args_sep'$arg_exp'"
1418         argn=`expr $argn + 1`
1419         args_sep=' '
1420 done
1421 # args_exp is good for restarting self: eval "set X $args_exp"; shift; $0 "$@"
1422 # used by ./hints/os2.sh
1423 rm -f cmdl.opt
1424
1425 : produce awk script to parse command line options
1426 cat >options.awk <<'EOF'
1427 BEGIN {
1428         optstr = "A:dD:eEf:hKOrsSU:V";  # getopt-style specification
1429
1430         len = length(optstr);
1431         for (i = 1; i <= len; i++) {
1432                 c = substr(optstr, i, 1);
1433                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1434                 if (a == ":") {
1435                         arg[c] = 1;
1436                         i++;
1437                 }
1438                 opt[c] = 1;
1439         }
1440 }
1441 {
1442         expect = 0;
1443         str = $0;
1444         if (substr(str, 1, 1) != "-") {
1445                 printf("'%s'\n", str);
1446                 next;
1447         }
1448         len = length($0);
1449         for (i = 2; i <= len; i++) {
1450                 c = substr(str, i, 1);
1451                 if (!opt[c]) {
1452                         printf("-%s\n", substr(str, i));
1453                         next;
1454                 }
1455                 printf("-%s\n", c);
1456                 if (arg[c]) {
1457                         if (i < len)
1458                                 printf("'%s'\n", substr(str, i + 1));
1459                         else
1460                                 expect = 1;
1461                         next;
1462                 }
1463         }
1464 }
1465 END {
1466         if (expect)
1467                 print "?";
1468 }
1469 EOF
1470
1471 : process the command line options
1472 set X `for arg in "$@"; do echo "X$arg"; done |
1473         sed -e s/X// | awk -f options.awk`
1474 eval "set $*"
1475 shift
1476 rm -f options.awk
1477
1478 : set up default values
1479 fastread=''
1480 reuseval=false
1481 config_sh=''
1482 alldone=''
1483 error=''
1484 silent=''
1485 extractsh=''
1486 override=''
1487 knowitall=''
1488 rm -f optdef.sh posthint.sh
1489 cat >optdef.sh <<EOS
1490 $startsh
1491 EOS
1492
1493
1494 : option parsing
1495 while test $# -gt 0; do
1496         case "$1" in
1497         -d) shift; fastread=yes;;
1498         -e) shift; alldone=cont;;
1499         -f)
1500                 shift
1501                 cd ..
1502                 if test -r "$1"; then
1503                         config_sh="$1"
1504                 else
1505                         echo "$me: cannot read config file $1." >&2
1506                         error=true
1507                 fi
1508                 cd UU
1509                 shift;;
1510         -h) shift; error=true;;
1511         -r) shift; reuseval=true;;
1512         -s) shift; silent=true; realsilent=true;;
1513         -E) shift; alldone=exit;;
1514         -K) shift; knowitall=true;;
1515         -O) shift; override=true;;
1516         -S) shift; silent=true; extractsh=true;;
1517         -D)
1518                 shift
1519                 case "$1" in
1520                 *=)
1521                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1522                         echo "$me: ignoring -D $1" >&2
1523                         ;;
1524                 *=*) echo "$1" | \
1525                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1526                 *) echo "$1='define'" >> optdef.sh;;
1527                 esac
1528                 shift
1529                 ;;
1530         -U)
1531                 shift
1532                 case "$1" in
1533                 *=) echo "$1" >> optdef.sh;;
1534                 *=*)
1535                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1536                         echo "$me: ignoring -U $1" >&2
1537                         ;;
1538                 *) echo "$1='undef'" >> optdef.sh;;
1539                 esac
1540                 shift
1541                 ;;
1542         -A)
1543             shift
1544             xxx=''
1545             yyy="$1"
1546             zzz=''
1547             uuu=undef
1548             case "$yyy" in
1549             *=*) zzz=`echo "$yyy"|sed 's!=.*!!'`
1550                  case "$zzz" in
1551                  *:*) zzz='' ;;
1552                  *)   xxx=append
1553                       zzz=" "`echo "$yyy"|sed 's!^[^=]*=!!'` 
1554                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1555                  esac
1556                  ;;
1557             esac
1558             case "$xxx" in
1559             '')  case "$yyy" in
1560                  *:*) xxx=`echo "$yyy"|sed 's!:.*!!'`
1561                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'`
1562                       zzz=`echo "$yyy"|sed 's!^[^=]*=!!'`
1563                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1564                  *)   xxx=`echo "$yyy"|sed 's!:.*!!'`
1565                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'` ;;
1566                  esac
1567                  ;;       
1568             esac
1569             case "$xxx" in
1570             append)
1571                 echo "$yyy=\"\${$yyy}$zzz\""    >> posthint.sh ;;
1572             clear)
1573                 echo "$yyy=''"                  >> posthint.sh ;;
1574             define)
1575                 case "$zzz" in
1576                 '') zzz=define ;;
1577                 esac
1578                 echo "$yyy='$zzz'"              >> posthint.sh ;;
1579             eval)
1580                 echo "eval \"$yyy=$zzz\""       >> posthint.sh ;;
1581             prepend)
1582                 echo "$yyy=\"$zzz\${$yyy}\""    >> posthint.sh ;;
1583             undef)
1584                 case "$zzz" in
1585                 '') zzz="$uuu" ;;
1586                 esac
1587                 echo "$yyy=$zzz"                >> posthint.sh ;;
1588             *)  echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1589             esac
1590             shift
1591             ;;
1592         -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1593             exit 0;;
1594         --) break;;
1595         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1596         *) break;;
1597         esac
1598 done
1599
1600 case "$error" in
1601 true)
1602         cat >&2 <<EOM
1603 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1604                  [-U symbol] [-U symbol=] [-A command:symbol...]
1605   -d : use defaults for all answers.
1606   -e : go on without questioning past the production of config.sh.
1607   -f : specify an alternate default configuration file.
1608   -h : print this help message and exit (with an error status).
1609   -r : reuse C symbols value if possible (skips costly nm extraction).
1610   -s : silent mode, only echoes questions and essential information.
1611   -D : define symbol to have some value:
1612          -D symbol         symbol gets the value 'define'
1613          -D symbol=value   symbol gets the value 'value'
1614   -E : stop at the end of questions, after having produced config.sh.
1615   -K : do not use unless you know what you are doing.
1616   -O : let -D and -U override definitions from loaded configuration file.
1617   -S : perform variable substitutions on all .SH files (can mix with -f)
1618   -U : undefine symbol:
1619          -U symbol    symbol gets the value 'undef'
1620          -U symbol=   symbol gets completely empty
1621   -A : manipulate symbol after the platform specific hints have been applied:
1622          -A symbol=value                append " "value to symbol
1623          -A append:symbol=value         append value to symbol
1624          -A define:symbol=value         define symbol to have value
1625          -A clear:symbol                define symbol to be ''
1626          -A define:symbol               define symbol to be 'define'
1627          -A eval:symbol=value           define symbol to be eval of value
1628          -A prepend:symbol=value        prepend value to symbol
1629          -A undef:symbol                define symbol to be 'undef'
1630          -A undef:symbol=               define symbol to be ''
1631   -V : print version number and exit (with a zero status).
1632 EOM
1633         exit 1
1634         ;;
1635 esac
1636
1637 : Sanity checks
1638 case "$fastread$alldone" in
1639 yescont|yesexit) ;;
1640 *)
1641         case "$extractsh" in
1642         true) ;;
1643         *)
1644                 if test ! -t 0; then
1645                         echo "Say 'sh Configure', not 'sh <Configure'"
1646                         exit 1
1647                 fi
1648                 ;;
1649         esac
1650         ;;
1651 esac
1652
1653 exec 4>&1
1654 case "$silent" in
1655 true) exec 1>/dev/null;;
1656 esac
1657
1658 : run the defines and the undefines, if any, but leave the file out there...
1659 touch optdef.sh
1660 . ./optdef.sh
1661 : create the posthint manipulation script and leave the file out there...
1662 touch posthint.sh
1663
1664 : set package name
1665 package=perl5
1666 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1667 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1668 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1669 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1670 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1671 esac
1672
1673 : Some greps do not return status, grrr.
1674 echo "grimblepritz" >grimble
1675 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1676         contains=contains
1677 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1678         contains=grep
1679 else
1680         contains=contains
1681 fi
1682 rm -f grimble
1683 : the following should work in any shell
1684 case "$contains" in
1685 contains*)
1686         echo " "
1687         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1688         cat >contains <<'EOSS'
1689 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1690 EOSS
1691 chmod +x contains
1692 esac
1693
1694 : Find the path to the source tree
1695 case "$src" in
1696 '') case "$0" in
1697     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1698          case "$src" in
1699          /*)    ;;
1700          .)     ;;
1701          *)     src=`cd ../$src && pwd` ;;
1702          esac
1703          ;;
1704     *)   src='.';;
1705     esac;;
1706 esac
1707 case "$src" in
1708 '')     src=/
1709         rsrc=/
1710         ;;
1711 /*) rsrc="$src";;
1712 *) rsrc="../$src";;
1713 esac
1714 if test -f $rsrc/Configure && \
1715         $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1716 then
1717    : found it, so we are ok.
1718 else
1719         rsrc=''
1720         for src in . .. ../.. ../../.. ../../../..; do
1721                 if test -f ../$src/Configure && \
1722                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1723                 then
1724                         rsrc=../$src
1725                         break
1726                 fi
1727         done
1728 fi
1729 case "$rsrc" in
1730 '')
1731         cat <<EOM >&4
1732
1733 Sorry, I can't seem to locate the source dir for $package.  Please start
1734 Configure with an explicit path -- i.e. /some/path/Configure.
1735
1736 EOM
1737         exit 1
1738         ;;
1739 ../.)   rsrc='..';;
1740 *)
1741         echo " "
1742         echo "Sources for $package found in \"$src\"." >&4
1743         ;;
1744 esac
1745
1746 : script used to extract .SH files with variable substitutions
1747 cat >extract <<'EOS'
1748 PERL_CONFIG_SH=true
1749 echo "Doing variable substitutions on .SH files..."
1750 if test -f MANIFEST; then
1751         set x `awk '{print $1}' < MANIFEST | grep '\.SH$'`
1752 else
1753         echo "(Looking for .SH files under the source directory.)"
1754         set x `(cd "$src"; find . -name "*.SH" -print)`
1755 fi
1756 shift
1757 case $# in
1758 0) set x `(cd "$src"; echo *.SH)`; shift;;
1759 esac
1760 if test ! -f "$src/$1"; then
1761         shift
1762 fi
1763 mkdir_p='
1764 name=$1;
1765 create="";
1766 while test $name; do
1767         if test ! -d "$name"; then
1768                 create="$name $create";
1769                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1770                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1771         else
1772                 name="";
1773         fi;
1774 done;
1775 for file in $create; do
1776         mkdir $file;
1777 done
1778 '
1779 for file in $*; do
1780         case "$src" in
1781         ".")
1782                 case "$file" in
1783                 */*)
1784                         dir=`expr X$file : 'X\(.*\)/'`
1785                         file=`expr X$file : 'X.*/\(.*\)'`
1786                         (cd "$dir" && . ./$file)
1787                         ;;
1788                 *)
1789                         . ./$file
1790                         ;;
1791                 esac
1792                 ;;
1793         *)
1794                 case "$file" in
1795                 */*)
1796                         dir=`expr X$file : 'X\(.*\)/'`
1797                         file=`expr X$file : 'X.*/\(.*\)'`
1798                         (set x $dir; shift; eval $mkdir_p)
1799                         sh <"$src/$dir/$file"
1800                         ;;
1801                 *)
1802                         sh <"$src/$file"
1803                         ;;
1804                 esac
1805                 ;;
1806         esac
1807 done
1808 if test -f "$src/config_h.SH"; then
1809         if test ! -f config.h; then
1810         : oops, they left it out of MANIFEST, probably, so do it anyway.
1811         . "$src/config_h.SH"
1812         fi
1813 fi
1814 EOS
1815
1816 : extract files and exit if asked to do so
1817 case "$extractsh" in
1818 true)
1819         case "$realsilent" in
1820         true) ;;
1821         *) exec 1>&4;;
1822         esac
1823         case "$config_sh" in
1824         '') config_sh='config.sh';;
1825         esac
1826         echo " "
1827         echo "Fetching answers from $config_sh..."
1828         cd ..
1829         . $config_sh
1830         test "$override" && . ./optdef.sh
1831         echo " "
1832         . UU/extract
1833         rm -rf UU
1834         echo "Extraction done."
1835         exit 0
1836         ;;
1837 esac
1838
1839 : Eunice requires " " instead of "", can you believe it
1840 echo " "
1841 : Here we go...
1842 echo "Beginning of configuration questions for $package."
1843
1844 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1845
1846 : first determine how to suppress newline on echo command
1847 echo " "
1848 echo "Checking echo to see how to suppress newlines..."
1849 (echo "hi there\c" ; echo " ") >.echotmp
1850 if $contains c .echotmp >/dev/null 2>&1 ; then
1851         echo "...using -n."
1852         n='-n'
1853         c=''
1854 else
1855         cat <<'EOM'
1856 ...using \c
1857 EOM
1858         n=''
1859         c='\c'
1860 fi
1861 echo $n "The star should be here-->$c"
1862 echo '*'
1863 rm -f .echotmp
1864
1865 : Now test for existence of everything in MANIFEST
1866 echo " "
1867 if test -f "$rsrc/MANIFEST"; then
1868         echo "First let's make sure your kit is complete.  Checking..." >&4
1869         awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | (split -l 50 2>/dev/null || split -50)
1870         rm -f missing
1871         tmppwd=`pwd`
1872         for filelist in x??; do
1873                 (cd "$rsrc"; ls `cat "$tmppwd/$filelist"` >/dev/null 2>>"$tmppwd/missing")
1874         done
1875         if test -s missing; then
1876                 cat missing >&4
1877                 cat >&4 <<'EOM'
1878
1879 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1880
1881 You have the option of continuing the configuration process, despite the
1882 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1883 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1884 and contact the author (perlbug@perl.org).
1885
1886 EOM
1887                 echo $n "Continue? [n] $c" >&4
1888                 read ans
1889                 case "$ans" in
1890                 y*)
1891                         echo "Continuing..." >&4
1892                         rm -f missing
1893                         ;;
1894                 *)
1895                         echo "ABORTING..." >&4
1896                         kill $$
1897                         ;;
1898                 esac
1899         else
1900                 echo "Looks good..."
1901         fi
1902 else
1903         echo "There is no MANIFEST file.  I hope your kit is complete !"
1904 fi
1905 rm -f missing x??
1906
1907 echo " "
1908 : Find the appropriate value for a newline for tr
1909 if test -n "$DJGPP"; then
1910        trnl='\012'
1911 fi
1912 if test X"$trnl" = X; then
1913         case "`echo foo|tr '\n' x 2>/dev/null`" in
1914         foox) trnl='\n' ;;
1915         esac
1916 fi
1917 if test X"$trnl" = X; then
1918         case "`echo foo|tr '\012' x 2>/dev/null`" in
1919         foox) trnl='\012' ;;
1920         esac
1921 fi
1922 if test X"$trnl" = X; then
1923        case "`echo foo|tr '\r\n' xy 2>/dev/null`" in
1924        fooxy) trnl='\n\r' ;;
1925        esac
1926 fi
1927 if test X"$trnl" = X; then
1928         cat <<EOM >&2
1929
1930 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1931
1932 EOM
1933         exit 1
1934 fi
1935
1936 : compute the number of columns on the terminal for proper question formatting
1937 case "$COLUMNS" in
1938 '') COLUMNS='80';;
1939 esac
1940
1941 : set up the echo used in my read
1942 myecho="case \"\$xxxm\" in
1943 '') echo $n \"\$rp $c\" >&4;;
1944 *) case \"\$rp\" in
1945         '') echo $n \"[\$xxxm] $c\";;
1946         *)
1947                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
1948                         echo \"\$rp\" >&4
1949                         echo $n \"[\$xxxm] $c\" >&4
1950                 else
1951                         echo $n \"\$rp [\$xxxm] $c\" >&4
1952                 fi
1953                 ;;
1954         esac;;
1955 esac"
1956
1957 : now set up to do reads with possible shell escape and default assignment
1958 cat <<EOSC >myread
1959 $startsh
1960 xxxm=\$dflt
1961 $myecho
1962 ans='!'
1963 case "\$fastread" in
1964 yes) case "\$dflt" in
1965         '') ;;
1966         *) ans='';
1967                 case "\$silent-\$rp" in
1968                 true-) ;;
1969                 *) echo " " >&4;;
1970                 esac;;
1971         esac;;
1972 *) case "\$silent" in
1973         true) case "\$rp" in
1974                 '') ans='';;
1975                 esac;;
1976         esac;;
1977 esac
1978 while expr "X\$ans" : "X!" >/dev/null; do
1979         read answ
1980         set x \$xxxm
1981         shift
1982         aok=''; eval "ans=\\"\$answ\\"" && aok=y
1983         case  "\$answ" in
1984         "!")
1985                 sh 1>&4
1986                 echo " "
1987                 $myecho
1988                 ;;
1989         !*)
1990                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
1991                 shift
1992                 sh 1>&4 -c "\$*"
1993                 echo " "
1994                 $myecho
1995                 ;;
1996         "\$ans")
1997                 case "\$ans" in
1998                 \\&*)
1999                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
2000                         shift
2001                         case "\$1" in
2002                         -d)
2003                                 fastread=yes
2004                                 echo "(OK, I'll run with -d after this question.)" >&4
2005                                 ;;
2006                         -*)
2007                                 echo "*** Sorry, \$1 not supported yet." >&4
2008                                 ;;
2009                         esac
2010                         $myecho
2011                         ans=!
2012                         ;;
2013                 esac;;
2014         *)
2015                 case "\$aok" in
2016                 y)
2017                         echo "*** Substitution done -- please confirm."
2018                         xxxm="\$ans"
2019                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
2020                         xxxm="\$ans"
2021                         ans=!
2022                         ;;
2023                 *)
2024                         echo "*** Error -- try again."
2025                         ans=!
2026                         ;;
2027                 esac
2028                 $myecho
2029                 ;;
2030         esac
2031         case "\$ans\$xxxm\$nostick" in
2032         '')
2033                 ans=!
2034                 $myecho
2035                 ;;
2036         esac
2037 done
2038 case "\$ans" in
2039 '') ans="\$xxxm";;
2040 esac
2041 EOSC
2042
2043 : create .config dir to save info across Configure sessions
2044 test -d ../.config || mkdir ../.config
2045 cat >../.config/README <<EOF
2046 This directory created by Configure to save information that should
2047 persist across sessions for $package.
2048
2049 You may safely delete it if you wish.
2050 EOF
2051
2052 xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
2053 case "$usedevel" in
2054 $define|true|[yY]*) ;;
2055 *) case "$xversion" in
2056    *[13579])
2057         cat >&4 <<EOH
2058 *** WHOA THERE!!! ***
2059
2060     This is an UNSTABLE DEVELOPMENT release.
2061     The version of this $package distribution is $xversion, that is, odd,
2062     (as opposed to even) and that signifies a development release.
2063     If you want a maintenance release, you want an even-numbered version.
2064
2065     Do ***NOT*** install this into production use.
2066     Data corruption and crashes are possible.
2067
2068     It is most seriously suggested that you do not continue any further
2069     unless you want to help in developing and debugging Perl.
2070
2071     If you *still* want to build perl, you can answer 'y' now,
2072     or pass -Dusedevel to Configure.
2073
2074 EOH
2075         rp='Do you really want to continue?'
2076         dflt='n'
2077         . ./myread
2078         case "$ans" in
2079         [yY]) echo >&4 "Okay, continuing."
2080               usedevel="$define" ;;
2081         *) echo >&4 "Okay, bye."
2082            exit 1
2083            ;;
2084         esac
2085         ;;
2086     esac
2087     ;;
2088 esac
2089 case "$usedevel" in
2090 $define|true|[yY]*)
2091         case "$versiononly" in
2092         '') versiononly="$define" ;;
2093         esac
2094         case "$installusrbinperl" in
2095         '') installusrbinperl="$undef" ;;
2096         esac
2097         ;;
2098 esac
2099
2100 : general instructions
2101 needman=true
2102 firsttime=true
2103 user=`(logname) 2>/dev/null`
2104 case "$user" in
2105 '') user=`whoami 2>&1`;;
2106 esac
2107 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2108         firsttime=false
2109         echo " "
2110         rp='Would you like to see the instructions?'
2111         dflt=n
2112         . ./myread
2113         case "$ans" in
2114         [yY]*) ;;
2115         *) needman=false;;
2116         esac
2117 fi
2118 if $needman; then
2119         cat <<EOH
2120
2121 This installation shell script will examine your system and ask you questions
2122 to determine how the perl5 package should be installed. If you get
2123 stuck on a question, you may use a ! shell escape to start a subshell or
2124 execute a command.  Many of the questions will have default answers in square
2125 brackets; typing carriage return will give you the default.
2126
2127 On some of the questions which ask for file or directory names you are allowed
2128 to use the ~name construct to specify the login directory belonging to "name",
2129 even if you don't have a shell which knows about that.  Questions where this is
2130 allowed will be marked "(~name ok)".
2131
2132 EOH
2133         rp=''
2134         dflt='Type carriage return to continue'
2135         . ./myread
2136         cat <<'EOH'
2137
2138 The prompter used in this script allows you to use shell variables and
2139 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
2140 in the default answer, as if the default line was a set of arguments given to a
2141 script shell.  This means you may also use $* to repeat the whole default line,
2142 so you do not have to re-type everything to add something to the default.
2143
2144 Everytime there is a substitution, you will have to confirm.  If there is an
2145 error (e.g. an unmatched backtick), the default answer will remain unchanged
2146 and you will be prompted again.
2147
2148 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
2149 the questions and use the computed defaults (or the previous answers if there
2150 was already a config.sh file). Type 'Configure -h' for a list of options.
2151 You may also start interactively and then answer '& -d' at any prompt to turn
2152 on the non-interactive behaviour for the remainder of the execution.
2153
2154 EOH
2155         . ./myread
2156         cat <<EOH
2157
2158 Much effort has been expended to ensure that this shell script will run on any
2159 Unix system.  If despite that it blows up on yours, your best bet is to edit
2160 Configure and run it again.  If you can't run Configure for some reason,
2161 you'll have to generate a config.sh file by hand.  Whatever problems you
2162 have, let me (perlbug@perl.org) know how I blew it.
2163
2164 This installation script affects things in two ways:
2165
2166 1) it may do direct variable substitutions on some of the files included
2167    in this kit.
2168 2) it builds a config.h file for inclusion in C programs.  You may edit
2169    any of these files as the need arises after running this script.
2170
2171 If you make a mistake on a question, there is no easy way to back up to it
2172 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
2173 files.  Configure will offer to let you do this before it runs the SH files.
2174
2175 EOH
2176         dflt='Type carriage return to continue'
2177         . ./myread
2178         case "$firsttime" in
2179         true) echo $user >>../.config/instruct;;
2180         esac
2181 fi
2182
2183 : find out where common programs are
2184 echo " "
2185 echo "Locating common programs..." >&4
2186 cat <<EOSC >loc
2187 $startsh
2188 case \$# in
2189 0) exit 1;;
2190 esac
2191 thing=\$1
2192 shift
2193 dflt=\$1
2194 shift
2195 for dir in \$*; do
2196         case "\$thing" in
2197         .)
2198         if test -d \$dir/\$thing; then
2199                 echo \$dir
2200                 exit 0
2201         fi
2202         ;;
2203         *)
2204         for thisthing in \$dir/\$thing; do
2205                 : just loop through to pick last item
2206         done
2207         if test -f \$thisthing; then
2208                 echo \$thisthing
2209                 exit 0
2210         elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2211                 echo \$thisthing
2212                 exit 0
2213         elif test -f \$dir/\$thing.exe; then
2214                 if test -n "$DJGPP"; then
2215                         echo \$dir/\$thing.exe
2216                 elif test "$eunicefix" != ":"; then
2217                         : on Eunice apparently
2218                         echo \$dir/\$thing
2219                         exit 0
2220                 fi
2221                 exit 0
2222         fi
2223         ;;
2224         esac
2225 done
2226 echo \$dflt
2227 exit 1
2228 EOSC
2229 chmod +x loc
2230 $eunicefix loc
2231 loclist="
2232 awk
2233 cat
2234 chmod
2235 comm
2236 cp
2237 echo
2238 expr
2239 grep
2240 ls
2241 mkdir
2242 rm
2243 sed
2244 sort
2245 touch
2246 tr
2247 uniq
2248 "
2249 trylist="
2250 Mcc
2251 ar
2252 bison
2253 byacc
2254 cpp
2255 csh
2256 date
2257 egrep
2258 gmake
2259 gzip
2260 less
2261 ln
2262 make
2263 more
2264 nm
2265 nroff
2266 pg
2267 test
2268 uname
2269 zip
2270 "
2271 pth=`echo $PATH | sed -e "s/$p_/ /g"`
2272 pth="$pth /lib /usr/lib"
2273 for file in $loclist; do
2274         eval xxx=\$$file
2275         case "$xxx" in
2276         /*|?:[\\/]*)
2277                 if test -f "$xxx"; then
2278                         : ok
2279                 else
2280                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2281                         xxx=`./loc $file $file $pth`
2282                 fi
2283                 ;;
2284         '') xxx=`./loc $file $file $pth`;;
2285         *) xxx=`./loc $xxx $xxx $pth`;;
2286         esac
2287         eval $file=$xxx$_exe
2288         eval _$file=$xxx
2289         case "$xxx" in
2290         /*)
2291                 echo $file is in $xxx.
2292                 ;;
2293         ?:[\\/]*)
2294                 echo $file is in $xxx.
2295                 ;;
2296         *)
2297                 echo "I don't know where '$file' is, and my life depends on it." >&4
2298                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2299                 exit 1
2300                 ;;
2301         esac
2302 done
2303 echo " "
2304 echo "Don't worry if any of the following aren't found..."
2305 say=offhand
2306 for file in $trylist; do
2307         eval xxx=\$$file
2308         case "$xxx" in
2309         /*|?:[\\/]*)
2310                 if test -f "$xxx"; then
2311                         : ok
2312                 else
2313                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2314                         xxx=`./loc $file $file $pth`
2315                 fi
2316                 ;;
2317         '') xxx=`./loc $file $file $pth`;;
2318         *) xxx=`./loc $xxx $xxx $pth`;;
2319         esac
2320         eval $file=$xxx$_exe
2321         eval _$file=$xxx
2322         case "$xxx" in
2323         /*)
2324                 echo $file is in $xxx.
2325                 ;;
2326         ?:[\\/]*)
2327                 echo $file is in $xxx.
2328                 ;;
2329         *)
2330                 echo "I don't see $file out there, $say."
2331                 say=either
2332                 ;;
2333         esac
2334 done
2335 case "$egrep" in
2336 egrep)
2337         echo "Substituting grep for egrep."
2338         egrep=$grep
2339         _egrep=$grep
2340         ;;
2341 esac
2342 case "$ln" in
2343 ln)
2344         echo "Substituting cp for ln."
2345         ln=$cp
2346         _ln=$cp
2347         ;;
2348 esac
2349 case "$make" in
2350 make)   
2351         case "$gmake" in
2352         gmake)
2353         echo "I can't find make or gmake, and my life depends on it." >&4
2354         echo "Go find a public domain implementation or fix your PATH setting!" >&4
2355         exit 1
2356         ;;
2357         esac
2358         ;;
2359 esac    
2360 case "$gmake" in
2361 gmake)  ;;
2362 *)      # We can't have osname yet.
2363         if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2364                 # Assume that gmake, if found, is definitely GNU make
2365                 # and prefer it over the system make.
2366                 echo "Substituting gmake for make."
2367                 make=$gmake
2368                 _make=$gmake
2369         fi
2370         ;;
2371 esac
2372 case "$test" in
2373 test)
2374         echo "Hopefully test is built into your sh."
2375         ;;
2376 *)
2377         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2378                 echo "Using the test built into your sh."
2379                 test=test
2380                 _test=test
2381         fi
2382         ;;
2383 esac
2384 case "$echo" in
2385 echo)
2386         echo "Hopefully echo is built into your sh."
2387         ;;
2388 '') ;;
2389 *)
2390         echo " "
2391 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2392         $echo $n "hi there$c" >foo1
2393         echo $n "hi there$c" >foo2
2394         if cmp foo1 foo2 >/dev/null 2>&1; then
2395                 echo "They are compatible.  In fact, they may be identical."
2396         else
2397                 case "$n" in
2398                 '-n') n='' c='\c';;
2399                 *) n='-n' c='';;
2400                 esac
2401                 cat <<FOO
2402 They are not compatible!  You are probably running ksh on a non-USG system.
2403 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2404 have echo built in and we may have to run some Bourne shell scripts.  That
2405 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2406
2407 FOO
2408                 $echo $n "The star should be here-->$c"
2409                 $echo "*"
2410         fi
2411         $rm -f foo1 foo2
2412         ;;
2413 esac
2414
2415 cat <<EOS >trygcc
2416 $startsh
2417 EOS
2418 cat <<'EOSC' >>trygcc
2419 case "$cc" in
2420 '') ;;
2421 *)  $rm -f try try.*
2422     $cat >try.c <<EOM
2423 int main(int argc, char *argv[]) {
2424   return 0;
2425 }
2426 EOM
2427     if $cc -o try $ccflags $ldflags try.c; then
2428        :
2429     else
2430         echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2431         despair=yes
2432         trygcc=yes
2433         case "$cc" in
2434         *gcc*) trygcc=no ;;
2435         esac
2436         case "`$cc -v -c try.c 2>&1`" in
2437         *gcc*) trygcc=no ;;
2438         esac
2439         if $test X"$trygcc" = Xyes; then
2440             if gcc -o try -c try.c; then
2441                 echo " "
2442                 echo "You seem to have a working gcc, though." >&4
2443                 rp="Would you like to use it?"
2444                 dflt=y
2445                 if $test -f myread; then
2446                     . ./myread
2447                 else
2448                     if $test -f UU/myread; then
2449                         . ./UU/myread
2450                     else
2451                         echo "Cannot find myread, sorry.  Aborting." >&2
2452                         exit 1
2453                     fi
2454                 fi  
2455                 case "$ans" in
2456                 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2457                        if $test -f usethreads.cbu; then
2458                            $cat >&4 <<EOM 
2459
2460 *** However, any setting of the C compiler flags (e.g. for thread support)
2461 *** has been lost.  It may be necessary to pass -Dcc=gcc to Configure
2462 *** (together with e.g. -Dusethreads).
2463
2464 EOM
2465                        fi;;
2466                 esac
2467             fi
2468         fi
2469     fi
2470     $rm -f try try.*
2471     ;;
2472 esac
2473 EOSC
2474
2475 cat <<EOS >checkcc
2476 $startsh
2477 EOS
2478 cat <<'EOSC' >>checkcc
2479 case "$cc" in        
2480 '') ;;
2481 *)  $rm -f try try.*              
2482     $cat >try.c <<EOM
2483 int main(int argc, char *argv[]) {
2484   return 0;
2485 }
2486 EOM
2487     if $cc -o try $ccflags $ldflags try.c; then
2488        :
2489     else
2490         if $test X"$despair" = Xyes; then
2491            echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2492         fi
2493         $cat >&4 <<EOM         
2494 You need to find a working C compiler.
2495 Either (purchase and) install the C compiler supplied by your OS vendor,
2496 or for a free C compiler try http://gcc.gnu.org/
2497 I cannot continue any further, aborting.
2498 EOM
2499         exit 1
2500     fi
2501     $rm -f try try.*
2502     ;;
2503 esac
2504 EOSC
2505
2506 : determine whether symbolic links are supported
2507 echo " "
2508 $touch blurfl
2509 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2510         echo "Symbolic links are supported." >&4
2511         lns="$ln -s"
2512 else
2513         echo "Symbolic links are NOT supported." >&4
2514         lns="$ln"
2515 fi
2516 $rm -f blurfl sym
2517
2518 : determine whether symbolic links are supported
2519 echo " "
2520 case "$lns" in
2521 *"ln"*" -s")
2522         echo "Checking how to test for symbolic links..." >&4
2523         $lns blurfl sym
2524         if $test "X$issymlink" = X; then
2525                 case "$newsh" in
2526                 '') sh     -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2527                 *)  $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2528                 esac
2529                 if test $? = 0; then
2530                         issymlink="test -h"
2531                 else
2532                         echo "Your builtin 'test -h' may be broken." >&4
2533                         case "$test" in
2534                         /*)     ;;
2535                         *)      pth=`echo $PATH | sed -e "s/$p_/ /g"`
2536                                 for p in $pth
2537                                 do
2538                                         if test -f "$p/$test"; then
2539                                                 test="$p/$test"
2540                                                 break
2541                                         fi
2542                                 done
2543                                 ;;
2544                         esac
2545                         case "$test" in
2546                         /*)
2547                                 echo "Trying external '$test -h'." >&4
2548                                 issymlink="$test -h"
2549                                 if $test ! -h sym >/dev/null 2>&1; then
2550                                         echo "External '$test -h' is broken, too." >&4
2551                                         issymlink=''
2552                                 fi
2553                                 ;;
2554                         *)      issymlink='' ;;
2555                         esac
2556                 fi              
2557         fi
2558         if $test "X$issymlink" = X; then
2559                 if $test -L sym 2>/dev/null; then
2560                         issymlink="$test -L"
2561                         echo "The builtin '$test -L' worked." >&4
2562                 fi
2563         fi
2564         if $test "X$issymlink" != X; then
2565                 echo "You can test for symbolic links with '$issymlink'." >&4
2566         else
2567                 echo "I do not know how you can test for symbolic links." >&4
2568         fi
2569         $rm -f blurfl sym
2570         ;;
2571 *)      echo "No symbolic links, so not testing for their testing..." >&4
2572         ;;
2573 esac
2574 echo " "
2575
2576
2577 case "$mksymlinks" in
2578 $define|true|[yY]*)
2579         case "$src" in
2580         ''|'.') echo "Cannot create symlinks in the original directory." >&4
2581                 exit 1
2582                 ;;
2583         *)      case "$lns:$issymlink" in
2584                 *"ln"*" -s:"*"test -"?)
2585                         echo "Creating the symbolic links..." >&4
2586                         echo "(First creating the subdirectories...)" >&4
2587                         cd ..
2588                         awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2589                                 read directory
2590                                 test -z "$directory" && break
2591                                 mkdir -p $directory
2592                         done
2593                         # Sanity check 1.
2594                         if test ! -d t/base; then
2595                                 echo "Failed to create the subdirectories.  Aborting." >&4
2596                                 exit 1
2597                         fi
2598                         echo "(Then creating the symlinks...)" >&4
2599                         awk '{print $1}' $src/MANIFEST | while true; do
2600                                 read filename
2601                                 test -z "$filename" && break
2602                                 if test -f $filename; then
2603                                         if $issymlink $filename; then
2604                                                 rm -f $filename
2605                                         fi
2606                                 fi
2607                                 if test -f $filename; then
2608                                         echo "$filename already exists, not symlinking."
2609                                 else
2610                                         ln -s $src/$filename $filename
2611                                 fi
2612                         done
2613                         # Sanity check 2.
2614                         if test ! -f t/base/lex.t; then
2615                                 echo "Failed to create the symlinks (t/base/lex.t missing).  Aborting." >&4
2616                                 exit 1
2617                         fi
2618                         cd UU
2619                         ;;
2620                 *)      echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2621                         ;;
2622                 esac
2623                 ;;
2624         esac
2625         ;;
2626 esac
2627
2628
2629 case "$usecrosscompile" in
2630 $define|true|[yY]*)
2631         $echo "Cross-compiling..."
2632         croak=''
2633         case "$cc" in
2634         *-*-gcc) # A cross-compiling gcc, probably.
2635             targetarch=`$echo $cc|$sed 's/-gcc$//'`
2636             ar=$targetarch-ar
2637             # leave out ld, choosing it is more complex
2638             nm=$targetarch-nm
2639             ranlib=$targetarch-ranlib
2640             $echo 'extern int foo;' > try.c
2641             set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2642             shift
2643             if $test $# -gt 0; then
2644                 incpth="$incpth $*"
2645                 incpth="`$echo $incpth|$sed 's/^ //'`"
2646                 echo "Guessing incpth '$incpth'." >&4
2647                 for i in $*; do
2648                     j="`$echo $i|$sed 's,/include$,/lib,'`"
2649                     if $test -d $j; then
2650                         libpth="$libpth $j"
2651                     fi
2652                 done   
2653                 libpth="`$echo $libpth|$sed 's/^ //'`"
2654                 echo "Guessing libpth '$libpth'." >&4
2655             fi
2656             $rm -f try.c
2657             ;;
2658         esac
2659         case "$targetarch" in
2660         '') echo "Targetarch not defined." >&4; croak=y ;;
2661         *)  echo "Using targetarch $targetarch." >&4 ;;
2662         esac
2663         case "$incpth" in
2664         '') echo "Incpth not defined." >&4; croak=y ;;
2665         *)  echo "Using incpth '$incpth'." >&4 ;;
2666         esac
2667         case "$libpth" in
2668         '') echo "Libpth not defined." >&4; croak=y ;;
2669         *)  echo "Using libpth '$libpth'." >&4 ;;
2670         esac
2671         case "$usrinc" in
2672         '') for i in $incpth; do
2673                 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2674                     usrinc=$i
2675                     echo "Guessing usrinc $usrinc." >&4
2676                     break
2677                 fi
2678             done
2679             case "$usrinc" in
2680             '') echo "Usrinc not defined." >&4; croak=y ;;
2681             esac
2682             ;;
2683         *)  echo "Using usrinc $usrinc." >&4 ;;
2684         esac
2685         case "$targethost" in
2686         '') echo "Targethost not defined." >&4; croak=y ;;
2687         *)  echo "Using targethost $targethost." >&4
2688         esac
2689         locincpth=' '
2690         loclibpth=' '
2691         case "$croak" in
2692         y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2693         esac
2694         case "$src" in
2695         /*) run=$src/Cross/run
2696             targetmkdir=$src/Cross/mkdir
2697             to=$src/Cross/to
2698             from=$src/Cross/from
2699             ;;
2700         *)  pwd=`$test -f ../Configure & cd ..; pwd`
2701             run=$pwd/Cross/run
2702             targetmkdir=$pwd/Cross/mkdir
2703             to=$pwd/Cross/to
2704             from=$pwd/Cross/from
2705             ;;
2706         esac
2707         case "$targetrun" in
2708         '') targetrun=ssh ;;
2709         esac
2710         case "$targetto" in
2711         '') targetto=scp ;;
2712         esac
2713         case "$targetfrom" in
2714         '') targetfrom=scp ;;
2715         esac
2716         run=$run-$targetrun
2717         to=$to-$targetto
2718         from=$from-$targetfrom
2719         case "$targetdir" in
2720         '')  targetdir=/tmp
2721              echo "Guessing targetdir $targetdir." >&4
2722              ;;
2723         esac
2724         case "$targetuser" in
2725         '')  targetuser=root
2726              echo "Guessing targetuser $targetuser." >&4
2727              ;;
2728         esac
2729         case "$targetfrom" in
2730         scp)    q=-q ;;
2731         *)      q='' ;;
2732         esac
2733         case "$targetrun" in
2734         ssh|rsh)
2735             cat >$run <<EOF
2736 #!/bin/sh
2737 case "\$1" in
2738 -cwd)
2739   shift
2740   cwd=\$1
2741   shift
2742   ;;
2743 esac
2744 case "\$cwd" in
2745 '') cwd=$targetdir ;;
2746 esac
2747 exe=\$1
2748 shift
2749 if $test ! -f \$exe.xok; then
2750   $to \$exe
2751   $touch \$exe.xok
2752 fi
2753 $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2754 EOF
2755             ;;
2756         *)  echo "Unknown targetrun '$targetrun'" >&4
2757             exit 1
2758             ;;
2759         esac
2760         case "$targetmkdir" in
2761         */Cross/mkdir)
2762             cat >$targetmkdir <<EOF
2763 #!/bin/sh
2764 $targetrun -l $targetuser $targethost "mkdir -p \$@"
2765 EOF
2766             $chmod a+rx $targetmkdir
2767             ;;
2768         *)  echo "Unknown targetmkdir '$targetmkdir'" >&4
2769             exit 1
2770             ;;
2771         esac
2772         case "$targetto" in
2773         scp|rcp)
2774             cat >$to <<EOF
2775 #!/bin/sh
2776 for f in \$@
2777 do
2778   case "\$f" in
2779   /*)
2780     $targetmkdir \`dirname \$f\`
2781     $targetto $q \$f $targetuser@$targethost:\$f            || exit 1
2782     ;;
2783   *)
2784     $targetmkdir $targetdir/\`dirname \$f\`
2785     $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2786     ;;
2787   esac
2788 done
2789 exit 0
2790 EOF
2791             ;;
2792         cp) cat >$to <<EOF
2793 #!/bin/sh
2794 for f in \$@
2795 do
2796   case "\$f" in
2797   /*)
2798     $mkdir -p $targetdir/\`dirname \$f\`
2799     $cp \$f $targetdir/\$f || exit 1
2800     ;;
2801   *)
2802     $targetmkdir $targetdir/\`dirname \$f\`
2803     $cp \$f $targetdir/\$f || exit 1
2804     ;;
2805   esac
2806 done
2807 exit 0
2808 EOF
2809             ;;
2810         *)  echo "Unknown targetto '$targetto'" >&4
2811             exit 1
2812             ;;
2813         esac
2814         case "$targetfrom" in
2815         scp|rcp)
2816           cat >$from <<EOF
2817 #!/bin/sh
2818 for f in \$@
2819 do
2820   $rm -f \$f
2821   $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2822 done
2823 exit 0
2824 EOF
2825             ;;
2826         cp) cat >$from <<EOF
2827 #!/bin/sh
2828 for f in \$@
2829 do
2830   $rm -f \$f
2831   cp $targetdir/\$f . || exit 1
2832 done
2833 exit 0
2834 EOF
2835             ;;
2836         *)  echo "Unknown targetfrom '$targetfrom'" >&4
2837             exit 1
2838             ;;
2839         esac
2840         if $test ! -f $run; then
2841             echo "Target 'run' script '$run' not found." >&4
2842         else
2843             $chmod a+rx $run
2844         fi
2845         if $test ! -f $to; then
2846             echo "Target 'to' script '$to' not found." >&4
2847         else
2848             $chmod a+rx $to
2849         fi
2850         if $test ! -f $from; then
2851             echo "Target 'from' script '$from' not found." >&4
2852         else
2853             $chmod a+rx $from
2854         fi
2855         if $test ! -f $run -o ! -f $to -o ! -f $from; then
2856             exit 1
2857         fi
2858         cat >&4 <<EOF
2859 Using '$run' for remote execution,
2860 and '$from' and '$to'
2861 for remote file transfer.
2862 EOF
2863         ;;
2864 *)      run=''
2865         to=:
2866         from=:
2867         usecrosscompile='undef'
2868         targetarch=''
2869         ;;
2870 esac
2871
2872 : see whether [:lower:] and [:upper:] are supported character classes
2873 echo " "
2874 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2875 ABYZ)
2876         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2877         up='[:upper:]'
2878         low='[:lower:]'
2879         ;;
2880 *)      # There is a discontinuity in EBCDIC between 'I' and 'J'
2881         # (0xc9 and 0xd1), therefore that is a nice testing point.
2882         if test "X$up" = X -o "X$low" = X; then
2883             case "`echo IJ | $tr '[I-J]' '[i-j]' 2>/dev/null`" in
2884             ij) up='[A-Z]'
2885                 low='[a-z]'
2886                 ;;
2887             esac
2888         fi
2889         if test "X$up" = X -o "X$low" = X; then
2890             case "`echo IJ | $tr I-J i-j 2>/dev/null`" in
2891             ij) up='A-Z'
2892                 low='a-z'
2893                 ;;
2894             esac
2895         fi
2896         if test "X$up" = X -o "X$low" = X; then
2897             case "`echo IJ | od -x 2>/dev/null`" in
2898             *C9D1*|*c9d1*)
2899                 echo "Hey, this might be EBCDIC." >&4
2900                 if test "X$up" = X -o "X$low" = X; then
2901                     case "`echo IJ | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2902                     ij) up='[A-IJ-RS-Z]'
2903                         low='[a-ij-rs-z]'
2904                         ;;
2905                     esac
2906                 fi
2907                 if test "X$up" = X -o "X$low" = X; then
2908                     case "`echo IJ | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2909                     ij) up='A-IJ-RS-Z'
2910                         low='a-ij-rs-z'
2911                         ;;
2912                     esac
2913                 fi
2914                 ;;
2915             esac
2916         fi
2917 esac
2918 case "`echo IJ | $tr \"$up\" \"$low\" 2>/dev/null`" in
2919 ij)
2920     echo "Using $up and $low to convert case." >&4
2921     ;;
2922 *)
2923     echo "I don't know how to translate letters from upper to lower case." >&4
2924     echo "Your tr is not acting any way I know of." >&4
2925     exit 1
2926     ;;
2927 esac
2928 : set up the translation script tr, must be called with ./tr of course
2929 cat >tr <<EOSC
2930 $startsh
2931 case "\$1\$2" in
2932 '[A-Z][a-z]') exec $tr '$up' '$low';;
2933 '[a-z][A-Z]') exec $tr '$low' '$up';;
2934 esac
2935 exec $tr "\$@"
2936 EOSC
2937 chmod +x tr
2938 $eunicefix tr
2939
2940 : Try to determine whether config.sh was made on this system
2941 case "$config_sh" in
2942 '')
2943 myuname=`$uname -a 2>/dev/null`
2944 $test -z "$myuname" && myuname=`hostname 2>/dev/null`
2945 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
2946 # because the A-Z/a-z are not consecutive.
2947 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
2948         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
2949 newmyuname="$myuname"
2950 dflt=n
2951 case "$knowitall" in
2952 '')
2953         if test -f ../config.sh; then
2954                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
2955                         eval "`grep myuname= ../config.sh`"
2956                 fi
2957                 if test "X$myuname" = "X$newmyuname"; then
2958                         dflt=y
2959                 fi
2960         fi
2961         ;;
2962 *) dflt=y;;
2963 esac
2964
2965 : Get old answers from old config file if Configure was run on the
2966 : same system, otherwise use the hints.
2967 hint=default
2968 cd ..
2969 if test -f config.sh; then
2970         echo " "
2971         rp="I see a config.sh file.  Shall I use it to set the defaults?"
2972         . UU/myread
2973         case "$ans" in
2974         n*|N*) echo "OK, I'll ignore it."
2975                 mv config.sh config.sh.old
2976                 myuname="$newmyuname"
2977                 ;;
2978         *)  echo "Fetching default answers from your old config.sh file..." >&4
2979                 tmp_n="$n"
2980                 tmp_c="$c"
2981                 tmp_sh="$sh"
2982                 . ./config.sh
2983                 cp config.sh UU
2984                 n="$tmp_n"
2985                 c="$tmp_c"
2986                 : Older versions did not always set $sh.  Catch re-use of such
2987                 : an old config.sh.
2988                 case "$sh" in
2989                 '') sh="$tmp_sh" ;;
2990                 esac
2991                 hint=previous
2992                 ;;
2993         esac
2994 fi
2995 . ./UU/checkcc
2996 if test ! -f config.sh; then
2997         $cat <<EOM
2998
2999 First time through, eh?  I have some defaults handy for some systems
3000 that need some extra help getting the Configure answers right:
3001
3002 EOM
3003         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
3004         dflt=''
3005         : Half the following guesses are probably wrong... If you have better
3006         : tests or hints, please send them to perlbug@perl.org
3007         : The metaconfig authors would also appreciate a copy...
3008         $test -f /irix && osname=irix
3009         $test -f /xenix && osname=sco_xenix
3010         $test -f /dynix && osname=dynix
3011         $test -f /dnix && osname=dnix
3012         $test -f /lynx.os && osname=lynxos
3013         $test -f /unicos && osname=unicos && osvers=`$uname -r`
3014         $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
3015         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
3016         $test -f /bin/mips && /bin/mips && osname=mips
3017         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
3018                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
3019         $test -d /usr/apollo/bin && osname=apollo
3020         $test -f /etc/saf/_sactab && osname=svr4
3021         $test -d /usr/include/minix && osname=minix
3022         $test -f /system/gnu_library/bin/ar.pm && osname=vos
3023         if $test -d /MachTen -o -d /MachTen_Folder; then
3024                 osname=machten
3025                 if $test -x /sbin/version; then
3026                         osvers=`/sbin/version | $awk '{print $2}' |
3027                         $sed -e 's/[A-Za-z]$//'`
3028                 elif $test -x /usr/etc/version; then
3029                         osvers=`/usr/etc/version | $awk '{print $2}' |
3030                         $sed -e 's/[A-Za-z]$//'`
3031                 else
3032                         osvers="$2.$3"
3033                 fi
3034         fi
3035
3036         $test -f /sys/posix.dll &&
3037                 $test -f /usr/bin/what &&
3038                 set X `/usr/bin/what /sys/posix.dll` &&
3039                 $test "$3" = UWIN &&
3040                 osname=uwin &&
3041                 osvers="$5"
3042
3043         if $test -f $uname; then
3044                 set X $myuname
3045                 shift
3046
3047                 case "$5" in
3048                 fps*) osname=fps ;;
3049                 mips*)
3050                         case "$4" in
3051                         umips) osname=umips ;;
3052                         *) osname=mips ;;
3053                         esac;;
3054                 [23]100) osname=mips ;;
3055                 next*) osname=next ;;
3056                 i386*)
3057                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
3058                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
3059                                 osname='sco'
3060                                 osvers=$tmp
3061                         elif $test -f /etc/kconfig; then
3062                                 osname=isc
3063                                 if test "$lns" = "$ln -s"; then
3064                                         osvers=4
3065                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3066                                         osvers=3
3067                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3068                                         osvers=2
3069                                 fi
3070                         fi
3071                         tmp=''
3072                         ;;
3073                 pc*)
3074                         if test -n "$DJGPP"; then
3075                                 osname=dos
3076                                 osvers=djgpp
3077                         fi
3078                         ;;
3079                 esac
3080
3081                 case "$1" in
3082                 aix) osname=aix
3083                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3084                         case "$tmp" in
3085                         'not found') osvers="$4"."$3" ;;
3086                         '<3240'|'<>3240') osvers=3.2.0 ;;
3087                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3088                         '=3250'|'>3250') osvers=3.2.5 ;;
3089                         *) osvers=$tmp;;
3090                         esac
3091                         ;;
3092                 bsd386) osname=bsd386
3093                         osvers=`$uname -r`
3094                         ;;
3095                 cygwin*) osname=cygwin
3096                         osvers="$3"
3097                         ;;
3098                 *dc.osx) osname=dcosx
3099                         osvers="$3"
3100                         ;;
3101                 dnix) osname=dnix
3102                         osvers="$3"
3103                         ;;
3104                 domainos) osname=apollo
3105                         osvers="$3"
3106                         ;;
3107                 dgux) osname=dgux 
3108                         osvers="$3"
3109                         ;;
3110                 dynixptx*) osname=dynixptx
3111                         osvers=`echo "$4"|sed 's/^v//'`
3112                         ;;
3113                 freebsd) osname=freebsd 
3114                         osvers="$3" ;;
3115                 genix) osname=genix ;;
3116                 hp*) osname=hpux 
3117                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3118                         ;;
3119                 irix*) osname=irix
3120                         case "$3" in
3121                         4*) osvers=4 ;;
3122                         5*) osvers=5 ;;
3123                         *)      osvers="$3" ;;
3124                         esac
3125                         ;;
3126                 linux) osname=linux
3127                         case "$3" in
3128                         *)      osvers="$3" ;;
3129                         esac
3130                         ;;
3131                 MiNT) osname=mint
3132                         ;;
3133                 netbsd*) osname=netbsd
3134                         osvers="$3"
3135                         ;;
3136                 news-os) osvers="$3"
3137                         case "$3" in
3138                         4*) osname=newsos4 ;;
3139                         *) osname=newsos ;;
3140                         esac
3141                         ;;
3142                 next*) osname=next ;;
3143                 nonstop-ux) osname=nonstopux ;;
3144                 openbsd) osname=openbsd
3145                         osvers="$3"
3146                         ;;
3147                 os2)    osname=os2
3148                         osvers="$4"
3149                         ;;
3150                 POSIX-BC | posix-bc ) osname=posix-bc
3151                         osvers="$3"
3152                         ;;
3153                 powerux | power_ux | powermax_os | powermaxos | \
3154                 powerunix | power_unix) osname=powerux
3155                         osvers="$3"
3156                         ;;
3157                 qnx) osname=qnx
3158                         osvers="$4"
3159                         ;;
3160                 solaris) osname=solaris
3161                         case "$3" in
3162                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3163                         *)      osvers="$3" ;;
3164                         esac
3165                         ;;
3166                 sunos) osname=sunos
3167                         case "$3" in
3168                         5*) osname=solaris
3169                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3170                         *)      osvers="$3" ;;
3171                         esac
3172                         ;;
3173                 titanos) osname=titanos
3174                         case "$3" in
3175                         1*) osvers=1 ;;
3176                         2*) osvers=2 ;;
3177                         3*) osvers=3 ;;
3178                         4*) osvers=4 ;;
3179                         *)      osvers="$3" ;;
3180                         esac
3181                         ;;
3182                 ultrix) osname=ultrix
3183                         osvers="$3"
3184                         ;;
3185                 osf1|mls+)      case "$5" in
3186                                 alpha)
3187                                         osname=dec_osf
3188                                         osvers=`sizer -v | awk -FUNIX '{print $2}' | awk '{print $1}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3189                                         case "$osvers" in
3190                                         [1-9].[0-9]*) ;;
3191                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3192                                         esac
3193                                         ;;
3194                         hp*)    osname=hp_osf1  ;;
3195                         mips)   osname=mips_osf1 ;;
3196                         esac
3197                         ;;
3198                 # UnixWare 7.1.2 is known as Open UNIX 8
3199                 openunix|unixware) osname=svr5
3200                         osvers="$4"
3201                         ;;
3202                 uts)    osname=uts
3203                         osvers="$3"
3204                         ;;
3205                 vos) osvers="$3"
3206                         ;;
3207                 $2) case "$osname" in
3208                         *isc*) ;;
3209                         *freebsd*) ;;
3210                         svr*)
3211                                 : svr4.x or possibly later
3212                                 case "svr$3" in 
3213                                 ${osname}*)
3214                                         osname=svr$3
3215                                         osvers=$4
3216                                         ;;
3217                                 esac
3218                                 case "$osname" in
3219                                 svr4.0)
3220                                         : Check for ESIX
3221                                         if test -f /stand/boot ; then
3222                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3223                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3224                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3225                                                         if test -n "$isesix"; then
3226                                                                 osname=esix4
3227                                                         fi
3228                                                 fi
3229                                         fi
3230                                         ;;
3231                                 esac
3232                                 ;;
3233                         *)      if test -f /etc/systemid; then
3234                                         osname=sco
3235                                         set `echo $3 | $sed 's/\./ /g'` $4
3236                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3237                                                 osvers=$1.$2.$3
3238                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3239                                                 osvers=$1.$2
3240                                         elif $test -f $src/hints/sco_$1.sh; then
3241                                                 osvers=$1
3242                                         fi
3243                                 else
3244                                         case "$osname" in
3245                                         '') : Still unknown.  Probably a generic Sys V.
3246                                                 osname="sysv"
3247                                                 osvers="$3"
3248                                                 ;;
3249                                         esac
3250                                 fi
3251                                 ;;
3252                         esac
3253                         ;;
3254                 *)      case "$osname" in
3255                         '') : Still unknown.  Probably a generic BSD.
3256                                 osname="$1"
3257                                 osvers="$3"
3258                                 ;;
3259                         esac
3260                         ;;
3261                 esac
3262         else
3263                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3264                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3265                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3266                                 osname=news_os
3267                         fi
3268                         $rm -f UU/kernel.what
3269                 elif test -d c:/. -o -n "$is_os2" ; then
3270                         set X $myuname
3271                         osname=os2
3272                         osvers="$5"
3273                 fi
3274         fi
3275         
3276         case "$targetarch" in
3277         '') ;;
3278         *)  hostarch=$osname
3279             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3280             osvers=''
3281             ;;
3282         esac
3283
3284         : Now look for a hint file osname_osvers, unless one has been
3285         : specified already.
3286         case "$hintfile" in
3287         ''|' ')
3288                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3289                 : Also try without trailing minor version numbers.
3290                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3291                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3292                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3293                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3294                 case "$file" in
3295                 '') dflt=none ;;
3296                 *)  case "$osvers" in
3297                         '') dflt=$file
3298                                 ;;
3299                         *)  if $test -f $src/hints/$file.sh ; then
3300                                         dflt=$file
3301                                 elif $test -f $src/hints/$xfile.sh ; then
3302                                         dflt=$xfile
3303                                 elif $test -f $src/hints/$xxfile.sh ; then
3304                                         dflt=$xxfile
3305                                 elif $test -f $src/hints/$xxxfile.sh ; then
3306                                         dflt=$xxxfile
3307                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3308                                         dflt=$xxxxfile
3309                                 elif $test -f "$src/hints/${osname}.sh" ; then
3310                                         dflt="${osname}"
3311                                 else
3312                                         dflt=none
3313                                 fi
3314                                 ;;
3315                         esac
3316                         ;;
3317                 esac
3318                 if $test -f Policy.sh ; then
3319                         case "$dflt" in
3320                         *Policy*) ;;
3321                         none) dflt="Policy" ;;
3322                         *) dflt="Policy $dflt" ;;
3323                         esac
3324                 fi
3325                 ;;
3326         *)
3327                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3328                 ;;
3329         esac
3330
3331         if $test -f Policy.sh ; then
3332                 $cat <<EOM
3333
3334 There's also a Policy hint file available, which should make the
3335 site-specific (policy) questions easier to answer.
3336 EOM
3337
3338         fi
3339
3340         $cat <<EOM
3341
3342 You may give one or more space-separated answers, or "none" if appropriate.
3343 A well-behaved OS will have no hints, so answering "none" or just "Policy"
3344 is a good thing.  DO NOT give a wrong version or a wrong OS.
3345
3346 EOM
3347
3348         rp="Which of these apply, if any?"
3349         . UU/myread
3350         tans=$ans
3351         for file in $tans; do
3352                 if $test X$file = XPolicy -a -f Policy.sh; then
3353                         . Policy.sh
3354                         $cat Policy.sh >> UU/config.sh
3355                 elif $test -f $src/hints/$file.sh; then
3356                         . $src/hints/$file.sh
3357                         $cat $src/hints/$file.sh >> UU/config.sh
3358                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3359                         : nothing
3360                 else
3361                         : Give one chance to correct a possible typo.
3362                         echo "$file.sh does not exist"
3363                         dflt=$file
3364                         rp="hint to use instead?"
3365                         . UU/myread
3366                         for file in $ans; do
3367                                 if $test -f "$src/hints/$file.sh"; then
3368                                         . $src/hints/$file.sh
3369                                         $cat $src/hints/$file.sh >> UU/config.sh
3370                                 elif $test X$ans = X -o X$ans = Xnone ; then
3371                                         : nothing
3372                                 else
3373                                         echo "$file.sh does not exist -- ignored."
3374                                 fi
3375                         done
3376                 fi
3377         done
3378
3379         hint=recommended
3380         : Remember our hint file for later.
3381         if $test -f "$src/hints/$file.sh" ; then
3382                 hintfile="$file"
3383         else
3384                 hintfile=''
3385         fi
3386 fi
3387 cd UU
3388 ;;
3389 *)
3390         echo " "
3391         echo "Fetching default answers from $config_sh..." >&4
3392         tmp_n="$n"
3393         tmp_c="$c"
3394         cd ..
3395         cp $config_sh config.sh 2>/dev/null
3396         chmod +w config.sh
3397         . ./config.sh
3398         cd UU
3399         cp ../config.sh .
3400         n="$tmp_n"
3401         c="$tmp_c"
3402         hint=previous
3403         ;;
3404 esac
3405 test "$override" && . ./optdef.sh
3406
3407 : Restore computed paths
3408 for file in $loclist $trylist; do
3409         eval $file="\$_$file"
3410 done
3411
3412 cat << EOM
3413
3414 Configure uses the operating system name and version to set some defaults.
3415 The default value is probably right if the name rings a bell. Otherwise,
3416 since spelling matters for me, either accept the default or answer "none"
3417 to leave it blank.
3418
3419 EOM
3420 case "$osname" in
3421         ''|' ')
3422                 case "$hintfile" in
3423                 ''|' '|none) dflt=none ;;
3424                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3425                 esac
3426                 ;;
3427         *) dflt="$osname" ;;
3428 esac
3429 rp="Operating system name?"
3430 . ./myread
3431 case "$ans" in
3432 none)  osname='' ;;
3433 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3434 esac
3435 echo " "
3436 case "$osvers" in
3437         ''|' ')
3438                 case "$hintfile" in
3439                 ''|' '|none) dflt=none ;;
3440                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3441                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3442                         case "$dflt" in
3443                         ''|' ') dflt=none ;;
3444                         esac
3445                         ;;
3446                 esac
3447                 ;;
3448         *) dflt="$osvers" ;;
3449 esac
3450 rp="Operating system version?"
3451 . ./myread
3452 case "$ans" in
3453 none)  osvers='' ;;
3454 *) osvers="$ans" ;;
3455 esac
3456
3457
3458 . ./posthint.sh
3459
3460 : who configured the system
3461 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3462 cf_by=`(logname) 2>/dev/null`
3463 case "$cf_by" in
3464 "")
3465         cf_by=`(whoami) 2>/dev/null`
3466         case "$cf_by" in
3467         "") cf_by=unknown ;;
3468         esac ;;
3469 esac
3470
3471 : set up the script used to warn in case of inconsistency
3472 cat <<EOS >whoa
3473 $startsh
3474 EOS
3475 cat <<'EOSC' >>whoa
3476 dflt=y
3477 echo " "
3478 echo "*** WHOA THERE!!! ***" >&4
3479 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
3480 rp="    Keep the $hint value?"
3481 . ./myread
3482 case "$ans" in
3483 y) td=$was; tu=$was;;
3484 esac
3485 EOSC
3486
3487 : function used to set $1 to $val
3488 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3489 case "$val$was" in
3490 $define$undef) . ./whoa; eval "$var=\$td";;
3491 $undef$define) . ./whoa; eval "$var=\$tu";;
3492 *) eval "$var=$val";;
3493 esac'
3494
3495 case "$usesocks" in
3496 $define|true|[yY]*)     dflt='y';;
3497 *) dflt='n';;
3498 esac
3499 cat <<EOM
3500
3501 Perl can be built to use the SOCKS proxy protocol library.  To do so,
3502 Configure must be run with -Dusesocks.  If you use SOCKS you also need
3503 to use the PerlIO abstraction layer, this will be implicitly selected.
3504
3505 If this doesn't make any sense to you, just accept the default '$dflt'.
3506 EOM
3507 rp='Build Perl for SOCKS?'
3508 . ./myread
3509 case "$ans" in
3510 y|Y)    val="$define" ;;     
3511 *)      val="$undef" ;;
3512 esac
3513 set usesocks
3514 eval $setvar
3515
3516 case "$usesocks" in
3517 $define|true|[yY]*) useperlio="$define";;
3518 esac
3519
3520 case "$useperlio" in
3521 $define|true|[yY]*|'')  dflt='y';;
3522 *) dflt='n';;
3523 esac
3524 cat <<EOM
3525
3526 Previous version of $package used the standard IO mechanisms as
3527 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
3528 alternate IO mechanisms via the PerlIO abstraction layer, but the
3529 stdio mechanism is still available if needed.  The abstraction layer
3530 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
3531 Using PerlIO with sfio may cause problems with some extension modules.
3532
3533 If this doesn't make any sense to you, just accept the default '$dflt'.
3534 EOM
3535 rp='Use the PerlIO abstraction layer?'
3536 . ./myread
3537 case "$ans" in
3538 y|Y) 
3539         val="$define"
3540         ;;
3541 *)      
3542         echo "Ok, doing things the stdio way."
3543         val="$undef"
3544         ;;
3545 esac
3546 set useperlio
3547 eval $setvar 
3548
3549 case "$usesocks" in
3550 $define|true|[yY]*)
3551         case "$useperlio" in
3552         $define|true|[yY]*) ;;
3553         *)      cat >&4 <<EOM
3554
3555 You are using the SOCKS proxy protocol library which means that you
3556 should also use the PerlIO layer.  You may be headed for trouble.
3557
3558 EOM
3559                 ;;
3560         esac
3561         ;;
3562 esac
3563
3564         
3565 case "$usethreads" in
3566 $define|true|[yY]*)     dflt='y';;
3567 *)     # Catch case where user specified ithreads or 5005threads but
3568        # forgot -Dusethreads (A.D. 4/2002)
3569        case "$useithreads$use5005threads" in
3570        *$define*)      
3571                 case "$useperlio" in
3572                 "$define")      dflt='y' ;;
3573                 *)              dflt='n' ;;
3574                 esac
3575                 ;;
3576        *)       dflt='n';;
3577        esac
3578        ;;
3579 esac
3580 cat <<EOM
3581
3582 Perl can be built to take advantage of threads on some systems.
3583 To do so, Configure can be run with -Dusethreads.
3584
3585 Note that Perl built with threading support runs slightly slower
3586 and uses more memory than plain Perl. The current implementation
3587 is believed to be stable, but it is fairly new, and so should be
3588 treated with caution.
3589
3590 If this doesn't make any sense to you, just accept the default '$dflt'.
3591 EOM
3592 rp='Build a threading Perl?'
3593 . ./myread
3594 case "$ans" in
3595 y|Y)    val="$define" ;;
3596 *)      val="$undef" ;;
3597 esac
3598 set usethreads
3599 eval $setvar
3600
3601 case "$usethreads" in
3602 $define)
3603         $cat <<EOM
3604
3605 Since release 5.6, Perl has had two different threading implementations,
3606 the newer interpreter-based version (ithreads) with one interpreter per
3607 thread, and the older 5.005 version (5005threads).
3608 The 5005threads version is effectively unmaintained and will probably be
3609 removed in Perl 5.10, so there should be no need to build a Perl using it
3610 unless needed for backwards compatibility with some existing 5.005threads
3611 code.
3612
3613 EOM
3614         : Default to ithreads unless overridden on command line or with
3615         : old config.sh
3616         dflt='y'
3617         case "$use5005threads" in
3618                 $define|true|[yY]*) dflt='n';;
3619         esac
3620         case "$useithreads" in
3621                 $undef|false|[nN]*) dflt='n';;
3622         esac
3623         rp='Use the newer interpreter-based ithreads?'
3624         . ./myread
3625         case "$ans" in
3626         y|Y)    val="$define" ;;
3627         *)      val="$undef" ;;
3628         esac
3629         set useithreads
3630         eval $setvar
3631         : Now set use5005threads to the opposite value.
3632         case "$useithreads" in
3633         $define) val="$undef" ;;
3634         *) val="$define" ;;
3635         esac
3636         set use5005threads
3637         eval $setvar
3638         ;;
3639 *)
3640         useithreads="$undef"
3641         use5005threads="$undef"
3642         ;;
3643 esac
3644
3645 case "$useithreads$use5005threads" in
3646 "$define$define")
3647         $cat >&4 <<EOM
3648
3649 You cannot have both the ithreads and the 5.005 threads enabled
3650 at the same time.  Disabling the 5.005 threads since they are
3651 much less stable than the ithreads.
3652
3653 EOM
3654         use5005threads="$undef"
3655         ;;
3656 esac
3657
3658 if test X"$usethreads" = "X$define" -a "X$useperlio" = "Xundef"; then
3659         cat >&4 <<EOF
3660 ***
3661 *** To build with ithreads you must also use the PerlIO layer.
3662 *** Cannot continue, aborting.
3663 ***
3664 EOF
3665         exit 1
3666 fi
3667
3668 case "$d_oldpthreads" in
3669 '')     : Configure tests would be welcome here.  For now, assume undef.
3670         val="$undef" ;;
3671 *)      val="$d_oldpthreads" ;;
3672 esac
3673 set d_oldpthreads
3674 eval $setvar
3675
3676
3677 case "$usethreads" in
3678 "$define"|true|[yY]*)
3679 : Look for a hint-file generated 'call-back-unit'.  If the
3680 : user has specified that a threading perl is to be built,
3681 : we may need to set or change some other defaults.
3682         if $test -f usethreads.cbu; then
3683                 echo "Your platform has some specific hints for threaded builds, using them..."
3684                 . ./usethreads.cbu
3685         else
3686                 $cat <<EOM
3687 (Your platform doesn't have any specific hints for threaded builds.
3688  Assuming POSIX threads, then.)
3689 EOM
3690         fi
3691         ;;
3692 esac
3693
3694 cat <<EOM
3695
3696 Perl can be built so that multiple Perl interpreters can coexist
3697 within the same Perl executable.
3698 EOM
3699
3700 case "$useithreads" in
3701 $define)
3702         cat <<EOM
3703 This multiple interpreter support is required for interpreter-based threads.
3704 EOM
3705         val="$define"
3706         ;;
3707 *)      case "$usemultiplicity" in
3708         $define|true|[yY]*)     dflt='y';;
3709         *) dflt='n';;
3710         esac
3711         echo " "
3712         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
3713         rp='Build Perl for multiplicity?'
3714         . ./myread
3715         case "$ans" in
3716         y|Y)    val="$define" ;;
3717         *)      val="$undef" ;;
3718         esac
3719         ;;
3720 esac
3721 set usemultiplicity
3722 eval $setvar
3723
3724
3725 case "$usemorebits" in
3726 "$define"|true|[yY]*)
3727         use64bitint="$define"
3728         uselongdouble="$define"
3729         usemorebits="$define"
3730         ;;
3731 *)      usemorebits="$undef"
3732         ;;
3733 esac
3734
3735 : make some quick guesses about what we are up against
3736 echo " "
3737 $echo $n "Hmm...  $c"
3738 echo exit 1 >bsd
3739 echo exit 1 >usg
3740 echo exit 1 >v7
3741 echo exit 1 >osf1
3742 echo exit 1 >eunice
3743 echo exit 1 >xenix
3744 echo exit 1 >venix
3745 echo exit 1 >os2
3746 d_bsd="$undef"
3747 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3748 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3749 then
3750         echo "Looks kind of like an OSF/1 system, but we'll see..."
3751         echo exit 0 >osf1
3752 elif test `echo abc | $tr a-z A-Z` = Abc ; then
3753         xxx=`./loc addbib blurfl $pth`
3754         if $test -f $xxx; then
3755         echo "Looks kind of like a USG system with BSD features, but we'll see..."
3756                 echo exit 0 >bsd
3757                 echo exit 0 >usg
3758         else
3759                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3760                         echo "Looks kind of like an extended USG system, but we'll see..."
3761                 else
3762                         echo "Looks kind of like a USG system, but we'll see..."
3763                 fi
3764                 echo exit 0 >usg
3765         fi
3766 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3767         echo "Looks kind of like a BSD system, but we'll see..."
3768         d_bsd="$define"
3769         echo exit 0 >bsd
3770 else
3771         echo "Looks kind of like a Version 7 system, but we'll see..."
3772         echo exit 0 >v7
3773 fi
3774 case "$eunicefix" in
3775 *unixtovms*)
3776         $cat <<'EOI'
3777 There is, however, a strange, musty smell in the air that reminds me of
3778 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3779 EOI
3780         echo exit 0 >eunice
3781         d_eunice="$define"
3782 : it so happens the Eunice I know will not run shell scripts in Unix format
3783         ;;
3784 *)
3785         echo " "
3786         echo "Congratulations.  You aren't running Eunice."
3787         d_eunice="$undef"
3788         ;;
3789 esac
3790 : Detect OS2.  The p_ variable is set above in the Head.U unit.
3791 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
3792 : semicolon as a patch separator
3793 case "$p_" in
3794 :) ;;
3795 *)
3796         $cat <<'EOI'
3797 I have the feeling something is not exactly right, however...don't tell me...
3798 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3799 (Or you may be running DOS with DJGPP.)
3800 EOI
3801         echo exit 0 >os2
3802         ;;
3803 esac
3804 if test -f /xenix; then
3805         echo "Actually, this looks more like a XENIX system..."
3806         echo exit 0 >xenix
3807         d_xenix="$define"
3808 else
3809         echo " "
3810         echo "It's not Xenix..."
3811         d_xenix="$undef"
3812 fi
3813 chmod +x xenix
3814 $eunicefix xenix
3815 if test -f /venix; then
3816         echo "Actually, this looks more like a VENIX system..."
3817         echo exit 0 >venix
3818 else
3819         echo " "
3820         if ./xenix; then
3821                 : null
3822         else
3823                 echo "Nor is it Venix..."
3824         fi
3825 fi
3826 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3827 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3828 $rm -f foo
3829
3830 case "$cc" in
3831 '') dflt=cc;;
3832 *) dflt="$cc";;
3833 esac
3834 rp="Use which C compiler?"
3835 . ./myread
3836 cc="$ans"
3837
3838 : See if they have not cc but they do have gcc
3839 . ./trygcc
3840 : Look for a hint-file generated 'call-back-unit'.  Now that the
3841 : user has specified the compiler, we may need to set or change some
3842 : other defaults.
3843 if $test -f cc.cbu; then
3844     . ./cc.cbu
3845 fi
3846 . ./checkcc
3847
3848 echo " "
3849 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3850 $cat >try.c <<EOM
3851 #include <stdio.h>
3852 int main() {
3853 #ifdef __GNUC__
3854 #ifdef __VERSION__
3855         printf("%s\n", __VERSION__);
3856 #else
3857         printf("%s\n", "1");
3858 #endif
3859 #endif
3860         return(0);
3861 }
3862 EOM
3863 if $cc -o try $ccflags $ldflags try.c; then
3864         gccversion=`$run ./try`
3865         case "$gccversion" in
3866         '') echo "You are not using GNU cc." ;;
3867         *)  echo "You are using GNU cc $gccversion."
3868             ccname=gcc
3869             ;;
3870         esac
3871 else
3872         echo " "
3873         echo "*** WHOA THERE!!! ***" >&4
3874         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3875         case "$knowitall" in
3876         '')
3877         echo "    You'd better start hunting for one and let me know about it." >&4
3878                 exit 1
3879                 ;;
3880         esac
3881 fi
3882 $rm -f try try.*
3883 case "$gccversion" in
3884 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3885 esac
3886 case "$gccversion" in
3887 '') gccosandvers='' ;;
3888 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
3889    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
3890    gccshortvers=''
3891    case "$gccosandvers" in
3892    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
3893    $osname$osvers) ;; # looking good
3894    $osname*) cat <<EOM >&4
3895
3896 *** WHOA THERE!!! ***
3897
3898     Your gcc has not been compiled for the exact release of
3899     your operating system ($gccosandvers versus $osname$osvers).
3900
3901     In general it is a good idea to keep gcc synchronized with
3902     the operating system because otherwise serious problems
3903     may ensue when trying to compile software, like Perl.
3904
3905     I'm trying to be optimistic here, though, and will continue.
3906     If later during the configuration and build icky compilation
3907     problems appear (headerfile conflicts being the most common
3908     manifestation), I suggest reinstalling the gcc to match
3909     your operating system release.
3910
3911 EOM
3912       ;;
3913    *) gccosandvers='' ;; # failed to parse, better be silent
3914    esac
3915    ;;
3916 esac
3917 case "$ccname" in
3918 '') ccname="$cc" ;;
3919 esac
3920
3921 # gcc 3.* complain about adding -Idirectories that they already know about,
3922 # so we will take those off from locincpth.
3923 case "$gccversion" in
3924 3*)
3925     echo "main(){}">try.c
3926     for incdir in $locincpth; do
3927        warn=`$cc $ccflags -I$incdir -c try.c 2>&1 | \
3928              grep '^c[cp]p*[01]: warning: changing search order '`
3929        if test "X$warn" != X; then
3930            locincpth=`echo " $locincpth " | sed "s! $incdir ! !"`
3931        fi
3932     done
3933     $rm -f try try.*
3934 esac
3935
3936 : decide how portable to be.  Allow command line overrides.
3937 case "$d_portable" in
3938 "$undef") ;;
3939 *)      d_portable="$define" ;;
3940 esac
3941
3942 : set up shell script to do ~ expansion
3943 cat >filexp <<EOSS
3944 $startsh
3945 : expand filename
3946 case "\$1" in
3947  ~/*|~)
3948         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3949         ;;
3950  ~*)
3951         if $test -f /bin/csh; then
3952                 /bin/csh -f -c "glob \$1"
3953                 failed=\$?
3954                 echo ""
3955                 exit \$failed
3956         else
3957                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3958                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3959                 if $test ! -d "\$dir"; then
3960                         me=\`basename \$0\`
3961                         echo "\$me: can't locate home directory for: \$name" >&2
3962                         exit 1
3963                 fi
3964                 case "\$1" in
3965                 */*)
3966                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3967                         ;;
3968                 *)
3969                         echo \$dir
3970                         ;;
3971                 esac
3972         fi
3973         ;;
3974 *)
3975         echo \$1
3976         ;;
3977 esac
3978 EOSS
3979 chmod +x filexp
3980 $eunicefix filexp
3981
3982 : now set up to get a file name
3983 cat <<EOS >getfile
3984 $startsh
3985 EOS
3986 cat <<'EOSC' >>getfile
3987 tilde=''
3988 fullpath=''
3989 already=''
3990 skip=''
3991 none_ok=''
3992 exp_file=''
3993 nopath_ok=''
3994 orig_rp="$rp"
3995 orig_dflt="$dflt"
3996 case "$gfpth" in
3997 '') gfpth='.' ;;
3998 esac
3999
4000 case "$fn" in
4001 *\(*)
4002         : getfile will accept an answer from the comma-separated list
4003         : enclosed in parentheses even if it does not meet other criteria.
4004         expr "$fn" : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
4005         fn=`echo $fn | sed 's/(.*)//'`
4006         ;;
4007 esac
4008
4009 case "$fn" in
4010 *:*)
4011         loc_file=`expr $fn : '.*:\(.*\)'`
4012         fn=`expr $fn : '\(.*\):.*'`
4013         ;;
4014 esac
4015
4016 case "$fn" in
4017 *~*) tilde=true;;
4018 esac
4019 case "$fn" in
4020 */*) fullpath=true;;
4021 esac
4022 case "$fn" in
4023 *+*) skip=true;;
4024 esac
4025 case "$fn" in
4026 *n*) none_ok=true;;
4027 esac
4028 case "$fn" in
4029 *e*) exp_file=true;;
4030 esac
4031 case "$fn" in
4032 *p*) nopath_ok=true;;
4033 esac
4034
4035 case "$fn" in
4036 *f*) type='File';;
4037 *d*) type='Directory';;
4038 *l*) type='Locate';;
4039 esac
4040
4041 what="$type"
4042 case "$what" in
4043 Locate) what='File';;
4044 esac
4045
4046 case "$exp_file" in
4047 '')
4048         case "$d_portable" in
4049         "$define") ;;
4050         *) exp_file=true;;
4051         esac
4052         ;;
4053 esac
4054
4055 cd ..
4056 while test "$type"; do
4057         redo=''
4058         rp="$orig_rp"
4059         dflt="$orig_dflt"
4060         case "$tilde" in
4061         true) rp="$rp (~name ok)";;
4062         esac
4063         . UU/myread
4064         if test -f UU/getfile.ok && \
4065                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
4066         then
4067                 value="$ans"
4068                 ansexp="$ans"
4069                 break
4070         fi
4071         case "$ans" in
4072         none)
4073                 value=''
4074                 ansexp=''
4075                 case "$none_ok" in
4076                 true) type='';;
4077                 esac
4078                 ;;
4079         *)
4080                 case "$tilde" in
4081                 '') value="$ans"
4082                         ansexp="$ans";;
4083                 *)
4084                         value=`UU/filexp $ans`
4085                         case $? in
4086                         0)
4087                                 if test "$ans" != "$value"; then
4088                                         echo "(That expands to $value on this system.)"
4089                                 fi
4090                                 ;;
4091                         *) value="$ans";;
4092                         esac
4093                         ansexp="$value"
4094                         case "$exp_file" in
4095                         '') value="$ans";;
4096                         esac
4097                         ;;
4098                 esac
4099                 case "$fullpath" in
4100                 true)
4101                         case "$ansexp" in
4102                         /*) value="$ansexp" ;;
4103                         [a-zA-Z]:/*) value="$ansexp" ;;
4104                         *)
4105                                 redo=true
4106                                 case "$already" in
4107                                 true)
4108                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
4109                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
4110                                         ;;
4111                                 *)
4112                                 echo "Please give a full path name, starting with slash." >&4
4113                                         case "$tilde" in
4114                                         true)
4115                                 echo "Note that using ~name is ok provided it expands well." >&4
4116                                                 already=true
4117                                                 ;;
4118                                         esac
4119                                 esac
4120                                 ;;
4121                         esac
4122                         ;;
4123                 esac
4124                 case "$redo" in
4125                 '')
4126                         case "$type" in
4127                         File)
4128                                 for fp in $gfpth; do
4129                                         if test "X$fp" = X.; then
4130                                             pf="$ansexp"
4131                                         else    
4132                                             pf="$fp/$ansexp"
4133                                         fi
4134                                         if test -f "$pf"; then
4135                                                 type=''
4136                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
4137                                         then
4138                                                 echo "($value is not a plain file, but that's ok.)"
4139                                                 type=''
4140                                         fi
4141                                         if test X"$type" = X; then
4142                                             value="$pf"
4143                                             break
4144                                         fi
4145                                 done
4146                                 ;;
4147                         Directory)
4148                                 for fp in $gfpth; do
4149                                         if test "X$fp" = X.; then
4150                                             dir="$ans"
4151                                             direxp="$ansexp"
4152                                         else    
4153                                             dir="$fp/$ansexp"
4154                                             direxp="$fp/$ansexp"
4155                                         fi
4156                                         if test -d "$direxp"; then
4157                                                 type=''
4158                                                 value="$dir"
4159                                                 break
4160                                         fi
4161                                 done
4162                                 ;;
4163                         Locate)
4164                                 if test -d "$ansexp"; then
4165                                         echo "(Looking for $loc_file in directory $value.)"
4166                                         value="$value/$loc_file"
4167                                         ansexp="$ansexp/$loc_file"
4168                                 fi
4169                                 if test -f "$ansexp"; then
4170                                         type=''
4171                                 fi
4172                                 case "$nopath_ok" in
4173                                 true)   case "$value" in
4174                                         */*) ;;
4175                                         *)      echo "Assuming $value will be in people's path."
4176                                                 type=''
4177                                                 ;;
4178                                         esac
4179                                         ;;
4180                                 esac
4181                                 ;;
4182                         esac
4183
4184                         case "$skip" in
4185                         true) type='';
4186                         esac
4187
4188                         case "$type" in
4189                         '') ;;
4190                         *)
4191                                 if test "$fastread" = yes; then
4192                                         dflt=y
4193                                 else
4194                                         dflt=n
4195                                 fi
4196                                 rp="$what $value doesn't exist.  Use that name anyway?"
4197                                 . UU/myread
4198                                 dflt=''
4199                                 case "$ans" in
4200                                 y*) type='';;
4201                                 *) echo " ";;
4202                                 esac
4203                                 ;;
4204                         esac
4205                         ;;
4206                 esac
4207                 ;;
4208         esac
4209 done
4210 cd UU
4211 ans="$value"
4212 rp="$orig_rp"
4213 dflt="$orig_dflt"
4214 rm -f getfile.ok
4215 test "X$gfpthkeep" != Xy && gfpth=""
4216 EOSC
4217
4218 : What should the include directory be ?
4219 echo " "
4220 $echo $n "Hmm...  $c"
4221 dflt='/usr/include'
4222 incpath=''
4223 mips_type=''
4224 if $test -f /bin/mips && /bin/mips; then
4225         echo "Looks like a MIPS system..."
4226         $cat >usr.c <<'EOCP'
4227 #ifdef SYSTYPE_BSD43
4228 /bsd43
4229 #endif
4230 EOCP
4231         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4232                 dflt='/bsd43/usr/include'
4233                 incpath='/bsd43'
4234                 mips_type='BSD 4.3'
4235         else
4236                 mips_type='System V'
4237         fi
4238         $rm -f usr.c usr.out
4239         echo "and you're compiling with the $mips_type compiler and libraries."
4240         xxx_prompt=y
4241         echo "exit 0" >mips
4242 else
4243         echo "Doesn't look like a MIPS system."
4244         xxx_prompt=n
4245         echo "exit 1" >mips
4246 fi
4247 chmod +x mips
4248 $eunicefix mips
4249 case "$usrinc" in
4250 '') ;;
4251 *) dflt="$usrinc";;
4252 esac
4253 case "$xxx_prompt" in
4254 y)      fn=d/
4255         echo " "
4256         rp='Where are the include files you want to use?'
4257         . ./getfile
4258         usrinc="$ans"
4259         ;;
4260 *)      usrinc="$dflt"
4261         ;;
4262 esac
4263
4264 : see how we invoke the C preprocessor
4265 echo " "
4266 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4267 cat <<'EOT' >testcpp.c
4268 #define ABC abc
4269 #define XYZ xyz
4270 ABC.XYZ
4271 EOT
4272 cd ..
4273 if test ! -f cppstdin; then
4274         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4275                 # AIX cc -E doesn't show the absolute headerfile
4276                 # locations but we'll cheat by using the -M flag.
4277                 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
4278         else
4279                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4280         fi
4281 else
4282         echo "Keeping your $hint cppstdin wrapper."
4283 fi
4284 chmod 755 cppstdin
4285 wrapper=`pwd`/cppstdin
4286 ok='false'
4287 cd UU
4288
4289 if $test "X$cppstdin" != "X" && \
4290         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4291         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4292 then
4293         echo "You used to use $cppstdin $cppminus so we'll use that again."
4294         case "$cpprun" in
4295         '') echo "But let's see if we can live without a wrapper..." ;;
4296         *)
4297                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4298                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4299                 then
4300                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4301                         ok='true'
4302                 else
4303                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4304                 fi
4305                 ;;
4306         esac
4307 else
4308         case "$cppstdin" in
4309         '') ;;
4310         *)
4311                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4312                 ;;
4313         esac
4314 fi
4315
4316 if $ok; then
4317         : nothing
4318 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4319         $cc -E <testcpp.c >testcpp.out 2>&1; \
4320         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4321         echo "Yup, it does."
4322         x_cpp="$cc -E"
4323         x_minus='';
4324 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4325         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4326         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4327         echo "Yup, it does."
4328         x_cpp="$cc -E"
4329         x_minus='-';
4330 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4331         $cc -P <testcpp.c >testcpp.out 2>&1; \
4332         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4333         echo "Yipee, that works!"
4334         x_cpp="$cc -P"
4335         x_minus='';
4336 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4337         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4338         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4339         echo "At long last!"
4340         x_cpp="$cc -P"
4341         x_minus='-';
4342 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4343         $cpp <testcpp.c >testcpp.out 2>&1; \
4344         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4345         echo "It works!"
4346         x_cpp="$cpp"
4347         x_minus='';
4348 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4349         $cpp - <testcpp.c >testcpp.out 2>&1; \
4350         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4351         echo "Hooray, it works!  I was beginning to wonder."
4352         x_cpp="$cpp"
4353         x_minus='-';
4354 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4355         $wrapper <testcpp.c >testcpp.out 2>&1; \
4356         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4357         x_cpp="$wrapper"
4358         x_minus=''
4359         echo "Eureka!"
4360 else
4361         dflt=''
4362         rp="No dice.  I can't find a C preprocessor.  Name one:"
4363         . ./myread
4364         x_cpp="$ans"
4365         x_minus=''
4366         $x_cpp <testcpp.c >testcpp.out 2>&1
4367         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4368                 echo "OK, that will do." >&4
4369         else
4370 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4371                 exit 1
4372         fi
4373 fi
4374
4375 case "$ok" in
4376 false)
4377         cppstdin="$x_cpp"
4378         cppminus="$x_minus"
4379         cpprun="$x_cpp"
4380         cpplast="$x_minus"
4381         set X $x_cpp
4382         shift
4383         case "$1" in
4384         "$cpp")
4385                 echo "Perhaps can we force $cc -E using a wrapper..."
4386                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4387                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4388                 then
4389                         echo "Yup, we can."
4390                         cppstdin="$wrapper"
4391                         cppminus='';
4392                 else
4393                         echo "Nope, we'll have to live without it..."
4394                 fi
4395                 ;;
4396         esac
4397         case "$cpprun" in
4398         "$wrapper")
4399                 cpprun=''
4400                 cpplast=''
4401                 ;;
4402         esac
4403         ;;
4404 esac
4405
4406 case "$cppstdin" in
4407 "$wrapper"|'cppstdin') ;;
4408 *) $rm -f $wrapper;;
4409 esac
4410 $rm -f testcpp.c testcpp.out
4411
4412 : Set private lib path
4413 case "$plibpth" in
4414 '') if ./mips; then
4415                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4416         fi;;
4417 esac
4418 case "$libpth" in
4419 ' ') dlist='';;
4420 '') dlist="$loclibpth $plibpth $glibpth";;
4421 *) dlist="$libpth";;
4422 esac
4423
4424 : Now check and see which directories actually exist, avoiding duplicates
4425 libpth=''
4426 for xxx in $dlist
4427 do
4428     if $test -d $xxx; then
4429                 case " $libpth " in
4430                 *" $xxx "*) ;;
4431                 *) libpth="$libpth $xxx";;
4432                 esac
4433     fi
4434 done
4435 $cat <<'EOM'
4436
4437 Some systems have incompatible or broken versions of libraries.  Among
4438 the directories listed in the question below, please remove any you
4439 know not to be holding relevant libraries, and add any that are needed.
4440 Say "none" for none.
4441
4442 EOM
4443 case "$libpth" in
4444 '') dflt='none';;
4445 *)
4446         set X $libpth
4447         shift
4448         dflt=${1+"$@"}
4449         ;;
4450 esac
4451 rp="Directories to use for library searches?"
4452 . ./myread
4453 case "$ans" in
4454 none) libpth=' ';;
4455 *) libpth="$ans";;
4456 esac
4457
4458 : compute shared library extension
4459 case "$so" in
4460 '')
4461         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4462                 dflt='sl'
4463         else
4464                 dflt='so'
4465         fi
4466         ;;
4467 *) dflt="$so";;
4468 esac
4469 $cat <<EOM
4470
4471 On some systems, shared libraries may be available.  Answer 'none' if
4472 you want to suppress searching of shared libraries for the remainder
4473 of this configuration.
4474
4475 EOM
4476 rp='What is the file extension used for shared libraries?'
4477 . ./myread
4478 so="$ans"
4479
4480 : Define several unixisms.
4481 : Hints files or command line option can be used to override them.
4482 : The convoluted testing is in case hints files set either the old
4483 : or the new name.
4484 case "$_exe" in
4485 '')     case "$exe_ext" in
4486         '')     ;;
4487         *)      _exe="$exe_ext" ;;
4488         esac
4489         ;;
4490 esac
4491 case "$_a" in
4492 '')     case "$lib_ext" in
4493     '') _a='.a';;
4494         *)      _a="$lib_ext" ;;
4495         esac
4496         ;;
4497 esac
4498 case "$_o" in
4499 '') case "$obj_ext" in
4500         '')     _o='.o';;
4501         *)      _o="$obj_ext";;
4502         esac
4503         ;;
4504 esac
4505 case "$p_" in
4506 '') case "$path_sep" in
4507         '')     p_=':';;
4508         *)      p_="$path_sep";;
4509         esac
4510         ;;
4511 esac
4512 exe_ext=$_exe
4513 lib_ext=$_a
4514 obj_ext=$_o
4515 path_sep=$p_
4516
4517 : Which makefile gets called first.  This is used by make depend.
4518 case "$firstmakefile" in
4519 '') firstmakefile='makefile';;
4520 esac
4521
4522 case "$ccflags" in
4523 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
4524 esac
4525
4526 case "$uselongdouble" in
4527 $define|true|[yY]*)     dflt='y';;
4528 *) dflt='n';;
4529 esac
4530 cat <<EOM
4531
4532 Perl can be built to take advantage of long doubles which
4533 (if available) may give more accuracy and range for floating point numbers.
4534
4535 If this doesn't make any sense to you, just accept the default '$dflt'.
4536 EOM
4537 rp='Try to use long doubles if available?'
4538 . ./myread
4539 case "$ans" in
4540 y|Y)    val="$define"   ;;
4541 *)      val="$undef"    ;;
4542 esac
4543 set uselongdouble
4544 eval $setvar
4545
4546 case "$uselongdouble" in
4547 true|[yY]*) uselongdouble="$define" ;;
4548 esac
4549
4550 case "$uselongdouble" in
4551 $define)
4552 : Look for a hint-file generated 'call-back-unit'.  If the
4553 : user has specified that long doubles should be used,
4554 : we may need to set or change some other defaults.
4555         if $test -f uselongdouble.cbu; then
4556                 echo "Your platform has some specific hints for long doubles, using them..."
4557                 . ./uselongdouble.cbu
4558         else
4559                 $cat <<EOM
4560 (Your platform doesn't have any specific hints for long doubles.)
4561 EOM
4562         fi
4563         ;;
4564 esac
4565
4566 : Looking for optional libraries
4567 echo " "
4568 echo "Checking for optional libraries..." >&4
4569 case "$libs" in
4570 ' '|'') dflt='';;
4571 *) dflt="$libs";;
4572 esac
4573 case "$libswanted" in
4574 '') libswanted='c_s';;
4575 esac
4576 case "$usesocks" in
4577 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4578 esac
4579 libsfound=''
4580 libsfiles=''
4581 libsdirs=''
4582 libspath=''
4583 for thisdir in $libpth $xlibpth; do
4584   test -d $thisdir && libspath="$libspath $thisdir"
4585 done
4586 for thislib in $libswanted; do
4587         for thisdir in $libspath; do
4588             xxx=''
4589             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4590                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4591                 $test -f "$xxx" && eval $libscheck
4592                 $test -f "$xxx" && libstyle=shared
4593             fi
4594             if test ! -f "$xxx"; then
4595                 xxx=$thisdir/lib$thislib.$so
4596                 $test -f "$xxx" && eval $libscheck
4597                 $test -f "$xxx" && libstyle=shared
4598             fi  
4599             if test ! -f "$xxx"; then
4600                 xxx=$thisdir/lib$thislib$_a
4601                 $test -f "$xxx" && eval $libscheck
4602                 $test -f "$xxx" && libstyle=static
4603             fi
4604             if test ! -f "$xxx"; then
4605                 xxx=$thisdir/$thislib$_a
4606                 $test -f "$xxx" && eval $libscheck
4607                 $test -f "$xxx" && libstyle=static
4608             fi
4609             if test ! -f "$xxx"; then
4610                 xxx=$thisdir/lib${thislib}_s$_a
4611                 $test -f "$xxx" && eval $libscheck
4612                 $test -f "$xxx" && libstyle=static
4613                 $test -f "$xxx" && thislib=${thislib}_s
4614             fi
4615             if test ! -f "$xxx"; then
4616                 xxx=$thisdir/Slib$thislib$_a
4617                 $test -f "$xxx" && eval $libscheck
4618                 $test -f "$xxx" && libstyle=static
4619             fi
4620             if $test -f "$xxx"; then
4621                 case "$libstyle" in
4622                 shared) echo "Found -l$thislib (shared)." ;;
4623                 static) echo "Found -l$thislib." ;;
4624                 *)      echo "Found -l$thislib ($libstyle)." ;;
4625                 esac
4626                 case " $dflt " in
4627                 *"-l$thislib "*);;
4628                 *) dflt="$dflt -l$thislib"
4629                    libsfound="$libsfound $xxx"
4630                    yyy=`basename $xxx`
4631                    libsfiles="$libsfiles $yyy"
4632                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4633                    case " $libsdirs " in
4634                    *" $yyy "*) ;;
4635                    *) libsdirs="$libsdirs $yyy" ;;
4636                    esac
4637                    ;;
4638                 esac
4639                 break
4640             fi  
4641         done
4642         if $test ! -f "$xxx"; then
4643             echo "No -l$thislib."
4644         fi
4645 done
4646 set X $dflt
4647 shift
4648 dflt="$*"
4649 case "$libs" in
4650 '') dflt="$dflt";;
4651 *) dflt="$libs";;
4652 esac
4653 case "$dflt" in
4654 ' '|'') dflt='none';;
4655 esac
4656
4657 $cat <<EOM
4658
4659 In order to compile $package on your machine, a number of libraries
4660 are usually needed.  Include any other special libraries here as well.
4661 Say "none" for none.  The default list is almost always right.
4662 EOM
4663
4664 echo " "
4665 rp="What libraries to use?"
4666 . ./myread
4667 case "$ans" in
4668 none) libs=' ';;
4669 *) libs="$ans";;
4670 esac
4671
4672 : determine optimization, if desired, or use for debug flag also
4673 case "$optimize" in
4674 ' '|$undef) dflt='none';;
4675 '') dflt='-O';;
4676 *) dflt="$optimize";;
4677 esac
4678 $cat <<EOH
4679
4680 By default, $package compiles with the -O flag to use the optimizer.
4681 Alternately, you might want to use the symbolic debugger, which uses
4682 the -g flag (on traditional Unix systems).  Either flag can be
4683 specified here.  To use neither flag, specify the word "none".
4684
4685 EOH
4686 rp="What optimizer/debugger flag should be used?"
4687 . ./myread
4688 optimize="$ans"
4689 case "$optimize" in
4690 'none') optimize=" ";;
4691 esac
4692
4693 dflt=''
4694 : We will not override a previous value, but we might want to
4695 : augment a hint file
4696 case "$hint" in
4697 default|recommended)
4698         case "$gccversion" in
4699         1*) dflt='-fpcc-struct-return' ;;
4700         esac
4701         case "$optimize" in
4702         *-g*) dflt="$dflt -DDEBUGGING";;
4703         esac
4704         case "$gccversion" in
4705         2*) if test -d /etc/conf/kconfig.d &&
4706                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
4707                 then
4708                         dflt="$dflt -posix"
4709                 fi
4710                 ;;
4711         esac
4712         case "$gccversion" in
4713         1*) ;;
4714         2.[0-8]*) ;;
4715         ?*)     echo " "
4716                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
4717                 echo 'int main(void) { return 0; }' > gcctest.c
4718                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
4719                         echo "Yes, it does." 2>&1
4720                         case "$ccflags" in
4721                         *strict-aliasing*) 
4722                                 echo "Leaving current flags $ccflags alone." 2>&1
4723                                 ;;
4724                         *) dflt="$dflt -fno-strict-aliasing" ;;
4725                         esac
4726                 else
4727                         echo "Nope, it doesn't, but that's ok." 2>&1
4728                 fi
4729                 ;;
4730         esac
4731         ;;
4732 esac
4733
4734 case "$mips_type" in
4735 *BSD*|'') inclwanted="$locincpth $usrinc";;
4736 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
4737 esac
4738 for thisincl in $inclwanted; do
4739         if $test -d $thisincl; then
4740                 if $test x$thisincl != x$usrinc; then
4741                         case "$dflt" in
4742                         *" -I$thisincl "*);;
4743                         *) dflt="$dflt -I$thisincl ";;
4744                         esac
4745                 fi
4746         fi
4747 done
4748
4749 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
4750         xxx=true;
4751 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
4752         xxx=true;
4753 else
4754         xxx=false;
4755 fi;
4756 if $xxx; then
4757         case "$dflt" in
4758         *$2*);;
4759         *) dflt="$dflt -D$2";;
4760         esac;
4761 fi'
4762
4763 set signal.h LANGUAGE_C; eval $inctest
4764
4765 case "$usesocks" in
4766 $define)
4767         ccflags="$ccflags -DSOCKS"
4768         ;;
4769 esac
4770
4771 case "$hint" in
4772 default|recommended) dflt="$ccflags $dflt" ;;
4773 *) dflt="$ccflags";;
4774 esac
4775
4776 case "$dflt" in
4777 ''|' ') dflt=none;;
4778 esac
4779
4780 $cat <<EOH
4781
4782 Your C compiler may want other flags.  For this question you should include
4783 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4784 but you should NOT include libraries or ld flags like -lwhatever.  If you
4785 want $package to honor its debug switch, you should include -DDEBUGGING here.
4786 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4787
4788 To use no flags, specify the word "none".
4789
4790 EOH
4791 set X $dflt
4792 shift
4793 dflt=${1+"$@"}
4794 rp="Any additional cc flags?"
4795 . ./myread
4796 case "$ans" in
4797 none) ccflags='';;
4798 *) ccflags="$ans";;
4799 esac
4800
4801 : the following weeds options from ccflags that are of no interest to cpp
4802 case "$cppflags" in
4803 '') cppflags="$ccflags" ;;
4804 *)  cppflags="$cppflags $ccflags" ;;
4805 esac
4806 case "$gccversion" in
4807 1*) cppflags="$cppflags -D__GNUC__"
4808 esac
4809 case "$mips_type" in
4810 '');;
4811 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4812 esac
4813 case "$cppflags" in
4814 '');;
4815 *)
4816         echo " "
4817         echo "Let me guess what the preprocessor flags are..." >&4
4818         set X $cppflags
4819         shift
4820         cppflags=''
4821         $cat >cpp.c <<'EOM'
4822 #define BLURFL foo
4823
4824 BLURFL xx LFRULB
4825 EOM
4826         previous=''
4827         for flag in $*
4828         do
4829                 case "$flag" in
4830                 -*) ftry="$flag";;
4831                 *) ftry="$previous $flag";;
4832                 esac
4833                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4834                         >cpp1.out 2>/dev/null && \
4835                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4836                         >cpp2.out 2>/dev/null && \
4837                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4838                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4839                 then
4840                         cppflags="$cppflags $ftry"
4841                         previous=''
4842                 else
4843                         previous="$flag"
4844                 fi
4845         done
4846         set X $cppflags
4847         shift
4848         cppflags=${1+"$@"}
4849         case "$cppflags" in
4850         *-*)  echo "They appear to be: $cppflags";;
4851         esac
4852         $rm -f cpp.c cpp?.out
4853         ;;
4854 esac
4855
4856 : flags used in final linking phase
4857 case "$ldflags" in
4858 '') if ./venix; then
4859                 dflt='-i -z'
4860         else
4861                 dflt=''
4862         fi
4863         case "$ccflags" in
4864         *-posix*) dflt="$dflt -posix" ;;
4865         esac
4866         ;;
4867 *) dflt="$ldflags";;
4868 esac
4869
4870 : Try to guess additional flags to pick up local libraries.
4871 for thislibdir in $libpth; do
4872         case " $loclibpth " in
4873         *" $thislibdir "*)
4874                 case "$dflt " in 
4875                 *"-L$thislibdir "*) ;;
4876                 *)  dflt="$dflt -L$thislibdir" ;;
4877                 esac
4878                 ;;
4879         esac
4880 done
4881
4882 case "$dflt" in
4883 '') dflt='none' ;;
4884 esac
4885
4886 $cat <<EOH
4887
4888 Your C linker may need flags.  For this question you should
4889 include -L/whatever and any other flags used by the C linker, but you
4890 should NOT include libraries like -lwhatever.
4891
4892 Make sure you include the appropriate -L/path flags if your C linker
4893 does not normally search all of the directories you specified above,
4894 namely
4895         $libpth
4896 To use no flags, specify the word "none".
4897
4898 EOH
4899
4900 rp="Any additional ld flags (NOT including libraries)?"
4901 . ./myread
4902 case "$ans" in
4903 none) ldflags='';;
4904 *) ldflags="$ans";;
4905 esac
4906 rmlist="$rmlist pdp11"
4907
4908 : coherency check
4909 echo " "
4910 echo "Checking your choice of C compiler and flags for coherency..." >&4
4911 $cat > try.c <<'EOF'
4912 #include <stdio.h>
4913 int main() { printf("Ok\n"); return(0); }
4914 EOF
4915 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
4916 shift
4917 $cat >try.msg <<'EOM'
4918 I've tried to compile and run the following simple program:
4919
4920 EOM
4921 $cat try.c >> try.msg
4922
4923 $cat >> try.msg <<EOM
4924
4925 I used the command:
4926
4927         $*
4928         $run ./try
4929
4930 and I got the following output:
4931
4932 EOM
4933 dflt=y
4934 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
4935         if $sh -c "$run ./try" >>try.msg 2>&1; then
4936                 xxx=`$run ./try`
4937                 case "$xxx" in
4938                 "Ok") dflt=n ;;
4939                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4940                         case " $libs " in
4941                         *" -lsfio "*)
4942                                 cat >> try.msg <<'EOQS'
4943 If $libs contains -lsfio, and sfio is mis-configured, then it
4944 sometimes (apparently) runs and exits with a 0 status, but with no
4945 output!  It may have to do with sfio's use of _exit vs. exit.
4946
4947 EOQS
4948                                 rp="You have a big problem.  Shall I abort Configure"
4949                                 dflt=y
4950                                 ;;
4951                         esac
4952                         ;;
4953                 esac
4954         else
4955                 echo "The program compiled OK, but exited with status $?." >>try.msg
4956                 rp="You have a problem.  Shall I abort Configure"
4957                 dflt=y
4958         fi
4959 else
4960         echo "I can't compile the test program." >>try.msg
4961         rp="You have a BIG problem.  Shall I abort Configure"
4962         dflt=y
4963 fi
4964 case "$dflt" in
4965 y)
4966         $cat try.msg >&4
4967         case "$knowitall" in
4968         '')
4969                 echo "(The supplied flags or libraries might be incorrect.)"
4970                 ;;
4971         *) dflt=n;;
4972         esac
4973         echo " "
4974         . ./myread
4975         case "$ans" in
4976         n*|N*) ;;
4977         *)      echo "Ok.  Stopping Configure." >&4
4978                 exit 1
4979                 ;;
4980         esac
4981         ;;
4982 n) echo "OK, that should do.";;
4983 esac
4984 $rm -f try try.* core
4985
4986 : define a shorthand compile call
4987 compile='
4988 mc_file=$1;
4989 shift;
4990 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
4991 : define a shorthand compile call for compilations that should be ok.
4992 compile_ok='
4993 mc_file=$1;
4994 shift;
4995 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
4996
4997 : determine filename position in cpp output
4998 echo " "
4999 echo "Computing filename position in cpp output for #include directives..." >&4
5000 case "$osname" in
5001 vos) testaccess=-e ;;
5002 *)   testaccess=-r ;;
5003 esac
5004 echo '#include <stdio.h>' > foo.c
5005 $cat >fieldn <<EOF
5006 $startsh
5007 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5008 $grep '^[       ]*#.*stdio\.h' | \
5009 while read cline; do
5010         pos=1
5011         set \$cline
5012         while $test \$# -gt 0; do
5013                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5014                         echo "\$pos"
5015                         exit 0
5016                 fi
5017                 shift
5018                 pos=\`expr \$pos + 1\`
5019         done
5020 done
5021 EOF
5022 chmod +x fieldn
5023 fieldn=`./fieldn`
5024 $rm -f foo.c fieldn
5025 case $fieldn in
5026 '') pos='???';;
5027 1) pos=first;;
5028 2) pos=second;;
5029 3) pos=third;;
5030 *) pos="${fieldn}th";;
5031 esac
5032 echo "Your cpp writes the filename in the $pos field of the line."
5033
5034 case "$osname" in
5035 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5036 os2) cppfilter="sed -e 's|\\\\\\\\|/|g' |" ;; # path component separator is \
5037 *)   cppfilter='' ;;
5038 esac
5039 : locate header file
5040 $cat >findhdr <<EOF
5041 $startsh
5042 wanted=\$1
5043 name=''
5044 for usrincdir in $usrinc
5045 do
5046         if test -f \$usrincdir/\$wanted; then
5047                 echo "\$usrincdir/\$wanted"
5048                 exit 0
5049         fi
5050 done
5051 awkprg='{ print \$$fieldn }'
5052 echo "#include <\$wanted>" > foo\$\$.c
5053 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5054 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5055 while read cline; do
5056         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5057         case "\$name" in
5058         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5059         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5060         *) exit 2;;
5061         esac;
5062 done;
5063 #
5064 # status = 0: grep returned 0 lines, case statement not executed
5065 # status = 1: headerfile found
5066 # status = 2: while loop executed, no headerfile found
5067 #
5068 status=\$?
5069 $rm -f foo\$\$.c;
5070 if test \$status -eq 1; then
5071         exit 0;
5072 fi
5073 exit 1
5074 EOF
5075 chmod +x findhdr
5076
5077 : define an alternate in-header-list? function
5078 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5079 cont=true; xxf="echo \"<\$1> found.\" >&4";
5080 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5081 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5082 esac;
5083 case $# in 4) instead=instead;; *) instead="at last";; esac;
5084 while $test "$cont"; do
5085         xxx=`./findhdr $1`
5086         var=$2; eval "was=\$$2";
5087         if $test "$xxx" && $test -r "$xxx";
5088         then eval $xxf;
5089         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5090                 cont="";
5091         else eval $xxnf;
5092         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5093         set $yyy; shift; shift; yyy=$@;
5094         case $# in 0) cont="";;
5095         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5096                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5097         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5098                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5099         esac;
5100 done;
5101 while $test "$yyy";
5102 do set $yyy; var=$2; eval "was=\$$2";
5103         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5104         set $yyy; shift; shift; yyy=$@;
5105 done'
5106
5107 : see if stdlib is available
5108 set stdlib.h i_stdlib
5109 eval $inhdr
5110
5111 : check for lengths of integral types
5112 echo " "
5113 case "$intsize" in
5114 '')
5115         echo "Checking to see how big your integers are..." >&4
5116         $cat >try.c <<EOCP
5117 #include <stdio.h>
5118 #$i_stdlib I_STDLIB
5119 #ifdef I_STDLIB
5120 #include <stdlib.h>
5121 #endif
5122 int main()
5123 {
5124         printf("intsize=%d;\n", (int)sizeof(int));
5125         printf("longsize=%d;\n", (int)sizeof(long));
5126         printf("shortsize=%d;\n", (int)sizeof(short));
5127         exit(0);
5128 }
5129 EOCP
5130         set try
5131         if eval $compile_ok && $run ./try > /dev/null; then
5132                 eval `$run ./try`
5133                 echo "Your integers are $intsize bytes long."
5134                 echo "Your long integers are $longsize bytes long."
5135                 echo "Your short integers are $shortsize bytes long."
5136         else
5137                 $cat >&4 <<EOM
5138 !
5139 Help! I can't compile and run the intsize test program: please enlighten me!
5140 (This is probably a misconfiguration in your system or libraries, and
5141 you really ought to fix it.  Still, I'll try anyway.)
5142 !
5143 EOM
5144                 dflt=4
5145                 rp="What is the size of an integer (in bytes)?"
5146                 . ./myread
5147                 intsize="$ans"
5148                 dflt=$intsize
5149                 rp="What is the size of a long integer (in bytes)?"
5150                 . ./myread
5151                 longsize="$ans"
5152                 dflt=2
5153                 rp="What is the size of a short integer (in bytes)?"
5154                 . ./myread
5155                 shortsize="$ans"
5156         fi
5157         ;;
5158 esac
5159 $rm -f try try.*
5160
5161 : check for long long
5162 echo " "
5163 echo "Checking to see if you have long long..." >&4
5164 echo 'int main() { long long x = 7; return 0; }' > try.c
5165 set try
5166 if eval $compile; then
5167         val="$define"
5168         echo "You have long long."
5169 else
5170         val="$undef"
5171         echo "You do not have long long."
5172 fi
5173 $rm try.*
5174 set d_longlong
5175 eval $setvar
5176
5177 : check for length of long long
5178 case "${d_longlong}${longlongsize}" in
5179 $define)
5180         echo " "
5181         echo "Checking to see how big your long longs are..." >&4
5182         $cat >try.c <<'EOCP'
5183 #include <stdio.h>
5184 int main()
5185 {
5186     printf("%d\n", (int)sizeof(long long));
5187     return(0);
5188 }
5189 EOCP
5190         set try
5191         if eval $compile_ok; then
5192                 longlongsize=`$run ./try`
5193                 echo "Your long longs are $longlongsize bytes long."
5194         else
5195                 dflt='8'
5196                 echo " "
5197                 echo "(I can't seem to compile the test program.  Guessing...)"
5198                 rp="What is the size of a long long (in bytes)?"
5199                 . ./myread
5200                 longlongsize="$ans"
5201         fi
5202         if $test "X$longsize" = "X$longlongsize"; then
5203                 echo "(That isn't any different from an ordinary long.)"
5204         fi      
5205         ;;
5206 esac
5207 $rm -f try.* try
5208
5209 : see if inttypes.h is available
5210 : we want a real compile instead of Inhdr because some systems
5211 : have an inttypes.h which includes non-existent headers
5212 echo " "
5213 $cat >try.c <<EOCP
5214 #include <inttypes.h>
5215 int main() {
5216         static int32_t foo32 = 0x12345678;
5217 }
5218 EOCP
5219 set try
5220 if eval $compile; then
5221         echo "<inttypes.h> found." >&4
5222         val="$define"
5223 else
5224         echo "<inttypes.h> NOT found." >&4
5225         val="$undef"
5226 fi
5227 $rm -f try.c try
5228 set i_inttypes
5229 eval $setvar
5230
5231 : check for int64_t
5232 echo " "
5233 echo "Checking to see if you have int64_t..." >&4
5234 $cat >try.c <<EOCP
5235 #include <sys/types.h>
5236 #$i_inttypes I_INTTYPES
5237 #ifdef I_INTTYPES
5238 #include <inttypes.h>
5239 #endif
5240 int main() { int64_t x = 7; }
5241 EOCP
5242 set try
5243 if eval $compile; then
5244         val="$define"
5245         echo "You have int64_t."
5246 else
5247         val="$undef"
5248         echo "You do not have int64_t."
5249 fi
5250 $rm -f try try.*
5251 set d_int64_t
5252 eval $setvar
5253
5254
5255 echo " "
5256 echo "Checking which 64-bit integer type we could use..." >&4
5257
5258 case "$intsize" in
5259 8) val=int
5260    set quadtype
5261    eval $setvar
5262    val='"unsigned int"'
5263    set uquadtype
5264    eval $setvar
5265    quadkind=1
5266    ;;
5267 *) case "$longsize" in
5268    8) val=long
5269       set quadtype
5270       eval $setvar
5271       val='"unsigned long"'
5272       set uquadtype
5273       eval $setvar
5274       quadkind=2
5275       ;;
5276    *) case "$d_longlong:$longlongsize" in
5277       define:8)
5278         val='"long long"'
5279         set quadtype
5280         eval $setvar
5281         val='"unsigned long long"'
5282         set uquadtype
5283         eval $setvar
5284         quadkind=3
5285         ;;
5286       *) case "$d_int64_t" in
5287          define)
5288            val=int64_t
5289            set quadtype
5290            eval $setvar
5291            val=uint64_t
5292            set uquadtype
5293            eval $setvar
5294            quadkind=4
5295            ;;
5296          esac
5297          ;;
5298       esac
5299       ;;
5300    esac
5301    ;;
5302 esac
5303
5304 case "$quadtype" in
5305 '')     echo "Alas, no 64-bit integer types in sight." >&4
5306         d_quad="$undef"
5307         ;;
5308 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5309         d_quad="$define"
5310         ;;
5311 esac
5312
5313
5314 case "$uselonglong" in
5315 "$define"|true|[yY]*)
5316         cat <<EOM >&4
5317
5318 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5319 EOM
5320         use64bitint="$define"
5321         ;;
5322 esac                          
5323 case "$use64bits" in
5324 "$define"|true|[yY]*)
5325         cat <<EOM >&4
5326
5327 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5328 EOM
5329         use64bitint="$define"
5330         ;;
5331 esac                          
5332 case "$use64bitints" in
5333 "$define"|true|[yY]*)
5334         cat <<EOM >&4
5335
5336 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5337 EOM
5338         use64bitint="$define"
5339         ;;
5340 esac                          
5341 case "$use64bitsint" in
5342 "$define"|true|[yY]*)
5343         cat <<EOM >&4
5344
5345 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5346 EOM
5347         use64bitint="$define"
5348         ;;
5349 esac                          
5350 case "$uselonglongs" in
5351 "$define"|true|[yY]*)
5352         cat <<EOM >&4
5353
5354 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5355 EOM
5356         use64bitint="$define"
5357         ;;
5358 esac                          
5359 case "$use64bitsall" in
5360 "$define"|true|[yY]*)
5361         cat <<EOM >&4
5362
5363 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5364 EOM
5365         use64bitall="$define"
5366         ;;
5367 esac                          
5368
5369 case "$ccflags" in
5370 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5371 esac
5372 case "$use64bitall" in
5373 "$define"|true|[yY]*) use64bitint="$define" ;;
5374 esac
5375
5376 case "$longsize" in
5377 8) cat <<EOM
5378
5379 You have natively 64-bit long integers.
5380 EOM
5381    val="$define"
5382    ;;
5383 *) case "$use64bitint" in
5384    "$define"|true|[yY]*) dflt='y';;
5385    *) dflt='n';;
5386    esac
5387    case "$d_quad" in
5388    "$define") ;;
5389    *) dflt='n' ;;
5390    esac
5391    cat <<EOM
5392
5393 Perl can be built to take advantage of 64-bit integer types
5394 on some systems.  To do so, Configure can be run with -Duse64bitint.
5395 Choosing this option will most probably introduce binary incompatibilities.
5396
5397 If this doesn't make any sense to you, just accept the default '$dflt'.
5398 (The default has been chosen based on your configuration.)
5399 EOM
5400    rp='Try to use 64-bit integers, if available?'
5401    . ./myread
5402    case "$ans" in
5403    [yY]*) val="$define" ;;
5404    *)     val="$undef"  ;;
5405    esac
5406    ;;
5407 esac
5408 set use64bitint
5409 eval $setvar
5410
5411 case "$use64bitall" in
5412 "$define"|true|[yY]*) dflt='y' ;;
5413 *) case "$longsize" in
5414    8) dflt='y' ;;
5415    *) dflt='n' ;;
5416    esac
5417    ;;
5418 esac    
5419 cat <<EOM
5420
5421 You may also choose to try maximal 64-bitness.  It means using as much
5422 64-bitness as possible on the platform.  This in turn means even more
5423 binary incompatibilities.  On the other hand, your platform may not
5424 have any more 64-bitness available than what you already have chosen.
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 maximal 64-bit support, if available?'
5430 . ./myread
5431 case "$ans" in
5432 [yY]*) val="$define" ;;
5433 *)     val="$undef"  ;;
5434 esac
5435 set use64bitall
5436 eval $setvar
5437 case "$use64bitall" in
5438 "$define")
5439         case "$use64bitint" in
5440         "$undef")
5441                 cat <<EOM
5442
5443 Since you have chosen a maximally 64-bit build, I'm also turning on
5444 the use of 64-bit integers.
5445 EOM
5446                 use64bitint="$define" ;;
5447         esac
5448         ;;
5449 esac
5450
5451 case "$use64bitint" in
5452 "$define"|true|[yY]*)
5453 : Look for a hint-file generated 'call-back-unit'.  If the
5454 : user has specified that a 64-bit perl is to be built,
5455 : we may need to set or change some other defaults.
5456         if $test -f use64bitint.cbu; then
5457                 echo "Your platform has some specific hints for 64-bit integers, using them..."
5458                 . ./use64bitint.cbu
5459         fi
5460         case "$longsize" in
5461         4) case "$archname64" in
5462            '') archname64=64int ;;
5463            esac
5464            ;;
5465         esac
5466         ;;
5467 esac
5468
5469 case "$use64bitall" in
5470 "$define"|true|[yY]*)
5471 : Look for a hint-file generated 'call-back-unit'.  If the
5472 : user has specified that a maximally 64-bit perl is to be built,
5473 : we may need to set or change some other defaults.
5474         if $test -f use64bitall.cbu; then
5475                 echo "Your platform has some specific hints for 64-bit builds, using them..."
5476                 . ./use64bitall.cbu
5477         fi
5478         case "$longsize" in
5479         4) case "$archname64" in
5480            ''|64int) archname64=64all ;;
5481            esac
5482            ;;
5483         esac
5484         ;;
5485 esac
5486
5487 case "$d_quad:$use64bitint" in
5488 $undef:$define)
5489         cat >&4 <<EOF
5490
5491 *** You have chosen to use 64-bit integers,
5492 *** but none cannot be found.
5493 *** Please rerun Configure without -Duse64bitint and/or -Dusemorebits.
5494 *** Cannot continue, aborting.
5495
5496 EOF
5497         exit 1
5498         ;;
5499 esac
5500
5501 : check for length of double
5502 echo " "
5503 case "$doublesize" in
5504 '')
5505         echo "Checking to see how big your double precision numbers are..." >&4
5506         $cat >try.c <<EOCP
5507 #include <stdio.h>
5508 #$i_stdlib I_STDLIB
5509 #ifdef I_STDLIB
5510 #include <stdlib.h>
5511 #endif
5512 int main()
5513 {
5514     printf("%d\n", (int)sizeof(double));
5515     exit(0);
5516 }
5517 EOCP
5518         set try
5519         if eval $compile_ok; then
5520                 doublesize=`$run ./try`
5521                 echo "Your double is $doublesize bytes long."
5522         else
5523                 dflt='8'
5524                 echo "(I can't seem to compile the test program.  Guessing...)"
5525                 rp="What is the size of a double precision number (in bytes)?"
5526                 . ./myread
5527                 doublesize="$ans"
5528         fi
5529         ;;
5530 esac
5531 $rm -f try.c try
5532
5533 : check for long doubles
5534 echo " "
5535 echo "Checking to see if you have long double..." >&4
5536 echo 'int main() { long double x = 7.0; }' > try.c
5537 set try
5538 if eval $compile; then
5539         val="$define"
5540         echo "You have long double."
5541 else
5542         val="$undef"
5543         echo "You do not have long double."
5544 fi
5545 $rm try.*
5546 set d_longdbl
5547 eval $setvar
5548
5549 : check for length of long double
5550 case "${d_longdbl}${longdblsize}" in
5551 $define)
5552         echo " "
5553         echo "Checking to see how big your long doubles are..." >&4
5554         $cat >try.c <<'EOCP'
5555 #include <stdio.h>
5556 int main()
5557 {
5558         printf("%d\n", sizeof(long double));
5559 }
5560 EOCP
5561         set try
5562         set try
5563         if eval $compile; then
5564                 longdblsize=`$run ./try`
5565                 echo "Your long doubles are $longdblsize bytes long."
5566         else
5567                 dflt='8'
5568                 echo " "
5569                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
5570                 rp="What is the size of a long double (in bytes)?"
5571                 . ./myread
5572                 longdblsize="$ans"
5573         fi
5574         if $test "X$doublesize" = "X$longdblsize"; then
5575                 echo "(That isn't any different from an ordinary double.)"
5576         fi      
5577         ;;
5578 esac
5579 $rm -f try.* try
5580
5581 : determine the architecture name
5582 echo " "
5583 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
5584         tarch=`arch`"-$osname"
5585 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
5586         if uname -m > tmparch 2>&1 ; then
5587                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
5588                         -e 's/$/'"-$osname/" tmparch`
5589         else
5590                 tarch="$osname"
5591         fi
5592         $rm -f tmparch
5593 else
5594         tarch="$osname"
5595 fi
5596 case "$myarchname" in
5597 ''|"$tarch") ;;
5598 *)
5599         echo "(Your architecture name used to be $myarchname.)"
5600         archname=''
5601         ;;
5602 esac
5603 case "$targetarch" in
5604 '') ;;
5605 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
5606 esac
5607 myarchname="$tarch"
5608 case "$archname" in
5609 '') dflt="$tarch";;
5610 *) dflt="$archname";;
5611 esac
5612 rp='What is your architecture name'
5613 . ./myread
5614 archname="$ans"
5615 case "$usethreads" in
5616 $define)
5617         echo "Threads selected." >&4
5618         case "$archname" in
5619         *-thread*) echo "...and architecture name already has -thread." >&4
5620                 ;;
5621         *)      archname="$archname-thread"
5622                 echo "...setting architecture name to $archname." >&4
5623                 ;;
5624         esac
5625         ;;
5626 esac
5627 case "$usemultiplicity" in
5628 $define)
5629         echo "Multiplicity selected." >&4
5630         case "$archname" in
5631         *-multi*) echo "...and architecture name already has -multi." >&4
5632                 ;;
5633         *)      archname="$archname-multi"
5634                 echo "...setting architecture name to $archname." >&4
5635                 ;;
5636         esac
5637         ;;
5638 esac
5639 case "$use64bitint$use64bitall" in
5640 *"$define"*)
5641         case "$archname64" in
5642         '')
5643                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
5644                 ;;
5645         *)
5646                 case "$use64bitint" in
5647                 "$define") echo "64 bit integers selected." >&4 ;;
5648                 esac
5649                 case "$use64bitall" in
5650                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
5651                 esac
5652                 case "$archname" in
5653                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
5654                         ;;
5655                 *)      archname="$archname-$archname64"
5656                         echo "...setting architecture name to $archname." >&4
5657                         ;;
5658                 esac
5659                 ;;
5660         esac
5661 esac
5662 case "$uselongdouble" in
5663 $define)
5664         echo "Long doubles selected." >&4
5665         case "$longdblsize" in
5666         $doublesize)
5667                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
5668                 ;;
5669         *)
5670                 case "$archname" in
5671                 *-ld*) echo "...and architecture name already has -ld." >&4
5672                         ;;
5673                 *)      archname="$archname-ld"
5674                         echo "...setting architecture name to $archname." >&4
5675                         ;;
5676                 esac
5677                 ;;
5678         esac
5679         ;;
5680 esac
5681 case "$useperlio" in
5682 $define)
5683         echo "Perlio selected." >&4
5684         ;;
5685 *)
5686         echo "Perlio not selected, using stdio." >&4
5687         case "$archname" in
5688         *-stdio*) echo "...and architecture name already has -stdio." >&4
5689                 ;;
5690         *)      archname="$archname-stdio"
5691                 echo "...setting architecture name to $archname." >&4
5692                 ;;
5693         esac
5694         ;;
5695 esac
5696
5697 : determine root of directory hierarchy where package will be installed.
5698 case "$prefix" in
5699 '')
5700         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
5701         ;;
5702 *?/)
5703         dflt=`echo "$prefix" | sed 's/.$//'`
5704         ;;
5705 *)
5706         dflt="$prefix"
5707         ;;
5708 esac
5709 $cat <<EOM
5710
5711 By default, $package will be installed in $dflt/bin, manual pages
5712 under $dflt/man, etc..., i.e. with $dflt as prefix for all
5713 installation directories. Typically this is something like /usr/local.
5714 If you wish to have binaries under /usr/bin but other parts of the
5715 installation under /usr/local, that's ok: you will be prompted
5716 separately for each of the installation directories, the prefix being
5717 only used to set the defaults.
5718
5719 EOM
5720 fn=d~
5721 rp='Installation prefix to use?'
5722 . ./getfile
5723 oldprefix=''
5724 case "$prefix" in
5725 '') ;;
5726 *)
5727         case "$ans" in
5728         "$prefix") ;;
5729         *) oldprefix="$prefix";;
5730         esac
5731         ;;
5732 esac
5733 prefix="$ans"
5734 prefixexp="$ansexp"
5735
5736 case "$afsroot" in
5737 '')     afsroot=/afs ;;
5738 *)      afsroot=$afsroot ;;
5739 esac
5740
5741 : is AFS running?
5742 echo " "
5743 case "$afs" in
5744 $define|true)   afs=true ;;
5745 $undef|false)   afs=false ;;
5746 *)      if test -d $afsroot; then
5747                 afs=true
5748         else
5749                 afs=false
5750         fi
5751         ;;
5752 esac
5753 if $afs; then
5754         echo "AFS may be running... I'll be extra cautious then..." >&4
5755 else
5756         echo "AFS does not seem to be running..." >&4
5757 fi
5758
5759 : determine installation prefix for where package is to be installed.
5760 if $afs; then 
5761 $cat <<EOM
5762
5763 Since you are running AFS, I need to distinguish the directory in which
5764 files will reside from the directory in which they are installed (and from
5765 which they are presumably copied to the former directory by occult means).
5766
5767 EOM
5768         case "$installprefix" in
5769         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
5770         *) dflt="$installprefix";;
5771         esac
5772 else
5773 $cat <<EOM
5774
5775 In some special cases, particularly when building $package for distribution,
5776 it is convenient to distinguish the directory in which files should be
5777 installed from the directory ($prefix) in which they will
5778 eventually reside.  For most users, these two directories are the same.
5779
5780 EOM
5781         case "$installprefix" in
5782         '') dflt=$prefix ;;
5783         *) dflt=$installprefix;;
5784         esac
5785 fi
5786 fn=d~
5787 rp='What installation prefix should I use for installing files?'
5788 . ./getfile
5789 installprefix="$ans"
5790 installprefixexp="$ansexp"
5791
5792 : set the prefixit variable, to compute a suitable default value
5793 prefixit='case "$3" in
5794 ""|none)
5795         case "$oldprefix" in
5796         "") eval "$1=\"\$$2\"";;
5797         *)
5798                 case "$3" in
5799                 "") eval "$1=";;
5800                 none)
5801                         eval "tp=\"\$$2\"";
5802                         case "$tp" in
5803                         ""|" ") eval "$1=\"\$$2\"";;
5804                         *) eval "$1=";;
5805                         esac;;
5806                 esac;;
5807         esac;;
5808 *)
5809         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
5810         case "$tp" in
5811         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
5812         /*-$oldprefix/*|\~*-$oldprefix/*)
5813                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
5814         *) eval "$1=\"\$$2\"";;
5815         esac;;
5816 esac'
5817
5818 : get the patchlevel
5819 echo " "
5820 echo "Getting the current patchlevel..." >&4
5821 if $test -r $rsrc/patchlevel.h;then
5822         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
5823         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
5824         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5825         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
5826         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
5827         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5828        perl_patchlevel=`grep ',"DEVEL[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
5829 else
5830         revision=0
5831         patchlevel=0
5832         subversion=0
5833         api_revision=0
5834         api_version=0
5835         api_subversion=0
5836         perl_patchlevel=0
5837         $echo "(You do not have patchlevel.h.  Eek.)"
5838 fi
5839 if $test -r $rsrc/.patch ; then  
5840         if $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
5841                 perl_patchlevel=`cat $rsrc/.patch`
5842         fi
5843 fi
5844 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
5845 version_patchlevel_string="version $patchlevel subversion $subversion"
5846 case "$perl_patchlevel" in
5847 0|'') ;;
5848 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
5849 esac
5850
5851 $echo "(You have $package $version_patchlevel_string.)"
5852
5853 case "$osname" in
5854 dos|vms)
5855         : XXX Should be a Configure test for double-dots in filenames.
5856         version=`echo $revision $patchlevel $subversion | \
5857                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5858         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5859                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5860         ;;
5861 *)
5862         version=`echo $revision $patchlevel $subversion | \
5863                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5864         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5865                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5866         ;;
5867 esac
5868 : Special case the 5.005_xx maintenance series, which used 5.005
5869 : without any subversion label as a subdirectory in $sitelib
5870 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
5871         api_versionstring='5.005'
5872 fi
5873
5874 : determine installation style
5875 : For now, try to deduce it from prefix unless it is already set.
5876 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
5877 case "$installstyle" in
5878 '')     case "$prefix" in
5879                 *perl*) dflt='lib';;
5880                 *) dflt='lib/perl5' ;;
5881         esac
5882         ;;
5883 *)      dflt="$installstyle" ;;
5884 esac
5885 : Probably not worth prompting for this since we prompt for all
5886 : the directories individually, and the prompt would be too long and
5887 : confusing anyway.
5888 installstyle=$dflt
5889
5890 : determine where private library files go
5891 : Usual default is /usr/local/lib/perl5/$version.
5892 : Also allow things like /opt/perl/lib/$version, since 
5893 : /opt/perl/lib/perl5... would be redundant.
5894 : The default "style" setting is made in installstyle.U
5895 case "$installstyle" in
5896 *lib/perl5*) set dflt privlib lib/$package/$version ;;
5897 *)       set dflt privlib lib/$version ;;
5898 esac
5899 eval $prefixit
5900 $cat <<EOM
5901
5902 There are some auxiliary files for $package that need to be put into a
5903 private library directory that is accessible by everyone.
5904
5905 EOM
5906 fn=d~+
5907 rp='Pathname where the private library files will reside?'
5908 . ./getfile
5909 privlib="$ans"
5910 privlibexp="$ansexp"
5911 : Change installation prefix, if necessary.
5912 if $test X"$prefix" != X"$installprefix"; then
5913         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
5914 else
5915         installprivlib="$privlibexp"
5916 fi
5917
5918 : set the prefixup variable, to restore leading tilda escape
5919 prefixup='case "$prefixexp" in
5920 "$prefix") ;;
5921 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
5922 esac'
5923
5924 : determine where public architecture dependent libraries go
5925 set archlib archlib
5926 eval $prefixit
5927 : privlib default is /usr/local/lib/$package/$version
5928 : archlib default is /usr/local/lib/$package/$version/$archname
5929 : privlib may have an optional trailing /share.
5930 tdflt=`echo $privlib | $sed 's,/share$,,'`
5931 tdflt=$tdflt/$archname
5932 case "$archlib" in
5933 '')     dflt=$tdflt
5934         ;;
5935 *)      dflt="$archlib"
5936     ;;
5937 esac
5938 $cat <<EOM
5939
5940 $spackage contains architecture-dependent library files.  If you are
5941 sharing libraries in a heterogeneous environment, you might store
5942 these files in a separate location.  Otherwise, you can just include
5943 them with the rest of the public library files.
5944
5945 EOM
5946 fn=d+~
5947 rp='Where do you want to put the public architecture-dependent libraries?'
5948 . ./getfile
5949 archlib="$ans"
5950 archlibexp="$ansexp"
5951 if $test X"$archlib" = X"$privlib"; then
5952         d_archlib="$undef"
5953 else
5954         d_archlib="$define"
5955 fi
5956 : Change installation prefix, if necessary.
5957 if $test X"$prefix" != X"$installprefix"; then
5958         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
5959 else
5960         installarchlib="$archlibexp"
5961 fi
5962
5963 : see if setuid scripts can be secure
5964 $cat <<EOM
5965
5966 Some kernels have a bug that prevents setuid #! scripts from being
5967 secure.  Some sites have disabled setuid #! scripts because of this.
5968
5969 First let's decide if your kernel supports secure setuid #! scripts.
5970 (If setuid #! scripts would be secure but have been disabled anyway,
5971 don't say that they are secure if asked.)
5972
5973 EOM
5974
5975 val="$undef"
5976 if $test -d /dev/fd; then
5977         echo "#!$ls" >reflect
5978         chmod +x,u+s reflect
5979         ./reflect >flect 2>&1
5980         if $contains "/dev/fd" flect >/dev/null; then
5981                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
5982                 val="$define"
5983         else
5984                 $cat <<EOM
5985 If you are not sure if they are secure, I can check but I'll need a
5986 username and password different from the one you are using right now.
5987 If you don't have such a username or don't want me to test, simply
5988 enter 'none'.
5989
5990 EOM
5991                 rp='Other username to test security of setuid scripts with?'
5992                 dflt='none'
5993                 . ./myread
5994                 case "$ans" in
5995                 n|none)
5996                         case "$d_suidsafe" in
5997                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
5998                                 dflt=n;;
5999                         "$undef")
6000                                 echo "Well, the $hint value is *not* secure." >&4
6001                                 dflt=n;;
6002                         *)      echo "Well, the $hint value *is* secure." >&4
6003                                 dflt=y;;
6004                         esac
6005                         ;;
6006                 *)
6007                         $rm -f reflect flect
6008                         echo "#!$ls" >reflect
6009                         chmod +x,u+s reflect
6010                         echo >flect
6011                         chmod a+w flect
6012                         echo '"su" will (probably) prompt you for '"$ans's password."
6013                         su $ans -c './reflect >flect'
6014                         if $contains "/dev/fd" flect >/dev/null; then
6015                                 echo "Okay, it looks like setuid scripts are secure." >&4
6016                                 dflt=y
6017                         else
6018                                 echo "I don't think setuid scripts are secure." >&4
6019                                 dflt=n
6020                         fi
6021                         ;;
6022                 esac
6023                 rp='Does your kernel have *secure* setuid scripts?'
6024                 . ./myread
6025                 case "$ans" in
6026                 [yY]*)  val="$define";;
6027                 *)      val="$undef";;
6028                 esac
6029         fi
6030 else
6031         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6032         echo "(That's for file descriptors, not floppy disks.)"
6033         val="$undef"
6034 fi
6035 set d_suidsafe
6036 eval $setvar
6037
6038 $rm -f reflect flect
6039
6040 : now see if they want to do setuid emulation
6041 echo " "
6042 val="$undef"
6043 case "$d_suidsafe" in
6044 "$define")
6045         val="$undef"
6046         echo "No need to emulate SUID scripts since they are secure here." >&4
6047         ;;
6048 *)
6049         $cat <<EOM
6050 Some systems have disabled setuid scripts, especially systems where
6051 setuid scripts cannot be secure.  On systems where setuid scripts have
6052 been disabled, the setuid/setgid bits on scripts are currently
6053 useless.  It is possible for $package to detect those bits and emulate
6054 setuid/setgid in a secure fashion.  This emulation will only work if
6055 setuid scripts have been disabled in your kernel.
6056
6057 EOM
6058         case "$d_dosuid" in
6059         "$define") dflt=y ;;
6060         *) dflt=n ;;
6061         esac
6062         rp="Do you want to do setuid/setgid emulation?"
6063         . ./myread
6064         case "$ans" in
6065         [yY]*)  val="$define";;
6066         *)      val="$undef";;
6067         esac
6068         ;;
6069 esac
6070 set d_dosuid
6071 eval $setvar
6072
6073 : see if this is a malloc.h system
6074 : we want a real compile instead of Inhdr because some systems have a
6075 : malloc.h that just gives a compile error saying to use stdlib.h instead
6076 echo " "
6077 $cat >try.c <<EOCP
6078 #include <stdlib.h>
6079 #include <malloc.h>
6080 int main () { return 0; }
6081 EOCP
6082 set try
6083 if eval $compile; then
6084     echo "<malloc.h> found." >&4
6085     val="$define"
6086 else
6087     echo "<malloc.h> NOT found." >&4
6088     val="$undef"
6089 fi
6090 $rm -f try.c try
6091 set i_malloc
6092 eval $setvar
6093
6094 : check for void type
6095 echo " "
6096 echo "Checking to see how well your C compiler groks the void type..." >&4
6097 case "$voidflags" in
6098 '')
6099         $cat >try.c <<EOCP
6100 #$i_stdlib I_STDLIB
6101 #ifdef I_STDLIB
6102 #include <stdlib.h>
6103 #endif
6104 #if TRY & 1
6105 void sub() {
6106 #else
6107 sub() {
6108 #endif
6109         extern void moo();      /* function returning void */
6110         void (*goo)();          /* ptr to func returning void */
6111 #if TRY & 8
6112         void *hue;              /* generic ptr */
6113 #endif
6114 #if TRY & 2
6115         void (*foo[10])();
6116 #endif
6117
6118 #if TRY & 4
6119         if(goo == moo) {
6120                 exit(0);
6121         }
6122 #endif
6123         exit(0);
6124 }
6125 int main() { sub(); }
6126 EOCP
6127         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6128                 voidflags=$defvoidused
6129         echo "Good.  It appears to support void to the level $package wants.">&4
6130                 if $contains warning .out >/dev/null 2>&1; then
6131                         echo "However, you might get some warnings that look like this:"
6132                         $cat .out
6133                 fi
6134         else
6135 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6136                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6137                         echo "It supports 1..."
6138                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6139                                 echo "It also supports 2..."
6140                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6141                                         voidflags=7
6142                                         echo "And it supports 4 but not 8 definitely."
6143                                 else
6144                                         echo "It doesn't support 4..."
6145                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6146                                                 voidflags=11
6147                                                 echo "But it supports 8."
6148                                         else
6149                                                 voidflags=3
6150                                                 echo "Neither does it support 8."
6151                                         fi
6152                                 fi
6153                         else
6154                                 echo "It does not support 2..."
6155                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6156                                         voidflags=13
6157                                         echo "But it supports 4 and 8."
6158                                 else
6159                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6160                                                 voidflags=5
6161                                                 echo "And it supports 4 but has not heard about 8."
6162                                         else
6163                                                 echo "However it supports 8 but not 4."
6164                                         fi
6165                                 fi
6166                         fi
6167                 else
6168                         echo "There is no support at all for void."
6169                         voidflags=0
6170                 fi
6171         fi
6172 esac
6173 case "$voidflags" in
6174 "$defvoidused") ;;
6175 *)      $cat >&4 <<'EOM'
6176   Support flag bits are:
6177     1: basic void declarations.
6178     2: arrays of pointers to functions returning void.
6179     4: operations between pointers to and addresses of void functions.
6180     8: generic void pointers.
6181 EOM
6182         dflt="$voidflags";
6183         rp="Your void support flags add up to what?"
6184         . ./myread
6185         voidflags="$ans"
6186         ;;
6187 esac
6188 $rm -f try.* .out
6189
6190 : check for length of pointer
6191 echo " "
6192 case "$ptrsize" in
6193 '')
6194         echo "Checking to see how big your pointers are..." >&4
6195         if test "$voidflags" -gt 7; then
6196                 echo '#define VOID_PTR char *' > try.c
6197         else
6198                 echo '#define VOID_PTR void *' > try.c
6199         fi
6200         $cat >>try.c <<EOCP
6201 #include <stdio.h>
6202 #$i_stdlib I_STDLIB
6203 #ifdef I_STDLIB
6204 #include <stdlib.h>
6205 #endif
6206 int main()
6207 {
6208     printf("%d\n", (int)sizeof(VOID_PTR));
6209     exit(0);
6210 }
6211 EOCP
6212         set try
6213         if eval $compile_ok; then
6214                 ptrsize=`$run ./try`
6215                 echo "Your pointers are $ptrsize bytes long."
6216         else
6217                 dflt='4'
6218                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6219                 rp="What is the size of a pointer (in bytes)?"
6220                 . ./myread
6221                 ptrsize="$ans"
6222         fi
6223         ;;
6224 esac
6225 $rm -f try.c try
6226 case "$use64bitall" in
6227 "$define"|true|[yY]*)
6228         case "$ptrsize" in
6229         4)      cat <<EOM >&4
6230
6231 *** You have chosen a maximally 64-bit build,
6232 *** but your pointers are only 4 bytes wide.
6233 *** Please rerun Configure without -Duse64bitall.
6234 EOM
6235                 case "$d_quad" in
6236                 define)
6237                         cat <<EOM >&4
6238 *** Since you have quads, you could possibly try with -Duse64bitint.
6239 EOM
6240                         ;;
6241                 esac
6242                 cat <<EOM >&4
6243 *** Cannot continue, aborting.
6244
6245 EOM
6246
6247                 exit 1
6248                 ;;
6249         esac
6250         ;;
6251 esac
6252
6253
6254 : determine which malloc to compile in
6255 echo " "
6256 case "$usemymalloc" in
6257 [yY]*|true|$define)     dflt='y' ;;
6258 [nN]*|false|$undef)     dflt='n' ;;
6259 *)      case "$ptrsize" in
6260         4) dflt='y' ;;
6261         *) dflt='n' ;;
6262         esac
6263         ;;
6264 esac
6265 rp="Do you wish to attempt to use the malloc that comes with $package?"
6266 . ./myread
6267 usemymalloc="$ans"
6268 case "$ans" in
6269 y*|true)
6270         usemymalloc='y'
6271         mallocsrc='malloc.c'
6272         mallocobj="malloc$_o"
6273         d_mymalloc="$define"
6274         case "$libs" in
6275         *-lmalloc*)
6276                 : Remove malloc from list of libraries to use
6277                 echo "Removing unneeded -lmalloc from library list" >&4
6278                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6279                 shift
6280                 libs="$*"
6281                 echo "libs = $libs" >&4
6282                 ;;
6283         esac
6284         ;;
6285 *)
6286         usemymalloc='n'
6287         mallocsrc=''
6288         mallocobj=''
6289         d_mymalloc="$undef"
6290         ;;
6291 esac
6292
6293 : compute the return types of malloc and free
6294 echo " "
6295 $cat >malloc.c <<END
6296 #$i_malloc I_MALLOC
6297 #$i_stdlib I_STDLIB
6298 #include <stdio.h>
6299 #include <sys/types.h>
6300 #ifdef I_MALLOC
6301 #include <malloc.h>
6302 #endif
6303 #ifdef I_STDLIB
6304 #include <stdlib.h>
6305 #endif
6306 #ifdef TRY_MALLOC
6307 void *malloc();
6308 #endif
6309 #ifdef TRY_FREE
6310 void free();
6311 #endif
6312 END
6313 case "$malloctype" in
6314 '')
6315         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6316                 malloctype='void *'
6317         else
6318                 malloctype='char *'
6319         fi
6320         ;;
6321 esac
6322 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6323
6324 case "$freetype" in
6325 '')
6326         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6327                 freetype='void'
6328         else
6329                 freetype='int'
6330         fi
6331         ;;
6332 esac
6333 echo "Your system uses $freetype free(), it would seem." >&4
6334 $rm -f malloc.[co]
6335 $cat <<EOM
6336
6337 After $package is installed, you may wish to install various
6338 add-on modules and utilities.  Typically, these add-ons will
6339 be installed under $prefix with the rest
6340 of this package.  However, you may wish to install such add-ons
6341 elsewhere under a different prefix.
6342
6343 If you do not wish to put everything under a single prefix, that's
6344 ok.  You will be prompted for the individual locations; this siteprefix
6345 is only used to suggest the defaults.
6346
6347 The default should be fine for most people.
6348
6349 EOM
6350 fn=d~+
6351 rp='Installation prefix to use for add-on modules and utilities?'
6352 : XXX Here might be another good place for an installstyle setting.
6353 case "$siteprefix" in
6354 '') dflt=$prefix ;;
6355 *)  dflt=$siteprefix ;;
6356 esac
6357 . ./getfile
6358 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6359 oldsiteprefix=''
6360 case "$siteprefix" in
6361 '') ;;
6362 *)      case "$ans" in
6363         "$prefix") ;;
6364         *) oldsiteprefix="$prefix";;
6365         esac
6366         ;;
6367 esac
6368 siteprefix="$ans"
6369 siteprefixexp="$ansexp"
6370
6371 : determine where site specific libraries go.
6372 : Usual default is /usr/local/lib/perl5/site_perl/$version
6373 : The default "style" setting is made in installstyle.U
6374 : XXX No longer works with Prefixit stuff.
6375 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6376 case "$sitelib" in
6377 '') case "$installstyle" in
6378         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6379         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6380         esac
6381         ;;
6382 *)      dflt="$sitelib"
6383         ;;
6384 esac
6385 $cat <<EOM
6386
6387 The installation process will create a directory for
6388 site-specific extensions and modules.  Most users find it convenient
6389 to place all site-specific files in this directory rather than in the
6390 main distribution directory.
6391
6392 EOM
6393 fn=d~+
6394 rp='Pathname for the site-specific library files?'
6395 . ./getfile
6396 sitelib="$ans"
6397 sitelibexp="$ansexp"
6398 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6399 : Change installation prefix, if necessary.
6400 if $test X"$prefix" != X"$installprefix"; then
6401         installsitelib=`echo $sitelibexp | $sed "s#^$prefix#$installprefix#"`
6402 else
6403         installsitelib="$sitelibexp"
6404 fi
6405
6406 : determine where site specific architecture-dependent libraries go.
6407 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6408 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6409 : sitelib may have an optional trailing /share.
6410 case "$sitearch" in
6411 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6412         dflt="$dflt/$archname"
6413         ;;
6414 *)      dflt="$sitearch"
6415         ;;
6416 esac
6417 set sitearch sitearch none
6418 eval $prefixit
6419 $cat <<EOM
6420
6421 The installation process will also create a directory for
6422 architecture-dependent site-specific extensions and modules.
6423
6424 EOM
6425 fn=d~+
6426 rp='Pathname for the site-specific architecture-dependent library files?'
6427 . ./getfile
6428 sitearch="$ans"
6429 sitearchexp="$ansexp"
6430 : Change installation prefix, if necessary.
6431 if $test X"$prefix" != X"$installprefix"; then
6432         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
6433 else
6434         installsitearch="$sitearchexp"
6435 fi
6436
6437 $cat <<EOM
6438
6439 The installation process will also create a directory for
6440 vendor-supplied add-ons.  Vendors who supply perl with their system
6441 may find it convenient to place all vendor-supplied files in this
6442 directory rather than in the main distribution directory.  This will
6443 ease upgrades between binary-compatible maintenance versions of perl.
6444
6445 Of course you may also use these directories in whatever way you see
6446 fit.  For example, you might use them to access modules shared over a
6447 company-wide network.
6448
6449 The default answer should be fine for most people.
6450 This causes further questions about vendor add-ons to be skipped
6451 and no vendor-specific directories will be configured for perl.
6452
6453 EOM
6454 rp='Do you want to configure vendor-specific add-on directories?'
6455 case "$usevendorprefix" in
6456 define|true|[yY]*) dflt=y ;;
6457 *)      : User may have set vendorprefix directly on Configure command line.
6458         case "$vendorprefix" in
6459         ''|' ') dflt=n ;;
6460         *)      dflt=y ;;
6461         esac
6462         ;;
6463 esac
6464 . ./myread
6465 case "$ans" in
6466 [yY]*)  fn=d~+
6467         rp='Installation prefix to use for vendor-supplied add-ons?'
6468         case "$vendorprefix" in
6469         '') dflt='' ;;
6470         *)  dflt=$vendorprefix ;;
6471         esac
6472         . ./getfile
6473         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6474         oldvendorprefix=''
6475         case "$vendorprefix" in
6476         '') ;;
6477         *)      case "$ans" in
6478                 "$prefix") ;;
6479                 *) oldvendorprefix="$prefix";;
6480                 esac
6481                 ;;
6482         esac
6483         usevendorprefix="$define"
6484         vendorprefix="$ans"
6485         vendorprefixexp="$ansexp"
6486         ;;
6487 *)      usevendorprefix="$undef"
6488         vendorprefix=''
6489         vendorprefixexp=''
6490         ;;
6491 esac
6492
6493 case "$vendorprefix" in
6494 '')     d_vendorlib="$undef"
6495         vendorlib=''
6496         vendorlibexp=''
6497         ;;
6498 *)      d_vendorlib="$define"
6499         : determine where vendor-supplied modules go.
6500         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
6501         case "$vendorlib" in
6502         '')
6503                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6504                 case "$installstyle" in
6505                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
6506                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
6507                 esac
6508                 ;;
6509         *)      dflt="$vendorlib"
6510                 ;;
6511         esac
6512         fn=d~+
6513         rp='Pathname for the vendor-supplied library files?'
6514         . ./getfile
6515         vendorlib="$ans"
6516         vendorlibexp="$ansexp"
6517         ;;
6518 esac
6519 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
6520 : Change installation prefix, if necessary.
6521 if $test X"$prefix" != X"$installprefix"; then
6522         installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
6523 else
6524         installvendorlib="$vendorlibexp"
6525 fi
6526
6527 case "$vendorprefix" in
6528 '')     d_vendorarch="$undef"
6529         vendorarch=''
6530         vendorarchexp=''
6531         ;;
6532 *)      d_vendorarch="$define"
6533         : determine where vendor-supplied architecture-dependent libraries go.
6534         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
6535         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
6536         : vendorlib may have an optional trailing /share.
6537         case "$vendorarch" in
6538         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
6539                 dflt="$dflt/$archname"
6540                 ;;
6541         *)      dflt="$vendorarch" ;;
6542         esac
6543         fn=d~+
6544         rp='Pathname for vendor-supplied architecture-dependent files?'
6545         . ./getfile
6546         vendorarch="$ans"
6547         vendorarchexp="$ansexp"
6548         ;;
6549 esac
6550 : Change installation prefix, if necessary.
6551 if $test X"$prefix" != X"$installprefix"; then
6552         installvendorarch=`echo $vendorarchexp | sed "s#^$prefix#$installprefix#"`
6553 else
6554         installvendorarch="$vendorarchexp"
6555 fi
6556
6557 : Final catch-all directories to search
6558 $cat <<EOM
6559
6560 Lastly, you can have perl look in other directories for extensions and
6561 modules in addition to those already specified.
6562 These directories will be searched after 
6563         $sitearch 
6564         $sitelib 
6565 EOM
6566 test X"$vendorlib" != "X" && echo '     ' $vendorlib
6567 test X"$vendorarch" != "X" && echo '    ' $vendorarch
6568 echo ' '
6569 case "$otherlibdirs" in
6570 ''|' ') dflt='none' ;;
6571 *)      dflt="$otherlibdirs" ;;
6572 esac
6573 $cat <<EOM
6574 Enter a colon-separated set of extra paths to include in perl's @INC
6575 search path, or enter 'none' for no extra paths.
6576
6577 EOM
6578
6579 rp='Colon-separated list of additional directories for perl to search?'
6580 . ./myread
6581 case "$ans" in
6582 ' '|''|none)    otherlibdirs=' ' ;;     
6583 *)      otherlibdirs="$ans" ;;
6584 esac
6585 case "$otherlibdirs" in
6586 ' ') val=$undef ;;
6587 *)      val=$define ;;
6588 esac
6589 set d_perl_otherlibdirs
6590 eval $setvar
6591
6592 : Cruising for prototypes
6593 echo " "
6594 echo "Checking out function prototypes..." >&4
6595 $cat >prototype.c <<EOCP
6596 #$i_stdlib I_STDLIB
6597 #ifdef I_STDLIB
6598 #include <stdlib.h>
6599 #endif
6600 int main(int argc, char *argv[]) {
6601         exit(0);}
6602 EOCP
6603 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
6604         echo "Your C compiler appears to support function prototypes."
6605         val="$define"
6606 else
6607         echo "Your C compiler doesn't seem to understand function prototypes."
6608         val="$undef"
6609 fi
6610 set prototype
6611 eval $setvar
6612 $rm -f prototype*
6613
6614 case "$prototype" in
6615 "$define") ;;
6616 *)      ansi2knr='ansi2knr'
6617         echo " "
6618         cat <<EOM >&4
6619
6620 $me:  FATAL ERROR:
6621 This version of $package can only be compiled by a compiler that 
6622 understands function prototypes.  Unfortunately, your C compiler 
6623         $cc $ccflags
6624 doesn't seem to understand them.  Sorry about that.
6625
6626 If GNU cc is available for your system, perhaps you could try that instead.  
6627
6628 Eventually, we hope to support building Perl with pre-ANSI compilers.
6629 If you would like to help in that effort, please contact <perlbug@perl.org>.
6630
6631 Aborting Configure now.
6632 EOM
6633         exit 2
6634         ;;
6635 esac
6636
6637 : determine where public executables go
6638 echo " "
6639 set dflt bin bin
6640 eval $prefixit
6641 fn=d~
6642 rp='Pathname where the public executables will reside?'
6643 . ./getfile
6644 if $test "X$ansexp" != "X$binexp"; then
6645         installbin=''
6646 fi
6647 bin="$ans"
6648 binexp="$ansexp"
6649 : Change installation prefix, if necessary.
6650 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
6651 if $test X"$prefix" != X"$installprefix"; then
6652         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
6653 else
6654         installbin="$binexp"
6655 fi
6656
6657 echo " "
6658 case "$extras" in
6659 '') dflt='n';;
6660 *) dflt='y';;
6661 esac
6662 cat <<EOM
6663 Perl can be built with extra modules or bundles of modules which
6664 will be fetched from the CPAN and installed alongside Perl.
6665
6666 Notice that you will need access to the CPAN; either via the Internet,
6667 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
6668 be asked later to configure the CPAN.pm module which will in turn do
6669 the installation of the rest of the extra modules or bundles.)
6670
6671 Notice also that if the modules require any external software such as
6672 libraries and headers (the libz library and the zlib.h header for the
6673 Compress::Zlib module, for example) you MUST have any such software
6674 already installed, this configuration process will NOT install such
6675 things for you.
6676
6677 If this doesn't make any sense to you, just accept the default '$dflt'.
6678 EOM
6679 rp='Install any extra modules (y or n)?'
6680 . ./myread
6681 case "$ans" in
6682 y|Y)
6683         cat <<EOM
6684
6685 Please list any extra modules or bundles to be installed from CPAN,
6686 with spaces between the names.  The names can be in any format the
6687 'install' command of CPAN.pm will understand.  (Answer 'none',
6688 without the quotes, to install no extra modules or bundles.)
6689 EOM
6690         rp='Extras?'
6691         dflt="$extras"
6692         . ./myread
6693         extras="$ans"
6694 esac
6695 case "$extras" in
6696 ''|'none')
6697         val=''
6698         $rm -f ../extras.lst
6699         ;;
6700 *)      echo "(Saving the list of extras for later...)"
6701         echo "$extras" > ../extras.lst
6702         val="'$extras'"
6703         ;;
6704 esac
6705 set extras
6706 eval $setvar
6707 echo " "
6708
6709 : determine where html pages for programs go
6710 set html1dir html1dir none
6711 eval $prefixit
6712 $cat <<EOM
6713
6714 If you wish to install html files for programs in $spackage, indicate 
6715 the appropriate directory here.  To skip installing html files,
6716 answer "none".
6717 EOM
6718 case "$html1dir" in
6719 ''|none|$undef|' ') dflt=none ;;
6720 *) dflt=$html1dir ;;
6721 esac
6722 fn=dn+~
6723 rp="Directory for the main $spackage html pages?"
6724 . ./getfile
6725 html1dir="$ans"
6726 html1direxp="$ansexp"
6727 : Use ' ' for none so value is preserved next time through Configure
6728 $test X"$html1dir" = "X" && html1dir=' '
6729 : Change installation prefix, if necessary.
6730 if $test X"$prefix" != X"$installprefix"; then
6731         installhtml1dir=`echo $html1direxp | sed "s#^$prefix#$installprefix#"`
6732 else
6733         installhtml1dir="$html1direxp"
6734 fi
6735
6736 : determine where html pages for libraries and modules go
6737 set html3dir html3dir none
6738 eval $prefixit
6739 $cat <<EOM
6740
6741 If you wish to install html files for modules associated with $spackage,
6742 indicate the appropriate directory here.  To skip installing html files,
6743 answer "none".
6744 EOM
6745 : There is no obvious default.  If they have specified html1dir, then
6746 : try to key off that, possibly changing .../html1 into .../html3.
6747 case "$html3dir" in
6748 '') html3dir=`echo "$html1dir" | $sed 's/1$/3$/'` ;;
6749 *) dflt=$html3dir ;;
6750 esac
6751 fn=dn+~
6752 rp="Directory for the $spackage module html pages?"
6753 . ./getfile
6754 html3dir="$ans"
6755 html3direxp="$ansexp"
6756 : Use ' ' for none so value is preserved next time through Configure
6757 $test X"$html3dir" = "X" && html3dir=' '
6758 : Change installation prefix, if necessary.
6759 if $test X"$prefix" != X"$installprefix"; then
6760         installhtml3dir=`echo $html3direxp | sed "s#^$prefix#$installprefix#"`
6761 else
6762         installhtml3dir="$html3direxp"
6763 fi
6764
6765 : Find perl5.005 or later.
6766 echo "Looking for a previously installed perl5.005 or later... "
6767 case "$perl5" in
6768 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
6769                 : Check if this perl is recent and can load a simple module
6770                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6771                         perl5=$tdir/perl
6772                         break;
6773                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6774                         perl5=$tdir/perl5
6775                         break;
6776                 fi
6777         done
6778         ;;
6779 *)      perl5="$perl5"
6780         ;;
6781 esac
6782 case "$perl5" in
6783 '')     echo "None found.  That's ok.";;
6784 *)      echo "Using $perl5." ;;
6785 esac
6786
6787 : Determine list of previous versions to include in @INC
6788 $cat > getverlist <<EOPL
6789 #!$perl5 -w
6790 use File::Basename;
6791 \$api_versionstring = "$api_versionstring";
6792 \$version = "$version";
6793 \$stem = "$sitelib_stem";
6794 \$archname = "$archname";
6795 EOPL
6796         $cat >> getverlist <<'EOPL'
6797 # Can't have leading @ because metaconfig interprets it as a command!
6798 ;@inc_version_list=();
6799 # XXX Redo to do opendir/readdir? 
6800 if (-d $stem) {
6801     chdir($stem);
6802     ;@candidates = glob("5.*");
6803 }
6804 else {
6805     ;@candidates = ();
6806 }
6807
6808 # XXX ToDo:  These comparisons must be reworked when two-digit
6809 # subversions come along, so that 5.7.10 compares as greater than
6810 # 5.7.3!  By that time, hope that 5.6.x is sufficiently
6811 # widespread that we can use the built-in version vectors rather
6812 # than reinventing them here.  For 5.6.0, however, we must
6813 # assume this script will likely be run by 5.005_0x.  --AD 1/2000.
6814 foreach $d (@candidates) {
6815     if ($d lt $version) {
6816         if ($d ge $api_versionstring) {
6817             unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
6818         }
6819         elsif ($d ge "5.005") {
6820             unshift(@inc_version_list, grep { -d } $d);
6821         }
6822     }
6823     else {
6824         # Skip newer version.  I.e. don't look in
6825         # 5.7.0 if we're installing 5.6.1.
6826     }
6827 }
6828
6829 if (@inc_version_list) {
6830     print join(' ', @inc_version_list);
6831 }
6832 else {
6833     # Blank space to preserve value for next Configure run.
6834     print " ";
6835 }
6836 EOPL
6837 chmod +x getverlist
6838 case "$inc_version_list" in
6839 '')     if test -x "$perl5$exe_ext"; then
6840                 dflt=`$perl5 getverlist`
6841         else
6842                 dflt='none'
6843         fi
6844         ;;
6845 $undef) dflt='none' ;;
6846 *)  eval dflt=\"$inc_version_list\" ;;
6847 esac
6848 case "$dflt" in
6849 ''|' ') dflt=none ;;
6850 esac
6851 case "$dflt" in
6852 5.005) dflt=none ;;
6853 esac
6854 $cat <<EOM
6855
6856 In order to ease the process of upgrading, this version of perl 
6857 can be configured to use modules built and installed with earlier 
6858 versions of perl that were installed under $prefix.  Specify here
6859 the list of earlier versions that this version of perl should check.
6860 If Configure detected no earlier versions of perl installed under
6861 $prefix, then the list will be empty.  Answer 'none' to tell perl
6862 to not search earlier versions.
6863
6864 The default should almost always be sensible, so if you're not sure,
6865 just accept the default.
6866 EOM
6867
6868 rp='List of earlier versions to include in @INC?'
6869 . ./myread
6870 case "$ans" in
6871 [Nn]one|''|' ') inc_version_list=' ' ;;
6872 *) inc_version_list="$ans" ;;
6873 esac
6874 case "$inc_version_list" in
6875 ''|' ') 
6876         inc_version_list_init='0';;
6877 *)      inc_version_list_init=`echo $inc_version_list |
6878                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
6879         ;;
6880 esac
6881 $rm -f getverlist
6882
6883 : determine whether to install perl also as /usr/bin/perl
6884
6885 echo " "
6886 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
6887         $cat <<EOM
6888 Many scripts expect perl to be installed as /usr/bin/perl.
6889
6890 If you want to, I can install the perl you are about to compile
6891 as /usr/bin/perl (in addition to $bin/perl).
6892 EOM
6893         if test -f /usr/bin/perl; then
6894             $cat <<EOM
6895
6896 However, please note that because you already have a /usr/bin/perl,
6897 overwriting that with a new Perl would very probably cause problems.
6898 Therefore I'm assuming you don't want to do that (unless you insist).
6899
6900 EOM
6901             case "$installusrbinperl" in
6902             "$define"|[yY]*)    dflt='y';;
6903             *)                  dflt='n';;
6904             esac
6905         else
6906             $cat <<EOM
6907
6908 Since you don't have a /usr/bin/perl I'm assuming creating one is okay.
6909
6910 EOM
6911             case "$installusrbinperl" in
6912             "$undef"|[nN]*)     dflt='n';;
6913             *)                  dflt='y';;
6914             esac
6915         fi
6916         rp="Do you want to install perl as /usr/bin/perl?"
6917         . ./myread
6918         case "$ans" in
6919         [yY]*)  val="$define";;
6920         *)      val="$undef" ;;
6921         esac
6922 else
6923         val="$undef"
6924 fi
6925 set installusrbinperl
6926 eval $setvar
6927
6928 echo " "
6929 echo "Checking for GNU C Library..." >&4
6930 cat >try.c <<'EOCP'
6931 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
6932    alone are insufficient to distinguish different versions, such as
6933    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
6934    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
6935 */
6936 #include <stdio.h>
6937 int main(void)
6938 {
6939 #ifdef __GLIBC__
6940 #   ifdef __GLIBC_MINOR__
6941 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
6942 #           include <gnu/libc-version.h>
6943             printf("%s\n",  gnu_get_libc_version());
6944 #       else
6945             printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
6946 #       endif
6947 #   else
6948         printf("%d\n",  __GLIBC__);
6949 #   endif
6950     return 0;
6951 #else
6952     return 1;
6953 #endif
6954 }
6955 EOCP
6956 set try
6957 if eval $compile_ok && $run ./try > glibc.ver; then
6958         val="$define"
6959         gnulibc_version=`$cat glibc.ver`
6960         echo "You are using the GNU C Library version $gnulibc_version"
6961 else
6962         val="$undef"
6963         gnulibc_version=''
6964         echo "You are not using the GNU C Library"
6965 fi
6966 $rm -f try try.* glibc.ver
6967 set d_gnulibc
6968 eval $setvar
6969
6970 : see if nm is to be used to determine whether a symbol is defined or not
6971 case "$usenm" in
6972 '')
6973         dflt=''
6974         case "$d_gnulibc" in
6975         "$define")
6976                 echo " "
6977                 echo "nm probably won't work on the GNU C Library." >&4
6978                 dflt=n
6979                 ;;
6980         esac
6981         case "$dflt" in
6982         '') 
6983                 if $test "$osname" = aix -a "X$PASE" != "Xdefine" -a ! -f /lib/syscalls.exp; then
6984                         echo " "
6985                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
6986                         echo "'nm' won't be sufficient on this sytem." >&4
6987                         dflt=n
6988                 fi
6989                 ;;
6990         esac
6991         case "$dflt" in
6992         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
6993                 if $test $dflt -gt 20; then
6994                         dflt=y
6995                 else
6996                         dflt=n
6997                 fi
6998                 ;;
6999         esac
7000         ;;
7001 *)
7002         case "$usenm" in
7003         true|$define) dflt=y;;
7004         *) dflt=n;;
7005         esac
7006         ;;
7007 esac
7008 $cat <<EOM
7009
7010 I can use $nm to extract the symbols from your C libraries. This
7011 is a time consuming task which may generate huge output on the disk (up
7012 to 3 megabytes) but that should make the symbols extraction faster. The
7013 alternative is to skip the 'nm' extraction part and to compile a small
7014 test program instead to determine whether each symbol is present. If
7015 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
7016 this may be the best solution.
7017
7018 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
7019
7020 EOM
7021 rp="Shall I use $nm to extract C symbols from the libraries?"
7022 . ./myread
7023 case "$ans" in
7024 [Nn]*) usenm=false;;
7025 *) usenm=true;;
7026 esac
7027
7028 runnm=$usenm
7029 case "$reuseval" in
7030 true) runnm=false;;
7031 esac
7032
7033 : nm options which may be necessary
7034 case "$nm_opt" in
7035 '') if $test -f /mach_boot; then
7036                 nm_opt=''       # Mach
7037         elif $test -d /usr/ccs/lib; then
7038                 nm_opt='-p'     # Solaris (and SunOS?)
7039         elif $test -f /dgux; then
7040                 nm_opt='-p'     # DG-UX
7041         elif $test -f /lib64/rld; then
7042                 nm_opt='-p'     # 64-bit Irix
7043         else
7044                 nm_opt=''
7045         fi;;
7046 esac
7047
7048 : nm options which may be necessary for shared libraries but illegal
7049 : for archive libraries.  Thank you, Linux.
7050 case "$nm_so_opt" in
7051 '')     case "$myuname" in
7052         *linux*)
7053                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
7054                         nm_so_opt='--dynamic'
7055                 fi
7056                 ;;
7057         esac
7058         ;;
7059 esac
7060
7061 case "$runnm" in
7062 true)
7063 : get list of predefined functions in a handy place
7064 echo " "
7065 case "$libc" in
7066 '') libc=unknown
7067         case "$libs" in
7068         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
7069         esac
7070         ;;
7071 esac
7072 case "$libs" in
7073 '') ;;
7074 *)  for thislib in $libs; do
7075         case "$thislib" in
7076         -lc|-lc_s)
7077                 : Handle C library specially below.
7078                 ;;
7079         -l*)
7080                 thislib=`echo $thislib | $sed -e 's/^-l//'`
7081                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
7082                         :
7083                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
7084                         :
7085                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
7086                         :
7087                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
7088                         :
7089                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
7090                         :
7091                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
7092                         :
7093                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
7094                         :
7095                 else
7096                         try=''
7097                 fi
7098                 libnames="$libnames $try"
7099                 ;;
7100         *) libnames="$libnames $thislib" ;;
7101         esac
7102         done
7103         ;;
7104 esac
7105 xxx=normal
7106 case "$libc" in
7107 unknown)
7108         set /lib/libc.$so
7109         for xxx in $libpth; do
7110                 $test -r $1 || set $xxx/libc.$so
7111                 : The messy sed command sorts on library version numbers.
7112                 $test -r $1 || \
7113                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
7114                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
7115                                 h
7116                                 s/[0-9][0-9]*/0000&/g
7117                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
7118                                 G
7119                                 s/\n/ /' | \
7120                          $sort | $sed -e 's/^.* //'`
7121                 eval set \$$#
7122         done
7123         $test -r $1 || set /usr/ccs/lib/libc.$so
7124         $test -r $1 || set /lib/libsys_s$_a
7125         ;;
7126 *)
7127         set blurfl
7128         ;;
7129 esac
7130 if $test -r "$1"; then
7131         echo "Your (shared) C library seems to be in $1."
7132         libc="$1"
7133 elif $test -r /lib/libc && $test -r /lib/clib; then
7134         echo "Your C library seems to be in both /lib/clib and /lib/libc."
7135         xxx=apollo
7136         libc='/lib/clib /lib/libc'
7137         if $test -r /lib/syslib; then
7138                 echo "(Your math library is in /lib/syslib.)"
7139                 libc="$libc /lib/syslib"
7140         fi
7141 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7142         echo "Your C library seems to be in $libc, as you said before."
7143 elif $test -r $incpath/usr/lib/libc$_a; then
7144         libc=$incpath/usr/lib/libc$_a;
7145         echo "Your C library seems to be in $libc.  That's fine."
7146 elif $test -r /lib/libc$_a; then
7147         libc=/lib/libc$_a;
7148         echo "Your C library seems to be in $libc.  You're normal."
7149 else
7150         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
7151                 :
7152         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
7153                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
7154         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
7155                 :
7156         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7157                 :
7158         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7159                 :
7160         else
7161                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
7162         fi
7163         if $test -r "$tans"; then
7164                 echo "Your C library seems to be in $tans, of all places."
7165                 libc=$tans
7166         else
7167                 libc='blurfl'
7168         fi
7169 fi
7170 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7171         dflt="$libc"
7172         cat <<EOM
7173
7174 If the guess above is wrong (which it might be if you're using a strange
7175 compiler, or your machine supports multiple models), you can override it here.
7176
7177 EOM
7178 else
7179         dflt=''
7180         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
7181         cat >&4 <<EOM
7182 I can't seem to find your C library.  I've looked in the following places:
7183
7184 EOM
7185         $sed 's/^/      /' libpath
7186         cat <<EOM
7187
7188 None of these seems to contain your C library. I need to get its name...
7189
7190 EOM
7191 fi
7192 fn=f
7193 rp='Where is your C library?'
7194 . ./getfile
7195 libc="$ans"
7196
7197 echo " "
7198 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
7199 set X `cat libnames`
7200 shift
7201 xxx=files
7202 case $# in 1) xxx=file; esac
7203 echo "Extracting names from the following $xxx for later perusal:" >&4
7204 echo " "
7205 $sed 's/^/      /' libnames >&4
7206 echo " "
7207 $echo $n "This may take a while...$c" >&4
7208
7209 for file in $*; do
7210         case $file in
7211         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
7212         *) $nm $nm_opt $file 2>/dev/null;;
7213         esac
7214 done >libc.tmp
7215
7216 $echo $n ".$c"
7217 $grep fprintf libc.tmp > libc.ptf
7218 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
7219 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
7220 xxx='[ADTSIW]'
7221 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *_[_.]*//p' -e 's/^.* $xxx  *//p'";\
7222         eval $xscan;\
7223         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7224                 eval $xrun
7225 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
7226         eval $xscan;\
7227         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7228                 eval $xrun
7229 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
7230         eval $xscan;\
7231         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7232                 eval $xrun
7233 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
7234         eval $xscan;\
7235         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7236                 eval $xrun
7237 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
7238         eval $xscan;\
7239         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7240                 eval $xrun
7241 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
7242         eval $xscan;\
7243         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7244                 eval $xrun
7245 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
7246                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
7247         eval $xscan;\
7248         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7249                 eval $xrun
7250 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
7251         eval $xscan;\
7252         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7253                 eval $xrun
7254 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
7255         eval $xscan;\
7256         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7257                 eval $xrun
7258 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
7259         eval $xscan;\
7260         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7261                 eval $xrun
7262 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
7263         eval $xscan;\
7264         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7265                 eval $xrun
7266 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
7267         eval $xscan;\
7268         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7269                 eval $xrun
7270 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
7271         eval $xscan;\
7272         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7273                 eval $xrun
7274 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
7275         eval $xscan;\
7276         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7277                 eval $xrun
7278 else
7279         $nm -p $* 2>/dev/null >libc.tmp
7280         $grep fprintf libc.tmp > libc.ptf
7281         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
7282                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
7283         then
7284                 nm_opt='-p'
7285                 eval $xrun
7286         else
7287                 echo " "
7288                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
7289                 com=''
7290                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
7291                         for thisname in $libnames $libc; do
7292                                 $ar t $thisname >>libc.tmp
7293                         done
7294                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
7295                         echo "Ok." >&4
7296                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
7297                         # Repeat libc to extract forwarders to DLL entries too
7298                         for thisname in $libnames $libc; do
7299                                 $ar tv $thisname >>libc.tmp
7300                                 # Revision 50 of EMX has bug in $ar.
7301                                 # it will not extract forwarders to DLL entries
7302                                 # Use emximp which will extract exactly them.
7303                                 emximp -o tmp.imp $thisname \
7304                                     2>/dev/null && \
7305                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
7306                                     < tmp.imp >>libc.tmp
7307                                 $rm tmp.imp
7308                         done
7309                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
7310                         echo "Ok." >&4
7311                 else
7312                         echo "$ar didn't seem to work right." >&4
7313                         echo "Maybe this is a Cray...trying bld instead..." >&4
7314                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
7315                         then
7316                                 for thisname in $libnames; do
7317                                         bld t $libnames | \
7318                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
7319                                         $ar t $thisname >>libc.tmp
7320                                 done
7321                                 echo "Ok." >&4
7322                         else
7323                                 echo "That didn't work either.  Giving up." >&4
7324                                 exit 1
7325                         fi
7326                 fi
7327         fi
7328 fi
7329 nm_extract="$com"
7330 case "$PASE" in
7331 define)
7332     echo " "
7333     echo "Since you are compiling for PASE, extracting more symbols from libc.a ...">&4
7334     dump -Tv /lib/libc.a | awk '$7 == "/unix" {print $5 " " $8}' | grep "^SV" | awk '{print $2}' >> libc.list
7335     ;;
7336 *)  if $test -f /lib/syscalls.exp; then
7337         echo " "
7338         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
7339         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
7340     fi
7341     ;;
7342 esac
7343 ;;
7344 esac
7345 $rm -f libnames libpath
7346
7347 : see if dld is available
7348 set dld.h i_dld
7349 eval $inhdr
7350
7351 : is a C symbol defined?
7352 csym='tlook=$1;
7353 case "$3" in
7354 -v) tf=libc.tmp; tc=""; tdc="";;
7355 -a) tf=libc.tmp; tc="[0]"; tdc="[]";;
7356 *) tlook="^$1\$"; tf=libc.list; tc="()"; tdc="()";;
7357 esac;
7358 tx=yes;
7359 case "$reuseval-$4" in
7360 true-) ;;
7361 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
7362 esac;
7363 case "$tx" in
7364 yes)
7365         case "$runnm" in
7366         true)
7367                 if $contains $tlook $tf >/dev/null 2>&1;
7368                 then tval=true;
7369                 else tval=false;
7370                 fi;;
7371         *)
7372                 echo "int main() { extern short $1$tdc; printf(\"%hd\", $1$tc); }" > t.c;
7373                 if $cc -o t $optimize $ccflags $ldflags t.c $libs >/dev/null 2>&1;
7374                 then tval=true;
7375                 else tval=false;
7376                 fi;
7377                 $rm -f t t.c;;
7378         esac;;
7379 *)
7380         case "$tval" in
7381         $define) tval=true;;
7382         *) tval=false;;
7383         esac;;
7384 esac;
7385 eval "$2=$tval"'
7386
7387 : define an is-in-libc? function
7388 inlibc='echo " "; td=$define; tu=$undef;
7389 sym=$1; var=$2; eval "was=\$$2";
7390 tx=yes;
7391 case "$reuseval$was" in
7392 true) ;;
7393 true*) tx=no;;
7394 esac;
7395 case "$tx" in
7396 yes)
7397         set $sym tres -f;
7398         eval $csym;
7399         case "$tres" in
7400         true)
7401                 echo "$sym() found." >&4;
7402                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
7403         *)
7404                 echo "$sym() NOT found." >&4;
7405                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
7406         esac;;
7407 *)
7408         case "$was" in
7409         $define) echo "$sym() found." >&4;;
7410         *) echo "$sym() NOT found." >&4;;
7411         esac;;
7412 esac'
7413
7414 : see if dlopen exists
7415 xxx_runnm="$runnm"
7416 runnm=false
7417 set dlopen d_dlopen
7418 eval $inlibc
7419 runnm="$xxx_runnm"
7420
7421 : determine which dynamic loading, if any, to compile in
7422 echo " "
7423 dldir="ext/DynaLoader"
7424 case "$usedl" in
7425 $define|y|true)
7426         dflt='y'
7427         usedl="$define"
7428         ;;
7429 $undef|n|false)
7430         dflt='n'
7431         usedl="$undef"
7432         ;;
7433 *) 
7434         dflt='n'
7435         case "$d_dlopen" in
7436             $define) dflt='y' ;;
7437         esac
7438         case "$i_dld" in
7439             $define) dflt='y' ;;
7440         esac
7441         : Does a dl_xxx.xs file exist for this operating system
7442         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7443         ;;
7444 esac
7445 rp="Do you wish to use dynamic loading?"
7446 . ./myread
7447 usedl="$ans"
7448 case "$ans" in
7449 y*) usedl="$define"
7450         case "$dlsrc" in
7451         '')
7452                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7453                         dflt="$dldir/dl_${osname}.xs"
7454                 elif $test "$d_dlopen" = "$define" ; then
7455                         dflt="$dldir/dl_dlopen.xs"
7456                 elif $test "$i_dld" = "$define" ; then
7457                         dflt="$dldir/dl_dld.xs"
7458                 else
7459                         dflt=''
7460                 fi
7461                 ;;
7462         *)      dflt="$dldir/$dlsrc"
7463                 ;;
7464         esac
7465     echo "The following dynamic loading files are available:"
7466         : Can not go over to $dldir because getfile has path hard-coded in.
7467         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7468         rp="Source file to use for dynamic loading"
7469         fn="fne"
7470         gfpth="$src"
7471         . ./getfile
7472         usedl="$define"
7473         : emulate basename
7474         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7475
7476         $cat << EOM
7477
7478 Some systems may require passing special flags to $cc -c to
7479 compile modules that will be used to create a shared library.
7480 To use no flags, say "none".
7481
7482 EOM
7483     case "$cccdlflags" in
7484     '') case "$gccversion" in
7485                 '') case "$osname" in
7486                         hpux)   dflt='+z' ;;
7487                         next)   dflt='none' ;;
7488                         irix*)  dflt='-KPIC' ;;
7489                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7490                         sunos)  dflt='-pic' ;;
7491                         *)      dflt='none' ;;
7492                     esac
7493                         ;;
7494                 *)  case "$osname" in
7495                         darwin) dflt='none' ;;
7496                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7497                         *)      dflt='-fpic' ;;
7498                     esac ;;
7499             esac ;;
7500         ' ') dflt='none' ;;
7501     *)  dflt="$cccdlflags" ;;
7502     esac
7503     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7504     . ./myread
7505     case "$ans" in
7506     none) cccdlflags=' ' ;;
7507     *) cccdlflags="$ans" ;;
7508     esac
7509
7510     cat << EOM
7511
7512 Some systems use ld to create libraries that can be dynamically loaded,
7513 while other systems (such as those using ELF) use $cc.
7514
7515 EOM
7516         case "$ld" in
7517         '')     $cat >try.c <<EOM
7518 /* Test for whether ELF binaries are produced */
7519 #include <fcntl.h>
7520 #$i_stdlib I_STDLIB
7521 #ifdef I_STDLIB
7522 #include <stdlib.h>
7523 #endif
7524 int main() {
7525         char b[4];
7526         int i = open("a.out",O_RDONLY);
7527         if(i == -1) 
7528                 exit(1); /* fail */
7529         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7530                 exit(0); /* succeed (yes, it's ELF) */
7531         else
7532                 exit(1); /* fail */
7533 }
7534 EOM
7535                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7536                         cat <<EOM
7537 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7538 EOM
7539                         dflt="$cc"
7540                 else
7541                         echo "I'll use ld to build dynamic libraries."
7542                         dflt='ld'
7543                 fi
7544                 rm -f try.c a.out
7545                 ;;
7546         *)      dflt="$ld"
7547                 ;;
7548         esac
7549
7550     rp="What command should be used to create dynamic libraries?"
7551     . ./myread
7552         ld="$ans"
7553
7554     cat << EOM
7555
7556 Some systems may require passing special flags to $ld to create a
7557 library that can be dynamically loaded.  If your ld flags include
7558 -L/other/path options to locate libraries outside your loader's normal
7559 search path, you may need to specify those -L options here as well.  To
7560 use no flags, say "none".
7561
7562 EOM
7563     case "$lddlflags" in
7564     '') case "$osname" in
7565                         beos) dflt='-nostart' ;;
7566                         hpux) dflt='-b';
7567                               case "$gccversion" in
7568                               '') dflt="$dflt +vnocompatwarnings" ;;
7569                               esac
7570                               ;;        
7571                         linux|irix*)    dflt='-shared' ;;
7572                         next)  dflt='none' ;;
7573                         solaris) dflt='-G' ;;
7574                         sunos) dflt='-assert nodefinitions' ;;
7575                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7576                 *)     dflt='none' ;;
7577                         esac
7578                         ;;
7579     *) dflt="$lddlflags" ;;
7580     esac
7581
7582         : Try to guess additional flags to pick up local libraries.
7583         : Be careful not to append to a plain 'none'
7584         case "$dflt" in
7585         none) dflt='' ;;
7586         esac
7587         for thisflag in $ldflags; do
7588                 case "$thisflag" in
7589                 -L*|-R*|-Wl,-R*)
7590                         case " $dflt " in
7591                         *" $thisflag "*) ;;
7592                         *) dflt="$dflt $thisflag" ;;
7593                         esac
7594                         ;;
7595                 esac
7596         done
7597
7598         case "$dflt" in
7599         ''|' ') dflt='none' ;;
7600         esac
7601
7602     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7603     . ./myread
7604     case "$ans" in
7605     none) lddlflags=' ' ;;
7606     *) lddlflags="$ans" ;;
7607     esac
7608
7609         cat <<EOM
7610
7611 Some systems may require passing special flags to $cc to indicate that
7612 the resulting executable will use dynamic linking.  To use no flags,
7613 say "none".
7614
7615 EOM
7616     case "$ccdlflags" in
7617     '') case "$osname" in
7618                 hpux)   dflt='-Wl,-E' ;;
7619                 linux)  dflt='-rdynamic' ;;
7620                 next)   dflt='none' ;;
7621                 sunos)  dflt='none' ;;
7622                 *)      dflt='none' ;;
7623             esac ;;
7624     ' ')  dflt='none' ;;
7625     *)  dflt="$ccdlflags" ;;
7626     esac
7627     rp="Any special flags to pass to $cc to use dynamic linking?"
7628     . ./myread
7629     case "$ans" in
7630     none) ccdlflags=' ' ;;
7631     *) ccdlflags="$ans" ;;
7632     esac
7633     ;;
7634 *)  usedl="$undef"
7635         ld='ld'
7636     dlsrc='dl_none.xs'
7637     lddlflags=''
7638     ccdlflags=''
7639     ;;
7640 esac
7641
7642 also=''
7643 case "$usedl" in
7644 $undef)
7645         # No dynamic loading being used, so don't bother even to prompt.
7646         useshrplib='false'
7647         ;;
7648 *)      case "$useshrplib" in
7649         '')     case "$osname" in
7650                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7651                         dflt=y
7652                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7653                         ;;
7654                 next*)
7655                         case "$osvers" in
7656                         4*)     dflt=y
7657                                 also='Building a shared libperl is needed for MAB support.'
7658                                 ;;
7659                         *)      dflt=n
7660                                 ;;
7661                         esac
7662                         ;;
7663                 *)      dflt=n
7664                         ;;
7665                 esac
7666                 ;;
7667         $define|true|[Yy]*)
7668                 dflt=y
7669                 ;;
7670         *)      dflt=n
7671                 ;;
7672         esac
7673         $cat << EOM
7674
7675 The perl executable is normally obtained by linking perlmain.c with
7676 libperl${_a}, any static extensions (usually just DynaLoader), and
7677 any other libraries needed on this system (such as -lm, etc.).  Since
7678 your system supports dynamic loading, it is probably possible to build
7679 a shared libperl.$so.  If you will have more than one executable linked
7680 to libperl.$so, this will significantly reduce the size of each
7681 executable, but it may have a noticeable affect on performance.  The
7682 default is probably sensible for your system.
7683 $also
7684
7685 EOM
7686         rp="Build a shared libperl.$so (y/n)"
7687         . ./myread
7688         case "$ans" in
7689         true|$define|[Yy]*)
7690                 useshrplib='true'  ;;
7691         *)      useshrplib='false' ;;
7692         esac
7693         ;;
7694 esac
7695
7696 case "$useshrplib" in
7697 true)
7698         case "$libperl" in
7699         '')
7700                 # Figure out a good name for libperl.so.  Since it gets stored in
7701                 # a version-specific architecture-dependent library, the version
7702                 # number isn't really that important, except for making cc/ld happy.
7703                 #
7704                 # A name such as libperl.so.3.1
7705                 majmin="libperl.$so.$patchlevel.$subversion"
7706                 # A name such as libperl.so.301
7707                 majonly=`echo $patchlevel $subversion |
7708                         $awk '{printf "%d%02d", $1, $2}'`
7709                 majonly=libperl.$so.$majonly
7710                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7711                 # rely on figuring it out from the naming of libc.
7712                 case "${osname}${osvers}" in
7713                 next4*)
7714                         dflt=libperl.5.$so
7715                         # XXX How handle the --version stuff for MAB?
7716                         ;;
7717                 linux*)  # ld won't link with a bare -lperl otherwise.
7718                         dflt=libperl.$so
7719                         ;;
7720                 cygwin*) # ld links against an importlib
7721                         dflt=libperl$lib_ext
7722                         ;;
7723                 *)      # Try to guess based on whether libc has major.minor.
7724                         case "$libc" in
7725                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7726                         *libc.$so.[0-9]*) dflt=$majonly ;;
7727                         *)      dflt=libperl.$so ;;
7728                         esac
7729                         ;;
7730                 esac
7731                 ;;
7732         *)      dflt=$libperl
7733                 ;;
7734         esac
7735         cat << EOM
7736
7737 I need to select a good name for the shared libperl.  If your system uses
7738 library names with major and minor numbers, then you might want something
7739 like $majmin.  Alternatively, if your system uses a single version
7740 number for shared libraries, then you might want to use $majonly.
7741 Or, your system might be quite happy with a simple libperl.$so.
7742
7743 Since the shared libperl will get installed into a version-specific
7744 architecture-dependent directory, the version number of the shared perl
7745 library probably isn't important, so the default should be o.k.
7746
7747 EOM
7748         rp='What name do you want to give to the shared libperl?'
7749         . ./myread
7750         libperl=$ans
7751         echo "Ok, I'll use $libperl"
7752         ;;
7753 *)
7754         libperl="libperl${_a}"
7755         ;;
7756 esac
7757
7758 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
7759 case "$shrpdir" in
7760 '') ;;
7761 *)      $cat >&4 <<EOM
7762 WARNING:  Use of the shrpdir variable for the installation location of
7763 the shared $libperl is not supported.  It was never documented and
7764 will not work in this version.  Let me (perlbug@perl.org)
7765 know of any problems this may cause.
7766
7767 EOM
7768         case "$shrpdir" in
7769         "$archlibexp/CORE")
7770                 $cat >&4 <<EOM
7771 But your current setting of $shrpdir is
7772 the default anyway, so it's harmless.
7773 EOM
7774                 ;;
7775         *)
7776                 $cat >&4 <<EOM
7777 Further, your current attempted setting of $shrpdir
7778 conflicts with the value of $archlibexp/CORE
7779 that installperl will use.
7780 EOM
7781                 ;;
7782         esac
7783         ;;
7784 esac
7785
7786 # How will the perl executable find the installed shared $libperl?
7787 # Add $xxx to ccdlflags.
7788 # If we can't figure out a command-line option, use $shrpenv to
7789 # set env LD_RUN_PATH.  The main perl makefile uses this.
7790 shrpdir=$archlibexp/CORE
7791 xxx=''
7792 tmp_shrpenv=''
7793 if "$useshrplib"; then
7794     case "$osname" in 
7795         aix)
7796                 # We'll set it in Makefile.SH...
7797                 ;;
7798         solaris)
7799                 xxx="-R $shrpdir"
7800                 ;;
7801         freebsd|netbsd|openbsd)
7802                 xxx="-Wl,-R$shrpdir"
7803                 ;;
7804         bsdos|linux|irix*|dec_osf)
7805                 xxx="-Wl,-rpath,$shrpdir"
7806                 ;;
7807         next)
7808                 # next doesn't like the default...
7809                 ;;
7810         beos)
7811                 # beos doesn't like the default, either.
7812                 ;;
7813         hpux*)
7814                 # hpux doesn't like the default, either.
7815                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7816                 ;;
7817         *)
7818                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7819                 ;;
7820         esac
7821         case "$xxx" in
7822         '') ;;
7823         *)      
7824                 # Only add $xxx if it isn't already in ccdlflags.
7825                 case " $ccdlflags " in
7826                 *" $xxx "*)     ;;
7827                 *)      ccdlflags="$ccdlflags $xxx"
7828                         cat <<EOM >&4
7829
7830 Adding $xxx to the flags
7831 passed to $ld so that the perl executable will find the 
7832 installed shared $libperl.
7833
7834 EOM
7835                         ;;
7836                 esac
7837                 ;;
7838         esac
7839 fi
7840 # Fix ccdlflags in AIX for building external extensions.
7841 # (For building Perl itself bare -bE:perl.exp is needed,
7842 #  Makefile.SH takes care of this.)
7843 case "$osname" in
7844 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7845 esac
7846 # Respect a hint or command-line value.
7847 case "$shrpenv" in
7848 '') shrpenv="$tmp_shrpenv" ;;
7849 esac
7850 case "$ldlibpthname" in
7851 '')     ldlibpthname=LD_LIBRARY_PATH ;;
7852 none)   ldlibpthname='' ;;
7853 esac
7854
7855 : determine where manual pages are on this system
7856 echo " "
7857 case "$sysman" in
7858 '') 
7859         syspath='/usr/share/man/man1 /usr/man/man1'
7860         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7861         syspath="$syspath /usr/man/u_man/man1"
7862         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7863         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7864         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7865         sysman=`./loc . /usr/man/man1 $syspath`
7866         ;;
7867 esac
7868 if $test -d "$sysman"; then
7869         echo "System manual is in $sysman." >&4
7870 else
7871         echo "Could not find manual pages in source form." >&4
7872 fi
7873
7874 : determine where manual pages go
7875 set man1dir man1dir none
7876 eval $prefixit
7877 $cat <<EOM
7878
7879 $spackage has manual pages available in source form.
7880 EOM
7881 case "$nroff" in
7882 nroff)
7883         echo "However, you don't have nroff, so they're probably useless to you."
7884         case "$man1dir" in
7885         '') man1dir="none";;
7886         esac;;
7887 esac
7888 echo "If you don't want the manual sources installed, answer 'none'."
7889 case "$man1dir" in
7890 ' ') dflt=none
7891         ;;
7892 '')
7893         lookpath="$prefixexp/share/man/man1"
7894         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
7895         lookpath="$lookpath $prefixexp/man/p_man/man1"
7896         lookpath="$lookpath $prefixexp/man/u_man/man1"
7897         lookpath="$lookpath $prefixexp/man/man.1"
7898         case "$sysman" in
7899         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
7900         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
7901         esac
7902         set dflt
7903         eval $prefixup
7904         ;;
7905 *)  dflt="$man1dir"
7906         ;;
7907 esac
7908 echo " "
7909 fn=dn+~
7910 rp="Where do the main $spackage manual pages (source) go?"
7911 . ./getfile
7912 if $test "X$man1direxp" != "X$ansexp"; then
7913         installman1dir=''
7914 fi
7915 man1dir="$ans"
7916 man1direxp="$ansexp"
7917 case "$man1dir" in
7918 '')     man1dir=' '
7919         installman1dir='';;
7920 esac
7921
7922 : Change installation prefix, if necessary.
7923 if $test X"$prefix" != X"$installprefix"; then
7924         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
7925 else
7926         installman1dir="$man1direxp"
7927 fi
7928
7929 : What suffix to use on installed man pages
7930
7931 case "$man1dir" in
7932 ' ')
7933         man1ext='0'
7934         ;;
7935 *)
7936         rp="What suffix should be used for the main $spackage man pages?"
7937         case "$man1ext" in
7938         '')     case "$man1dir" in
7939                 *1)  dflt=1 ;;
7940                 *1p) dflt=1p ;;
7941                 *1pm) dflt=1pm ;;
7942                 *l) dflt=l;;
7943                 *n) dflt=n;;
7944                 *o) dflt=o;;
7945                 *p) dflt=p;;
7946                 *C) dflt=C;;
7947                 *L) dflt=L;;
7948                 *L1) dflt=L1;;
7949                 *) dflt=1;;
7950                 esac
7951                 ;;
7952         *)      dflt="$man1ext";;
7953         esac
7954         . ./myread
7955         man1ext="$ans"
7956         ;;
7957 esac
7958
7959 : see if we can have long filenames
7960 echo " "
7961 first=123456789abcdef
7962 $rm -f $first
7963 if (echo hi >$first) 2>/dev/null; then
7964         if $test -f 123456789abcde; then
7965                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
7966                 val="$undef"
7967         else
7968                 echo 'You can have filenames longer than 14 characters.'>&4
7969                 val="$define"
7970         fi
7971 else
7972         $cat <<'EOM'
7973 You can't have filenames longer than 14 chars.
7974 You can't even think about them!
7975 EOM
7976         val="$undef"
7977 fi 
7978 set d_flexfnam
7979 eval $setvar
7980 $rm -rf 123456789abcde*
7981
7982 : determine where library module manual pages go
7983 set man3dir man3dir none
7984 eval $prefixit
7985 $cat <<EOM
7986
7987 $spackage has manual pages for many of the library modules.
7988 EOM
7989
7990 case "$nroff" in
7991 nroff)
7992         $cat <<'EOM'
7993 However, you don't have nroff, so they're probably useless to you.
7994 EOM
7995         case "$man3dir" in
7996         '') man3dir="none";;
7997         esac;;
7998 esac
7999
8000 case "$d_flexfnam" in
8001 undef)
8002         $cat <<'EOM'
8003 However, your system can't handle the long file names like File::Basename.3. 
8004 EOM
8005         case "$man3dir" in
8006         '') man3dir="none";;
8007         esac;;
8008 esac
8009
8010 echo "If you don't want the manual sources installed, answer 'none'."
8011 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8012 case "$man3dir" in
8013 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8014         if $test -d "$privlib/man/man3"; then
8015                 cat <<EOM >&4
8016
8017 WARNING:  Previous versions of perl installed man3 pages into
8018 $privlib/man/man3.  This version will suggest a 
8019 new default of $dflt.  
8020 EOM
8021                 tdflt=$dflt
8022                 dflt='n'
8023                 rp='Do you wish to preserve the old behavior?(y/n)'
8024                 . ./myread
8025                 case "$ans" in
8026                 y*) dflt="$privlib/man/man3" ;;
8027                 *)  dflt=$tdflt ;;
8028                 esac
8029     fi
8030         ;;
8031 *)      dflt="$man3dir" ;;
8032 esac
8033 case "$dflt" in
8034 ' ') dflt=none ;;
8035 esac
8036 echo " "
8037 fn=dn+~
8038 rp="Where do the $package library man pages (source) go?"
8039 . ./getfile
8040 man3dir="$ans"
8041 man3direxp="$ansexp"
8042 case "$man3dir" in
8043 '')     man3dir=' '
8044         installman3dir='';;
8045 esac
8046
8047 : Change installation prefix, if necessary.
8048 if $test X"$prefix" != X"$installprefix"; then
8049         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
8050 else
8051         installman3dir="$man3direxp"
8052 fi
8053
8054 : What suffix to use on installed man pages
8055 case "$man3dir" in
8056 ' ')
8057         man3ext='0'
8058         ;;
8059 *)
8060         rp="What suffix should be used for the $package library man pages?"
8061         case "$man3ext" in
8062         '')     case "$man3dir" in
8063                 *3)  dflt=3 ;;
8064                 *3p) dflt=3p ;;
8065                 *3pm) dflt=3pm ;;
8066                 *l) dflt=l;;
8067                 *n) dflt=n;;
8068                 *o) dflt=o;;
8069                 *p) dflt=p;;
8070                 *C) dflt=C;;
8071                 *L) dflt=L;;
8072                 *L3) dflt=L3;;
8073                 *) dflt=3;;
8074                 esac
8075                 ;;
8076         *)      dflt="$man3ext";;
8077         esac
8078         . ./myread
8079         man3ext="$ans"
8080         ;;
8081 esac
8082
8083 : see if we have to deal with yellow pages, now NIS.
8084 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8085         if $test -f /usr/etc/nibindd; then
8086                 echo " "
8087                 echo "I'm fairly confident you're on a NeXT."
8088                 echo " "
8089                 rp='Do you get the hosts file via NetInfo?'
8090                 dflt=y
8091                 case "$hostcat" in
8092                 nidump*) ;;
8093                 '') ;;
8094                 *) dflt=n;;
8095                 esac
8096                 . ./myread
8097                 case "$ans" in
8098                 y*) hostcat='nidump hosts .';;
8099                 *)      case "$hostcat" in
8100                         nidump*) hostcat='';;
8101                         esac
8102                         ;;
8103                 esac
8104         fi
8105         case "$hostcat" in
8106         nidump*) ;;
8107         *)
8108                 case "$hostcat" in
8109                 *ypcat*) dflt=y;;
8110                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8111                                 dflt=y
8112                         else
8113                                 dflt=n
8114                         fi;;
8115                 *) dflt=n;;
8116                 esac
8117                 echo " "
8118                 rp='Are you getting the hosts file via yellow pages?'
8119                 . ./myread
8120                 case "$ans" in
8121                 y*) hostcat='ypcat hosts';;
8122                 *) hostcat='cat /etc/hosts';;
8123                 esac
8124                 ;;
8125         esac
8126 fi
8127 case "$hostcat" in
8128 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8129 esac
8130 case "$groupcat" in
8131 '') test -f /etc/group && groupcat='cat /etc/group';;
8132 esac
8133 case "$passcat" in
8134 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8135 esac
8136
8137 : now get the host name
8138 echo " "
8139 echo "Figuring out host name..." >&4
8140 case "$myhostname" in
8141 '') cont=true
8142         echo 'Maybe "hostname" will work...'
8143         if tans=`sh -c hostname 2>&1` ; then
8144                 myhostname=$tans
8145                 phostname=hostname
8146                 cont=''
8147         fi
8148         ;;
8149 *) cont='';;
8150 esac
8151 if $test "$cont"; then
8152         if ./xenix; then
8153                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8154                 if tans=`cat /etc/systemid 2>&1` ; then
8155                         myhostname=$tans
8156                         phostname='cat /etc/systemid'
8157                         echo "Whadyaknow.  Xenix always was a bit strange..."
8158                         cont=''
8159                 fi
8160         elif $test -r /etc/systemid; then
8161                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8162         fi
8163 fi
8164 if $test "$cont"; then
8165         echo 'No, maybe "uuname -l" will work...'
8166         if tans=`sh -c 'uuname -l' 2>&1` ; then
8167                 myhostname=$tans
8168                 phostname='uuname -l'
8169         else
8170                 echo 'Strange.  Maybe "uname -n" will work...'
8171                 if tans=`sh -c 'uname -n' 2>&1` ; then
8172                         myhostname=$tans
8173                         phostname='uname -n'
8174                 else
8175                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8176                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8177                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8178                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8179                         else
8180                                 case "$myhostname" in
8181                                 '') echo "Does this machine have an identity crisis or something?"
8182                                         phostname='';;
8183                                 *)
8184                                         echo "Well, you said $myhostname before..."
8185                                         phostname='echo $myhostname';;
8186                                 esac
8187                         fi
8188                 fi
8189         fi
8190 fi
8191 case "$myhostname" in
8192 '') myhostname=noname ;;
8193 esac
8194 : you do not want to know about this
8195 set $myhostname
8196 myhostname=$1
8197
8198 : verify guess
8199 if $test "$myhostname" ; then
8200         dflt=y
8201         rp='Your host name appears to be "'$myhostname'".'" Right?"
8202         . ./myread
8203         case "$ans" in
8204         y*) ;;
8205         *) myhostname='';;
8206         esac
8207 fi
8208
8209 : bad guess or no guess
8210 while $test "X$myhostname" = X ; do
8211         dflt=''
8212         rp="Please type the (one word) name of your host:"
8213         . ./myread
8214         myhostname="$ans"
8215 done
8216
8217 : translate upper to lower if necessary
8218 case "$myhostname" in
8219 *[A-Z]*)
8220         echo "(Normalizing case in your host name)"
8221         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8222         ;;
8223 esac
8224
8225 case "$myhostname" in
8226 *.*)
8227         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8228         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8229         echo "(Trimming domain name from host name--host name is now $myhostname)"
8230         ;;
8231 *) case "$mydomain" in
8232         '')
8233                 {
8234                         test "X$hostcat" = "Xypcat hosts" &&
8235                         ypmatch "$myhostname" hosts 2>/dev/null |\
8236                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8237                         $test -s hosts
8238                 } || {
8239                         test "X$hostcat" != "X" &&
8240                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8241                                         /[       ]$myhostname[  . ]/p" > hosts
8242                 }
8243                 tmp_re="[       . ]"
8244                 if $test -f hosts; then
8245                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8246                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8247                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8248                                 hosts | $sort | $uniq | \
8249                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8250                         case `$echo X$dflt` in
8251                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8252                                 dflt=.
8253                                 ;;
8254                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8255                                 ;;
8256                         esac
8257                 else
8258                         echo "(I cannot locate a hosts database anywhere)"
8259                         dflt=.
8260                 fi
8261                 case "$dflt" in
8262                 .)
8263                         tans=`./loc resolv.conf X /etc /usr/etc`
8264                         if $test -f "$tans"; then
8265                                 echo "(Attempting domain name extraction from $tans)"
8266                                 dflt=.`$sed -n -e 's/   / /g' \
8267                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8268                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8269                                 case "$dflt" in
8270                                 .) dflt=.`$sed -n -e 's/        / /g' \
8271                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8272                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8273                                         ;;
8274                                 esac
8275                         fi
8276                         ;;
8277                 esac
8278                 case "$dflt" in
8279                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8280                         dflt=.`sh -c domainname 2>/dev/null`
8281                         case "$dflt" in
8282                         '') dflt='.';;
8283                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8284                         esac
8285                         ;;
8286                 esac
8287                 case "$dflt$osname" in
8288                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8289                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8290                         ;;
8291                 esac
8292                 case "$dflt" in
8293                 .) echo "(Lost all hope -- silly guess then)"
8294                         dflt='.nonet'
8295                         ;;
8296                 esac
8297                 $rm -f hosts
8298                 ;;
8299         *) dflt="$mydomain";;
8300         esac;;
8301 esac
8302 echo " "
8303 rp="What is your domain name?"
8304 . ./myread
8305 tans="$ans"
8306 case "$ans" in
8307 '') ;;
8308 .*) ;;
8309 *) tans=".$tans";;
8310 esac
8311 mydomain="$tans"
8312
8313 : translate upper to lower if necessary
8314 case "$mydomain" in
8315 *[A-Z]*)
8316         echo "(Normalizing case in your domain name)"
8317         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8318         ;;
8319 esac
8320
8321 : a little sanity check here
8322 case "$phostname" in
8323 '') ;;
8324 *)
8325         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8326         $myhostname$mydomain|$myhostname) ;;
8327         *)
8328                 case "$phostname" in
8329                 sed*)
8330                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8331                         ;;
8332                 *)
8333                         echo "(That doesn't agree with your $phostname command, by the way.)"
8334                         ;;
8335                 esac
8336         ;;
8337         esac
8338         ;;
8339 esac
8340
8341 $cat <<EOM
8342
8343 I need to get your e-mail address in Internet format if possible, i.e.
8344 something like user@host.domain. Please answer accurately since I have
8345 no easy means to double check it. The default value provided below
8346 is most probably close to reality but may not be valid from outside
8347 your organization...
8348
8349 EOM
8350 cont=x
8351 while test "$cont"; do
8352         case "$cf_email" in
8353         '') dflt="$cf_by@$myhostname$mydomain";;
8354         *) dflt="$cf_email";;
8355         esac
8356         rp='What is your e-mail address?'
8357         . ./myread
8358         cf_email="$ans"
8359         case "$cf_email" in
8360         *@*.*) cont='' ;;
8361         *)
8362                 rp='Address does not look like an Internet one.  Use it anyway?'
8363                 case "$fastread" in
8364                 yes) dflt=y ;;
8365                 *) dflt=n ;;
8366                 esac
8367                 . ./myread
8368                 case "$ans" in
8369                 y*) cont='' ;;
8370                 *) echo " " ;;
8371                 esac
8372                 ;;
8373         esac
8374 done
8375
8376 $cat <<EOM
8377
8378 If you or somebody else will be maintaining perl at your site, please
8379 fill in the correct e-mail address here so that they may be contacted
8380 if necessary. Currently, the "perlbug" program included with perl
8381 will send mail to this address in addition to perlbug@perl.org. You may
8382 enter "none" for no administrator.
8383
8384 EOM
8385 case "$perladmin" in
8386 '') dflt="$cf_email";;
8387 *) dflt="$perladmin";;
8388 esac
8389 rp='Perl administrator e-mail address'
8390 . ./myread
8391 perladmin="$ans"
8392
8393 : determine whether to only install version-specific parts.
8394 echo " "
8395 $cat <<EOM
8396 Do you want to install only the version-specific parts of the perl
8397 distribution?  Usually you do *not* want to do this.
8398 EOM
8399 case "$versiononly" in
8400 "$define"|[Yy]*|true) dflt='y' ;;
8401 *) dflt='n';
8402 esac
8403 rp="Do you want to install only the version-specific parts of perl?"
8404 . ./myread
8405 case "$ans" in
8406 [yY]*)  val="$define";;
8407 *)      val="$undef" ;;
8408 esac
8409 set versiononly
8410 eval $setvar
8411
8412 case "$versiononly" in
8413 "$define") inc_version_list=''
8414            inc_version_list_init=0
8415            ;;
8416 esac
8417
8418 : figure out how to guarantee perl startup
8419 case "$startperl" in
8420 '')
8421         case "$sharpbang" in
8422         *!)
8423                 $cat <<EOH
8424
8425 I can use the #! construct to start perl on your system. This will
8426 make startup of perl scripts faster, but may cause problems if you
8427 want to share those scripts and perl is not in a standard place
8428 ($binexp/perl) on all your platforms. The alternative is to force
8429 a shell by starting the script with a single ':' character.
8430
8431 EOH
8432                 case "$versiononly" in
8433                 "$define")      dflt="$binexp/perl$version";;  
8434                 *)              dflt="$binexp/perl";;
8435                 esac
8436                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8437                 . ./myread
8438                 case "$ans" in
8439                 none)   startperl=": # use perl";;
8440                 *)      startperl="#!$ans"
8441                         if $test 30 -lt `echo "$ans" | wc -c`; then
8442                                 $cat >&4 <<EOM
8443
8444 WARNING:  Some systems limit the #! command to 32 characters.
8445 If you experience difficulty running Perl scripts with #!, try
8446 installing Perl in a directory with a shorter pathname.
8447
8448 EOM
8449                         fi ;;
8450                 esac
8451                 ;;
8452         *) startperl=": # use perl"
8453                 ;;
8454         esac
8455         ;;
8456 esac
8457 echo "I'll use $startperl to start perl scripts."
8458
8459 : figure best path for perl in scripts
8460 case "$perlpath" in
8461 '')
8462         case "$versiononly" in
8463         "$define")      perlpath="$binexp/perl$version";;
8464         *)              perlpath="$binexp/perl";;
8465         esac
8466         case "$startperl" in
8467         *!*) ;;
8468         *)
8469                 $cat <<EOH
8470
8471 I will use the "eval 'exec'" idiom to start Perl on your system.
8472 I can use the full path of your Perl binary for this purpose, but
8473 doing so may cause problems if you want to share those scripts and
8474 Perl is not always in a standard place ($binexp/perl).
8475
8476 EOH
8477                 dflt="$binexp/perl"
8478                 rp="What path shall I use in \"eval 'exec'\"?"
8479                 . ./myread
8480                 perlpath="$ans"
8481                 ;;
8482         esac
8483         ;;
8484 esac
8485 case "$startperl" in
8486 *!*)    ;;
8487 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8488 esac
8489
8490 : determine where public executable scripts go
8491 set scriptdir scriptdir
8492 eval $prefixit
8493 case "$scriptdir" in
8494 '')
8495         dflt="$bin"
8496         : guess some guesses
8497         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8498         $test -d /usr/share/bin     && dflt=/usr/share/bin
8499         $test -d /usr/local/script  && dflt=/usr/local/script
8500         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8501         $test -d $prefixexp/script  && dflt=$prefixexp/script
8502         set dflt
8503         eval $prefixup
8504         ;;
8505 *)  dflt="$scriptdir"
8506         ;;
8507 esac
8508 $cat <<EOM
8509  
8510 Some installations have a separate directory just for executable scripts so
8511 that they can mount it across multiple architectures but keep the scripts in
8512 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8513 Or you might just lump your scripts in with all your other executables.
8514  
8515 EOM
8516 fn=d~
8517 rp='Where do you keep publicly executable scripts?'
8518 . ./getfile
8519 if $test "X$ansexp" != "X$scriptdirexp"; then
8520         installscript=''
8521 fi
8522 scriptdir="$ans"
8523 scriptdirexp="$ansexp"
8524 : Change installation prefix, if necessary.
8525 if $test X"$prefix" != X"$installprefix"; then
8526         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
8527 else
8528         installscript="$scriptdirexp"
8529 fi
8530
8531 : determine where add-on public executables go
8532 case "$sitebin" in
8533 '')     dflt=$siteprefix/bin ;;
8534 *)      dflt=$sitebin ;;
8535 esac
8536 fn=d~
8537 rp='Pathname where the add-on public executables should be installed?'
8538 . ./getfile
8539 sitebin="$ans"
8540 sitebinexp="$ansexp"
8541 : Change installation prefix, if necessary.
8542 if $test X"$prefix" != X"$installprefix"; then
8543         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
8544 else
8545         installsitebin="$sitebinexp"
8546 fi
8547
8548 : determine where add-on html pages go
8549 : There is no standard location, so try to copy the previously-selected 
8550 : directory structure for the core html pages.
8551 case "$sitehtml1" in
8552 '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8553 *)      dflt=$sitehtml1 ;;
8554 esac
8555 case "$dflt" in
8556 ''|' ') dflt=none ;;
8557 esac
8558 fn=dn+~
8559 rp='Pathname where the site-specific html pages should be installed?'
8560 . ./getfile
8561 sitehtml1="$ans"
8562 sitehtml1exp="$ansexp"
8563 : Use ' ' for none so value is preserved next time through Configure
8564 $test X"$sitehtml1" = "X" && sitehtml1=' '
8565 : Change installation prefix, if necessary.
8566 if $test X"$prefix" != X"$installprefix"; then
8567         installsitehtml1=`echo "$sitehtml1exp" | $sed "s#^$prefix#$installprefix#"`
8568 else
8569         installsitehtml1="$sitehtml1exp"
8570 fi
8571
8572 : determine where add-on library html pages go
8573 : There is no standard location, so try to copy the previously-selected
8574 : directory structure for the core html pages.
8575 case "$sitehtml3" in
8576 '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8577 *)      dflt=$sitehtml3 ;;
8578 esac
8579 case "$dflt" in
8580 ''|' ') dflt=none ;;
8581 esac
8582 fn=dn+~
8583 rp='Pathname where the site-specific library html pages should be installed?'
8584 . ./getfile
8585 sitehtml3="$ans"
8586 sitehtml3exp="$ansexp"
8587 : Use ' ' for none so value is preserved next time through Configure
8588 $test X"$sitehtml3" = "X" && sitehtml3=' '
8589 : Change installation prefix, if necessary.
8590 if $test X"$prefix" != X"$installprefix"; then
8591         installsitehtml3=`echo "$sitehtml3exp" | $sed "s#^$prefix#$installprefix#"`
8592 else
8593         installsitehtml3="$sitehtml3exp"
8594 fi
8595
8596 : determine where add-on manual pages go
8597 case "$siteman1" in
8598 '')     dflt=`echo "$man1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8599 *)      dflt=$siteman1 ;;
8600 esac
8601 case "$dflt" in
8602 ''|' ') dflt=none ;;
8603 esac
8604 fn=dn+~
8605 rp='Pathname where the site-specific manual pages should be installed?'
8606 . ./getfile
8607 siteman1="$ans"
8608 siteman1exp="$ansexp"
8609 : Use ' ' for none so value is preserved next time through Configure
8610 $test X"$siteman1" = "X" && siteman1=' '
8611 : Change installation prefix, if necessary.
8612 if $test X"$prefix" != X"$installprefix"; then
8613         installsiteman1=`echo "$siteman1exp" | $sed "s#^$prefix#$installprefix#"`
8614 else
8615         installsiteman1="$siteman1exp"
8616 fi
8617
8618 : determine where add-on library man pages go
8619 case "$siteman3" in
8620 '')     dflt=`echo "$man3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8621 *)      dflt=$siteman3 ;;
8622 esac
8623 case "$dflt" in
8624 ''|' ') dflt=none ;;
8625 esac
8626 fn=dn+~
8627 rp='Pathname where the site-specific library manual pages should be installed?'
8628 . ./getfile
8629 siteman3="$ans"
8630 siteman3exp="$ansexp"
8631 : Use ' ' for none so value is preserved next time through Configure
8632 $test X"$siteman3" = "X" && siteman3=' '
8633 : Change installation prefix, if necessary.
8634 if $test X"$prefix" != X"$installprefix"; then
8635         installsiteman3=`echo "$siteman3exp" | $sed "s#^$prefix#$installprefix#"`
8636 else
8637         installsiteman3="$siteman3exp"
8638 fi
8639
8640 : determine where add-on public executable scripts go
8641 case "$sitescript" in
8642 '')     dflt=$siteprefix/script
8643         $test -d $dflt || dflt=$sitebin ;;
8644 *)  dflt="$sitescript" ;;
8645 esac
8646 fn=d~+
8647 rp='Pathname where add-on public executable scripts should be installed?'
8648 . ./getfile
8649 sitescript="$ans"
8650 sitescriptexp="$ansexp"
8651 : Change installation prefix, if necessary.
8652 if $test X"$prefix" != X"$installprefix"; then
8653         installsitescript=`echo $sitescriptexp | sed "s#^$prefix#$installprefix#"`
8654 else
8655         installsitescript="$sitescriptexp"
8656 fi
8657
8658 case "$usefaststdio" in
8659 $define|true|[yY]*|'')
8660         xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
8661         case "$xversion" in
8662         [68])   dflt='y' ;;
8663         *)      dflt='n' ;;
8664         esac
8665         ;;
8666 *) dflt='n';;
8667 esac
8668 cat <<EOM
8669
8670 Perl can be built to use 'fast stdio', which means using the stdio
8671 library but also directly manipulating the stdio buffers to enable
8672 faster I/O.  Using stdio is better for backward compatibility (especially
8673 for Perl extensions), but on the other hand since Perl 5.8 the 'perlio'
8674 interface has been preferred instead of stdio.
8675
8676 If this doesn't make any sense to you, just accept the default '$dflt'.
8677 EOM
8678 rp='Use the "fast stdio" if available?'
8679 . ./myread
8680 case "$ans" in
8681 y|Y)    val="$define" ;;     
8682 *)      val="$undef" ;;
8683 esac
8684 set usefaststdio
8685 eval $setvar
8686
8687
8688 : define an is-a-typedef? function
8689 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8690 case "$inclist" in
8691 "") inclist="sys/types.h";;
8692 esac;
8693 eval "varval=\$$var";
8694 case "$varval" in
8695 "")
8696         $rm -f temp.c;
8697         for inc in $inclist; do
8698                 echo "#include <$inc>" >>temp.c;
8699         done;
8700         echo "#ifdef $type" >> temp.c;
8701         echo "printf(\"We have $type\");" >> temp.c;
8702         echo "#endif" >> temp.c;
8703         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8704         if $contains $type temp.E >/dev/null 2>&1; then
8705                 eval "$var=\$type";
8706         else
8707                 eval "$var=\$def";
8708         fi;
8709         $rm -f temp.?;;
8710 *) eval "$var=\$varval";;
8711 esac'
8712
8713 : define an is-a-typedef? function that prompts if the type is not available.
8714 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8715 case "$inclist" in
8716 "") inclist="sys/types.h";;
8717 esac;
8718 eval "varval=\$$var";
8719 case "$varval" in
8720 "")
8721         $rm -f temp.c;
8722         for inc in $inclist; do
8723                 echo "#include <$inc>" >>temp.c;
8724         done;
8725         echo "#ifdef $type" >> temp.c;
8726         echo "printf(\"We have $type\");" >> temp.c;
8727         echo "#endif" >> temp.c;
8728         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8729         echo " " ;
8730         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8731         if $contains $type temp.E >/dev/null 2>&1; then
8732                 echo "$type found." >&4;
8733                 eval "$var=\$type";
8734         else
8735                 echo "$type NOT found." >&4;
8736                 dflt="$def";
8737                 . ./myread ;
8738                 eval "$var=\$ans";
8739         fi;
8740         $rm -f temp.?;;
8741 *) eval "$var=\$varval";;
8742 esac'
8743
8744 : see what type lseek is declared as in the kernel
8745 rp="What is the type used for lseek's offset on this system?"
8746 set off_t lseektype long stdio.h sys/types.h
8747 eval $typedef_ask
8748
8749 echo " "
8750 echo "Checking to see how big your file offsets are..." >&4
8751 $cat >try.c <<EOCP
8752 #include <sys/types.h>
8753 #include <stdio.h>
8754 int main()
8755 {
8756     printf("%d\n", (int)sizeof($lseektype));
8757     return(0); 
8758 }
8759 EOCP
8760 set try
8761 if eval $compile_ok; then
8762         lseeksize=`$run ./try`
8763         echo "Your file offsets are $lseeksize bytes long."
8764 else
8765         dflt=$longsize
8766         echo " "
8767         echo "(I can't seem to compile the test program.  Guessing...)"
8768         rp="What is the size of your file offsets (in bytes)?"
8769         . ./myread
8770         lseeksize="$ans"
8771 fi
8772 $rm -f try.c try
8773
8774 : see what type file positions are declared as in the library
8775 rp="What is the type for file position used by fsetpos()?"
8776 set fpos_t fpostype long stdio.h sys/types.h
8777 eval $typedef_ask
8778
8779 echo " "
8780 case "$fpostype" in
8781 *_t) zzz="$fpostype"    ;;
8782 *)   zzz="fpos_t"       ;;
8783 esac
8784 echo "Checking the size of $zzz..." >&4 
8785 cat > try.c <<EOCP
8786 #include <sys/types.h>
8787 #include <stdio.h>
8788 #$i_stdlib I_STDLIB
8789 #ifdef I_STDLIB
8790 #include <stdlib.h>
8791 #endif
8792 int main() {
8793     printf("%d\n", (int)sizeof($fpostype));
8794     exit(0);
8795 }
8796 EOCP
8797 set try
8798 if eval $compile_ok; then
8799         yyy=`$run ./try`
8800         case "$yyy" in
8801         '')     fpossize=4
8802                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8803                 ;;
8804         *)      fpossize=$yyy
8805                 echo "Your $zzz is $fpossize bytes long."
8806                 ;;
8807         esac
8808 else
8809         dflt="$longsize"
8810         echo " " >&4
8811         echo "(I can't compile the test program.  Guessing...)" >&4
8812         rp="What is the size of your file positions (in bytes)?"
8813         . ./myread
8814         fpossize="$ans"
8815 fi
8816
8817 # Backward compatibility (uselfs is deprecated).
8818 case "$uselfs" in
8819 "$define"|true|[yY]*)
8820         cat <<EOM >&4
8821
8822 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
8823 EOM
8824         uselargefiles="$define"
8825         ;;
8826 esac                          
8827
8828 case "$lseeksize:$fpossize" in
8829 8:8) cat <<EOM
8830
8831 You can have files larger than 2 gigabytes.
8832 EOM
8833    val="$define" ;;
8834 *)    case "$uselargefiles" in
8835    "$undef"|false|[nN]*) dflt='n' ;;
8836    *)   dflt='y' ;;
8837    esac
8838    cat <<EOM
8839
8840 Perl can be built to understand large files (files larger than 2 gigabytes)
8841 on some systems.  To do so, Configure can be run with -Duselargefiles.
8842
8843 If this doesn't make any sense to you, just accept the default '$dflt'.
8844 EOM
8845    rp='Try to understand large files, if available?'
8846    . ./myread
8847    case "$ans" in
8848    y|Y)         val="$define" ;;
8849    *)           val="$undef"  ;;
8850    esac
8851    ;;
8852 esac
8853 set uselargefiles
8854 eval $setvar
8855 case "$uselargefiles" in
8856 "$define")
8857 : Look for a hint-file generated 'call-back-unit'.  If the
8858 : user has specified that a large files perl is to be built,
8859 : we may need to set or change some other defaults.
8860         if $test -f uselargefiles.cbu; then
8861                 echo "Your platform has some specific hints for large file builds, using them..."
8862                 . ./uselargefiles.cbu
8863                 echo " "
8864                 echo "Rechecking to see how big your file offsets are..." >&4
8865                 $cat >try.c <<EOCP
8866 #include <sys/types.h>
8867 #include <stdio.h>
8868 int main()
8869 {
8870     printf("%d\n", (int)sizeof($lseektype));
8871     return(0); 
8872 }
8873 EOCP
8874                 set try
8875                 if eval $compile_ok; then
8876                         lseeksize=`$run ./try`
8877                         $echo "Your file offsets are now $lseeksize bytes long."
8878                 else
8879                         dflt="$lseeksize"
8880                         echo " "
8881                         echo "(I can't seem to compile the test program.  Guessing...)"
8882                         rp="What is the size of your file offsets (in bytes)?"
8883                         . ./myread
8884                         lseeksize="$ans"
8885                 fi
8886                 case "$fpostype" in
8887                 *_t) zzz="$fpostype"    ;;
8888                 *)   zzz="fpos_t"       ;;
8889                 esac
8890                 $echo $n "Rechecking the size of $zzz...$c" >&4 
8891                 $cat > try.c <<EOCP
8892 #include <sys/types.h>
8893 #include <stdio.h>
8894 #$i_stdlib I_STDLIB
8895 #ifdef I_STDLIB
8896 #include <stdlib.h>
8897 #endif
8898 int main() {
8899     printf("%d\n", (int)sizeof($fpostype));
8900     return(0);
8901 }
8902 EOCP
8903                 set try
8904                 if eval $compile_ok; then
8905                         yyy=`$run ./try`
8906                         dflt="$lseeksize"
8907                         case "$yyy" in
8908                         '')     echo " "
8909                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8910                                 ;;
8911                         *)      fpossize=$yyy
8912                                 echo " $fpossize bytes." >&4
8913                                 ;;
8914                         esac
8915                 else
8916                         dflt="$fpossize"
8917                         echo " "
8918                         echo "(I can't compile the test program.  Guessing...)" >&4
8919                         rp="What is the size of your file positions (in bytes)?"
8920                         . ./myread
8921                         fpossize="$ans"
8922                 fi
8923                 $rm -f try.c try
8924         fi
8925         ;;
8926 esac
8927
8928 case "$vendorprefix" in
8929 '')     d_vendorbin="$undef"
8930         vendorbin=''
8931         vendorbinexp=''
8932         ;;
8933 *)      d_vendorbin="$define"
8934         : determine where vendor-supplied executables go.
8935         case "$vendorbin" in
8936         '') dflt=$vendorprefix/bin ;;
8937         *)      dflt="$vendorbin" ;;
8938         esac
8939         fn=d~+
8940         rp='Pathname for the vendor-supplied executables directory?'
8941         . ./getfile
8942         vendorbin="$ans"
8943         vendorbinexp="$ansexp"
8944         ;;
8945 esac
8946 : Change installation prefix, if necessary.
8947 if $test X"$prefix" != X"$installprefix"; then
8948         installvendorbin=`echo $vendorbinexp | $sed "s#^$prefix#$installprefix#"`
8949 else
8950         installvendorbin="$vendorbinexp"
8951 fi
8952
8953 case "$vendorprefix" in
8954 '')     vendorhtml1=''
8955         vendorhtml1exp=''
8956         ;;
8957 *)      : determine where vendor-supplied html pages go.
8958         : There is no standard location, so try to copy the previously-selected
8959         : directory structure for the core html pages.
8960         : XXX Better default suggestions would be welcome.
8961         case "$vendorhtml1" in
8962         '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
8963         *)      dflt=$vendorhtml1 ;;
8964         esac
8965         case "$dflt" in
8966         ''|' ') dflt=none ;;
8967         esac
8968         fn=dn+~
8969         rp='Pathname for the vendor-supplied html pages?'
8970         . ./getfile
8971         vendorhtml1="$ans"
8972         vendorhtml1exp="$ansexp"
8973         ;;
8974 esac
8975 : Use ' ' for none so value is preserved next time through Configure
8976 $test X"$vendorhtml1" = "X" && vendorhtml1=' '
8977 : Change installation prefix, if necessary.
8978 if $test X"$prefix" != X"$installprefix"; then
8979         installvendorhtml1=`echo $vendorhtml1exp | $sed "s#^$prefix#$installprefix#"`
8980 else
8981         installvendorhtml1="$vendorhtml1exp"
8982 fi
8983
8984 case "$vendorprefix" in
8985 '')     vendorhtml3=''
8986         vendorhtml3exp=''
8987         ;;
8988 *)      : determine where vendor-supplied module html pages go.
8989         : There is no standard location, so try to copy the previously-selected
8990         : directory structure for the core html pages.
8991         : XXX Better default suggestions would be welcome.
8992         case "$vendorhtml3" in
8993         '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
8994         *)      dflt=$vendorhtml3 ;;
8995         esac
8996         case "$dflt" in
8997         ''|' ') dflt=none ;;
8998         esac
8999         fn=dn+~
9000         rp='Pathname for the vendor-supplied html pages?'
9001         . ./getfile
9002         vendorhtml3="$ans"
9003         vendorhtml3exp="$ansexp"
9004         ;;
9005 esac
9006 : Use ' ' for none so value is preserved next time through Configure
9007 $test X"$vendorhtml3" = "X" && vendorhtml3=' '
9008 : Change installation prefix, if necessary.
9009 if $test X"$prefix" != X"$installprefix"; then
9010         installvendorhtml3=`echo $vendorhtml3exp | $sed "s#^$prefix#$installprefix#"`
9011 else
9012         installvendorhtml3="$vendorhtml3exp"
9013 fi
9014
9015 case "$vendorprefix" in
9016 '')     vendorman1=''
9017         vendorman1exp=''
9018         ;;
9019 *)      : determine where vendor-supplied manual pages go.
9020         case "$vendorman1" in
9021         '') dflt=`echo "$man1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9022         *)      dflt=$vendorman1 ;;
9023         esac
9024         case "$dflt" in
9025         ''|' ') dflt=none ;;
9026         esac
9027         fn=nd~+
9028         rp='Pathname for the vendor-supplied manual section 1 pages?'
9029         . ./getfile
9030         vendorman1="$ans"
9031         vendorman1exp="$ansexp"
9032         ;;
9033 esac
9034 : Use ' ' for none so value is preserved next time through Configure
9035 $test X"$vendorman1" = "X" && vendorman1=' '
9036 : Change installation prefix, if necessary.
9037 if $test X"$prefix" != X"$installprefix"; then
9038         installvendorman1=`echo "$vendorman1exp" | $sed "s#^$prefix#$installprefix#"`
9039 else
9040         installvendorman1="$vendorman1exp"
9041 fi
9042
9043 case "$vendorprefix" in
9044 '')     vendorman3=''
9045         vendorman3exp=''
9046         ;;
9047 *)      : determine where vendor-supplied module manual pages go.
9048         case "$vendorman3" in
9049         '') dflt=`echo "$man3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9050         *)      dflt=$vendorman3 ;;
9051         esac
9052         case "$dflt" in
9053         ''|' ') dflt=none ;;
9054         esac
9055         fn=nd~+
9056         rp='Pathname for the vendor-supplied manual section 3 pages?'
9057         . ./getfile
9058         vendorman3="$ans"
9059         vendorman3exp="$ansexp"
9060         ;;
9061 esac
9062 : Use ' ' for none so value is preserved next time through Configure
9063 $test X"$vendorman3" = "X" && vendorman3=' '
9064 : Change installation prefix, if necessary.
9065 if $test X"$prefix" != X"$installprefix"; then
9066         installvendorman3=`echo "$vendorman3exp" | $sed "s#^$prefix#$installprefix#"`
9067 else
9068         installvendorman3="$vendorman3exp"
9069 fi
9070
9071 case "$vendorprefix" in
9072 '')     d_vendorscript="$undef"
9073         vendorscript=''
9074         vendorscriptexp=''
9075         ;;
9076 *)      d_vendorscript="$define"
9077         : determine where vendor-supplied scripts go.
9078         case "$vendorscript" in
9079         '')     dflt=$vendorprefix/script
9080                 $test -d $dflt || dflt=$vendorbin ;;
9081         *)  dflt="$vendorscript" ;;
9082         esac
9083         $cat <<EOM
9084
9085 The installation process will create a directory for 
9086 vendor-supplied scripts.
9087
9088 EOM
9089         fn=d~+
9090         rp='Pathname for the vendor-supplied scripts directory?'
9091         . ./getfile
9092         vendorscript="$ans"
9093         vendorscriptexp="$ansexp"
9094         ;;
9095 esac
9096 : Change installation prefix, if necessary.
9097 if $test X"$prefix" != X"$installprefix"; then
9098         installvendorscript=`echo $vendorscriptexp | $sed "s#^$prefix#$installprefix#"`
9099 else
9100         installvendorscript="$vendorscriptexp"
9101 fi
9102
9103 : see if qgcvt exists
9104 set qgcvt d_qgcvt
9105 eval $inlibc
9106
9107 echo " "
9108
9109 if $test X"$d_longdbl" = X"$define"; then
9110
9111 echo "Checking how to print long doubles..." >&4
9112
9113 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
9114         $cat >try.c <<'EOCP'
9115 #include <sys/types.h>
9116 #include <stdio.h>
9117 int main() {
9118   double d = 123.456;
9119   printf("%.3f\n", d);
9120 }
9121 EOCP
9122         set try
9123         if eval $compile; then
9124                 yyy=`$run ./try`
9125                 case "$yyy" in
9126                 123.456)
9127                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
9128                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
9129                         echo "We will use %f."
9130                         ;;
9131                 esac
9132         fi
9133 fi
9134
9135 if $test X"$sPRIfldbl" = X; then
9136         $cat >try.c <<'EOCP'
9137 #include <sys/types.h>
9138 #include <stdio.h>
9139 int main() {
9140   long double d = 123.456;
9141   printf("%.3Lf\n", d);
9142 }
9143 EOCP
9144         set try
9145         if eval $compile; then
9146                 yyy=`$run ./try`
9147                 case "$yyy" in
9148                 123.456)
9149                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
9150                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
9151                         echo "We will use %Lf."
9152                         ;;
9153                 esac
9154         fi
9155 fi
9156
9157 if $test X"$sPRIfldbl" = X; then
9158         $cat >try.c <<'EOCP'
9159 #include <sys/types.h>
9160 #include <stdio.h>
9161 int main() {
9162   long double d = 123.456;
9163   printf("%.3llf\n", d);
9164 }
9165 EOCP
9166         set try
9167         if eval $compile; then
9168                 yyy=`$run ./try`
9169                 case "$yyy" in
9170                 123.456)
9171                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
9172                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
9173                         echo "We will use %llf."
9174                         ;;
9175                 esac
9176         fi
9177 fi
9178
9179 if $test X"$sPRIfldbl" = X; then
9180         $cat >try.c <<'EOCP'
9181 #include <sys/types.h>
9182 #include <stdio.h>
9183 int main() {
9184   long double d = 123.456;
9185   printf("%.3lf\n", d);
9186 }
9187 EOCP
9188         set try
9189         if eval $compile; then
9190                 yyy=`$run ./try`
9191                 case "$yyy" in
9192                 123.456)
9193                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
9194                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
9195                         echo "We will use %lf."
9196                         ;;
9197                 esac
9198         fi
9199 fi
9200
9201 if $test X"$sPRIfldbl" = X; then
9202         echo "Cannot figure out how to print long doubles." >&4
9203 else
9204         sSCNfldbl=$sPRIfldbl    # expect consistency
9205 fi
9206
9207 $rm -f try try.*
9208
9209 fi # d_longdbl
9210
9211 case "$sPRIfldbl" in
9212 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
9213         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
9214         d_SCNfldbl="$undef";
9215         ;;
9216 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
9217         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
9218         d_SCNfldbl="$define";
9219         ;;
9220 esac
9221
9222 : Check how to convert floats to strings.
9223
9224 if test "X$d_Gconvert" = X; then
9225
9226 echo " "
9227 echo "Checking for an efficient way to convert floats to strings."
9228 echo " " > try.c
9229 case "$uselongdouble" in
9230 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
9231 esac
9232 case "$d_longdbl" in
9233 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
9234 esac
9235 case "$d_PRIgldbl" in
9236 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
9237 esac
9238 $cat >>try.c <<EOP
9239 #ifdef TRY_gconvert
9240 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
9241 char *myname = "gconvert";
9242 #endif
9243 #ifdef TRY_gcvt
9244 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
9245 char *myname = "gcvt";
9246 #endif
9247 #ifdef TRY_qgcvt
9248 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
9249 char *myname = "qgcvt";
9250 #define DOUBLETYPE long double
9251 #endif
9252 #ifdef TRY_sprintf
9253 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9254 #ifdef HAS_PRIgldbl
9255 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
9256 #else
9257 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
9258 #endif
9259 #else
9260 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
9261 #endif
9262 char *myname = "sprintf";
9263 #endif
9264
9265 #ifndef DOUBLETYPE
9266 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9267 #define DOUBLETYPE long double
9268 #else
9269 #define DOUBLETYPE double
9270 #endif
9271 #endif
9272
9273 #include <stdio.h>
9274
9275 #define I_STDLIB $i_stdlib
9276 #ifdef I_STDLIB
9277 #include <stdlib.h>
9278 #endif
9279
9280 int
9281 checkit(expect, got)
9282 char *expect;
9283 char *got;
9284 {
9285     if (strcmp(expect, got)) {
9286                 printf("%s oddity:  Expected %s, got %s\n",
9287                         myname, expect, got);
9288                 exit(1);
9289         }
9290 }
9291
9292 int main()
9293
9294         char buf[64]; 
9295         buf[63] = '\0';
9296
9297         /* This must be 1st test on (which?) platform */
9298         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
9299         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
9300         checkit("0.1", buf);
9301
9302         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
9303         checkit("0.01", buf);
9304
9305         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
9306         checkit("0.001", buf);
9307
9308         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
9309         checkit("0.0001", buf);
9310
9311         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
9312         if (strlen(buf) > 5)
9313             checkit("9e-005", buf); /* for Microsoft ?? */
9314         else
9315             checkit("9e-05", buf);
9316
9317         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
9318         checkit("1", buf);
9319
9320         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
9321         checkit("1.1", buf);
9322
9323         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
9324         checkit("1.01", buf);
9325
9326         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
9327         checkit("1.001", buf);
9328
9329         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
9330         checkit("1.0001", buf);
9331
9332         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
9333         checkit("1.00001", buf);
9334
9335         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
9336         checkit("1.000001", buf);
9337
9338         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
9339         checkit("0", buf);
9340
9341         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
9342         checkit("-1", buf);
9343
9344         /* Some Linux gcvt's give 1.e+5 here. */
9345         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
9346         checkit("100000", buf);
9347         
9348         /* Some Linux gcvt's give -1.e+5 here. */
9349         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
9350         checkit("-100000", buf);
9351
9352         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
9353         checkit("123.456", buf);
9354
9355         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
9356         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
9357         /* 34 should be enough to scare even long double
9358          * places into using the e notation. */
9359         if (strlen(buf) > 5)
9360             checkit("1e+034", buf); /* for Microsoft */
9361         else
9362             checkit("1e+34", buf);
9363
9364         /* For Perl, if you add additional tests here, also add them to
9365          * t/base/num.t for benefit of platforms not using Configure or
9366          * overriding d_Gconvert */
9367
9368         exit(0);
9369 }
9370 EOP
9371 : first add preferred functions to our list
9372 xxx_list=""
9373 for xxx_convert in $gconvert_preference; do
9374     case $xxx_convert in
9375     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
9376     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
9377     esac 
9378 done
9379 : then add any others
9380 for xxx_convert in gconvert gcvt sprintf; do
9381     case "$xxx_list" in
9382     *$xxx_convert*) ;;
9383     *) xxx_list="$xxx_list $xxx_convert" ;;
9384     esac 
9385 done
9386
9387 case "$d_longdbl$uselongdouble" in
9388 "$define$define")
9389     : again, add prefered functions to our list first
9390     xxx_ld_list=""
9391     for xxx_convert in $gconvert_ld_preference; do
9392         case $xxx_convert in
9393         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9394         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9395         esac
9396     done
9397     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9398     for xxx_convert in qgcvt sprintf $xxx_list; do
9399         case "$xxx_ld_list" in
9400         $xxx_convert*|*" $xxx_convert"*) ;;
9401         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9402         esac
9403     done
9404     : if sprintf cannot do long doubles, move it to the end
9405     if test "$d_PRIgldbl" != "$define"; then
9406         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9407     fi
9408     : if no qgcvt, remove it
9409     if test "$d_qgcvt" != "$define"; then
9410         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9411     fi
9412     : use the ld_list
9413     xxx_list="$xxx_ld_list"
9414     ;;
9415 esac
9416
9417 for xxx_convert in $xxx_list; do
9418         echo "Trying $xxx_convert..."
9419         $rm -f try try$_o
9420         set try -DTRY_$xxx_convert
9421         if eval $compile; then
9422                 echo "$xxx_convert() found." >&4
9423                 if $run ./try; then
9424                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9425                         break;
9426                 else
9427                         echo "...But $xxx_convert didn't work as I expected."
9428                         xxx_convert=''
9429                 fi
9430         else
9431                 echo "$xxx_convert NOT found." >&4
9432         fi
9433 done
9434
9435 if test X$xxx_convert = X; then
9436     echo "*** WHOA THERE!!! ***" >&4
9437     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9438     xxx_convert=sprintf
9439 fi
9440
9441 case "$xxx_convert" in
9442 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9443 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9444 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9445 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9446    "$define$define$define")
9447       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9448    "$define$define$undef")
9449       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9450    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9451    esac
9452    ;;  
9453 esac
9454
9455 fi
9456
9457 : see if _fwalk exists
9458 set fwalk d__fwalk
9459 eval $inlibc
9460
9461 : Initialize h_fcntl
9462 h_fcntl=false
9463
9464 : Initialize h_sysfile
9465 h_sysfile=false
9466
9467 : access call always available on UNIX
9468 set access d_access
9469 eval $inlibc
9470
9471 : locate the flags for 'access()'
9472 case "$d_access" in
9473 "$define")
9474         echo " "
9475         $cat >access.c <<EOCP
9476 #include <sys/types.h>
9477 #ifdef I_FCNTL
9478 #include <fcntl.h>
9479 #endif
9480 #ifdef I_SYS_FILE
9481 #include <sys/file.h>
9482 #endif
9483 #ifdef I_UNISTD
9484 #include <unistd.h>
9485 #endif
9486 #$i_stdlib I_STDLIB
9487 #ifdef I_STDLIB
9488 #include <stdlib.h>
9489 #endif
9490 int main() {
9491         exit(R_OK);
9492 }
9493 EOCP
9494         : check sys/file.h first, no particular reason here
9495         if $test `./findhdr sys/file.h` && \
9496                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9497                 h_sysfile=true;
9498                 echo "<sys/file.h> defines the *_OK access constants." >&4
9499         elif $test `./findhdr fcntl.h` && \
9500                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9501                 h_fcntl=true;
9502                 echo "<fcntl.h> defines the *_OK access constants." >&4
9503         elif $test `./findhdr unistd.h` && \
9504                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9505                 echo "<unistd.h> defines the *_OK access constants." >&4
9506         else
9507                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9508         fi
9509         ;;
9510 esac
9511 $rm -f access*
9512
9513 : see if accessx exists
9514 set accessx d_accessx
9515 eval $inlibc
9516
9517 : see if aintl exists
9518 set aintl d_aintl
9519 eval $inlibc
9520
9521 : see if alarm exists
9522 set alarm d_alarm
9523 eval $inlibc
9524
9525 : see if POSIX threads are available
9526 set pthread.h i_pthread
9527 eval $inhdr
9528
9529 : define a fucntion to check prototypes
9530 $cat > protochk <<EOSH
9531 $startsh
9532 cc="$cc"
9533 optimize="$optimize"
9534 ccflags="$ccflags"
9535 prototype="$prototype"
9536 define="$define"
9537 rm=$rm
9538 usethreads=$usethreads
9539 i_pthread=$i_pthread
9540 pthread_h_first=$pthread_h_first
9541 EOSH
9542
9543 $cat >> protochk <<'EOSH'
9544
9545 $rm -f try.c
9546 foo="$1"
9547 shift
9548 while test $# -ge 2; do
9549         case "$1" in
9550                 $define) echo "#include <$2>" >> try.c ;;
9551                 literal) echo "$2" >> try.c ;;
9552         esac
9553     # Extra magic for the benefit of systems that need pthread.h
9554     # to be included early to correctly detect threadsafe functions.
9555     # Such functions must guarantee themselves, though, that the usethreads
9556     # and i_pthread have been defined, before calling protochk.
9557     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9558         echo "#include <pthread.h>" >> try.c
9559         pthread_h_done=yes
9560     fi
9561     shift 2
9562 done
9563 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9564 cat >> try.c <<'EOCP'
9565 #ifdef CAN_PROTOTYPE
9566 #define _(args) args
9567 #else
9568 #define _(args) ()
9569 #endif
9570 EOCP
9571 echo "$foo" >> try.c
9572 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9573 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9574 status=$?
9575 $rm -f try.[co]
9576 exit $status
9577 EOSH
9578 chmod +x protochk
9579 $eunicefix protochk
9580
9581 hasproto='varname=$1; func=$2; shift; shift;
9582 while $test $# -ge 2; do
9583         case "$1" in
9584         $define) echo "#include <$2>";;
9585         esac ;
9586     shift 2;
9587 done > try.c;
9588 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9589 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9590         echo "$func() prototype found.";
9591         val="$define";
9592 else
9593         echo "$func() prototype NOT found.";
9594         val="$undef";
9595 fi;
9596 set $varname;
9597 eval $setvar;
9598 $rm -f try.c tryout.c'
9599
9600 : see if sys/types.h has to be included
9601 set sys/types.h i_systypes
9602 eval $inhdr
9603
9604 : see if sys/select.h has to be included
9605 set sys/select.h i_sysselct
9606 eval $inhdr
9607
9608 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9609 while $test $# -ge 2; do
9610         case "$1" in
9611         $define) echo "#include <$2>";;
9612         esac ;
9613     shift 2;
9614 done > try.c;
9615 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9616 set try;
9617 if eval $compile; then
9618         val="$define";
9619 else
9620         val="$undef";
9621 fi;
9622 set $varname;
9623 eval $setvar;
9624 $rm -f try.c try.o'
9625
9626 : see if we should include time.h, sys/time.h, or both
9627 echo " "
9628 if test "X$timeincl" = X; then
9629         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9630         $echo $n "I'm now running the test program...$c"
9631         $cat >try.c <<EOCP
9632 #include <sys/types.h>
9633 #ifdef I_TIME
9634 #include <time.h>
9635 #endif
9636 #ifdef I_SYSTIME
9637 #ifdef SYSTIMEKERNEL
9638 #define KERNEL
9639 #endif
9640 #include <sys/time.h>
9641 #endif
9642 #ifdef I_SYSSELECT
9643 #include <sys/select.h>
9644 #endif
9645 #$i_stdlib I_STDLIB
9646 #ifdef I_STDLIB
9647 #include <stdlib.h>
9648 #endif
9649 int main()
9650 {
9651         struct tm foo;
9652 #ifdef S_TIMEVAL
9653         struct timeval bar;
9654 #endif
9655 #ifdef S_TIMEZONE
9656         struct timezone tzp;
9657 #endif
9658         if (foo.tm_sec == foo.tm_sec)
9659                 exit(0);
9660 #ifdef S_TIMEVAL
9661         if (bar.tv_sec == bar.tv_sec)
9662                 exit(0);
9663 #endif
9664         exit(1);
9665 }
9666 EOCP
9667         flags=''
9668         for s_timezone in '-DS_TIMEZONE' ''; do
9669         sysselect=''
9670         for s_timeval in '-DS_TIMEVAL' ''; do
9671         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9672         for i_time in '' '-DI_TIME'; do
9673         for i_systime in '-DI_SYSTIME' ''; do
9674                 case "$flags" in
9675                 '') $echo $n ".$c"
9676                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9677                         if eval $compile; then
9678                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9679                                 shift
9680                                 flags="$*"
9681                                 echo " "
9682                                 $echo $n "Succeeded with $flags$c"
9683                         fi
9684                         ;;
9685                 esac
9686         done
9687         done
9688         done
9689         done
9690         done
9691         timeincl=''
9692         echo " "
9693         case "$flags" in
9694         *SYSTIMEKERNEL*) i_systimek="$define"
9695                 timeincl=`./findhdr sys/time.h`
9696                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9697         *) i_systimek="$undef";;
9698         esac
9699         case "$flags" in
9700         *I_TIME*) i_time="$define"
9701                 timeincl=`./findhdr time.h`" $timeincl"
9702                 echo "We'll include <time.h>." >&4;;
9703         *) i_time="$undef";;
9704         esac
9705         case "$flags" in
9706         *I_SYSTIME*) i_systime="$define"
9707                 timeincl=`./findhdr sys/time.h`" $timeincl"
9708                 echo "We'll include <sys/time.h>." >&4;;
9709         *) i_systime="$undef";;
9710         esac
9711         $rm -f try.c try
9712 fi
9713 : see if struct tm knows about tm_zone
9714 case "$i_systime$i_time" in
9715 *$define*) 
9716         echo " "
9717         echo "Checking to see if your struct tm has tm_zone field..." >&4
9718         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9719         eval $hasfield
9720         ;;
9721 *)      val="$undef"
9722         set d_tm_tm_zone
9723         eval $setvar
9724         ;;
9725 esac
9726 case "$d_tm_tm_zone" in
9727 "$define")      echo "Yes, it does."   ;;
9728 *)              echo "No, it doesn't." ;;
9729 esac
9730 : see if struct tm knows about tm_gmtoff
9731 case "$i_systime$i_time" in
9732 *$define*) 
9733         echo " "
9734         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9735         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9736         eval $hasfield
9737         ;;
9738 *)      val="$undef"
9739         set d_tm_tm_gmtoff
9740         eval $setvar
9741         ;;
9742 esac
9743 case "$d_tm_tm_gmtoff" in
9744 "$define")      echo "Yes, it does."   ;;
9745 *)              echo "No, it doesn't." ;;
9746 esac
9747
9748 : see if asctime_r exists
9749 set asctime_r d_asctime_r
9750 eval $inlibc
9751 case "$d_asctime_r" in
9752 "$define")
9753         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
9754         case "$d_asctime_r_proto:$usethreads" in
9755         ":define")      d_asctime_r_proto=define
9756                 set d_asctime_r_proto asctime_r $hdrs
9757                 eval $hasproto ;;
9758         *)      ;;
9759         esac
9760         case "$d_asctime_r_proto" in
9761         define)
9762         case "$asctime_r_proto" in
9763         ''|0) try='char* asctime_r(const struct tm*, char*);'
9764         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9765         esac
9766         case "$asctime_r_proto" in
9767         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9768         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9769         esac
9770         case "$asctime_r_proto" in
9771         ''|0) try='int asctime_r(const struct tm*, char*);'
9772         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9773         esac
9774         case "$asctime_r_proto" in
9775         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9776         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9777         esac
9778         case "$asctime_r_proto" in
9779         ''|0)   d_asctime_r=undef
9780                 asctime_r_proto=0
9781                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9782         * )     case "$asctime_r_proto" in
9783                 REENTRANT_PROTO*) ;;
9784                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9785                 esac
9786                 echo "Prototype: $try" ;;
9787         esac
9788         ;;
9789         *)      case "$usethreads" in
9790                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9791                 esac
9792                 d_asctime_r=undef
9793                 asctime_r_proto=0
9794                 ;;
9795         esac
9796         ;;
9797 *)      asctime_r_proto=0
9798         ;;
9799 esac
9800
9801 : see if atolf exists
9802 set atolf d_atolf
9803 eval $inlibc
9804
9805 : see if atoll exists
9806 set atoll d_atoll
9807 eval $inlibc
9808
9809 : Look for GNU-cc style attribute checking
9810 echo " "
9811 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9812 $cat >attrib.c <<'EOCP'
9813 #include <stdio.h>
9814 void croak (char* pat,...) __attribute__((format(printf,1,2),noreturn));
9815 EOCP
9816 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9817         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9818                 echo "Your C compiler doesn't fully support __attribute__."
9819                 val="$undef"
9820         else
9821                 echo "Your C compiler supports __attribute__."
9822                 val="$define"
9823         fi
9824 else
9825         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9826         val="$undef"
9827 fi
9828 set d_attribut
9829 eval $setvar
9830 $rm -f attrib*
9831
9832 : see if bcmp exists
9833 set bcmp d_bcmp
9834 eval $inlibc
9835
9836 : see if bcopy exists
9837 set bcopy d_bcopy
9838 eval $inlibc
9839
9840 : see if this is a unistd.h system
9841 set unistd.h i_unistd
9842 eval $inhdr
9843
9844 : see if getpgrp exists
9845 set getpgrp d_getpgrp
9846 eval $inlibc
9847
9848 case "$d_getpgrp" in
9849 "$define")
9850         echo " "
9851         echo "Checking to see which flavor of getpgrp is in use..."
9852         $cat >try.c <<EOP
9853 #$i_unistd I_UNISTD
9854 #include <sys/types.h>
9855 #ifdef I_UNISTD
9856 #  include <unistd.h>
9857 #endif
9858 #$i_stdlib I_STDLIB
9859 #ifdef I_STDLIB
9860 #include <stdlib.h>
9861 #endif
9862 int main()
9863 {
9864         if (getuid() == 0) {
9865                 printf("(I see you are running Configure as super-user...)\n");
9866                 setuid(1);
9867         }
9868 #ifdef TRY_BSD_PGRP
9869         if (getpgrp(1) == 0)
9870                 exit(0);
9871 #else
9872         if (getpgrp() > 0)
9873                 exit(0);
9874 #endif
9875         exit(1);
9876 }
9877 EOP
9878         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9879                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9880                 val="$define"
9881         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9882                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9883                 val="$undef"
9884         else
9885                 echo "I can't seem to compile and run the test program."
9886                 if ./usg; then
9887                         xxx="a USG one, i.e. you use getpgrp()."
9888                 else
9889                         # SVR4 systems can appear rather BSD-ish.
9890                         case "$i_unistd" in
9891                         $undef)
9892                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9893                                 val="$define"
9894                                 ;;
9895                         $define)
9896                                 xxx="probably a USG one, i.e. you use getpgrp()."
9897                                 val="$undef"
9898                                 ;;
9899                         esac
9900                 fi
9901                 echo "Assuming your getpgrp is $xxx" >&4
9902         fi
9903         ;;
9904 *) val="$undef";;
9905 esac
9906 set d_bsdgetpgrp
9907 eval $setvar
9908 $rm -f try try.*
9909
9910 : see if setpgrp exists
9911 set setpgrp d_setpgrp
9912 eval $inlibc
9913
9914 case "$d_setpgrp" in
9915 "$define")
9916         echo " "
9917         echo "Checking to see which flavor of setpgrp is in use..."
9918         $cat >try.c <<EOP
9919 #$i_unistd I_UNISTD
9920 #include <sys/types.h>
9921 #ifdef I_UNISTD
9922 #  include <unistd.h>
9923 #endif
9924 #$i_stdlib I_STDLIB
9925 #ifdef I_STDLIB
9926 #include <stdlib.h>
9927 #endif
9928 int main()
9929 {
9930         if (getuid() == 0) {
9931                 printf("(I see you are running Configure as super-user...)\n");
9932                 setuid(1);
9933         }
9934 #ifdef TRY_BSD_PGRP
9935         if (-1 == setpgrp(1, 1))
9936                 exit(0);
9937 #else
9938         if (setpgrp() != -1)
9939                 exit(0);
9940 #endif
9941         exit(1);
9942 }
9943 EOP
9944         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9945                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
9946                 val="$define"
9947         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9948                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
9949                 val="$undef"
9950         else
9951                 echo "(I can't seem to compile and run the test program.)"
9952                 if ./usg; then
9953                         xxx="a USG one, i.e. you use setpgrp()."
9954                 else
9955                         # SVR4 systems can appear rather BSD-ish.
9956                         case "$i_unistd" in
9957                         $undef)
9958                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
9959                                 val="$define"
9960                                 ;;
9961                         $define)
9962                                 xxx="probably a USG one, i.e. you use setpgrp()."
9963                                 val="$undef"
9964                                 ;;
9965                         esac
9966                 fi
9967                 echo "Assuming your setpgrp is $xxx" >&4
9968         fi
9969         ;;
9970 *) val="$undef";;
9971 esac
9972 set d_bsdsetpgrp
9973 eval $setvar
9974 $rm -f try try.*
9975 : see if bzero exists
9976 set bzero d_bzero
9977 eval $inlibc
9978
9979 : see if signal is declared as pointer to function returning int or void
9980 echo " "
9981 xxx=`./findhdr signal.h`
9982 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
9983 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
9984         echo "You have int (*signal())() instead of void." >&4
9985         val="$undef"
9986 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
9987         echo "You have void (*signal())()." >&4
9988         val="$define"
9989 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
9990         echo "You have int (*signal())() instead of void." >&4
9991         val="$undef"
9992 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
9993         echo "You have void (*signal())()." >&4
9994         val="$define"
9995 else
9996         case "$d_voidsig" in
9997         '')
9998         echo "I can't determine whether signal handler returns void or int..." >&4
9999                 dflt=void
10000                 rp="What type does your signal handler return?"
10001                 . ./myread
10002                 case "$ans" in
10003                 v*) val="$define";;
10004                 *) val="$undef";;
10005                 esac;;
10006         "$define")
10007                 echo "As you already told me, signal handler returns void." >&4
10008                 val="$define"
10009                 ;;
10010         *)      echo "As you already told me, signal handler returns int." >&4
10011                 val="$undef"
10012                 ;;
10013         esac
10014 fi
10015 set d_voidsig
10016 eval $setvar
10017 case "$d_voidsig" in
10018 "$define") signal_t="void";;
10019 *) signal_t="int";;
10020 esac
10021 $rm -f $$.tmp
10022
10023 : check for ability to cast large floats to 32-bit ints.
10024 echo " "
10025 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
10026 if $test "$intsize" -ge 4; then
10027         xxx=int
10028 else
10029         xxx=long
10030 fi
10031 $cat >try.c <<EOCP
10032 #include <stdio.h>
10033 #$i_stdlib I_STDLIB
10034 #ifdef I_STDLIB
10035 #include <stdlib.h>
10036 #endif
10037 #include <sys/types.h>
10038 #include <signal.h>
10039 $signal_t blech(s) int s; { exit(3); }
10040 int main()
10041 {
10042         $xxx i32;
10043         double f, g;
10044         int result = 0;
10045         char str[16];
10046         signal(SIGFPE, blech);
10047
10048         /* Don't let compiler optimize the test away.  Store the number 
10049            in a writable string for gcc to pass to sscanf under HP/UX.
10050         */
10051         sprintf(str, "2147483647");
10052         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
10053         g = 10 * f;
10054         i32  = ($xxx) g;
10055
10056         /* x86 processors will probably give 0x8000 0000, which is a
10057        sign change.  We don't want that.  We want to mimic SPARC
10058            behavior here, which is to preserve the sign and give
10059            back 0x7fff ffff.
10060         */
10061         if (i32 != ($xxx) f)
10062                 result |= 1;
10063         exit(result);
10064 }
10065 EOCP
10066 set try
10067 if eval $compile_ok; then
10068         $run ./try
10069         yyy=$?
10070 else
10071         echo "(I can't seem to compile the test program--assuming it can't)"
10072         yyy=1
10073 fi
10074 case "$yyy" in
10075 0)      val="$define"
10076         echo "Yup, it can."
10077         ;;
10078 *)      val="$undef"
10079         echo "Nope, it can't."
10080         ;;
10081 esac
10082 set d_casti32
10083 eval $setvar
10084 $rm -f try try.*
10085
10086 : check for ability to cast negative floats to unsigned
10087 echo " "
10088 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
10089 $cat >try.c <<EOCP
10090 #include <stdio.h>
10091 #$i_stdlib I_STDLIB
10092 #ifdef I_STDLIB
10093 #include <stdlib.h>
10094 #endif
10095 #include <sys/types.h>
10096 #include <signal.h>
10097 $signal_t blech(s) int s; { exit(7); }
10098 $signal_t blech_in_list(s) int s; { exit(4); }
10099 unsigned long dummy_long(p) unsigned long p; { return p; }
10100 unsigned int dummy_int(p) unsigned int p; { return p; }
10101 unsigned short dummy_short(p) unsigned short p; { return p; }
10102 int main()
10103 {
10104         double f;
10105         unsigned long along;
10106         unsigned int aint;
10107         unsigned short ashort;
10108         int result = 0;
10109         char str[16];
10110         
10111         /* Frustrate gcc-2.7.2's optimizer which failed this test with
10112            a direct f = -123. assignment.  gcc-2.8.0 reportedly
10113            optimized the whole file away
10114         */
10115         /* Store the number in a writable string for gcc to pass to 
10116            sscanf under HP/UX.
10117         */
10118         sprintf(str, "-123");
10119         sscanf(str, "%lf", &f);  /* f = -123.; */
10120
10121         signal(SIGFPE, blech);
10122         along = (unsigned long)f;
10123         aint = (unsigned int)f;
10124         ashort = (unsigned short)f;
10125         if (along != (unsigned long)-123)
10126                 result |= 1;
10127         if (aint != (unsigned int)-123)
10128                 result |= 1;
10129         if (ashort != (unsigned short)-123)
10130                 result |= 1;
10131         sprintf(str, "1073741824.");
10132         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
10133         f = f + f;
10134         along = 0;
10135         along = (unsigned long)f;
10136         if (along != 0x80000000)
10137                 result |= 2;
10138         f -= 1.;
10139         along = 0;
10140         along = (unsigned long)f;
10141         if (along != 0x7fffffff)
10142                 result |= 1;
10143         f += 2.;
10144         along = 0;
10145         along = (unsigned long)f;
10146         if (along != 0x80000001)
10147                 result |= 2;
10148         if (result)
10149                 exit(result);
10150         signal(SIGFPE, blech_in_list);
10151         sprintf(str, "123.");
10152         sscanf(str, "%lf", &f);  /* f = 123.; */
10153         along = dummy_long((unsigned long)f);
10154         aint = dummy_int((unsigned int)f);
10155         ashort = dummy_short((unsigned short)f);
10156         if (along != (unsigned long)123)
10157                 result |= 4;
10158         if (aint != (unsigned int)123)
10159                 result |= 4;
10160         if (ashort != (unsigned short)123)
10161                 result |= 4;
10162         exit(result);
10163
10164 }
10165 EOCP
10166 set try
10167 if eval $compile_ok; then
10168         $run ./try
10169         castflags=$?
10170 else
10171         echo "(I can't seem to compile the test program--assuming it can't)"
10172         castflags=7
10173 fi
10174 case "$castflags" in
10175 0)      val="$define"
10176         echo "Yup, it can."
10177         ;;
10178 *)      val="$undef"
10179         echo "Nope, it can't."
10180         ;;
10181 esac
10182 set d_castneg
10183 eval $setvar
10184 $rm -f try.*
10185
10186 : see if vprintf exists
10187 echo " "
10188 if set vprintf val -f d_vprintf; eval $csym; $val; then
10189         echo 'vprintf() found.' >&4
10190         val="$define"
10191         $cat >try.c <<EOF
10192 #include <varargs.h>
10193 #$i_stdlib I_STDLIB
10194 #ifdef I_STDLIB
10195 #include <stdlib.h>
10196 #endif
10197
10198 int main() { xxx("foo"); }
10199
10200 xxx(va_alist)
10201 va_dcl
10202 {
10203         va_list args;
10204         char buf[10];
10205
10206         va_start(args);
10207         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
10208 }
10209 EOF
10210         set try
10211         if eval $compile && $run ./try; then
10212                 echo "Your vsprintf() returns (int)." >&4
10213                 val2="$undef"
10214         else
10215                 echo "Your vsprintf() returns (char*)." >&4
10216                 val2="$define"
10217         fi
10218 else
10219         echo 'vprintf() NOT found.' >&4
10220                 val="$undef"
10221                 val2="$undef"
10222 fi
10223 $rm -f try try.*
10224 set d_vprintf
10225 eval $setvar
10226 val=$val2
10227 set d_charvspr
10228 eval $setvar
10229
10230 : see if chown exists
10231 set chown d_chown
10232 eval $inlibc
10233
10234 : see if chroot exists
10235 set chroot d_chroot
10236 eval $inlibc
10237
10238 : see if chsize exists
10239 set chsize d_chsize
10240 eval $inlibc
10241
10242 : see if class exists
10243 set class d_class
10244 eval $inlibc
10245
10246 hasstruct='varname=$1; struct=$2; shift; shift;
10247 while $test $# -ge 2; do
10248         case "$1" in
10249         $define) echo "#include <$2>";;
10250         esac ;
10251     shift 2;
10252 done > try.c;
10253 echo "int main () { struct $struct foo; }" >> try.c;
10254 set try;
10255 if eval $compile; then
10256         val="$define";
10257 else
10258         val="$undef";
10259 fi;
10260 set $varname;
10261 eval $setvar;
10262 $rm -f try.c try.o'
10263
10264 socketlib=''
10265 sockethdr=''
10266 : see whether socket exists
10267 echo " "
10268 $echo $n "Hmm... $c" >&4
10269 if set socket val -f d_socket; eval $csym; $val; then
10270         echo "Looks like you have Berkeley networking support." >&4
10271         d_socket="$define"
10272         if set setsockopt val -f; eval $csym; $val; then
10273                 d_oldsock="$undef"
10274         else
10275                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
10276                 d_oldsock="$define"
10277         fi
10278 else
10279         if $contains socklib libc.list >/dev/null 2>&1; then
10280                 echo "Looks like you have Berkeley networking support." >&4
10281                 d_socket="$define"
10282                 : we will have to assume that it supports the 4.2 BSD interface
10283                 d_oldsock="$undef"
10284         else
10285                 echo "You don't have Berkeley networking in libc$_a..." >&4
10286                 if test "X$d_socket" = "X$define"; then
10287                    echo "...but you seem to believe that you have sockets." >&4
10288                 else
10289                         for net in net socket
10290                         do
10291                                 if test -f /usr/lib/lib$net$_a; then
10292                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
10293                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
10294                                         if $contains socket libc.list >/dev/null 2>&1; then
10295                                                 d_socket="$define"
10296                                                 socketlib="-l$net"
10297                                                 case "$net" in
10298                                                 net)
10299                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
10300                                                         sockethdr="-I/usr/netinclude"
10301                                                         ;;
10302                                                 esac
10303                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
10304                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
10305                                                         d_oldsock="$undef"
10306                                                 else
10307                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
10308                                                         d_oldsock="$define"
10309                                                 fi
10310                                                 break
10311                                         fi
10312                                 fi
10313                         done
10314                         if test "X$d_socket" != "X$define"; then
10315                            echo "or anywhere else I see." >&4
10316                            d_socket="$undef"
10317                            d_oldsock="$undef"
10318                         fi
10319                 fi
10320         fi
10321 fi
10322
10323 : see if socketpair exists
10324 set socketpair d_sockpair
10325 eval $inlibc
10326
10327
10328 echo " "
10329 echo "Checking the availability of certain socket constants..." >&4
10330 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
10331         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
10332         $cat >try.c <<EOF
10333 #include <sys/types.h>
10334 #include <sys/socket.h>
10335 int main() {
10336     int i = $ENUM;
10337 }
10338 EOF
10339         val="$undef"
10340         set try; if eval $compile; then
10341                 val="$define"
10342         fi
10343         set d_${enum}; eval $setvar
10344         $rm -f try.c try
10345 done
10346
10347 : see if this is a sys/uio.h system
10348 set sys/uio.h i_sysuio
10349 eval $inhdr
10350
10351
10352 echo " "
10353 echo "Checking to see if your system supports struct cmsghdr..." >&4
10354 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
10355 eval $hasstruct
10356 case "$d_cmsghdr_s" in
10357 "$define")      echo "Yes, it does."   ;;
10358 *)              echo "No, it doesn't." ;;
10359 esac
10360
10361
10362 : check for const keyword
10363 echo " "
10364 echo 'Checking to see if your C compiler knows about "const"...' >&4
10365 $cat >const.c <<'EOCP'
10366 typedef struct spug { int drokk; } spug;
10367 int main()
10368 {
10369         const char *foo;
10370         const spug y;
10371 }
10372 EOCP
10373 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
10374         val="$define"
10375         echo "Yup, it does."
10376 else
10377         val="$undef"
10378         echo "Nope, it doesn't."
10379 fi
10380 set d_const
10381 eval $setvar
10382
10383 : see if copysignl exists
10384 set copysignl d_copysignl
10385 eval $inlibc
10386
10387 : see if crypt exists
10388 echo " "
10389 set crypt d_crypt
10390 eval $inlibc
10391 case "$d_crypt" in
10392 $define) cryptlib='' ;;
10393 *)      if set crypt val -f d_crypt; eval $csym; $val; then
10394                 echo 'crypt() found.' >&4
10395                 val="$define"
10396                 cryptlib=''
10397         else
10398                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
10399                 if $test -z "$cryptlib"; then
10400                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
10401                 else
10402                         cryptlib=-lcrypt
10403                 fi
10404                 if $test -z "$cryptlib"; then
10405                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
10406                 else
10407                         cryptlib=-lcrypt
10408                 fi
10409                 if $test -z "$cryptlib"; then
10410                         cryptlib=`./loc libcrypt$_a "" $libpth`
10411                 else
10412                         cryptlib=-lcrypt
10413                 fi
10414                 if $test -z "$cryptlib"; then
10415                         echo 'crypt() NOT found.' >&4
10416                         val="$undef"
10417                 else
10418                         val="$define"
10419                 fi
10420         fi
10421         set d_crypt
10422         eval $setvar
10423         ;;
10424 esac
10425
10426 : see if this is a crypt.h system
10427 set crypt.h i_crypt
10428 eval $inhdr
10429
10430 : see if crypt_r exists
10431 set crypt_r d_crypt_r
10432 eval $inlibc
10433 case "$d_crypt_r" in
10434 "$define")
10435         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
10436         case "$d_crypt_r_proto:$usethreads" in
10437         ":define")      d_crypt_r_proto=define
10438                 set d_crypt_r_proto crypt_r $hdrs
10439                 eval $hasproto ;;
10440         *)      ;;
10441         esac
10442         case "$d_crypt_r_proto" in
10443         define)
10444         case "$crypt_r_proto" in
10445         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
10446         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
10447         esac
10448         case "$crypt_r_proto" in
10449         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
10450         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
10451         esac
10452         case "$crypt_r_proto" in
10453         ''|0)   d_crypt_r=undef
10454                 crypt_r_proto=0
10455                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
10456         * )     case "$crypt_r_proto" in
10457                 REENTRANT_PROTO*) ;;
10458                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
10459                 esac
10460                 echo "Prototype: $try" ;;
10461         esac
10462         ;;
10463         *)      case "$usethreads" in
10464                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10465                 esac
10466                 d_crypt_r=undef
10467                 crypt_r_proto=0
10468                 ;;
10469         esac
10470         ;;
10471 *)      crypt_r_proto=0
10472         ;;
10473 esac
10474
10475 : get csh whereabouts
10476 case "$csh" in
10477 'csh') val="$undef" ;;
10478 *) val="$define" ;;
10479 esac
10480 set d_csh
10481 eval $setvar
10482 : Respect a hint or command line value for full_csh.
10483 case "$full_csh" in
10484 '') full_csh=$csh ;;
10485 esac
10486
10487 : see if ctermid_r exists
10488 set ctermid_r d_ctermid_r
10489 eval $inlibc
10490 case "$d_ctermid_r" in
10491 "$define")
10492         hdrs="$i_systypes sys/types.h define stdio.h "
10493         case "$d_ctermid_r_proto:$usethreads" in
10494         ":define")      d_ctermid_r_proto=define
10495                 set d_ctermid_r_proto ctermid_r $hdrs
10496                 eval $hasproto ;;
10497         *)      ;;
10498         esac
10499         case "$d_ctermid_r_proto" in
10500         define)
10501         case "$ctermid_r_proto" in
10502         ''|0) try='char* ctermid_r(char*);'
10503         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10504         esac
10505         case "$ctermid_r_proto" in
10506         ''|0)   d_ctermid_r=undef
10507                 ctermid_r_proto=0
10508                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10509         * )     case "$ctermid_r_proto" in
10510                 REENTRANT_PROTO*) ;;
10511                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10512                 esac
10513                 echo "Prototype: $try" ;;
10514         esac
10515         ;;
10516         *)      case "$usethreads" in
10517                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10518                 esac
10519                 d_ctermid_r=undef
10520                 ctermid_r_proto=0
10521                 ;;
10522         esac
10523         ;;
10524 *)      ctermid_r_proto=0
10525         ;;
10526 esac
10527
10528 : see if ctime_r exists
10529 set ctime_r d_ctime_r
10530 eval $inlibc
10531 case "$d_ctime_r" in
10532 "$define")
10533         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
10534         case "$d_ctime_r_proto:$usethreads" in
10535         ":define")      d_ctime_r_proto=define
10536                 set d_ctime_r_proto ctime_r $hdrs
10537                 eval $hasproto ;;
10538         *)      ;;
10539         esac
10540         case "$d_ctime_r_proto" in
10541         define)
10542         case "$ctime_r_proto" in
10543         ''|0) try='char* ctime_r(const time_t*, char*);'
10544         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10545         esac
10546         case "$ctime_r_proto" in
10547         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10548         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10549         esac
10550         case "$ctime_r_proto" in
10551         ''|0) try='int ctime_r(const time_t*, char*);'
10552         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10553         esac
10554         case "$ctime_r_proto" in
10555         ''|0) try='int ctime_r(const time_t*, char*, int);'
10556         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10557         esac
10558         case "$ctime_r_proto" in
10559         ''|0)   d_ctime_r=undef
10560                 ctime_r_proto=0
10561                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10562         * )     case "$ctime_r_proto" in
10563                 REENTRANT_PROTO*) ;;
10564                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10565                 esac
10566                 echo "Prototype: $try" ;;
10567         esac
10568         ;;
10569         *)      case "$usethreads" in
10570                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10571                 esac
10572                 d_ctime_r=undef
10573                 ctime_r_proto=0
10574                 ;;
10575         esac
10576         ;;
10577 *)      ctime_r_proto=0
10578         ;;
10579 esac
10580
10581 : see if cuserid exists
10582 set cuserid d_cuserid
10583 eval $inlibc
10584
10585 : see if this is a limits.h system
10586 set limits.h i_limits
10587 eval $inhdr
10588
10589 : see if this is a float.h system
10590 set float.h i_float
10591 eval $inhdr
10592
10593 : See if number of significant digits in a double precision number is known
10594 echo " "
10595 $cat >dbl_dig.c <<EOM
10596 #$i_limits I_LIMITS
10597 #$i_float I_FLOAT
10598 #ifdef I_LIMITS
10599 #include <limits.h>
10600 #endif
10601 #ifdef I_FLOAT
10602 #include <float.h>
10603 #endif
10604 #ifdef DBL_DIG
10605 printf("Contains DBL_DIG");
10606 #endif
10607 EOM
10608 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10609 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10610         echo "DBL_DIG found." >&4
10611         val="$define"
10612 else
10613         echo "DBL_DIG NOT found." >&4
10614         val="$undef"
10615 fi
10616 $rm -f dbl_dig.?
10617 set d_dbl_dig
10618 eval $setvar
10619
10620 : see if dbm.h is available
10621 : see if dbmclose exists
10622 set dbmclose d_dbmclose
10623 eval $inlibc
10624
10625 case "$d_dbmclose" in
10626 $define)
10627         set dbm.h i_dbm
10628         eval $inhdr
10629         case "$i_dbm" in
10630         $define)
10631                 val="$undef"
10632                 set i_rpcsvcdbm
10633                 eval $setvar
10634                 ;;
10635         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10636                 eval $inhdr
10637                 ;;
10638         esac
10639         ;;
10640 *)      echo "We won't be including <dbm.h>"
10641         val="$undef"
10642         set i_dbm
10643         eval $setvar
10644         val="$undef"
10645         set i_rpcsvcdbm
10646         eval $setvar
10647         ;;
10648 esac
10649
10650 : see if prototype for dbminit is available
10651 echo " "
10652 set d_dbminitproto dbminit $i_dbm dbm.h
10653 eval $hasproto
10654
10655 : see if difftime exists
10656 set difftime d_difftime
10657 eval $inlibc
10658
10659 : see if this is a dirent system
10660 echo " "
10661 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10662         val="$define"
10663         echo "<dirent.h> found." >&4
10664 else
10665         val="$undef"
10666         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10667                 echo "<sys/dir.h> found." >&4
10668                 echo " "
10669         else
10670                 xinc=`./findhdr sys/ndir.h`
10671         fi
10672         echo "<dirent.h> NOT found." >&4
10673 fi
10674 set i_dirent
10675 eval $setvar
10676
10677 : Look for type of directory structure.
10678 echo " "
10679 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10680
10681 case "$direntrytype" in
10682 ''|' ')
10683         case "$i_dirent" in
10684         $define) guess1='struct dirent' ;;
10685         *) guess1='struct direct'  ;;
10686         esac
10687         ;;
10688 *)      guess1="$direntrytype"
10689         ;;
10690 esac
10691
10692 case "$guess1" in
10693 'struct dirent') guess2='struct direct' ;;
10694 *) guess2='struct dirent' ;;
10695 esac
10696                 
10697 if $contains "$guess1" try.c >/dev/null 2>&1; then
10698         direntrytype="$guess1"
10699         echo "Your directory entries are $direntrytype." >&4
10700 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10701         direntrytype="$guess2"
10702         echo "Your directory entries seem to be $direntrytype." >&4
10703 else
10704         echo "I don't recognize your system's directory entries." >&4
10705         rp="What type is used for directory entries on this system?"
10706         dflt="$guess1"
10707         . ./myread
10708         direntrytype="$ans"
10709 fi
10710 $rm -f try.c
10711
10712
10713 : see if the directory entry stores field length
10714 echo " "
10715 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10716 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10717         echo "Good, your directory entry keeps length information in d_namlen." >&4
10718         val="$define"
10719 else
10720         echo "Your directory entry does not know about the d_namlen field." >&4
10721         val="$undef"
10722 fi
10723 set d_dirnamlen
10724 eval $setvar
10725 $rm -f try.c
10726
10727 : see if this is an sysdir system
10728 set sys/dir.h i_sysdir
10729 eval $inhdr
10730
10731 : see if this is an sysndir system
10732 set sys/ndir.h i_sysndir
10733 eval $inhdr
10734
10735 : Look for dirfd
10736 echo " "
10737 $cat >dirfd.c <<EOM
10738 #include <stdio.h>
10739 #$i_stdlib I_STDLIB
10740 #ifdef I_STDLIB
10741 #include <stdlib.h>
10742 #endif
10743 #$i_dirent I_DIRENT             /**/
10744 #$i_sysdir I_SYS_DIR            /**/
10745 #$i_sysndir I_SYS_NDIR          /**/
10746 #$i_systypes I_SYS_TYPES        /**/
10747 #if defined(I_SYS_TYPES)
10748 #include <sys/types.h>
10749 #endif
10750 #if defined(I_DIRENT)
10751 #include <dirent.h>
10752 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10753 #include <sys/dir.h>
10754 #endif
10755 #else
10756 #ifdef I_SYS_NDIR
10757 #include <sys/ndir.h>
10758 #else
10759 #ifdef I_SYS_DIR
10760 #ifdef hp9000s500
10761 #include <ndir.h>       /* may be wrong in the future */
10762 #else
10763 #include <sys/dir.h>
10764 #endif
10765 #endif
10766 #endif
10767 #endif 
10768 int main() {
10769         DIR *dirp = opendir(".");
10770         if (dirfd(dirp) >= 0)
10771                 exit(0);
10772         else
10773                 exit(1);
10774 }
10775 EOM
10776 set dirfd
10777 if eval $compile; then
10778         val="$define"
10779 fi
10780 case "$val" in
10781 $define)        echo "dirfd() found." >&4       ;;
10782 *)              echo "dirfd() NOT found." >&4   ;;
10783 esac
10784 set d_dirfd
10785 eval $setvar
10786 $rm -f dirfd*
10787
10788 : see if dlerror exists
10789 xxx_runnm="$runnm"
10790 runnm=false
10791 set dlerror d_dlerror
10792 eval $inlibc
10793 runnm="$xxx_runnm"
10794
10795 : see if dlfcn is available
10796 set dlfcn.h i_dlfcn
10797 eval $inhdr
10798
10799 case "$usedl" in
10800 $define|y|true)
10801         $cat << EOM
10802
10803 On a few systems, the dynamically loaded modules that perl generates and uses
10804 will need a different extension than shared libs. The default will probably
10805 be appropriate.
10806
10807 EOM
10808         case "$dlext" in
10809         '')     dflt="$so" ;;
10810         *)      dflt="$dlext" ;;
10811         esac
10812         rp='What is the extension of dynamically loaded modules'
10813         . ./myread
10814         dlext="$ans"
10815         ;;
10816 *)
10817         dlext="none"
10818         ;;
10819 esac
10820
10821 : Check if dlsym need a leading underscore
10822 echo " "
10823 val="$undef"
10824
10825 case "$dlsrc" in
10826 dl_dlopen.xs)
10827         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10828         $cat >dyna.c <<'EOM'
10829 fred () { }
10830 EOM
10831
10832 $cat >fred.c<<EOM
10833
10834 #include <stdio.h>
10835 #$i_stdlib I_STDLIB
10836 #ifdef I_STDLIB
10837 #include <stdlib.h>
10838 #endif
10839 #$i_dlfcn I_DLFCN
10840 #ifdef I_DLFCN
10841 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10842 #else
10843 #include <sys/types.h>
10844 #include <nlist.h>
10845 #include <link.h>
10846 #endif
10847
10848 extern int fred() ;
10849
10850 int main()
10851 {
10852     void * handle ;
10853     void * symbol ;
10854 #ifndef RTLD_LAZY
10855     int mode = 1 ;
10856 #else
10857     int mode = RTLD_LAZY ;
10858 #endif
10859     handle = dlopen("./dyna.$dlext", mode) ;
10860     if (handle == NULL) {
10861         printf ("1\n") ;
10862         fflush (stdout) ;
10863         exit(0);
10864     }
10865     symbol = dlsym(handle, "fred") ;
10866     if (symbol == NULL) {
10867         /* try putting a leading underscore */
10868         symbol = dlsym(handle, "_fred") ;
10869         if (symbol == NULL) {
10870             printf ("2\n") ;
10871             fflush (stdout) ;
10872             exit(0);
10873         }
10874         printf ("3\n") ;
10875     }
10876     else
10877         printf ("4\n") ;
10878     fflush (stdout) ;
10879     exit(0);
10880 }
10881 EOM
10882         : Call the object file tmp-dyna.o in case dlext=o.
10883         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10884                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10885                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10886                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10887                 xxx=`$run ./fred`
10888                 case $xxx in
10889                 1)      echo "Test program failed using dlopen." >&4
10890                         echo "Perhaps you should not use dynamic loading." >&4;;
10891                 2)      echo "Test program failed using dlsym." >&4
10892                         echo "Perhaps you should not use dynamic loading." >&4;;
10893                 3)      echo "dlsym needs a leading underscore" >&4
10894                         val="$define" ;;
10895                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10896                 esac
10897         else
10898                 echo "I can't compile and run the test program." >&4
10899                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10900         fi
10901         ;;
10902 esac
10903                 
10904 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10905
10906 set d_dlsymun
10907 eval $setvar
10908
10909 : see if drand48_r exists
10910 set drand48_r d_drand48_r
10911 eval $inlibc
10912 case "$d_drand48_r" in
10913 "$define")
10914         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10915         case "$d_drand48_r_proto:$usethreads" in
10916         ":define")      d_drand48_r_proto=define
10917                 set d_drand48_r_proto drand48_r $hdrs
10918                 eval $hasproto ;;
10919         *)      ;;
10920         esac
10921         case "$d_drand48_r_proto" in
10922         define)
10923         case "$drand48_r_proto" in
10924         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10925         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10926         esac
10927         case "$drand48_r_proto" in
10928         ''|0)   d_drand48_r=undef
10929                 drand48_r_proto=0
10930                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10931         * )     case "$drand48_r_proto" in
10932                 REENTRANT_PROTO*) ;;
10933                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10934                 esac
10935                 echo "Prototype: $try" ;;
10936         esac
10937         ;;
10938         *)      case "$usethreads" in
10939                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10940                 esac
10941                 d_drand48_r=undef
10942                 drand48_r_proto=0
10943                 ;;
10944         esac
10945         ;;
10946 *)      drand48_r_proto=0
10947         ;;
10948 esac
10949
10950 : see if prototype for drand48 is available
10951 echo " "
10952 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
10953 eval $hasproto
10954
10955 : see if dup2 exists
10956 set dup2 d_dup2
10957 eval $inlibc
10958
10959 : see if eaccess exists
10960 set eaccess d_eaccess
10961 eval $inlibc
10962
10963 : see if endgrent exists
10964 set endgrent d_endgrent
10965 eval $inlibc
10966
10967 : see if this is an grp system
10968 set grp.h i_grp
10969 eval $inhdr
10970
10971 case "$i_grp" in
10972 $define)
10973         xxx=`./findhdr grp.h`
10974         $cppstdin $cppflags $cppminus < $xxx >$$.h
10975
10976         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
10977                 val="$define"
10978         else
10979                 val="$undef"
10980         fi
10981         set d_grpasswd
10982         eval $setvar
10983
10984         $rm -f $$.h
10985         ;;
10986 *)
10987         val="$undef";
10988         set d_grpasswd; eval $setvar
10989         ;;
10990 esac
10991
10992 : see if endgrent_r exists
10993 set endgrent_r d_endgrent_r
10994 eval $inlibc
10995 case "$d_endgrent_r" in
10996 "$define")
10997         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
10998         case "$d_endgrent_r_proto:$usethreads" in
10999         ":define")      d_endgrent_r_proto=define
11000                 set d_endgrent_r_proto endgrent_r $hdrs
11001                 eval $hasproto ;;
11002         *)      ;;
11003         esac
11004         case "$d_endgrent_r_proto" in
11005         define)
11006         case "$endgrent_r_proto" in
11007         ''|0) try='int endgrent_r(FILE**);'
11008         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
11009         esac
11010         case "$endgrent_r_proto" in
11011         ''|0) try='void endgrent_r(FILE**);'
11012         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
11013         esac
11014         case "$endgrent_r_proto" in
11015         ''|0)   d_endgrent_r=undef
11016                 endgrent_r_proto=0
11017                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
11018         * )     case "$endgrent_r_proto" in
11019                 REENTRANT_PROTO*) ;;
11020                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
11021                 esac
11022                 echo "Prototype: $try" ;;
11023         esac
11024         ;;
11025         *)      case "$usethreads" in
11026                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
11027                 esac
11028                 d_endgrent_r=undef
11029                 endgrent_r_proto=0
11030                 ;;
11031         esac
11032         ;;
11033 *)      endgrent_r_proto=0
11034         ;;
11035 esac
11036
11037 : see if endhostent exists
11038 set endhostent d_endhent
11039 eval $inlibc
11040
11041 : see if this is a netdb.h system
11042 set netdb.h i_netdb
11043 eval $inhdr
11044
11045 : see if endhostent_r exists
11046 set endhostent_r d_endhostent_r
11047 eval $inlibc
11048 case "$d_endhostent_r" in
11049 "$define")
11050         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11051         case "$d_endhostent_r_proto:$usethreads" in
11052         ":define")      d_endhostent_r_proto=define
11053                 set d_endhostent_r_proto endhostent_r $hdrs
11054                 eval $hasproto ;;
11055         *)      ;;
11056         esac
11057         case "$d_endhostent_r_proto" in
11058         define)
11059         case "$endhostent_r_proto" in
11060         ''|0) try='int endhostent_r(struct hostent_data*);'
11061         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
11062         esac
11063         case "$endhostent_r_proto" in
11064         ''|0) try='void endhostent_r(struct hostent_data*);'
11065         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
11066         esac
11067         case "$endhostent_r_proto" in
11068         ''|0)   d_endhostent_r=undef
11069                 endhostent_r_proto=0
11070                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
11071         * )     case "$endhostent_r_proto" in
11072                 REENTRANT_PROTO*) ;;
11073                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
11074                 esac
11075                 echo "Prototype: $try" ;;
11076         esac
11077         ;;
11078         *)      case "$usethreads" in
11079                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
11080                 esac
11081                 d_endhostent_r=undef
11082                 endhostent_r_proto=0
11083                 ;;
11084         esac
11085         ;;
11086 *)      endhostent_r_proto=0
11087         ;;
11088 esac
11089
11090 : see if endnetent exists
11091 set endnetent d_endnent
11092 eval $inlibc
11093
11094 : see if endnetent_r exists
11095 set endnetent_r d_endnetent_r
11096 eval $inlibc
11097 case "$d_endnetent_r" in
11098 "$define")
11099         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11100         case "$d_endnetent_r_proto:$usethreads" in
11101         ":define")      d_endnetent_r_proto=define
11102                 set d_endnetent_r_proto endnetent_r $hdrs
11103                 eval $hasproto ;;
11104         *)      ;;
11105         esac
11106         case "$d_endnetent_r_proto" in
11107         define)
11108         case "$endnetent_r_proto" in
11109         ''|0) try='int endnetent_r(struct netent_data*);'
11110         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
11111         esac
11112         case "$endnetent_r_proto" in
11113         ''|0) try='void endnetent_r(struct netent_data*);'
11114         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
11115         esac
11116         case "$endnetent_r_proto" in
11117         ''|0)   d_endnetent_r=undef
11118                 endnetent_r_proto=0
11119                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
11120         * )     case "$endnetent_r_proto" in
11121                 REENTRANT_PROTO*) ;;
11122                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
11123                 esac
11124                 echo "Prototype: $try" ;;
11125         esac
11126         ;;
11127         *)      case "$usethreads" in
11128                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
11129                 esac
11130                 d_endnetent_r=undef
11131                 endnetent_r_proto=0
11132                 ;;
11133         esac
11134         ;;
11135 *)      endnetent_r_proto=0
11136         ;;
11137 esac
11138
11139 : see if endprotoent exists
11140 set endprotoent d_endpent
11141 eval $inlibc
11142
11143 : see if endprotoent_r exists
11144 set endprotoent_r d_endprotoent_r
11145 eval $inlibc
11146 case "$d_endprotoent_r" in
11147 "$define")
11148         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11149         case "$d_endprotoent_r_proto:$usethreads" in
11150         ":define")      d_endprotoent_r_proto=define
11151                 set d_endprotoent_r_proto endprotoent_r $hdrs
11152                 eval $hasproto ;;
11153         *)      ;;
11154         esac
11155         case "$d_endprotoent_r_proto" in
11156         define)
11157         case "$endprotoent_r_proto" in
11158         ''|0) try='int endprotoent_r(struct protoent_data*);'
11159         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
11160         esac
11161         case "$endprotoent_r_proto" in
11162         ''|0) try='void endprotoent_r(struct protoent_data*);'
11163         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
11164         esac
11165         case "$endprotoent_r_proto" in
11166         ''|0)   d_endprotoent_r=undef
11167                 endprotoent_r_proto=0
11168                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
11169         * )     case "$endprotoent_r_proto" in
11170                 REENTRANT_PROTO*) ;;
11171                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
11172                 esac
11173                 echo "Prototype: $try" ;;
11174         esac
11175         ;;
11176         *)      case "$usethreads" in
11177                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
11178                 esac
11179                 d_endprotoent_r=undef
11180                 endprotoent_r_proto=0
11181                 ;;
11182         esac
11183         ;;
11184 *)      endprotoent_r_proto=0
11185         ;;
11186 esac
11187
11188 : see if endpwent exists
11189 set endpwent d_endpwent
11190 eval $inlibc
11191
11192 : see if this is a pwd.h system
11193 set pwd.h i_pwd
11194 eval $inhdr
11195
11196 case "$i_pwd" in
11197 $define)
11198         xxx=`./findhdr pwd.h`
11199         $cppstdin $cppflags $cppminus < $xxx >$$.h
11200
11201         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
11202                 val="$define"
11203         else
11204                 val="$undef"
11205         fi
11206         set d_pwquota
11207         eval $setvar
11208
11209         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
11210                 val="$define"
11211         else
11212                 val="$undef"
11213         fi
11214         set d_pwage
11215         eval $setvar
11216
11217         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
11218                 val="$define"
11219         else
11220                 val="$undef"
11221         fi
11222         set d_pwchange
11223         eval $setvar
11224
11225         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
11226                 val="$define"
11227         else
11228                 val="$undef"
11229         fi
11230         set d_pwclass
11231         eval $setvar
11232
11233         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
11234                 val="$define"
11235         else
11236                 val="$undef"
11237         fi
11238         set d_pwexpire
11239         eval $setvar
11240
11241         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
11242                 val="$define"
11243         else
11244                 val="$undef"
11245         fi
11246         set d_pwcomment
11247         eval $setvar
11248
11249         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
11250                 val="$define"
11251         else
11252                 val="$undef"
11253         fi
11254         set d_pwgecos
11255         eval $setvar
11256
11257         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
11258                 val="$define"
11259         else
11260                 val="$undef"
11261         fi
11262         set d_pwpasswd
11263         eval $setvar
11264
11265         $rm -f $$.h
11266         ;;
11267 *)
11268         val="$undef"; 
11269         set d_pwquota; eval $setvar
11270         set d_pwage; eval $setvar
11271         set d_pwchange; eval $setvar
11272         set d_pwclass; eval $setvar
11273         set d_pwexpire; eval $setvar
11274         set d_pwcomment; eval $setvar
11275         set d_pwgecos; eval $setvar
11276         set d_pwpasswd; eval $setvar
11277         ;;
11278 esac
11279
11280 : see if endpwent_r exists
11281 set endpwent_r d_endpwent_r
11282 eval $inlibc
11283 case "$d_endpwent_r" in
11284 "$define")
11285         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
11286         case "$d_endpwent_r_proto:$usethreads" in
11287         ":define")      d_endpwent_r_proto=define
11288                 set d_endpwent_r_proto endpwent_r $hdrs
11289                 eval $hasproto ;;
11290         *)      ;;
11291         esac
11292         case "$d_endpwent_r_proto" in
11293         define)
11294         case "$endpwent_r_proto" in
11295         ''|0) try='int endpwent_r(FILE**);'
11296         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
11297         esac
11298         case "$endpwent_r_proto" in
11299         ''|0) try='void endpwent_r(FILE**);'
11300         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
11301         esac
11302         case "$endpwent_r_proto" in
11303         ''|0)   d_endpwent_r=undef
11304                 endpwent_r_proto=0
11305                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
11306         * )     case "$endpwent_r_proto" in
11307                 REENTRANT_PROTO*) ;;
11308                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
11309                 esac
11310                 echo "Prototype: $try" ;;
11311         esac
11312         ;;
11313         *)      case "$usethreads" in
11314                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
11315                 esac
11316                 d_endpwent_r=undef
11317                 endpwent_r_proto=0
11318                 ;;
11319         esac
11320         ;;
11321 *)      endpwent_r_proto=0
11322         ;;
11323 esac
11324
11325 : see if endservent exists
11326 set endservent d_endsent
11327 eval $inlibc
11328
11329 : see if endservent_r exists
11330 set endservent_r d_endservent_r
11331 eval $inlibc
11332 case "$d_endservent_r" in
11333 "$define")
11334         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11335         case "$d_endservent_r_proto:$usethreads" in
11336         ":define")      d_endservent_r_proto=define
11337                 set d_endservent_r_proto endservent_r $hdrs
11338                 eval $hasproto ;;
11339         *)      ;;
11340         esac
11341         case "$d_endservent_r_proto" in
11342         define)
11343         case "$endservent_r_proto" in
11344         ''|0) try='int endservent_r(struct servent_data*);'
11345         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
11346         esac
11347         case "$endservent_r_proto" in
11348         ''|0) try='void endservent_r(struct servent_data*);'
11349         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
11350         esac
11351         case "$endservent_r_proto" in
11352         ''|0)   d_endservent_r=undef
11353                 endservent_r_proto=0
11354                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
11355         * )     case "$endservent_r_proto" in
11356                 REENTRANT_PROTO*) ;;
11357                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
11358                 esac
11359                 echo "Prototype: $try" ;;
11360         esac
11361         ;;
11362         *)      case "$usethreads" in
11363                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
11364                 esac
11365                 d_endservent_r=undef
11366                 endservent_r_proto=0
11367                 ;;
11368         esac
11369         ;;
11370 *)      endservent_r_proto=0
11371         ;;
11372 esac
11373
11374 : Locate the flags for 'open()'
11375 echo " "
11376 $cat >try.c <<EOCP
11377 #include <sys/types.h>
11378 #ifdef I_FCNTL
11379 #include <fcntl.h>
11380 #endif
11381 #ifdef I_SYS_FILE
11382 #include <sys/file.h>
11383 #endif
11384 #$i_stdlib I_STDLIB
11385 #ifdef I_STDLIB
11386 #include <stdlib.h>
11387 #endif
11388 int main() {
11389         if(O_RDONLY);
11390 #ifdef O_TRUNC
11391         exit(0);
11392 #else
11393         exit(1);
11394 #endif
11395 }
11396 EOCP
11397 : check sys/file.h first to get FREAD on Sun
11398 if $test `./findhdr sys/file.h` && \
11399                 set try -DI_SYS_FILE && eval $compile; then
11400         h_sysfile=true;
11401         echo "<sys/file.h> defines the O_* constants..." >&4
11402         if $run ./try; then
11403                 echo "and you have the 3 argument form of open()." >&4
11404                 val="$define"
11405         else
11406                 echo "but not the 3 argument form of open().  Oh, well." >&4
11407                 val="$undef"
11408         fi
11409 elif $test `./findhdr fcntl.h` && \
11410                 set try -DI_FCNTL && eval $compile; then
11411         h_fcntl=true;
11412         echo "<fcntl.h> defines the O_* constants..." >&4
11413         if $run ./try; then
11414                 echo "and you have the 3 argument form of open()." >&4
11415                 val="$define"
11416         else
11417                 echo "but not the 3 argument form of open().  Oh, well." >&4
11418                 val="$undef"
11419         fi
11420 else
11421         val="$undef"
11422         echo "I can't find the O_* constant definitions!  You got problems." >&4
11423 fi
11424 set d_open3
11425 eval $setvar
11426 $rm -f try try.*
11427
11428 : see which of string.h or strings.h is needed
11429 echo " "
11430 strings=`./findhdr string.h`
11431 if $test "$strings" && $test -r "$strings"; then
11432         echo "Using <string.h> instead of <strings.h>." >&4
11433         val="$define"
11434 else
11435         val="$undef"
11436         strings=`./findhdr strings.h`
11437         if $test "$strings" && $test -r "$strings"; then
11438                 echo "Using <strings.h> instead of <string.h>." >&4
11439         else
11440                 echo "No string header found -- You'll surely have problems." >&4
11441         fi
11442 fi
11443 set i_string
11444 eval $setvar
11445 case "$i_string" in
11446 "$undef") strings=`./findhdr strings.h`;;
11447 *)        strings=`./findhdr string.h`;;
11448 esac
11449
11450 : see if this is a sys/file.h system
11451 val=''
11452 set sys/file.h val
11453 eval $inhdr
11454
11455 : do we need to include sys/file.h ?
11456 case "$val" in
11457 "$define")
11458         echo " "
11459         if $h_sysfile; then
11460                 val="$define"
11461                 echo "We'll be including <sys/file.h>." >&4
11462         else
11463                 val="$undef"
11464                 echo "We won't be including <sys/file.h>." >&4
11465         fi
11466         ;;
11467 *)
11468         h_sysfile=false
11469         ;;
11470 esac
11471 set i_sysfile
11472 eval $setvar
11473
11474 : see if fcntl.h is there
11475 val=''
11476 set fcntl.h val
11477 eval $inhdr
11478
11479 : see if we can include fcntl.h
11480 case "$val" in
11481 "$define")
11482         echo " "
11483         if $h_fcntl; then
11484                 val="$define"
11485                 echo "We'll be including <fcntl.h>." >&4
11486         else
11487                 val="$undef"
11488                 if $h_sysfile; then
11489         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11490                 else
11491                         echo "We won't be including <fcntl.h>." >&4
11492                 fi
11493         fi
11494         ;;
11495 *)
11496         h_fcntl=false
11497         val="$undef"
11498         ;;
11499 esac
11500 set i_fcntl
11501 eval $setvar
11502
11503 : check for non-blocking I/O stuff
11504 case "$h_sysfile" in
11505 true) echo "#include <sys/file.h>" > head.c;;
11506 *)
11507        case "$h_fcntl" in
11508        true) echo "#include <fcntl.h>" > head.c;;
11509        *) echo "#include <sys/fcntl.h>" > head.c;;
11510        esac
11511        ;;
11512 esac
11513 echo " "
11514 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11515 case "$o_nonblock" in
11516 '')
11517         $cat head.c > try.c
11518         $cat >>try.c <<EOCP
11519 #include <stdio.h>
11520 #$i_stdlib I_STDLIB
11521 #ifdef I_STDLIB
11522 #include <stdlib.h>
11523 #endif
11524 #$i_fcntl I_FCNTL
11525 #ifdef I_FCNTL
11526 #include <fcntl.h>
11527 #endif
11528 int main() {
11529 #ifdef O_NONBLOCK
11530         printf("O_NONBLOCK\n");
11531         exit(0);
11532 #endif
11533 #ifdef O_NDELAY
11534         printf("O_NDELAY\n");
11535         exit(0);
11536 #endif
11537 #ifdef FNDELAY
11538         printf("FNDELAY\n");
11539         exit(0);
11540 #endif
11541         exit(0);
11542 }
11543 EOCP
11544         set try
11545         if eval $compile_ok; then
11546                 o_nonblock=`$run ./try`
11547                 case "$o_nonblock" in
11548                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11549                 *) echo "Seems like we can use $o_nonblock.";;
11550                 esac
11551         else
11552                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11553         fi
11554         ;;
11555 *) echo "Using $hint value $o_nonblock.";;
11556 esac
11557 $rm -f try try.* .out core
11558
11559 echo " "
11560 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11561 case "$eagain" in
11562 '')
11563         $cat head.c > try.c
11564         $cat >>try.c <<EOCP
11565 #include <errno.h>
11566 #include <sys/types.h>
11567 #include <signal.h>
11568 #include <stdio.h> 
11569 #$i_stdlib I_STDLIB
11570 #ifdef I_STDLIB
11571 #include <stdlib.h>
11572 #endif
11573 #$i_fcntl I_FCNTL
11574 #ifdef I_FCNTL
11575 #include <fcntl.h>
11576 #endif
11577 #define MY_O_NONBLOCK $o_nonblock
11578 #ifndef errno  /* XXX need better Configure test */
11579 extern int errno;
11580 #endif
11581 #$i_unistd I_UNISTD
11582 #ifdef I_UNISTD
11583 #include <unistd.h>
11584 #endif
11585 #$i_string I_STRING
11586 #ifdef I_STRING
11587 #include <string.h>
11588 #else
11589 #include <strings.h>
11590 #endif
11591 $signal_t blech(x) int x; { exit(3); }
11592 EOCP
11593         $cat >> try.c <<'EOCP'
11594 int main()
11595 {
11596         int pd[2];
11597         int pu[2];
11598         char buf[1];
11599         char string[100];
11600
11601         pipe(pd);       /* Down: child -> parent */
11602         pipe(pu);       /* Up: parent -> child */
11603         if (0 != fork()) {
11604                 int ret;
11605                 close(pd[1]);   /* Parent reads from pd[0] */
11606                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11607 #ifdef F_SETFL
11608                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11609                         exit(1);
11610 #else
11611                 exit(4);
11612 #endif
11613                 signal(SIGALRM, blech);
11614                 alarm(5);
11615                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11616                         exit(2);
11617                 sprintf(string, "%d\n", ret);
11618                 write(2, string, strlen(string));
11619                 alarm(0);
11620 #ifdef EAGAIN
11621                 if (errno == EAGAIN) {
11622                         printf("EAGAIN\n");
11623                         goto ok;
11624                 }
11625 #endif
11626 #ifdef EWOULDBLOCK
11627                 if (errno == EWOULDBLOCK)
11628                         printf("EWOULDBLOCK\n");
11629 #endif
11630         ok:
11631                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11632                 sleep(2);                               /* Give it time to close our pipe */
11633                 alarm(5);
11634                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11635                 alarm(0);
11636                 sprintf(string, "%d\n", ret);
11637                 write(4, string, strlen(string));
11638                 exit(0);
11639         }
11640
11641         close(pd[0]);                   /* We write to pd[1] */
11642         close(pu[1]);                   /* We read from pu[0] */
11643         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11644         close(pd[1]);                   /* Pipe pd is now fully closed! */
11645         exit(0);                                /* Bye bye, thank you for playing! */
11646 }
11647 EOCP
11648         set try
11649         if eval $compile_ok; then
11650                 echo "$startsh" >mtry
11651                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11652                 chmod +x mtry
11653                 ./mtry >/dev/null 2>&1
11654                 case $? in
11655                 0) eagain=`$cat try.out`;;
11656                 1) echo "Could not perform non-blocking setting!";;
11657                 2) echo "I did a successful read() for something that was not there!";;
11658                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11659                 4) echo "Could not find F_SETFL!";;
11660                 *) echo "Something terribly wrong happened during testing.";;
11661                 esac
11662                 rd_nodata=`$cat try.ret`
11663                 echo "A read() system call with no data present returns $rd_nodata."
11664                 case "$rd_nodata" in
11665                 0|-1) ;;
11666                 *)
11667                         echo "(That's peculiar, fixing that to be -1.)"
11668                         rd_nodata=-1
11669                         ;;
11670                 esac
11671                 case "$eagain" in
11672                 '')
11673                         echo "Forcing errno EAGAIN on read() with no data available."
11674                         eagain=EAGAIN
11675                         ;;
11676                 *)
11677                         echo "Your read() sets errno to $eagain when no data is available."
11678                         ;;
11679                 esac
11680                 status=`$cat try.err`
11681                 case "$status" in
11682                 0) echo "And it correctly returns 0 to signal EOF.";;
11683                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11684                 *) echo "However, your read() returns '$status' on EOF??";;
11685                 esac
11686                 val="$define"
11687                 if test "$status" = "$rd_nodata"; then
11688                         echo "WARNING: you can't distinguish between EOF and no data!"
11689                         val="$undef"
11690                 fi
11691         else
11692                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11693                 eagain=EAGAIN
11694         fi
11695         set d_eofnblk
11696         eval $setvar
11697         ;;
11698 *)
11699         echo "Using $hint value $eagain."
11700         echo "Your read() returns $rd_nodata when no data is present."
11701         case "$d_eofnblk" in
11702         "$define") echo "And you can see EOF because read() returns 0.";;
11703         "$undef") echo "But you can't see EOF status from read() returned value.";;
11704         *)
11705                 echo "(Assuming you can't see EOF status from read anyway.)"
11706                 d_eofnblk=$undef
11707                 ;;
11708         esac
11709         ;;
11710 esac
11711 $rm -f try try.* .out core head.c mtry
11712
11713 : see if _ptr and _cnt from stdio act std
11714 echo " "
11715
11716 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
11717         echo "(Looks like you have stdio.h from BSD.)"
11718         case "$stdio_ptr" in
11719         '') stdio_ptr='((fp)->_p)'
11720                 ptr_lval=$define
11721                 ;;
11722         *)      ptr_lval=$d_stdio_ptr_lval;;
11723         esac
11724         case "$stdio_cnt" in
11725         '') stdio_cnt='((fp)->_r)'
11726                 cnt_lval=$define
11727                 ;;
11728         *)      cnt_lval=$d_stdio_cnt_lval;;
11729         esac
11730         case "$stdio_base" in
11731         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
11732         esac
11733         case "$stdio_bufsiz" in
11734         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
11735         esac
11736 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
11737         echo "(Looks like you have stdio.h from Linux.)"
11738         case "$stdio_ptr" in
11739         '') stdio_ptr='((fp)->_IO_read_ptr)'
11740                 ptr_lval=$define
11741                 ;;
11742         *)      ptr_lval=$d_stdio_ptr_lval;;
11743         esac
11744         case "$stdio_cnt" in
11745         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
11746                 cnt_lval=$undef
11747                 ;;
11748         *)      cnt_lval=$d_stdio_cnt_lval;;
11749         esac
11750         case "$stdio_base" in
11751         '') stdio_base='((fp)->_IO_read_base)';;
11752         esac
11753         case "$stdio_bufsiz" in
11754         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
11755         esac
11756 else
11757         case "$stdio_ptr" in
11758         '') stdio_ptr='((fp)->_ptr)'
11759                 ptr_lval=$define
11760                 ;;
11761         *)      ptr_lval=$d_stdio_ptr_lval;;
11762         esac
11763         case "$stdio_cnt" in
11764         '') stdio_cnt='((fp)->_cnt)'
11765                 cnt_lval=$define
11766                 ;;
11767         *)      cnt_lval=$d_stdio_cnt_lval;;
11768         esac
11769         case "$stdio_base" in
11770         '') stdio_base='((fp)->_base)';;
11771         esac
11772         case "$stdio_bufsiz" in
11773         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
11774         esac
11775 fi
11776
11777 : test whether _ptr and _cnt really work
11778 echo "Checking how std your stdio is..." >&4
11779 $cat >try.c <<EOP
11780 #include <stdio.h>
11781 #$i_stdlib I_STDLIB
11782 #ifdef I_STDLIB
11783 #include <stdlib.h>
11784 #endif
11785 #define FILE_ptr(fp)    $stdio_ptr
11786 #define FILE_cnt(fp)    $stdio_cnt
11787 int main() {
11788         FILE *fp = fopen("try.c", "r");
11789         char c = getc(fp);
11790         if (
11791                 18 <= FILE_cnt(fp) &&
11792                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11793         )
11794                 exit(0);
11795         exit(1);
11796 }
11797 EOP
11798 val="$undef"
11799 set try
11800 if eval $compile && $to try.c; then
11801         if $run ./try; then
11802                 echo "Your stdio acts pretty std."
11803                 val="$define"
11804         else
11805                 echo "Your stdio isn't very std."
11806         fi
11807 else
11808         echo "Your stdio doesn't appear very std."
11809 fi
11810 $rm -f try.c try
11811
11812 # glibc 2.2.90 and above apparently change stdio streams so Perl's
11813 # direct buffer manipulation no longer works.  The Configure tests
11814 # should be changed to correctly detect this, but until then,
11815 # the following check should at least let perl compile and run.
11816 # (This quick fix should be updated before 5.8.1.)
11817 # To be defensive, reject all unknown versions, and all versions  > 2.2.9.
11818 # A. Dougherty, June 3, 2002.
11819 case "$d_gnulibc" in
11820 $define)
11821         case "$gnulibc_version" in
11822         2.[01]*)  ;;
11823         2.2) ;;
11824         2.2.[0-9]) ;;
11825         *)  echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
11826                 val="$undef"
11827                 ;;
11828         esac
11829         ;;
11830 esac
11831 set d_stdstdio
11832 eval $setvar
11833
11834 : Can _ptr be used as an lvalue?
11835 case "$d_stdstdio$ptr_lval" in
11836 $define$define) val=$define ;;
11837 *) val=$undef ;;
11838 esac
11839 set d_stdio_ptr_lval
11840 eval $setvar
11841
11842 : Can _cnt be used as an lvalue?
11843 case "$d_stdstdio$cnt_lval" in
11844 $define$define) val=$define ;;
11845 *) val=$undef ;;
11846 esac
11847 set d_stdio_cnt_lval
11848 eval $setvar
11849
11850
11851 : test whether setting _ptr sets _cnt as a side effect
11852 d_stdio_ptr_lval_sets_cnt="$undef"
11853 d_stdio_ptr_lval_nochange_cnt="$undef"
11854 case "$d_stdio_ptr_lval$d_stdstdio" in
11855 $define$define)
11856         echo "Checking to see what happens if we set the stdio ptr..." >&4
11857 $cat >try.c <<EOP
11858 #include <stdio.h>
11859 /* Can we scream? */
11860 /* Eat dust sed :-) */
11861 /* In the buffer space, no one can hear you scream. */
11862 #$i_stdlib I_STDLIB
11863 #ifdef I_STDLIB
11864 #include <stdlib.h>
11865 #endif
11866 #define FILE_ptr(fp)    $stdio_ptr
11867 #define FILE_cnt(fp)    $stdio_cnt
11868 #include <sys/types.h>
11869 int main() {
11870         FILE *fp = fopen("try.c", "r");
11871         int c;
11872         char *ptr;
11873         size_t cnt;
11874         if (!fp) {
11875             puts("Fail even to read");
11876             exit(1);
11877         }
11878         c = getc(fp); /* Read away the first # */
11879         if (c == EOF) {
11880             puts("Fail even to read");
11881             exit(1);
11882         }
11883         if (!(
11884                 18 <= FILE_cnt(fp) &&
11885                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11886         )) {
11887                 puts("Fail even to read");
11888                 exit (1);
11889         }
11890         ptr = (char*) FILE_ptr(fp);
11891         cnt = (size_t)FILE_cnt(fp);
11892
11893         FILE_ptr(fp) += 42;
11894
11895         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
11896                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
11897                 exit (1);
11898         }
11899         if (FILE_cnt(fp) <= 20) {
11900                 printf ("Fail (<20 chars to test)");
11901                 exit (1);
11902         }
11903         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
11904                 puts("Fail compare");
11905                 exit (1);
11906         }
11907         if (cnt == FILE_cnt(fp)) {
11908                 puts("Pass_unchanged");
11909                 exit (0);
11910         }       
11911         if (FILE_cnt(fp) == (cnt - 42)) {
11912                 puts("Pass_changed");
11913                 exit (0);
11914         }
11915         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
11916         return 1;
11917
11918 }
11919 EOP
11920         set try
11921         if eval $compile && $to try.c; then
11922                 case `$run ./try` in
11923                 Pass_changed)
11924                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
11925                         d_stdio_ptr_lval_sets_cnt="$define" ;;
11926                 Pass_unchanged)
11927                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
11928                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
11929                 Fail*)
11930                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
11931                 *)
11932                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
11933         esac
11934         else
11935                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
11936         fi
11937         $rm -f try.c try
11938         ;;
11939 esac
11940
11941 : see if _base is also standard
11942 val="$undef"
11943 case "$d_stdstdio" in
11944 $define)
11945         $cat >try.c <<EOP
11946 #include <stdio.h>
11947 #$i_stdlib I_STDLIB
11948 #ifdef I_STDLIB
11949 #include <stdlib.h>
11950 #endif
11951 #define FILE_base(fp)   $stdio_base
11952 #define FILE_bufsiz(fp) $stdio_bufsiz
11953 int main() {
11954         FILE *fp = fopen("try.c", "r");
11955         char c = getc(fp);
11956         if (
11957                 19 <= FILE_bufsiz(fp) &&
11958                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
11959         )
11960                 exit(0);
11961         exit(1);
11962 }
11963 EOP
11964         set try
11965         if eval $compile && $to try.c; then
11966                 if $run ./try; then
11967                         echo "And its _base field acts std."
11968                         val="$define"
11969                 else
11970                         echo "But its _base field isn't std."
11971                 fi
11972         else
11973                 echo "However, it seems to be lacking the _base field."
11974         fi
11975         $rm -f try.c try
11976         ;;
11977 esac
11978 set d_stdiobase
11979 eval $setvar
11980
11981 : see if fast_stdio exists
11982 val="$undef"
11983 case "$d_stdstdio:$d_stdio_ptr_lval" in
11984 "$define:$define")
11985         case "$d_stdio_cnt_lval$d_stdio_ptr_lval_sets_cnt" in
11986         *$define*)
11987                 echo "You seem to have 'fast stdio' to directly manipulate the stdio buffers." >& 4
11988                 val="$define"
11989                 ;;
11990         esac
11991         ;;
11992 esac
11993 set d_faststdio
11994 eval $setvar
11995
11996
11997
11998 : see if fchdir exists
11999 set fchdir d_fchdir
12000 eval $inlibc
12001
12002 : see if fchmod exists
12003 set fchmod d_fchmod
12004 eval $inlibc
12005
12006 : see if fchown exists
12007 set fchown d_fchown
12008 eval $inlibc
12009
12010 : see if this is an fcntl system
12011 set fcntl d_fcntl
12012 eval $inlibc
12013
12014 echo " "
12015 : See if fcntl-based locking works.
12016 $cat >try.c <<EOCP
12017 #$i_stdlib I_STDLIB
12018 #ifdef I_STDLIB
12019 #include <stdlib.h>
12020 #endif
12021 #include <unistd.h>
12022 #include <fcntl.h>
12023 #include <signal.h>
12024 $signal_t blech(x) int x; { exit(3); }
12025 int main() {
12026 #if defined(F_SETLK) && defined(F_SETLKW)
12027      struct flock flock;
12028      int retval, fd;
12029      fd = open("try.c", O_RDONLY);
12030      flock.l_type = F_RDLCK;
12031      flock.l_whence = SEEK_SET;
12032      flock.l_start = flock.l_len = 0;
12033      signal(SIGALRM, blech);
12034      alarm(10);
12035      retval = fcntl(fd, F_SETLK, &flock);
12036      close(fd);
12037      (retval < 0 ? exit(2) : exit(0));
12038 #else
12039      exit(2);
12040 #endif
12041 }
12042 EOCP
12043 echo "Checking if fcntl-based file locking works... "
12044 case "$d_fcntl" in
12045 "$define")
12046         set try
12047         if eval $compile_ok; then
12048                 if $run ./try; then
12049                         echo "Yes, it seems to work."
12050                         val="$define"
12051                 else
12052                         echo "Nope, it didn't work."
12053                         val="$undef"
12054                         case "$?" in
12055                         3) $cat >&4 <<EOM
12056 ***
12057 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
12058 *** This is (almost) impossible.
12059 *** If your NFS lock daemons are not feeling well, something like
12060 *** this may happen, please investigate.  Cannot continue, aborting.
12061 ***
12062 EOM
12063                                 exit 1
12064                                 ;;
12065                         esac
12066                 fi
12067         else
12068                 echo "I'm unable to compile the test program, so I'll assume not."
12069                 val="$undef"
12070         fi
12071         ;;
12072 *) val="$undef";
12073         echo "Nope, since you don't even have fcntl()."
12074         ;;
12075 esac
12076 set d_fcntl_can_lock
12077 eval $setvar
12078 $rm -f try*
12079
12080
12081 : check for fd_set items
12082 $cat <<EOM
12083
12084 Checking to see how well your C compiler handles fd_set and friends ...
12085 EOM
12086 $cat >try.c <<EOCP
12087 #$i_stdlib I_STDLIB
12088 #ifdef I_STDLIB
12089 #include <stdlib.h>
12090 #endif
12091 #$i_systime I_SYS_TIME
12092 #$i_sysselct I_SYS_SELECT
12093 #$d_socket HAS_SOCKET
12094 #include <sys/types.h>
12095 #ifdef HAS_SOCKET
12096 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
12097 #endif
12098 #ifdef I_SYS_TIME
12099 #include <sys/time.h>
12100 #endif
12101 #ifdef I_SYS_SELECT
12102 #include <sys/select.h>
12103 #endif
12104 int main() {
12105         fd_set fds;
12106
12107 #ifdef TRYBITS
12108         if(fds.fds_bits);
12109 #endif
12110
12111 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
12112         exit(0);
12113 #else
12114         exit(1);
12115 #endif
12116 }
12117 EOCP
12118 set try -DTRYBITS
12119 if eval $compile; then
12120         d_fds_bits="$define"
12121         d_fd_set="$define"
12122         echo "Well, your system knows about the normal fd_set typedef..." >&4
12123         if $run ./try; then
12124                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
12125                 d_fd_macros="$define"
12126         else
12127                 $cat >&4 <<'EOM'
12128 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
12129 EOM
12130                 d_fd_macros="$undef"
12131         fi
12132 else
12133         $cat <<'EOM'
12134 Hmm, your compiler has some difficulty with fd_set.  Checking further...
12135 EOM
12136         set try
12137         if eval $compile; then
12138                 d_fds_bits="$undef"
12139                 d_fd_set="$define"
12140                 echo "Well, your system has some sort of fd_set available..." >&4
12141                 if $run ./try; then
12142                         echo "and you have the normal fd_set macros." >&4
12143                         d_fd_macros="$define"
12144                 else
12145                         $cat <<'EOM'
12146 but not the normal fd_set macros!  Gross!  More work for me...
12147 EOM
12148                         d_fd_macros="$undef"
12149                 fi
12150         else
12151         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
12152                 d_fd_set="$undef"
12153                 d_fds_bits="$undef"
12154                 d_fd_macros="$undef"
12155         fi
12156 fi
12157 $rm -f try try.*
12158
12159 : see if fgetpos exists
12160 set fgetpos d_fgetpos
12161 eval $inlibc
12162
12163 : see if finite exists
12164 set finite d_finite
12165 eval $inlibc
12166
12167 : see if finitel exists
12168 set finitel d_finitel
12169 eval $inlibc
12170
12171 : see if flock exists
12172 set flock d_flock
12173 eval $inlibc
12174
12175 : see if prototype for flock is available
12176 echo " "
12177 set d_flockproto flock $i_sysfile sys/file.h
12178 eval $hasproto
12179
12180 : see if fork exists
12181 set fork d_fork
12182 eval $inlibc
12183
12184 : see if fp_class exists
12185 set fp_class d_fp_class
12186 eval $inlibc
12187
12188 : see if pathconf exists
12189 set pathconf d_pathconf
12190 eval $inlibc
12191
12192 : see if fpathconf exists
12193 set fpathconf d_fpathconf
12194 eval $inlibc
12195
12196 : see if fpclass exists
12197 set fpclass d_fpclass
12198 eval $inlibc
12199
12200 : see if fpclassify exists
12201 set fpclassify d_fpclassify
12202 eval $inlibc
12203
12204 : see if fpclassl exists
12205 set fpclassl d_fpclassl
12206 eval $inlibc
12207
12208
12209 : check for fpos64_t
12210 echo " "
12211 echo "Checking to see if you have fpos64_t..." >&4
12212 $cat >try.c <<EOCP
12213 #include <stdio.h>
12214 int main() { fpos64_t x = 7; }
12215 EOCP
12216 set try
12217 if eval $compile; then
12218         val="$define"
12219         echo "You have fpos64_t."
12220 else
12221         val="$undef"
12222         echo "You do not have fpos64_t."
12223         case "$fpossize" in
12224         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
12225         esac
12226 fi
12227 $rm -f try.* try
12228 set d_fpos64_t
12229 eval $setvar
12230
12231 : see if frexpl exists
12232 set frexpl d_frexpl
12233 eval $inlibc
12234
12235 : see if this is a sys/param system
12236 set sys/param.h i_sysparam
12237 eval $inhdr
12238
12239 : see if this is a sys/mount.h system
12240 set sys/mount.h i_sysmount
12241 eval $inhdr
12242
12243
12244 echo " "
12245 echo "Checking to see if your system supports struct fs_data..." >&4
12246 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
12247 eval $hasstruct
12248 case "$d_fs_data_s" in
12249 "$define")      echo "Yes, it does."   ;;
12250 *)              echo "No, it doesn't." ;;
12251 esac
12252
12253 : see if fseeko exists
12254 set fseeko d_fseeko
12255 eval $inlibc
12256 case "$longsize" in
12257 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
12258 esac
12259
12260 : see if fsetpos exists
12261 set fsetpos d_fsetpos
12262 eval $inlibc
12263
12264
12265 : see if fstatfs exists
12266 set fstatfs d_fstatfs
12267 eval $inlibc
12268
12269
12270 : see if statvfs exists
12271 set statvfs d_statvfs
12272 eval $inlibc
12273
12274 : see if fstatvfs exists
12275 set fstatvfs d_fstatvfs
12276 eval $inlibc
12277
12278
12279 : see if fsync exists
12280 set fsync d_fsync
12281 eval $inlibc
12282
12283 : see if ftello exists
12284 set ftello d_ftello
12285 eval $inlibc
12286 case "$longsize" in
12287 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
12288 esac
12289
12290 : see if getcwd exists
12291 set getcwd d_getcwd
12292 eval $inlibc
12293
12294 : see if getespwnam exists
12295 set getespwnam d_getespwnam
12296 eval $inlibc
12297
12298
12299 : see if getfsstat exists
12300 set getfsstat d_getfsstat
12301 eval $inlibc
12302
12303 : see if getgrent exists
12304 set getgrent d_getgrent
12305 eval $inlibc
12306
12307 : see if getgrent_r exists
12308 set getgrent_r d_getgrent_r
12309 eval $inlibc
12310 case "$d_getgrent_r" in
12311 "$define")
12312         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12313         case "$d_getgrent_r_proto:$usethreads" in
12314         ":define")      d_getgrent_r_proto=define
12315                 set d_getgrent_r_proto getgrent_r $hdrs
12316                 eval $hasproto ;;
12317         *)      ;;
12318         esac
12319         case "$d_getgrent_r_proto" in
12320         define)
12321         case "$getgrent_r_proto" in
12322         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
12323         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
12324         esac
12325         case "$getgrent_r_proto" in
12326         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
12327         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
12328         esac
12329         case "$getgrent_r_proto" in
12330         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
12331         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
12332         esac
12333         case "$getgrent_r_proto" in
12334         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
12335         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
12336         esac
12337         case "$getgrent_r_proto" in
12338         ''|0) try='int getgrent_r(struct group*, char*, int);'
12339         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
12340         esac
12341         case "$getgrent_r_proto" in
12342         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
12343         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
12344         esac
12345         case "$getgrent_r_proto" in
12346         ''|0)   d_getgrent_r=undef
12347                 getgrent_r_proto=0
12348                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
12349         * )     case "$getgrent_r_proto" in
12350                 REENTRANT_PROTO*) ;;
12351                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
12352                 esac
12353                 echo "Prototype: $try" ;;
12354         esac
12355         ;;
12356         *)      case "$usethreads" in
12357                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
12358                 esac
12359                 d_getgrent_r=undef
12360                 getgrent_r_proto=0
12361                 ;;
12362         esac
12363         ;;
12364 *)      getgrent_r_proto=0
12365         ;;
12366 esac
12367
12368 : see if getgrgid_r exists
12369 set getgrgid_r d_getgrgid_r
12370 eval $inlibc
12371 case "$d_getgrgid_r" in
12372 "$define")
12373         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12374         case "$d_getgrgid_r_proto:$usethreads" in
12375         ":define")      d_getgrgid_r_proto=define
12376                 set d_getgrgid_r_proto getgrgid_r $hdrs
12377                 eval $hasproto ;;
12378         *)      ;;
12379         esac
12380         case "$d_getgrgid_r_proto" in
12381         define)
12382         case "$getgrgid_r_proto" in
12383         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
12384         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
12385         esac
12386         case "$getgrgid_r_proto" in
12387         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
12388         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
12389         esac
12390         case "$getgrgid_r_proto" in
12391         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
12392         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
12393         esac
12394         case "$getgrgid_r_proto" in
12395         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
12396         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
12397         esac
12398         case "$getgrgid_r_proto" in
12399         ''|0)   d_getgrgid_r=undef
12400                 getgrgid_r_proto=0
12401                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
12402         * )     case "$getgrgid_r_proto" in
12403                 REENTRANT_PROTO*) ;;
12404                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
12405                 esac
12406                 echo "Prototype: $try" ;;
12407         esac
12408         ;;
12409         *)      case "$usethreads" in
12410                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
12411                 esac
12412                 d_getgrgid_r=undef
12413                 getgrgid_r_proto=0
12414                 ;;
12415         esac
12416         ;;
12417 *)      getgrgid_r_proto=0
12418         ;;
12419 esac
12420
12421 : see if getgrnam_r exists
12422 set getgrnam_r d_getgrnam_r
12423 eval $inlibc
12424 case "$d_getgrnam_r" in
12425 "$define")
12426         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12427         case "$d_getgrnam_r_proto:$usethreads" in
12428         ":define")      d_getgrnam_r_proto=define
12429                 set d_getgrnam_r_proto getgrnam_r $hdrs
12430                 eval $hasproto ;;
12431         *)      ;;
12432         esac
12433         case "$d_getgrnam_r_proto" in
12434         define)
12435         case "$getgrnam_r_proto" in
12436         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
12437         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
12438         esac
12439         case "$getgrnam_r_proto" in
12440         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
12441         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
12442         esac
12443         case "$getgrnam_r_proto" in
12444         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
12445         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
12446         esac
12447         case "$getgrnam_r_proto" in
12448         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
12449         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
12450         esac
12451         case "$getgrnam_r_proto" in
12452         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
12453         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
12454         esac
12455         case "$getgrnam_r_proto" in
12456         ''|0)   d_getgrnam_r=undef
12457                 getgrnam_r_proto=0
12458                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
12459         * )     case "$getgrnam_r_proto" in
12460                 REENTRANT_PROTO*) ;;
12461                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
12462                 esac
12463                 echo "Prototype: $try" ;;
12464         esac
12465         ;;
12466         *)      case "$usethreads" in
12467                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
12468                 esac
12469                 d_getgrnam_r=undef
12470                 getgrnam_r_proto=0
12471                 ;;
12472         esac
12473         ;;
12474 *)      getgrnam_r_proto=0
12475         ;;
12476 esac
12477
12478 : see if gethostbyaddr exists
12479 set gethostbyaddr d_gethbyaddr
12480 eval $inlibc
12481
12482 : see if gethostbyname exists
12483 set gethostbyname d_gethbyname
12484 eval $inlibc
12485
12486 : see if gethostent exists
12487 set gethostent d_gethent
12488 eval $inlibc
12489
12490 : see how we will look up host name
12491 echo " "
12492 call=''
12493 if set gethostname val -f d_gethname; eval $csym; $val; then
12494         echo 'gethostname() found.' >&4
12495         d_gethname="$define"
12496         call=gethostname
12497 fi
12498 if set uname val -f d_uname; eval $csym; $val; then
12499         if ./xenix; then
12500                 $cat <<'EOM'
12501 uname() was found, but you're running xenix, and older versions of xenix
12502 have a broken uname(). If you don't really know whether your xenix is old
12503 enough to have a broken system call, use the default answer.
12504
12505 EOM
12506                 dflt=y
12507                 case "$d_uname" in
12508                 "$define") dflt=n;;
12509                 esac
12510                 rp='Is your uname() broken?'
12511                 . ./myread
12512                 case "$ans" in
12513                 n*) d_uname="$define"; call=uname;;
12514                 esac
12515         else
12516                 echo 'uname() found.' >&4
12517                 d_uname="$define"
12518                 case "$call" in
12519                 '') call=uname ;;
12520                 esac
12521         fi
12522 fi
12523 case "$d_gethname" in
12524 '') d_gethname="$undef";;
12525 esac
12526 case "$d_uname" in
12527 '') d_uname="$undef";;
12528 esac
12529 case "$d_uname$d_gethname" in
12530 *define*)
12531         dflt=n
12532         cat <<EOM
12533  
12534 Every now and then someone has a $call() that lies about the hostname
12535 but can't be fixed for political or economic reasons.  If you wish, I can
12536 pretend $call() isn't there and maybe compute hostname at run-time
12537 thanks to the '$phostname' command.
12538
12539 EOM
12540         rp="Shall I ignore $call() from now on?"
12541         . ./myread
12542         case "$ans" in
12543         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
12544         esac;;
12545 esac
12546 case "$phostname" in
12547 '') aphostname='';;
12548 *) case "$aphostname" in
12549         /*) ;;
12550         *) set X $phostname
12551                 shift
12552                 file=$1
12553                 shift
12554                 file=`./loc $file $file $pth`
12555                 aphostname=`echo $file $*`
12556                 ;;
12557         esac
12558         ;;
12559 esac
12560 case "$d_uname$d_gethname" in
12561 *define*) ;;
12562 *)
12563         case "$phostname" in
12564         '')
12565                 echo "There will be no way for $package to get your hostname." >&4;;
12566         *)
12567         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
12568                 ;;
12569         esac;;
12570 esac
12571 case "$d_phostname" in
12572 '') d_phostname="$undef";;
12573 esac
12574
12575 : see if gethostbyaddr_r exists
12576 set gethostbyaddr_r d_gethostbyaddr_r
12577 eval $inlibc
12578 case "$d_gethostbyaddr_r" in
12579 "$define")
12580         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12581         case "$d_gethostbyaddr_r_proto:$usethreads" in
12582         ":define")      d_gethostbyaddr_r_proto=define
12583                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
12584                 eval $hasproto ;;
12585         *)      ;;
12586         esac
12587         case "$d_gethostbyaddr_r_proto" in
12588         define)
12589         case "$gethostbyaddr_r_proto" in
12590         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12591         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
12592         esac
12593         case "$gethostbyaddr_r_proto" in
12594         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
12595         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
12596         esac
12597         case "$gethostbyaddr_r_proto" in
12598         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
12599         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
12600         esac
12601         case "$gethostbyaddr_r_proto" in
12602         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
12603         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
12604         esac
12605         case "$gethostbyaddr_r_proto" in
12606         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
12607         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
12608         esac
12609         case "$gethostbyaddr_r_proto" in
12610         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
12611         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
12612         esac
12613         case "$gethostbyaddr_r_proto" in
12614         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
12615         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
12616         esac
12617         case "$gethostbyaddr_r_proto" in
12618         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
12619         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
12620         esac
12621         case "$gethostbyaddr_r_proto" in
12622         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
12623         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
12624         esac
12625         case "$gethostbyaddr_r_proto" in
12626         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
12627         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
12628         esac
12629         case "$gethostbyaddr_r_proto" in
12630         ''|0) try='int gethostbyaddr_r(const void*, socklen_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12631         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_TsISBWRE ;;
12632         esac
12633         case "$gethostbyaddr_r_proto" in
12634         ''|0)   d_gethostbyaddr_r=undef
12635                 gethostbyaddr_r_proto=0
12636                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
12637         * )     case "$gethostbyaddr_r_proto" in
12638                 REENTRANT_PROTO*) ;;
12639                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
12640                 esac
12641                 echo "Prototype: $try" ;;
12642         esac
12643         ;;
12644         *)      case "$usethreads" in
12645                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
12646                 esac
12647                 d_gethostbyaddr_r=undef
12648                 gethostbyaddr_r_proto=0
12649                 ;;
12650         esac
12651         ;;
12652 *)      gethostbyaddr_r_proto=0
12653         ;;
12654 esac
12655
12656 : see if gethostbyname_r exists
12657 set gethostbyname_r d_gethostbyname_r
12658 eval $inlibc
12659 case "$d_gethostbyname_r" in
12660 "$define")
12661         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12662         case "$d_gethostbyname_r_proto:$usethreads" in
12663         ":define")      d_gethostbyname_r_proto=define
12664                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
12665                 eval $hasproto ;;
12666         *)      ;;
12667         esac
12668         case "$d_gethostbyname_r_proto" in
12669         define)
12670         case "$gethostbyname_r_proto" in
12671         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
12672         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
12673         esac
12674         case "$gethostbyname_r_proto" in
12675         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
12676         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
12677         esac
12678         case "$gethostbyname_r_proto" in
12679         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
12680         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
12681         esac
12682         case "$gethostbyname_r_proto" in
12683         ''|0)   d_gethostbyname_r=undef
12684                 gethostbyname_r_proto=0
12685                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
12686         * )     case "$gethostbyname_r_proto" in
12687                 REENTRANT_PROTO*) ;;
12688                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
12689                 esac
12690                 echo "Prototype: $try" ;;
12691         esac
12692         ;;
12693         *)      case "$usethreads" in
12694                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
12695                 esac
12696                 d_gethostbyname_r=undef
12697                 gethostbyname_r_proto=0
12698                 ;;
12699         esac
12700         ;;
12701 *)      gethostbyname_r_proto=0
12702         ;;
12703 esac
12704
12705 : see if gethostent_r exists
12706 set gethostent_r d_gethostent_r
12707 eval $inlibc
12708 case "$d_gethostent_r" in
12709 "$define")
12710         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12711         case "$d_gethostent_r_proto:$usethreads" in
12712         ":define")      d_gethostent_r_proto=define
12713                 set d_gethostent_r_proto gethostent_r $hdrs
12714                 eval $hasproto ;;
12715         *)      ;;
12716         esac
12717         case "$d_gethostent_r_proto" in
12718         define)
12719         case "$gethostent_r_proto" in
12720         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
12721         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
12722         esac
12723         case "$gethostent_r_proto" in
12724         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
12725         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
12726         esac
12727         case "$gethostent_r_proto" in
12728         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
12729         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
12730         esac
12731         case "$gethostent_r_proto" in
12732         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
12733         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
12734         esac
12735         case "$gethostent_r_proto" in
12736         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
12737         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
12738         esac
12739         case "$gethostent_r_proto" in
12740         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
12741         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
12742         esac
12743         case "$gethostent_r_proto" in
12744         ''|0)   d_gethostent_r=undef
12745                 gethostent_r_proto=0
12746                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
12747         * )     case "$gethostent_r_proto" in
12748                 REENTRANT_PROTO*) ;;
12749                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12750                 esac
12751                 echo "Prototype: $try" ;;
12752         esac
12753         ;;
12754         *)      case "$usethreads" in
12755                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12756                 esac
12757                 d_gethostent_r=undef
12758                 gethostent_r_proto=0
12759                 ;;
12760         esac
12761         ;;
12762 *)      gethostent_r_proto=0
12763         ;;
12764 esac
12765
12766 : see if prototypes for various gethostxxx netdb.h functions are available
12767 echo " "
12768 set d_gethostprotos gethostent $i_netdb netdb.h
12769 eval $hasproto
12770
12771 : see if getitimer exists
12772 set getitimer d_getitimer
12773 eval $inlibc
12774
12775 : see if getlogin exists
12776 set getlogin d_getlogin
12777 eval $inlibc
12778
12779 : see if getlogin_r exists
12780 set getlogin_r d_getlogin_r
12781 eval $inlibc
12782 case "$d_getlogin_r" in
12783 "$define")
12784         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12785         case "$d_getlogin_r_proto:$usethreads" in
12786         ":define")      d_getlogin_r_proto=define
12787                 set d_getlogin_r_proto getlogin_r $hdrs
12788                 eval $hasproto ;;
12789         *)      ;;
12790         esac
12791         case "$d_getlogin_r_proto" in
12792         define)
12793         case "$getlogin_r_proto" in
12794         ''|0) try='int getlogin_r(char*, size_t);'
12795         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12796         esac
12797         case "$getlogin_r_proto" in
12798         ''|0) try='int getlogin_r(char*, int);'
12799         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12800         esac
12801         case "$getlogin_r_proto" in
12802         ''|0) try='char* getlogin_r(char*, size_t);'
12803         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12804         esac
12805         case "$getlogin_r_proto" in
12806         ''|0) try='char* getlogin_r(char*, int);'
12807         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12808         esac
12809         case "$getlogin_r_proto" in
12810         ''|0)   d_getlogin_r=undef
12811                 getlogin_r_proto=0
12812                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12813         * )     case "$getlogin_r_proto" in
12814                 REENTRANT_PROTO*) ;;
12815                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12816                 esac
12817                 echo "Prototype: $try" ;;
12818         esac
12819         ;;
12820         *)      case "$usethreads" in
12821                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12822                 esac
12823                 d_getlogin_r=undef
12824                 getlogin_r_proto=0
12825                 ;;
12826         esac
12827         ;;
12828 *)      getlogin_r_proto=0
12829         ;;
12830 esac
12831
12832 : see if getmnt exists
12833 set getmnt d_getmnt
12834 eval $inlibc
12835
12836 : see if getmntent exists
12837 set getmntent d_getmntent
12838 eval $inlibc
12839
12840 : see if getnetbyaddr exists
12841 set getnetbyaddr d_getnbyaddr
12842 eval $inlibc
12843
12844 : see if getnetbyname exists
12845 set getnetbyname d_getnbyname
12846 eval $inlibc
12847
12848 : see if getnetent exists
12849 set getnetent d_getnent
12850 eval $inlibc
12851
12852 : see if getnetbyaddr_r exists
12853 set getnetbyaddr_r d_getnetbyaddr_r
12854 eval $inlibc
12855 case "$d_getnetbyaddr_r" in
12856 "$define")
12857         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12858         case "$d_getnetbyaddr_r_proto:$usethreads" in
12859         ":define")      d_getnetbyaddr_r_proto=define
12860                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12861                 eval $hasproto ;;
12862         *)      ;;
12863         esac
12864         case "$d_getnetbyaddr_r_proto" in
12865         define)
12866         case "$getnetbyaddr_r_proto" in
12867         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12868         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12869         esac
12870         case "$getnetbyaddr_r_proto" in
12871         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12872         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12873         esac
12874         case "$getnetbyaddr_r_proto" in
12875         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12876         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12877         esac
12878         case "$getnetbyaddr_r_proto" in
12879         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12880         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12881         esac
12882         case "$getnetbyaddr_r_proto" in
12883         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12884         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12885         esac
12886         case "$getnetbyaddr_r_proto" in
12887         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12888         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12889         esac
12890         case "$getnetbyaddr_r_proto" in
12891         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12892         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12893         esac
12894         case "$getnetbyaddr_r_proto" in
12895         ''|0) try='int getnetbyaddr_r(uint32_t, int, struct netent*, char*, size_t, struct netent**, int*);'
12896         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_uISBWRE ;;
12897         esac
12898         case "$getnetbyaddr_r_proto" in
12899         ''|0)   d_getnetbyaddr_r=undef
12900                 getnetbyaddr_r_proto=0
12901                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12902         * )     case "$getnetbyaddr_r_proto" in
12903                 REENTRANT_PROTO*) ;;
12904                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12905                 esac
12906                 echo "Prototype: $try" ;;
12907         esac
12908         ;;
12909         *)      case "$usethreads" in
12910                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12911                 esac
12912                 d_getnetbyaddr_r=undef
12913                 getnetbyaddr_r_proto=0
12914                 ;;
12915         esac
12916         ;;
12917 *)      getnetbyaddr_r_proto=0
12918         ;;
12919 esac
12920
12921 : see if getnetbyname_r exists
12922 set getnetbyname_r d_getnetbyname_r
12923 eval $inlibc
12924 case "$d_getnetbyname_r" in
12925 "$define")
12926         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12927         case "$d_getnetbyname_r_proto:$usethreads" in
12928         ":define")      d_getnetbyname_r_proto=define
12929                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12930                 eval $hasproto ;;
12931         *)      ;;
12932         esac
12933         case "$d_getnetbyname_r_proto" in
12934         define)
12935         case "$getnetbyname_r_proto" in
12936         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12937         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12938         esac
12939         case "$getnetbyname_r_proto" in
12940         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12941         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12942         esac
12943         case "$getnetbyname_r_proto" in
12944         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
12945         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
12946         esac
12947         case "$getnetbyname_r_proto" in
12948         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
12949         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
12950         esac
12951         case "$getnetbyname_r_proto" in
12952         ''|0)   d_getnetbyname_r=undef
12953                 getnetbyname_r_proto=0
12954                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
12955         * )     case "$getnetbyname_r_proto" in
12956                 REENTRANT_PROTO*) ;;
12957                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
12958                 esac
12959                 echo "Prototype: $try" ;;
12960         esac
12961         ;;
12962         *)      case "$usethreads" in
12963                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
12964                 esac
12965                 d_getnetbyname_r=undef
12966                 getnetbyname_r_proto=0
12967                 ;;
12968         esac
12969         ;;
12970 *)      getnetbyname_r_proto=0
12971         ;;
12972 esac
12973
12974 : see if getnetent_r exists
12975 set getnetent_r d_getnetent_r
12976 eval $inlibc
12977 case "$d_getnetent_r" in
12978 "$define")
12979         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12980         case "$d_getnetent_r_proto:$usethreads" in
12981         ":define")      d_getnetent_r_proto=define
12982                 set d_getnetent_r_proto getnetent_r $hdrs
12983                 eval $hasproto ;;
12984         *)      ;;
12985         esac
12986         case "$d_getnetent_r_proto" in
12987         define)
12988         case "$getnetent_r_proto" in
12989         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
12990         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
12991         esac
12992         case "$getnetent_r_proto" in
12993         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
12994         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
12995         esac
12996         case "$getnetent_r_proto" in
12997         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
12998         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
12999         esac
13000         case "$getnetent_r_proto" in
13001         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
13002         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
13003         esac
13004         case "$getnetent_r_proto" in
13005         ''|0) try='int getnetent_r(struct netent*, char*, int);'
13006         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
13007         esac
13008         case "$getnetent_r_proto" in
13009         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
13010         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
13011         esac
13012         case "$getnetent_r_proto" in
13013         ''|0)   d_getnetent_r=undef
13014                 getnetent_r_proto=0
13015                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
13016         * )     case "$getnetent_r_proto" in
13017                 REENTRANT_PROTO*) ;;
13018                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
13019                 esac
13020                 echo "Prototype: $try" ;;
13021         esac
13022         ;;
13023         *)      case "$usethreads" in
13024                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
13025                 esac
13026                 d_getnetent_r=undef
13027                 getnetent_r_proto=0
13028                 ;;
13029         esac
13030         ;;
13031 *)      getnetent_r_proto=0
13032         ;;
13033 esac
13034
13035 : see if prototypes for various getnetxxx netdb.h functions are available
13036 echo " "
13037 set d_getnetprotos getnetent $i_netdb netdb.h
13038 eval $hasproto
13039
13040 : see if getpagesize exists
13041 set getpagesize d_getpagsz
13042 eval $inlibc
13043
13044
13045 : see if getprotobyname exists
13046 set getprotobyname d_getpbyname
13047 eval $inlibc
13048
13049 : see if getprotobynumber exists
13050 set getprotobynumber d_getpbynumber
13051 eval $inlibc
13052
13053 : see if getprotoent exists
13054 set getprotoent d_getpent
13055 eval $inlibc
13056
13057 : see if getpgid exists
13058 set getpgid d_getpgid
13059 eval $inlibc
13060
13061 : see if getpgrp2 exists
13062 set getpgrp2 d_getpgrp2
13063 eval $inlibc
13064
13065 : see if getppid exists
13066 set getppid d_getppid
13067 eval $inlibc
13068
13069 : see if getpriority exists
13070 set getpriority d_getprior
13071 eval $inlibc
13072
13073 : see if getprotobyname_r exists
13074 set getprotobyname_r d_getprotobyname_r
13075 eval $inlibc
13076 case "$d_getprotobyname_r" in
13077 "$define")
13078         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13079         case "$d_getprotobyname_r_proto:$usethreads" in
13080         ":define")      d_getprotobyname_r_proto=define
13081                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
13082                 eval $hasproto ;;
13083         *)      ;;
13084         esac
13085         case "$d_getprotobyname_r_proto" in
13086         define)
13087         case "$getprotobyname_r_proto" in
13088         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
13089         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
13090         esac
13091         case "$getprotobyname_r_proto" in
13092         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
13093         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
13094         esac
13095         case "$getprotobyname_r_proto" in
13096         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
13097         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
13098         esac
13099         case "$getprotobyname_r_proto" in
13100         ''|0)   d_getprotobyname_r=undef
13101                 getprotobyname_r_proto=0
13102                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
13103         * )     case "$getprotobyname_r_proto" in
13104                 REENTRANT_PROTO*) ;;
13105                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
13106                 esac
13107                 echo "Prototype: $try" ;;
13108         esac
13109         ;;
13110         *)      case "$usethreads" in
13111                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
13112                 esac
13113                 d_getprotobyname_r=undef
13114                 getprotobyname_r_proto=0
13115                 ;;
13116         esac
13117         ;;
13118 *)      getprotobyname_r_proto=0
13119         ;;
13120 esac
13121
13122 : see if getprotobynumber_r exists
13123 set getprotobynumber_r d_getprotobynumber_r
13124 eval $inlibc
13125 case "$d_getprotobynumber_r" in
13126 "$define")
13127         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13128         case "$d_getprotobynumber_r_proto:$usethreads" in
13129         ":define")      d_getprotobynumber_r_proto=define
13130                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
13131                 eval $hasproto ;;
13132         *)      ;;
13133         esac
13134         case "$d_getprotobynumber_r_proto" in
13135         define)
13136         case "$getprotobynumber_r_proto" in
13137         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
13138         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
13139         esac
13140         case "$getprotobynumber_r_proto" in
13141         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
13142         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
13143         esac
13144         case "$getprotobynumber_r_proto" in
13145         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
13146         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
13147         esac
13148         case "$getprotobynumber_r_proto" in
13149         ''|0)   d_getprotobynumber_r=undef
13150                 getprotobynumber_r_proto=0
13151                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
13152         * )     case "$getprotobynumber_r_proto" in
13153                 REENTRANT_PROTO*) ;;
13154                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
13155                 esac
13156                 echo "Prototype: $try" ;;
13157         esac
13158         ;;
13159         *)      case "$usethreads" in
13160                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
13161                 esac
13162                 d_getprotobynumber_r=undef
13163                 getprotobynumber_r_proto=0
13164                 ;;
13165         esac
13166         ;;
13167 *)      getprotobynumber_r_proto=0
13168         ;;
13169 esac
13170
13171 : see if getprotoent_r exists
13172 set getprotoent_r d_getprotoent_r
13173 eval $inlibc
13174 case "$d_getprotoent_r" in
13175 "$define")
13176         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13177         case "$d_getprotoent_r_proto:$usethreads" in
13178         ":define")      d_getprotoent_r_proto=define
13179                 set d_getprotoent_r_proto getprotoent_r $hdrs
13180                 eval $hasproto ;;
13181         *)      ;;
13182         esac
13183         case "$d_getprotoent_r_proto" in
13184         define)
13185         case "$getprotoent_r_proto" in
13186         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
13187         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
13188         esac
13189         case "$getprotoent_r_proto" in
13190         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
13191         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
13192         esac
13193         case "$getprotoent_r_proto" in
13194         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
13195         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
13196         esac
13197         case "$getprotoent_r_proto" in
13198         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
13199         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
13200         esac
13201         case "$getprotoent_r_proto" in
13202         ''|0)   d_getprotoent_r=undef
13203                 getprotoent_r_proto=0
13204                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
13205         * )     case "$getprotoent_r_proto" in
13206                 REENTRANT_PROTO*) ;;
13207                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
13208                 esac
13209                 echo "Prototype: $try" ;;
13210         esac
13211         ;;
13212         *)      case "$usethreads" in
13213                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
13214                 esac
13215                 d_getprotoent_r=undef
13216                 getprotoent_r_proto=0
13217                 ;;
13218         esac
13219         ;;
13220 *)      getprotoent_r_proto=0
13221         ;;
13222 esac
13223
13224 : see if prototypes for various getprotoxxx netdb.h functions are available
13225 echo " "
13226 set d_getprotoprotos getprotoent $i_netdb netdb.h
13227 eval $hasproto
13228
13229 : see if getprpwnam exists
13230 set getprpwnam d_getprpwnam
13231 eval $inlibc
13232
13233 : see if getpwent exists
13234 set getpwent d_getpwent
13235 eval $inlibc
13236
13237 : see if getpwent_r exists
13238 set getpwent_r d_getpwent_r
13239 eval $inlibc
13240 case "$d_getpwent_r" in
13241 "$define")
13242         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13243         case "$d_getpwent_r_proto:$usethreads" in
13244         ":define")      d_getpwent_r_proto=define
13245                 set d_getpwent_r_proto getpwent_r $hdrs
13246                 eval $hasproto ;;
13247         *)      ;;
13248         esac
13249         case "$d_getpwent_r_proto" in
13250         define)
13251         case "$getpwent_r_proto" in
13252         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
13253         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
13254         esac
13255         case "$getpwent_r_proto" in
13256         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
13257         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
13258         esac
13259         case "$getpwent_r_proto" in
13260         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
13261         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
13262         esac
13263         case "$getpwent_r_proto" in
13264         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
13265         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
13266         esac
13267         case "$getpwent_r_proto" in
13268         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
13269         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
13270         esac
13271         case "$getpwent_r_proto" in
13272         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
13273         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
13274         esac
13275         case "$getpwent_r_proto" in
13276         ''|0)   d_getpwent_r=undef
13277                 getpwent_r_proto=0
13278                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
13279         * )     case "$getpwent_r_proto" in
13280                 REENTRANT_PROTO*) ;;
13281                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
13282                 esac
13283                 echo "Prototype: $try" ;;
13284         esac
13285         ;;
13286         *)      case "$usethreads" in
13287                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
13288                 esac
13289                 d_getpwent_r=undef
13290                 getpwent_r_proto=0
13291                 ;;
13292         esac
13293         ;;
13294 *)      getpwent_r_proto=0
13295         ;;
13296 esac
13297
13298 : see if getpwnam_r exists
13299 set getpwnam_r d_getpwnam_r
13300 eval $inlibc
13301 case "$d_getpwnam_r" in
13302 "$define")
13303         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13304         case "$d_getpwnam_r_proto:$usethreads" in
13305         ":define")      d_getpwnam_r_proto=define
13306                 set d_getpwnam_r_proto getpwnam_r $hdrs
13307                 eval $hasproto ;;
13308         *)      ;;
13309         esac
13310         case "$d_getpwnam_r_proto" in
13311         define)
13312         case "$getpwnam_r_proto" in
13313         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
13314         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
13315         esac
13316         case "$getpwnam_r_proto" in
13317         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
13318         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
13319         esac
13320         case "$getpwnam_r_proto" in
13321         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
13322         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
13323         esac
13324         case "$getpwnam_r_proto" in
13325         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
13326         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
13327         esac
13328         case "$getpwnam_r_proto" in
13329         ''|0)   d_getpwnam_r=undef
13330                 getpwnam_r_proto=0
13331                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
13332         * )     case "$getpwnam_r_proto" in
13333                 REENTRANT_PROTO*) ;;
13334                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
13335                 esac
13336                 echo "Prototype: $try" ;;
13337         esac
13338         ;;
13339         *)      case "$usethreads" in
13340                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
13341                 esac
13342                 d_getpwnam_r=undef
13343                 getpwnam_r_proto=0
13344                 ;;
13345         esac
13346         ;;
13347 *)      getpwnam_r_proto=0
13348         ;;
13349 esac
13350
13351 : see if getpwuid_r exists
13352 set getpwuid_r d_getpwuid_r
13353 eval $inlibc
13354 case "$d_getpwuid_r" in
13355 "$define")
13356         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13357         case "$d_getpwuid_r_proto:$usethreads" in
13358         ":define")      d_getpwuid_r_proto=define
13359                 set d_getpwuid_r_proto getpwuid_r $hdrs
13360                 eval $hasproto ;;
13361         *)      ;;
13362         esac
13363         case "$d_getpwuid_r_proto" in
13364         define)
13365         case "$getpwuid_r_proto" in
13366         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
13367         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
13368         esac
13369         case "$getpwuid_r_proto" in
13370         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
13371         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
13372         esac
13373         case "$getpwuid_r_proto" in
13374         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
13375         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
13376         esac
13377         case "$getpwuid_r_proto" in
13378         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
13379         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
13380         esac
13381         case "$getpwuid_r_proto" in
13382         ''|0)   d_getpwuid_r=undef
13383                 getpwuid_r_proto=0
13384                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
13385         * )     case "$getpwuid_r_proto" in
13386                 REENTRANT_PROTO*) ;;
13387                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
13388                 esac
13389                 echo "Prototype: $try" ;;
13390         esac
13391         ;;
13392         *)      case "$usethreads" in
13393                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
13394                 esac
13395                 d_getpwuid_r=undef
13396                 getpwuid_r_proto=0
13397                 ;;
13398         esac
13399         ;;
13400 *)      getpwuid_r_proto=0
13401         ;;
13402 esac
13403
13404
13405 : see if getservbyname exists
13406 set getservbyname d_getsbyname
13407 eval $inlibc
13408
13409 : see if getservbyport exists
13410 set getservbyport d_getsbyport
13411 eval $inlibc
13412
13413 : see if getservent exists
13414 set getservent d_getsent
13415 eval $inlibc
13416
13417 : see if getservbyname_r exists
13418 set getservbyname_r d_getservbyname_r
13419 eval $inlibc
13420 case "$d_getservbyname_r" in
13421 "$define")
13422         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13423         case "$d_getservbyname_r_proto:$usethreads" in
13424         ":define")      d_getservbyname_r_proto=define
13425                 set d_getservbyname_r_proto getservbyname_r $hdrs
13426                 eval $hasproto ;;
13427         *)      ;;
13428         esac
13429         case "$d_getservbyname_r_proto" in
13430         define)
13431         case "$getservbyname_r_proto" in
13432         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
13433         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
13434         esac
13435         case "$getservbyname_r_proto" in
13436         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
13437         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
13438         esac
13439         case "$getservbyname_r_proto" in
13440         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
13441         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
13442         esac
13443         case "$getservbyname_r_proto" in
13444         ''|0)   d_getservbyname_r=undef
13445                 getservbyname_r_proto=0
13446                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
13447         * )     case "$getservbyname_r_proto" in
13448                 REENTRANT_PROTO*) ;;
13449                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
13450                 esac
13451                 echo "Prototype: $try" ;;
13452         esac
13453         ;;
13454         *)      case "$usethreads" in
13455                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
13456                 esac
13457                 d_getservbyname_r=undef
13458                 getservbyname_r_proto=0
13459                 ;;
13460         esac
13461         ;;
13462 *)      getservbyname_r_proto=0
13463         ;;
13464 esac
13465
13466 : see if getservbyport_r exists
13467 set getservbyport_r d_getservbyport_r
13468 eval $inlibc
13469 case "$d_getservbyport_r" in
13470 "$define")
13471         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13472         case "$d_getservbyport_r_proto:$usethreads" in
13473         ":define")      d_getservbyport_r_proto=define
13474                 set d_getservbyport_r_proto getservbyport_r $hdrs
13475                 eval $hasproto ;;
13476         *)      ;;
13477         esac
13478         case "$d_getservbyport_r_proto" in
13479         define)
13480         case "$getservbyport_r_proto" in
13481         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
13482         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
13483         esac
13484         case "$getservbyport_r_proto" in
13485         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
13486         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
13487         esac
13488         case "$getservbyport_r_proto" in
13489         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
13490         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
13491         esac
13492         case "$getservbyport_r_proto" in
13493         ''|0)   d_getservbyport_r=undef
13494                 getservbyport_r_proto=0
13495                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
13496         * )     case "$getservbyport_r_proto" in
13497                 REENTRANT_PROTO*) ;;
13498                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
13499                 esac
13500                 echo "Prototype: $try" ;;
13501         esac
13502         ;;
13503         *)      case "$usethreads" in
13504                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
13505                 esac
13506                 d_getservbyport_r=undef
13507                 getservbyport_r_proto=0
13508                 ;;
13509         esac
13510         ;;
13511 *)      getservbyport_r_proto=0
13512         ;;
13513 esac
13514
13515 : see if getservent_r exists
13516 set getservent_r d_getservent_r
13517 eval $inlibc
13518 case "$d_getservent_r" in
13519 "$define")
13520         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13521         case "$d_getservent_r_proto:$usethreads" in
13522         ":define")      d_getservent_r_proto=define
13523                 set d_getservent_r_proto getservent_r $hdrs
13524                 eval $hasproto ;;
13525         *)      ;;
13526         esac
13527         case "$d_getservent_r_proto" in
13528         define)
13529         case "$getservent_r_proto" in
13530         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
13531         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
13532         esac
13533         case "$getservent_r_proto" in
13534         ''|0) try='int getservent_r(struct servent*, char*, int);'
13535         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
13536         esac
13537         case "$getservent_r_proto" in
13538         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
13539         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
13540         esac
13541         case "$getservent_r_proto" in
13542         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
13543         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
13544         esac
13545         case "$getservent_r_proto" in
13546         ''|0)   d_getservent_r=undef
13547                 getservent_r_proto=0
13548                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
13549         * )     case "$getservent_r_proto" in
13550                 REENTRANT_PROTO*) ;;
13551                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
13552                 esac
13553                 echo "Prototype: $try" ;;
13554         esac
13555         ;;
13556         *)      case "$usethreads" in
13557                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
13558                 esac
13559                 d_getservent_r=undef
13560                 getservent_r_proto=0
13561                 ;;
13562         esac
13563         ;;
13564 *)      getservent_r_proto=0
13565         ;;
13566 esac
13567
13568 : see if prototypes for various getservxxx netdb.h functions are available
13569 echo " "
13570 set d_getservprotos getservent $i_netdb netdb.h
13571 eval $hasproto
13572
13573 : see if getspnam exists
13574 set getspnam d_getspnam
13575 eval $inlibc
13576
13577 : see if this is a shadow.h system
13578 set shadow.h i_shadow
13579 eval $inhdr
13580
13581 : see if getspnam_r exists
13582 set getspnam_r d_getspnam_r
13583 eval $inlibc
13584 case "$d_getspnam_r" in
13585 "$define")
13586         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
13587         case "$d_getspnam_r_proto:$usethreads" in
13588         ":define")      d_getspnam_r_proto=define
13589                 set d_getspnam_r_proto getspnam_r $hdrs
13590                 eval $hasproto ;;
13591         *)      ;;
13592         esac
13593         case "$d_getspnam_r_proto" in
13594         define)
13595         case "$getspnam_r_proto" in
13596         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
13597         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
13598         esac
13599         case "$getspnam_r_proto" in
13600         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
13601         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
13602         esac
13603         case "$getspnam_r_proto" in
13604         ''|0)   d_getspnam_r=undef
13605                 getspnam_r_proto=0
13606                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
13607         * )     case "$getspnam_r_proto" in
13608                 REENTRANT_PROTO*) ;;
13609                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
13610                 esac
13611                 echo "Prototype: $try" ;;
13612         esac
13613         ;;
13614         *)      case "$usethreads" in
13615                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
13616                 esac
13617                 d_getspnam_r=undef
13618                 getspnam_r_proto=0
13619                 ;;
13620         esac
13621         ;;
13622 *)      getspnam_r_proto=0
13623         ;;
13624 esac
13625
13626 : see if gettimeofday or ftime exists
13627 set gettimeofday d_gettimeod
13628 eval $inlibc
13629 case "$d_gettimeod" in
13630 "$undef")
13631         set ftime d_ftime 
13632         eval $inlibc
13633         ;;
13634 *)
13635         val="$undef"; set d_ftime; eval $setvar
13636         ;;
13637 esac
13638 case "$d_gettimeod$d_ftime" in
13639 "$undef$undef")
13640         echo " "
13641         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
13642         ;;
13643 esac
13644
13645 : see if gmtime_r exists
13646 set gmtime_r d_gmtime_r
13647 eval $inlibc
13648 case "$d_gmtime_r" in
13649 "$define")
13650         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13651         case "$d_gmtime_r_proto:$usethreads" in
13652         ":define")      d_gmtime_r_proto=define
13653                 set d_gmtime_r_proto gmtime_r $hdrs
13654                 eval $hasproto ;;
13655         *)      ;;
13656         esac
13657         case "$d_gmtime_r_proto" in
13658         define)
13659         case "$gmtime_r_proto" in
13660         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13661         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13662         esac
13663         case "$gmtime_r_proto" in
13664         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13665         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13666         esac
13667         case "$gmtime_r_proto" in
13668         ''|0)   d_gmtime_r=undef
13669                 gmtime_r_proto=0
13670                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13671         * )     case "$gmtime_r_proto" in
13672                 REENTRANT_PROTO*) ;;
13673                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13674                 esac
13675                 echo "Prototype: $try" ;;
13676         esac
13677         ;;
13678         *)      case "$usethreads" in
13679                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13680                 esac
13681                 d_gmtime_r=undef
13682                 gmtime_r_proto=0
13683                 ;;
13684         esac
13685         ;;
13686 *)      gmtime_r_proto=0
13687         ;;
13688 esac
13689
13690 : see if hasmntopt exists
13691 set hasmntopt d_hasmntopt
13692 eval $inlibc
13693
13694 : see if this is a netinet/in.h or sys/in.h system
13695 set netinet/in.h i_niin sys/in.h i_sysin
13696 eval $inhdr
13697
13698 : see if arpa/inet.h has to be included
13699 set arpa/inet.h i_arpainet
13700 eval $inhdr
13701
13702 : see if htonl --and friends-- exists
13703 val=''
13704 set htonl val
13705 eval $inlibc
13706
13707 : Maybe they are macros.
13708 case "$val" in
13709 $undef)
13710         $cat >htonl.c <<EOM
13711 #include <stdio.h>
13712 #include <sys/types.h>
13713 #$i_niin I_NETINET_IN
13714 #$i_sysin I_SYS_IN
13715 #$i_arpainet I_ARPA_INET
13716 #ifdef I_NETINET_IN
13717 #include <netinet/in.h>
13718 #endif
13719 #ifdef I_SYS_IN
13720 #include <sys/in.h>
13721 #endif
13722 #ifdef I_ARPA_INET
13723 #include <arpa/inet.h>
13724 #endif
13725 #ifdef htonl
13726 printf("Defined as a macro.");
13727 #endif
13728 EOM
13729         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
13730         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
13731                 val="$define"
13732                 echo "But it seems to be defined as a macro." >&4
13733         fi
13734         $rm -f htonl.?
13735         ;;
13736 esac
13737 set d_htonl
13738 eval $setvar
13739
13740 : see if ilogbl exists
13741 set ilogbl d_ilogbl
13742 eval $inlibc
13743
13744 : index or strchr
13745 echo " "
13746 if set index val -f; eval $csym; $val; then
13747         if set strchr val -f d_strchr; eval $csym; $val; then
13748                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
13749                         val="$define"
13750                         vali="$undef"
13751                         echo "strchr() found." >&4
13752                 else
13753                         val="$undef"
13754                         vali="$define"
13755                         echo "index() found." >&4
13756                 fi
13757         else
13758                 val="$undef"
13759                 vali="$define"
13760                 echo "index() found." >&4
13761         fi
13762 else
13763         if set strchr val -f d_strchr; eval $csym; $val; then
13764                 val="$define"
13765                 vali="$undef"
13766                 echo "strchr() found." >&4
13767         else
13768                 echo "No index() or strchr() found!" >&4
13769                 val="$undef"
13770                 vali="$undef"
13771         fi
13772 fi
13773 set d_strchr; eval $setvar
13774 val="$vali"
13775 set d_index; eval $setvar
13776
13777 : check whether inet_aton exists
13778 set inet_aton d_inetaton
13779 eval $inlibc
13780
13781 : Look for isascii
13782 echo " "
13783 $cat >isascii.c <<EOCP
13784 #include <stdio.h>
13785 #include <ctype.h>
13786 #$i_stdlib I_STDLIB
13787 #ifdef I_STDLIB
13788 #include <stdlib.h>
13789 #endif
13790 int main() {
13791         int c = 'A';
13792         if (isascii(c))
13793                 exit(0);
13794         else
13795                 exit(1);
13796 }
13797 EOCP
13798 set isascii
13799 if eval $compile; then
13800         echo "isascii() found." >&4
13801         val="$define"
13802 else
13803         echo "isascii() NOT found." >&4
13804         val="$undef"
13805 fi
13806 set d_isascii
13807 eval $setvar
13808 $rm -f isascii*
13809
13810 : see if isfinite exists
13811 set isfinite d_isfinite
13812 eval $inlibc
13813
13814 : see if isinf exists
13815 set isinf d_isinf
13816 eval $inlibc
13817
13818 : see if isnan exists
13819 set isnan d_isnan
13820 eval $inlibc
13821
13822 : see if isnanl exists
13823 set isnanl d_isnanl
13824 eval $inlibc
13825
13826 : see if killpg exists
13827 set killpg d_killpg
13828 eval $inlibc
13829
13830 : see if lchown exists
13831 echo " "
13832 $cat > try.c <<'EOCP'
13833 /* System header to define __stub macros and hopefully few prototypes,
13834     which can conflict with char lchown(); below.  */
13835 #include <assert.h>
13836 /* Override any gcc2 internal prototype to avoid an error.  */
13837 /* We use char because int might match the return type of a gcc2
13838    builtin and then its argument prototype would still apply.  */
13839 char lchown();
13840 int main() {
13841     /*  The GNU C library defines this for functions which it implements
13842         to always fail with ENOSYS.  Some functions are actually named
13843         something starting with __ and the normal name is an alias.  */
13844 #if defined (__stub_lchown) || defined (__stub___lchown)
13845 choke me
13846 #else
13847 lchown();
13848 #endif
13849 ; return 0; }
13850 EOCP
13851 set try
13852 if eval $compile; then
13853     $echo "lchown() found." >&4
13854     val="$define"
13855 else
13856     $echo "lchown() NOT found." >&4
13857     val="$undef"
13858 fi
13859 set d_lchown
13860 eval $setvar
13861
13862 : See if number of significant digits in a double precision number is known
13863 echo " "
13864 $cat >ldbl_dig.c <<EOM
13865 #$i_limits I_LIMITS
13866 #$i_float I_FLOAT
13867 #ifdef I_LIMITS
13868 #include <limits.h>
13869 #endif
13870 #ifdef I_FLOAT
13871 #include <float.h>
13872 #endif
13873 #ifdef LDBL_DIG
13874 printf("Contains LDBL_DIG");
13875 #endif
13876 EOM
13877 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13878 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13879         echo "LDBL_DIG found." >&4
13880         val="$define"
13881 else
13882         echo "LDBL_DIG NOT found." >&4
13883         val="$undef"
13884 fi
13885 $rm -f ldbl_dig.?
13886 set d_ldbl_dig
13887 eval $setvar
13888
13889 : see if link exists
13890 set link d_link
13891 eval $inlibc
13892
13893 : see if localtime_r exists
13894 set localtime_r d_localtime_r
13895 eval $inlibc
13896 case "$d_localtime_r" in
13897 "$define")
13898         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13899         case "$d_localtime_r_proto:$usethreads" in
13900         ":define")      d_localtime_r_proto=define
13901                 set d_localtime_r_proto localtime_r $hdrs
13902                 eval $hasproto ;;
13903         *)      ;;
13904         esac
13905         case "$d_localtime_r_proto" in
13906         define)
13907         case "$localtime_r_proto" in
13908         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13909         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13910         esac
13911         case "$localtime_r_proto" in
13912         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13913         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13914         esac
13915         case "$localtime_r_proto" in
13916         ''|0)   d_localtime_r=undef
13917                 localtime_r_proto=0
13918                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13919         * )     case "$localtime_r_proto" in
13920                 REENTRANT_PROTO*) ;;
13921                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13922                 esac
13923                 echo "Prototype: $try" ;;
13924         esac
13925         ;;
13926         *)      case "$usethreads" in
13927                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13928                 esac
13929                 d_localtime_r=undef
13930                 localtime_r_proto=0
13931                 ;;
13932         esac
13933         ;;
13934 *)      localtime_r_proto=0
13935         ;;
13936 esac
13937
13938 : see if localeconv exists
13939 set localeconv d_locconv
13940 eval $inlibc
13941
13942 : see if lockf exists
13943 set lockf d_lockf
13944 eval $inlibc
13945
13946 : see if prototype for lseek is available
13947 echo " "
13948 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
13949 eval $hasproto
13950
13951 : see if lstat exists
13952 set lstat d_lstat
13953 eval $inlibc
13954
13955 : see if madvise exists
13956 set madvise d_madvise
13957 eval $inlibc
13958
13959 : see if mblen exists
13960 set mblen d_mblen
13961 eval $inlibc
13962
13963 : see if mbstowcs exists
13964 set mbstowcs d_mbstowcs
13965 eval $inlibc
13966
13967 : see if mbtowc exists
13968 set mbtowc d_mbtowc
13969 eval $inlibc
13970
13971 : see if memchr exists
13972 set memchr d_memchr
13973 eval $inlibc
13974
13975 : see if memcmp exists
13976 set memcmp d_memcmp
13977 eval $inlibc
13978
13979 : see if memcpy exists
13980 set memcpy d_memcpy
13981 eval $inlibc
13982
13983 : see if memmove exists
13984 set memmove d_memmove
13985 eval $inlibc
13986
13987 : see if memset exists
13988 set memset d_memset
13989 eval $inlibc
13990
13991 : see if mkdir exists
13992 set mkdir d_mkdir
13993 eval $inlibc
13994
13995 : see if mkdtemp exists
13996 set mkdtemp d_mkdtemp
13997 eval $inlibc
13998
13999 : see if mkfifo exists
14000 set mkfifo d_mkfifo
14001 eval $inlibc
14002
14003 : see if mkstemp exists
14004 set mkstemp d_mkstemp
14005 eval $inlibc
14006
14007 : see if mkstemps exists
14008 set mkstemps d_mkstemps
14009 eval $inlibc
14010
14011 : see if mktime exists
14012 set mktime d_mktime
14013 eval $inlibc
14014
14015 : see if this is a sys/mman.h system
14016 set sys/mman.h i_sysmman
14017 eval $inhdr
14018
14019 : see if mmap exists
14020 set mmap d_mmap
14021 eval $inlibc
14022 : see what shmat returns
14023 : default to something harmless
14024 mmaptype='void *'
14025 case "$i_sysmman$d_mmap" in
14026 "$define$define")
14027         $cat >mmap.c <<'END'
14028 #include <sys/mman.h>
14029 void *mmap();
14030 END
14031         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
14032                 mmaptype='void *'
14033         else
14034                 mmaptype='caddr_t'
14035         fi
14036         echo "and it returns ($mmaptype)." >&4
14037         ;;
14038 esac
14039
14040
14041
14042 : see if sqrtl exists
14043 set sqrtl d_sqrtl
14044 eval $inlibc
14045
14046 : see if scalbnl exists
14047 set scalbnl d_scalbnl
14048 eval $inlibc
14049
14050 : see if modfl exists
14051 set modfl d_modfl
14052 eval $inlibc
14053
14054 : see if prototype for modfl is available
14055 echo " "
14056 set d_modflproto modfl math.h
14057 eval $hasproto
14058
14059 d_modfl_pow32_bug="$undef"
14060
14061 case "$d_longdbl$d_modfl" in
14062 $define$define)
14063         $cat <<EOM
14064 Checking to see whether your modfl() is okay for large values...
14065 EOM
14066 $cat >try.c <<EOCP
14067 #include <math.h> 
14068 #include <stdio.h>
14069 EOCP
14070 if $test "X$d_modflproto" != "X$define"; then
14071         $cat >>try.c <<EOCP
14072 /* Sigh. many current glibcs provide the function, but do not prototype it.  */ 
14073 long double modfl (long double, long double *);
14074 EOCP
14075 fi
14076 $cat >>try.c <<EOCP
14077 int main() {
14078     long double nv = 4294967303.15;
14079     long double v, w;
14080     v = modfl(nv, &w);         
14081 #ifdef __GLIBC__
14082     printf("glibc");
14083 #endif
14084     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
14085     return 0;
14086 }
14087 EOCP
14088         case "$osname:$gccversion" in
14089         aix:)   saveccflags="$ccflags"
14090                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
14091         esac
14092         set try
14093         if eval $compile; then
14094                 foo=`$run ./try`
14095                 case "$foo" in
14096                 *" 4294967303.150000 1.150000 4294967302.000000")
14097                         echo >&4 "Your modfl() is broken for large values."
14098                         d_modfl_pow32_bug="$define"
14099                         case "$foo" in
14100                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
14101                         ;;
14102                         esac
14103                         ;;
14104                 *" 4294967303.150000 0.150000 4294967303.000000")
14105                         echo >&4 "Your modfl() seems okay for large values."
14106                         ;;
14107                 *)      echo >&4 "I don't understand your modfl() at all."
14108                         d_modfl="$undef"
14109                         ;;
14110                 esac
14111                 $rm -f try.* try core core.try.*
14112         else
14113                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
14114                 d_modfl="$undef"
14115         fi
14116         case "$osname:$gccversion" in
14117         aix:)   ccflags="$saveccflags" ;; # restore
14118         esac
14119         ;;
14120 esac
14121
14122 if $test "$uselongdouble" = "$define"; then
14123     message=""
14124     if $test "$d_sqrtl" != "$define"; then
14125         message="$message sqrtl"
14126     fi
14127     if $test "$d_modfl" != "$define"; then
14128         if $test "$d_aintl:$d_copysignl" = "$define:$define"; then
14129             echo "You have both aintl and copysignl, so I can emulate modfl."
14130         else
14131             message="$message modfl"
14132         fi
14133     fi
14134     if $test "$d_frexpl" != "$define"; then
14135         if $test "$d_ilogbl:$d_scalbnl" = "$define:$define"; then
14136             echo "You have both ilogbl and scalbnl, so I can emulate frexpl."
14137         else
14138             message="$message frexpl"
14139         fi
14140     fi
14141
14142     if $test "$message" != ""; then
14143         $cat <<EOM >&4
14144
14145 *** You requested the use of long doubles but you do not seem to have
14146 *** the following mathematical functions needed for long double support:
14147 ***    $message
14148 *** Please rerun Configure without -Duselongdouble and/or -Dusemorebits.
14149 *** Cannot continue, aborting.
14150
14151 EOM
14152
14153         exit 1
14154     fi
14155 fi
14156
14157 : see if mprotect exists
14158 set mprotect d_mprotect
14159 eval $inlibc
14160
14161 : see if msgctl exists
14162 set msgctl d_msgctl
14163 eval $inlibc
14164
14165 : see if msgget exists
14166 set msgget d_msgget
14167 eval $inlibc
14168
14169 : see if msgsnd exists
14170 set msgsnd d_msgsnd
14171 eval $inlibc
14172
14173 : see if msgrcv exists
14174 set msgrcv d_msgrcv
14175 eval $inlibc
14176
14177 : see how much of the 'msg*(2)' library is present.
14178 h_msg=true
14179 echo " "
14180 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
14181 *"$undef"*) h_msg=false;;
14182 esac
14183 case "$osname" in
14184 freebsd)
14185     case "`ipcs 2>&1`" in
14186     "SVID messages"*"not configured"*)
14187         echo "Your $osname does not have the msg*(2) configured." >&4
14188         h_msg=false
14189         val="$undef"
14190         set msgctl d_msgctl
14191         eval $setvar
14192         set msgget d_msgget
14193         eval $setvar
14194         set msgsnd d_msgsnd
14195         eval $setvar
14196         set msgrcv d_msgrcv
14197         eval $setvar
14198         ;;
14199     esac
14200     ;;
14201 esac
14202 : we could also check for sys/ipc.h ...
14203 if $h_msg && $test `./findhdr sys/msg.h`; then
14204         echo "You have the full msg*(2) library." >&4
14205         val="$define"
14206 else
14207         echo "You don't have the full msg*(2) library." >&4
14208         val="$undef"
14209 fi
14210 set d_msg
14211 eval $setvar
14212
14213
14214 echo " "
14215 echo "Checking to see if your system supports struct msghdr..." >&4
14216 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
14217 eval $hasstruct
14218 case "$d_msghdr_s" in
14219 "$define")      echo "Yes, it does."   ;;
14220 *)              echo "No, it doesn't." ;;
14221 esac
14222
14223
14224 : see if msync exists
14225 set msync d_msync
14226 eval $inlibc
14227
14228 : see if munmap exists
14229 set munmap d_munmap
14230 eval $inlibc
14231
14232 : see if nanosleep exists
14233 set nanosleep d_nanosleep
14234 eval $inlibc
14235
14236 : see if nice exists
14237 set nice d_nice
14238 eval $inlibc
14239
14240 : see if this is a langinfo.h system
14241 set langinfo.h i_langinfo
14242 eval $inhdr
14243
14244 : see if nl_langinfo exists
14245 set nl_langinfo d_nl_langinfo
14246 eval $inlibc
14247
14248 : check for length of character
14249 echo " "
14250 case "$charsize" in
14251 '')
14252         echo "Checking to see how big your characters are (hey, you never know)..." >&4
14253         $cat >try.c <<EOCP
14254 #include <stdio.h>
14255 #$i_stdlib I_STDLIB
14256 #ifdef I_STDLIB
14257 #include <stdlib.h>
14258 #endif
14259 int main()
14260 {
14261     printf("%d\n", (int)sizeof(char));
14262     exit(0);
14263 }
14264 EOCP
14265         set try
14266         if eval $compile_ok; then
14267                 dflt=`$run ./try`
14268         else
14269                 dflt='1'
14270                 echo "(I can't seem to compile the test program.  Guessing...)"
14271         fi
14272         ;;
14273 *)
14274         dflt="$charsize"
14275         ;;
14276 esac
14277 rp="What is the size of a character (in bytes)?"
14278 . ./myread
14279 charsize="$ans"
14280 $rm -f try.c try
14281
14282 : check for volatile keyword
14283 echo " "
14284 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
14285 $cat >try.c <<'EOCP'
14286 int main()
14287 {
14288         typedef struct _goo_struct goo_struct;
14289         goo_struct * volatile goo = ((goo_struct *)0);
14290         struct _goo_struct {
14291                 long long_int;
14292                 int reg_int;
14293                 char char_var;
14294         };
14295         typedef unsigned short foo_t;
14296         char *volatile foo;
14297         volatile int bar;
14298         volatile foo_t blech;
14299         foo = foo;
14300 }
14301 EOCP
14302 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
14303         val="$define"
14304         echo "Yup, it does."
14305 else
14306         val="$undef"
14307         echo "Nope, it doesn't."
14308 fi
14309 set d_volatile
14310 eval $setvar
14311 $rm -f try.*
14312
14313
14314 echo " "
14315 $echo "Choosing the C types to be used for Perl's internal types..." >&4
14316
14317 case "$use64bitint:$d_quad:$quadtype" in
14318 define:define:?*)
14319         ivtype="$quadtype"
14320         uvtype="$uquadtype"
14321         ivsize=8
14322         uvsize=8
14323         ;;
14324 *)      ivtype="long"
14325         uvtype="unsigned long"
14326         ivsize=$longsize
14327         uvsize=$longsize
14328         ;;
14329 esac
14330
14331 case "$uselongdouble:$d_longdbl" in
14332 define:define)
14333         nvtype="long double"
14334         nvsize=$longdblsize
14335         ;;
14336 *)      nvtype=double
14337         nvsize=$doublesize
14338         ;;
14339 esac
14340
14341 $echo "(IV will be "$ivtype", $ivsize bytes)"
14342 $echo "(UV will be "$uvtype", $uvsize bytes)"
14343 $echo "(NV will be "$nvtype", $nvsize bytes)"
14344
14345 $cat >try.c <<EOCP
14346 #$i_inttypes I_INTTYPES
14347 #ifdef I_INTTYPES
14348 #include <inttypes.h>
14349 #endif
14350 #include <stdio.h>
14351 int main() {
14352 #ifdef INT8
14353    int8_t i =  INT8_MAX;
14354   uint8_t u = UINT8_MAX;
14355   printf("int8_t\n");
14356 #endif
14357 #ifdef INT16
14358    int16_t i =  INT16_MAX;
14359   uint16_t i = UINT16_MAX;
14360   printf("int16_t\n");
14361 #endif
14362 #ifdef INT32
14363    int32_t i =  INT32_MAX;
14364   uint32_t u = UINT32_MAX;
14365   printf("int32_t\n");
14366 #endif
14367 }
14368 EOCP
14369
14370 case "$i8type" in
14371 '')     case "$charsize" in
14372         1)      i8type=char
14373                 u8type="unsigned char"
14374                 i8size=$charsize
14375                 u8size=$charsize
14376                 ;;
14377         esac
14378         ;;
14379 esac
14380 case "$i8type" in
14381 '')     set try -DINT8
14382         if eval $compile; then
14383                 case "`$run ./try`" in
14384                 int8_t) i8type=int8_t
14385                         u8type=uint8_t
14386                         i8size=1
14387                         u8size=1
14388                         ;;
14389                 esac
14390         fi
14391         ;;
14392 esac
14393 case "$i8type" in
14394 '')     if $test $charsize -ge 1; then
14395                 i8type=char
14396                 u8type="unsigned char"
14397                 i8size=$charsize
14398                 u8size=$charsize
14399         fi
14400         ;;
14401 esac
14402
14403 case "$i16type" in
14404 '')     case "$shortsize" in
14405         2)      i16type=short
14406                 u16type="unsigned short"
14407                 i16size=$shortsize
14408                 u16size=$shortsize
14409                 ;;
14410         esac
14411         ;;
14412 esac
14413 case "$i16type" in
14414 '')     set try -DINT16
14415         if eval $compile; then
14416                 case "`$run ./try`" in
14417                 int16_t)
14418                         i16type=int16_t
14419                         u16type=uint16_t
14420                         i16size=2
14421                         u16size=2
14422                         ;;
14423                 esac
14424         fi
14425         ;;
14426 esac
14427 case "$i16type" in
14428 '')     if $test $shortsize -ge 2; then
14429                 i16type=short
14430                 u16type="unsigned short"
14431                 i16size=$shortsize
14432                 u16size=$shortsize
14433         fi
14434         ;;
14435 esac
14436
14437 case "$i32type" in
14438 '')     case "$longsize" in
14439         4)      i32type=long
14440                 u32type="unsigned long"
14441                 i32size=$longsize
14442                 u32size=$longsize
14443                 ;;
14444         *)      case "$intsize" in
14445                 4)      i32type=int
14446                         u32type="unsigned int"
14447                         i32size=$intsize
14448                         u32size=$intsize
14449                         ;;
14450                 esac
14451                 ;;
14452         esac
14453         ;;
14454 esac
14455 case "$i32type" in
14456 '')     set try -DINT32
14457         if eval $compile; then
14458                 case "`$run ./try`" in
14459                 int32_t)
14460                         i32type=int32_t
14461                         u32type=uint32_t
14462                         i32size=4
14463                         u32size=4
14464                         ;;
14465                 esac
14466         fi
14467         ;;
14468 esac
14469 case "$i32type" in
14470 '')     if $test $intsize -ge 4; then
14471                 i32type=int
14472                 u32type="unsigned int"
14473                 i32size=$intsize
14474                 u32size=$intsize
14475         fi
14476         ;;
14477 esac
14478
14479 case "$i64type" in
14480 '')     case "$d_quad:$quadtype" in
14481         define:?*)
14482                 i64type="$quadtype"
14483                 u64type="$uquadtype"
14484                 i64size=8
14485                 u64size=8
14486                 ;;
14487         esac
14488         ;;
14489 esac
14490
14491 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
14492 : volatile so that the compiler has to store it out to memory.
14493 if test X"$d_volatile" = X"$define"; then
14494         volatile=volatile
14495 fi
14496 $cat <<EOP >try.c
14497 #include <stdio.h>
14498 #$i_stdlib I_STDLIB
14499 #ifdef I_STDLIB
14500 #include <stdlib.h>
14501 #endif
14502 #include <sys/types.h>
14503 #include <signal.h>
14504 #ifdef SIGFPE
14505 $volatile int bletched = 0;
14506 $signal_t blech(s) int s; { bletched = 1; }
14507 #endif
14508 int main() {
14509     $uvtype u = 0;
14510     $nvtype d;
14511     int     n = 8 * $uvsize;
14512     int     i;
14513 #ifdef SIGFPE
14514     signal(SIGFPE, blech);
14515 #endif
14516
14517     for (i = 0; i < n; i++) {
14518       u = u << 1 | ($uvtype)1;
14519       d = ($nvtype)u;
14520       if (($uvtype)d != u)
14521         break;
14522       if (d <= 0)
14523         break;
14524       d = ($nvtype)(u - 1);
14525       if (($uvtype)d != (u - 1))
14526         break;
14527 #ifdef SIGFPE
14528       if (bletched) {
14529         break;
14530 #endif
14531       } 
14532     }
14533     printf("%d\n", ((i == n) ? -n : i));
14534     exit(0);
14535 }
14536 EOP
14537 set try
14538
14539 d_nv_preserves_uv="$undef"
14540 if eval $compile; then
14541         nv_preserves_uv_bits="`$run ./try`"
14542 fi
14543 case "$nv_preserves_uv_bits" in
14544 \-[1-9]*)       
14545         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
14546         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
14547         d_nv_preserves_uv="$define"
14548         ;;
14549 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
14550         d_nv_preserves_uv="$undef" ;;
14551 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
14552         nv_preserves_uv_bits="$undef" ;;
14553 esac
14554
14555 $rm -f try.* try
14556
14557
14558 : check for off64_t
14559 echo " "
14560 echo "Checking to see if you have off64_t..." >&4
14561 $cat >try.c <<EOCP
14562 #include <sys/types.h>
14563 #include <unistd.h>
14564 int main() { off64_t x = 7; }
14565 EOCP
14566 set try
14567 if eval $compile; then
14568         val="$define"
14569         echo "You have off64_t."
14570 else
14571         val="$undef"
14572         echo "You do not have off64_t."
14573         case "$lseeksize" in
14574         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
14575         esac
14576 fi
14577 $rm -f try.* try
14578 set d_off64_t
14579 eval $setvar
14580
14581 : how to create joinable pthreads
14582 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
14583         echo " "
14584         echo "Checking what constant to use for creating joinable pthreads..." >&4 
14585         $cat >try.c <<'EOCP'
14586 #include <pthread.h>
14587 int main() {
14588     int detachstate = JOINABLE;
14589 }
14590 EOCP
14591         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
14592         if eval $compile; then
14593                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
14594                 val="$undef" # Yes, undef.
14595                 set d_old_pthread_create_joinable
14596                 eval $setvar
14597                 val=""
14598                 set old_pthread_create_joinable
14599                 eval $setvar
14600         else
14601                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
14602                 if eval $compile; then
14603                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
14604                         val="$define"
14605                         set d_old_pthread_create_joinable
14606                         eval $setvar
14607                         val=PTHREAD_CREATE_UNDETACHED
14608                         set old_pthread_create_joinable
14609                         eval $setvar
14610                 else            
14611                         set try -DJOINABLE=__UNDETACHED
14612                         if eval $compile; then
14613                                 echo "You seem to use __UNDETACHED." >&4
14614                                 val="$define"
14615                                 set d_old_pthread_create_joinable
14616                                 eval $setvar
14617                                 val=__UNDETACHED
14618                                 set old_pthread_create_joinable
14619                                 eval $setvar
14620                         else
14621                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
14622                                 val="$define"
14623                                 set d_old_pthread_create_joinable
14624                                 eval $setvar
14625                                 val=0
14626                                 set old_pthread_create_joinable
14627                                 eval $setvar
14628                         fi
14629                 fi
14630         fi
14631         $rm -f try try.*
14632 else
14633     d_old_pthread_create_joinable="$undef"
14634     old_pthread_create_joinable=""
14635 fi
14636
14637 : see if pause exists
14638 set pause d_pause
14639 eval $inlibc
14640
14641 : see if pipe exists
14642 set pipe d_pipe
14643 eval $inlibc
14644
14645 : see if poll exists
14646 set poll d_poll
14647 eval $inlibc
14648
14649 : see if readlink exists
14650 set readlink d_readlink
14651 eval $inlibc
14652
14653 echo " "
14654 procselfexe=''
14655 val="$undef"
14656 case "$d_readlink" in
14657 "$define")
14658         if $issymlink /proc/self/exe ; then
14659                 $ls -l /proc/self/exe > reflect
14660                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14661                         echo "You have Linux-like /proc/self/exe."
14662                         procselfexe='"/proc/self/exe"'
14663                         val="$define"
14664                 fi
14665         fi
14666         if $issymlink /proc/curproc/file ; then
14667                 $ls -l /proc/curproc/file > reflect
14668                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14669                         echo "You have BSD-like /proc/curproc/file."
14670                         procselfexe='"/proc/curproc/file"'
14671                         val="$define"
14672                 fi
14673         fi
14674         ;;
14675 esac
14676 $rm -f reflect
14677 set d_procselfexe
14678 eval $setvar
14679
14680 : see whether the pthread_atfork exists
14681 $cat >try.c <<EOP
14682 #include <pthread.h>
14683 #include <stdio.h>
14684 int main() {
14685 #ifdef  PTHREAD_ATFORK
14686         pthread_atfork(NULL,NULL,NULL);
14687 #endif
14688 }
14689 EOP
14690
14691 : see if pthread_atfork exists
14692 set try -DPTHREAD_ATFORK
14693 if eval $compile; then
14694     val="$define"
14695 else
14696     val="$undef"
14697 fi
14698 case "$usethreads" in
14699 $define)
14700         case "$val" in
14701         $define) echo 'pthread_atfork found.' >&4        ;;
14702         *)       echo 'pthread_atfork NOT found.' >&4    ;;
14703         esac
14704 esac
14705 set d_pthread_atfork
14706 eval $setvar
14707
14708
14709 : see whether the various POSIXish _yields exist
14710 $cat >try.c <<EOP
14711 #include <pthread.h>
14712 #include <stdio.h>
14713 int main() {
14714 #ifdef SCHED_YIELD
14715         sched_yield();
14716 #else
14717 #ifdef PTHREAD_YIELD
14718         pthread_yield();
14719 #else
14720 #ifdef PTHREAD_YIELD_NULL
14721         pthread_yield(NULL);
14722 #endif
14723 #endif
14724 #endif
14725 }
14726 EOP
14727 : see if sched_yield exists
14728 set try -DSCHED_YIELD
14729 if eval $compile; then
14730     val="$define"
14731     sched_yield='sched_yield()'
14732 else
14733     val="$undef"
14734 fi
14735 case "$usethreads" in
14736 $define)
14737         case "$val" in
14738         $define) echo 'sched_yield() found.' >&4        ;;
14739         *)       echo 'sched_yield() NOT found.' >&4    ;;
14740         esac
14741 esac
14742 set d_sched_yield
14743 eval $setvar
14744
14745 : see if pthread_yield exists
14746 set try -DPTHREAD_YIELD
14747 if eval $compile; then
14748     val="$define"
14749     case "$sched_yield" in
14750     '') sched_yield='pthread_yield()' ;;
14751     esac
14752 else
14753     set try -DPTHREAD_YIELD_NULL
14754     if eval $compile; then
14755         val="$define"
14756         case "$sched_yield" in
14757         '') sched_yield='pthread_yield(NULL)' ;;
14758         esac
14759     else
14760         val="$undef"
14761     fi
14762 fi
14763 case "$usethreads" in
14764 $define)
14765         case "$val" in
14766         $define) echo 'pthread_yield() found.' >&4      ;;
14767         *)       echo 'pthread_yield() NOT found.' >&4  ;;
14768         esac
14769         ;;
14770 esac
14771 set d_pthread_yield
14772 eval $setvar
14773
14774 case "$sched_yield" in
14775 '') sched_yield=undef ;;
14776 esac
14777
14778 $rm -f try try.*
14779
14780 : see if random_r exists
14781 set random_r d_random_r
14782 eval $inlibc
14783 case "$d_random_r" in
14784 "$define")
14785         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
14786         case "$d_random_r_proto:$usethreads" in
14787         ":define")      d_random_r_proto=define
14788                 set d_random_r_proto random_r $hdrs
14789                 eval $hasproto ;;
14790         *)      ;;
14791         esac
14792         case "$d_random_r_proto" in
14793         define)
14794         case "$random_r_proto" in
14795         ''|0) try='int random_r(int*, struct random_data*);'
14796         ./protochk "extern $try" $hdrs && random_r_proto=I_iS ;;
14797         esac
14798         case "$random_r_proto" in
14799         ''|0) try='int random_r(long*, struct random_data*);'
14800         ./protochk "extern $try" $hdrs && random_r_proto=I_lS ;;
14801         esac
14802         case "$random_r_proto" in
14803         ''|0) try='int random_r(struct random_data*, int32_t*);'
14804         ./protochk "extern $try" $hdrs && random_r_proto=I_St ;;
14805         esac
14806         case "$random_r_proto" in
14807         ''|0)   d_random_r=undef
14808                 random_r_proto=0
14809                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
14810         * )     case "$random_r_proto" in
14811                 REENTRANT_PROTO*) ;;
14812                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
14813                 esac
14814                 echo "Prototype: $try" ;;
14815         esac
14816         ;;
14817         *)      case "$usethreads" in
14818                 define) echo "random_r has no prototype, not using it." >&4 ;;
14819                 esac
14820                 d_random_r=undef
14821                 random_r_proto=0
14822                 ;;
14823         esac
14824         ;;
14825 *)      random_r_proto=0
14826         ;;
14827 esac
14828
14829 : see if readdir and friends exist
14830 set readdir d_readdir
14831 eval $inlibc
14832 set seekdir d_seekdir
14833 eval $inlibc
14834 set telldir d_telldir
14835 eval $inlibc
14836 set rewinddir d_rewinddir
14837 eval $inlibc
14838
14839 : see if readdir64_r exists
14840 set readdir64_r d_readdir64_r
14841 eval $inlibc
14842 case "$d_readdir64_r" in
14843 "$define")
14844         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14845         case "$d_readdir64_r_proto:$usethreads" in
14846         ":define")      d_readdir64_r_proto=define
14847                 set d_readdir64_r_proto readdir64_r $hdrs
14848                 eval $hasproto ;;
14849         *)      ;;
14850         esac
14851         case "$d_readdir64_r_proto" in
14852         define)
14853         case "$readdir64_r_proto" in
14854         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
14855         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
14856         esac
14857         case "$readdir64_r_proto" in
14858         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
14859         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
14860         esac
14861         case "$readdir64_r_proto" in
14862         ''|0)   d_readdir64_r=undef
14863                 readdir64_r_proto=0
14864                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
14865         * )     case "$readdir64_r_proto" in
14866                 REENTRANT_PROTO*) ;;
14867                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
14868                 esac
14869                 echo "Prototype: $try" ;;
14870         esac
14871         ;;
14872         *)      case "$usethreads" in
14873                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
14874                 esac
14875                 d_readdir64_r=undef
14876                 readdir64_r_proto=0
14877                 ;;
14878         esac
14879         ;;
14880 *)      readdir64_r_proto=0
14881         ;;
14882 esac
14883
14884 : see if readdir_r exists
14885 set readdir_r d_readdir_r
14886 eval $inlibc
14887 case "$d_readdir_r" in
14888 "$define")
14889         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14890         case "$d_readdir_r_proto:$usethreads" in
14891         ":define")      d_readdir_r_proto=define
14892                 set d_readdir_r_proto readdir_r $hdrs
14893                 eval $hasproto ;;
14894         *)      ;;
14895         esac
14896         case "$d_readdir_r_proto" in
14897         define)
14898         case "$readdir_r_proto" in
14899         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14900         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14901         esac
14902         case "$readdir_r_proto" in
14903         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14904         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14905         esac
14906         case "$readdir_r_proto" in
14907         ''|0)   d_readdir_r=undef
14908                 readdir_r_proto=0
14909                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14910         * )     case "$readdir_r_proto" in
14911                 REENTRANT_PROTO*) ;;
14912                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14913                 esac
14914                 echo "Prototype: $try" ;;
14915         esac
14916         ;;
14917         *)      case "$usethreads" in
14918                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14919                 esac
14920                 d_readdir_r=undef
14921                 readdir_r_proto=0
14922                 ;;
14923         esac
14924         ;;
14925 *)      readdir_r_proto=0
14926         ;;
14927 esac
14928
14929 : see if readv exists
14930 set readv d_readv
14931 eval $inlibc
14932
14933 : see if recvmsg exists
14934 set recvmsg d_recvmsg
14935 eval $inlibc
14936
14937 : see if rename exists
14938 set rename d_rename
14939 eval $inlibc
14940
14941 : see if rmdir exists
14942 set rmdir d_rmdir
14943 eval $inlibc
14944
14945 : see if memory.h is available.
14946 val=''
14947 set memory.h val
14948 eval $inhdr
14949
14950 : See if it conflicts with string.h
14951 case "$val" in
14952 $define)
14953         case "$strings" in
14954         '') ;;
14955         *)
14956                 $cppstdin $cppflags $cppminus < $strings > mem.h
14957                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
14958                         echo " "
14959                         echo "We won't be including <memory.h>."
14960                         val="$undef"
14961                 fi
14962                 $rm -f mem.h
14963                 ;;
14964         esac
14965 esac
14966 set i_memory
14967 eval $setvar
14968
14969 : can bcopy handle overlapping blocks?
14970 echo " "
14971 val="$undef"
14972 case "$d_memmove" in
14973 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
14974 *)      case "$d_bcopy" in
14975         "$define")
14976                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
14977                 $cat >try.c <<EOCP
14978 #$i_memory I_MEMORY
14979 #$i_stdlib I_STDLIB
14980 #$i_string I_STRING
14981 #$i_unistd I_UNISTD
14982 EOCP
14983         $cat >>try.c <<'EOCP'
14984 #include <stdio.h>
14985 #ifdef I_MEMORY
14986 #  include <memory.h>
14987 #endif
14988 #ifdef I_STDLIB
14989 #  include <stdlib.h>
14990 #endif
14991 #ifdef I_STRING
14992 #  include <string.h>
14993 #else
14994 #  include <strings.h>
14995 #endif
14996 #ifdef I_UNISTD
14997 #  include <unistd.h>  /* Needed for NetBSD */
14998 #endif
14999 int main()
15000 {
15001 char buf[128], abc[128];
15002 char *b;
15003 int len;
15004 int off;
15005 int align;
15006
15007 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15008    try to store the string in read-only memory. */
15009 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
15010
15011 for (align = 7; align >= 0; align--) {
15012         for (len = 36; len; len--) {
15013                 b = buf+align;
15014                 bcopy(abc, b, len);
15015                 for (off = 1; off <= len; off++) {
15016                         bcopy(b, b+off, len);
15017                         bcopy(b+off, b, len);
15018                         if (bcmp(b, abc, len))
15019                                 exit(1);
15020                 }
15021         }
15022 }
15023 exit(0);
15024 }
15025 EOCP
15026                 set try
15027                 if eval $compile_ok; then
15028                         if ./try 2>/dev/null; then
15029                                 echo "Yes, it can."
15030                                 val="$define"
15031                         else
15032                                 echo "It can't, sorry."
15033                         fi
15034                 else
15035                         echo "(I can't compile the test program, so we'll assume not...)"
15036                 fi
15037                 ;;
15038         esac
15039         $rm -f try.* try core
15040         ;;
15041 esac
15042 set d_safebcpy
15043 eval $setvar
15044
15045 : can memcpy handle overlapping blocks?
15046 echo " "
15047 val="$undef"
15048 case "$d_memmove" in
15049 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
15050 *)      case "$d_memcpy" in
15051         "$define")
15052                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
15053                 $cat >try.c <<EOCP
15054 #$i_memory I_MEMORY
15055 #$i_stdlib I_STDLIB
15056 #$i_string I_STRING
15057 #$i_unistd I_UNISTD
15058 EOCP
15059         $cat >>try.c <<'EOCP'
15060 #include <stdio.h>
15061 #ifdef I_MEMORY
15062 #  include <memory.h>
15063 #endif
15064 #ifdef I_STDLIB
15065 #  include <stdlib.h>
15066 #endif
15067 #ifdef I_STRING
15068 #  include <string.h>
15069 #else
15070 #  include <strings.h>
15071 #endif
15072 #ifdef I_UNISTD
15073 #  include <unistd.h>  /* Needed for NetBSD */
15074 #endif
15075 int main()
15076 {
15077 char buf[128], abc[128];
15078 char *b;
15079 int len;
15080 int off;
15081 int align;
15082
15083 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15084    try to store the string in read-only memory. */
15085 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
15086
15087 for (align = 7; align >= 0; align--) {
15088         for (len = 36; len; len--) {
15089                 b = buf+align;
15090                 memcpy(b, abc, len);
15091                 for (off = 1; off <= len; off++) {
15092                         memcpy(b+off, b, len);
15093                         memcpy(b, b+off, len);
15094                         if (memcmp(b, abc, len))
15095                                 exit(1);
15096                 }
15097         }
15098 }
15099 exit(0);
15100 }
15101 EOCP
15102                 set try
15103                 if eval $compile_ok; then
15104                         if ./try 2>/dev/null; then
15105                                 echo "Yes, it can."
15106                                 val="$define"
15107                         else
15108                                 echo "It can't, sorry."
15109                         fi
15110                 else
15111                         echo "(I can't compile the test program, so we'll assume not...)"
15112                 fi
15113                 ;;
15114         esac
15115         $rm -f try.* try core
15116         ;;
15117 esac
15118 set d_safemcpy
15119 eval $setvar
15120
15121 : can memcmp be trusted to compare relative magnitude?
15122 val="$undef"
15123 case "$d_memcmp" in
15124 "$define")
15125         echo " "
15126         echo "Checking if your memcmp() can compare relative magnitude..." >&4
15127         $cat >try.c <<EOCP
15128 #$i_memory I_MEMORY
15129 #$i_stdlib I_STDLIB
15130 #$i_string I_STRING
15131 #$i_unistd I_UNISTD
15132 EOCP
15133         $cat >>try.c <<'EOCP'
15134 #include <stdio.h>
15135 #ifdef I_MEMORY
15136 #  include <memory.h>
15137 #endif
15138 #ifdef I_STDLIB
15139 #  include <stdlib.h>
15140 #endif
15141 #ifdef I_STRING
15142 #  include <string.h>
15143 #else
15144 #  include <strings.h>
15145 #endif
15146 #ifdef I_UNISTD
15147 #  include <unistd.h>  /* Needed for NetBSD */
15148 #endif
15149 int main()
15150 {
15151 char a = -1;
15152 char b = 0;
15153 if ((a < b) && memcmp(&a, &b, 1) < 0)
15154         exit(1);
15155 exit(0);
15156 }
15157 EOCP
15158         set try
15159         if eval $compile_ok; then
15160                 if $run ./try 2>/dev/null; then
15161                         echo "Yes, it can."
15162                         val="$define"
15163                 else
15164                         echo "No, it can't (it uses signed chars)."
15165                 fi
15166         else
15167                 echo "(I can't compile the test program, so we'll assume not...)"
15168         fi
15169         ;;
15170 esac
15171 $rm -f try.* try core
15172 set d_sanemcmp
15173 eval $setvar
15174
15175 : see if prototype for sbrk is available
15176 echo " "
15177 set d_sbrkproto sbrk $i_unistd unistd.h
15178 eval $hasproto
15179
15180 : see if select exists
15181 set select d_select
15182 eval $inlibc
15183
15184 : see if semctl exists
15185 set semctl d_semctl
15186 eval $inlibc
15187
15188 : see if semget exists
15189 set semget d_semget
15190 eval $inlibc
15191
15192 : see if semop exists
15193 set semop d_semop
15194 eval $inlibc
15195
15196 : see how much of the 'sem*(2)' library is present.
15197 h_sem=true
15198 echo " "
15199 case "$d_semctl$d_semget$d_semop" in
15200 *"$undef"*) h_sem=false;;
15201 esac
15202 case "$osname" in
15203 freebsd)
15204     case "`ipcs 2>&1`" in
15205     "SVID messages"*"not configured"*)
15206         echo "Your $osname does not have the sem*(2) configured." >&4
15207         h_sem=false
15208         val="$undef"
15209         set semctl d_semctl
15210         eval $setvar
15211         set semget d_semget
15212         eval $setvar
15213         set semop d_semop
15214         eval $setvar
15215         ;;
15216     esac
15217     ;;
15218 esac
15219 : we could also check for sys/ipc.h ...
15220 if $h_sem && $test `./findhdr sys/sem.h`; then
15221         echo "You have the full sem*(2) library." >&4
15222         val="$define"
15223 else
15224         echo "You don't have the full sem*(2) library." >&4
15225         val="$undef"
15226 fi
15227 set d_sem
15228 eval $setvar
15229
15230 : see whether sys/sem.h defines union semun
15231 echo " "
15232 $cat > try.c <<'END'
15233 #include <sys/types.h>
15234 #include <sys/ipc.h>
15235 #include <sys/sem.h>
15236 int main () { union semun semun; semun.buf = 0; }
15237 END
15238 set try
15239 if eval $compile; then
15240     echo "You have union semun in <sys/sem.h>." >&4
15241     val="$define"
15242 else
15243     echo "You do not have union semun in <sys/sem.h>." >&4
15244     val="$undef"
15245 fi
15246 $rm -f try try.c try.h
15247 set d_union_semun
15248 eval $setvar
15249
15250 : see how to do semctl IPC_STAT
15251 case "$d_sem" in
15252 $define)
15253     : see whether semctl IPC_STAT can use union semun
15254     echo " "
15255     $cat > try.h <<END
15256 #ifndef S_IRUSR
15257 #   ifdef S_IREAD
15258 #       define S_IRUSR S_IREAD
15259 #       define S_IWUSR S_IWRITE
15260 #       define S_IXUSR S_IEXEC
15261 #   else
15262 #       define S_IRUSR 0400
15263 #       define S_IWUSR 0200
15264 #       define S_IXUSR 0100
15265 #   endif
15266 #   define S_IRGRP (S_IRUSR>>3)
15267 #   define S_IWGRP (S_IWUSR>>3)
15268 #   define S_IXGRP (S_IXUSR>>3)
15269 #   define S_IROTH (S_IRUSR>>6)
15270 #   define S_IWOTH (S_IWUSR>>6)
15271 #   define S_IXOTH (S_IXUSR>>6)
15272 #endif
15273 #ifndef S_IRWXU
15274 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
15275 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
15276 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
15277 #endif
15278 END
15279
15280     $cat > try.c <<END
15281 #include <sys/types.h>
15282 #include <sys/ipc.h>
15283 #include <sys/sem.h>
15284 #include <sys/stat.h>
15285 #include <stdio.h>
15286 #include <errno.h>
15287 #include "try.h"
15288 #ifndef errno
15289 extern int errno;
15290 #endif
15291 #$d_union_semun HAS_UNION_SEMUN
15292 int main() {
15293     union semun
15294 #ifndef HAS_UNION_SEMUN
15295     {
15296         int val;
15297         struct semid_ds *buf;
15298         unsigned short *array;
15299     }
15300 #endif
15301     arg;
15302     int sem, st;
15303
15304 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
15305     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15306     if (sem > -1) {
15307         struct semid_ds argbuf;
15308         arg.buf = &argbuf;
15309 #       ifdef IPC_STAT
15310         st = semctl(sem, 0, IPC_STAT, arg);
15311         if (st == 0)
15312             printf("semun\n");
15313         else
15314 #       endif /* IPC_STAT */
15315             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15316 #       ifdef IPC_RMID
15317         if (semctl(sem, 0, IPC_RMID, arg) != 0)
15318 #       endif /* IPC_RMID */
15319             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15320     } else
15321 #endif /* IPC_PRIVATE && ... */
15322         printf("semget failed: errno = %d\n", errno);
15323   return 0;
15324 }
15325 END
15326     val="$undef"
15327     set try
15328     if eval $compile; then
15329         xxx=`$run ./try`
15330         case "$xxx" in
15331         semun) val="$define" ;;
15332         esac
15333     fi
15334     $rm -f try try.c
15335     set d_semctl_semun
15336     eval $setvar
15337     case "$d_semctl_semun" in
15338     $define)
15339         echo "You can use union semun for semctl IPC_STAT." >&4
15340         also='also'
15341         ;;
15342     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
15343         also=''
15344         ;;
15345     esac
15346
15347     : see whether semctl IPC_STAT can use struct semid_ds pointer
15348     $cat > try.c <<'END'
15349 #include <sys/types.h>
15350 #include <sys/ipc.h>
15351 #include <sys/sem.h>
15352 #include <sys/stat.h>
15353 #include "try.h"
15354 #include <stdio.h>
15355 #include <errno.h>
15356 #ifndef errno
15357 extern int errno;
15358 #endif
15359 int main() {
15360     struct semid_ds arg;
15361     int sem, st;
15362
15363 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
15364     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15365     if (sem > -1) {
15366 #       ifdef IPC_STAT
15367         st = semctl(sem, 0, IPC_STAT, &arg);
15368         if (st == 0)
15369             printf("semid_ds\n");
15370         else
15371 #       endif /* IPC_STAT */
15372             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15373 #       ifdef IPC_RMID
15374         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
15375 #       endif /* IPC_RMID */
15376             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15377     } else
15378 #endif /* IPC_PRIVATE && ... */
15379         printf("semget failed: errno = %d\n", errno);
15380
15381     return 0;
15382 }
15383 END
15384     val="$undef"
15385     set try
15386     if eval $compile; then
15387         xxx=`$run ./try`
15388         case "$xxx" in
15389         semid_ds) val="$define" ;;
15390         esac
15391     fi
15392     $rm -f try try.c
15393     set d_semctl_semid_ds
15394     eval $setvar
15395     case "$d_semctl_semid_ds" in
15396     $define)
15397         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
15398         ;;
15399     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
15400         ;;
15401     esac
15402     $rm -f try.h
15403     ;;
15404 *)  val="$undef"
15405
15406     # We do not have the full sem*(2) library, so assume we can not
15407     # use either.
15408
15409     set d_semctl_semun
15410     eval $setvar
15411
15412     set d_semctl_semid_ds
15413     eval $setvar
15414     ;;
15415 esac
15416
15417 : see if sendmsg exists
15418 set sendmsg d_sendmsg
15419 eval $inlibc
15420
15421 : see if setegid exists
15422 set setegid d_setegid
15423 eval $inlibc
15424
15425 : see if seteuid exists
15426 set seteuid d_seteuid
15427 eval $inlibc
15428
15429 : see if setgrent exists
15430 set setgrent d_setgrent
15431 eval $inlibc
15432
15433 : see if setgrent_r exists
15434 set setgrent_r d_setgrent_r
15435 eval $inlibc
15436 case "$d_setgrent_r" in
15437 "$define")
15438         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
15439         case "$d_setgrent_r_proto:$usethreads" in
15440         ":define")      d_setgrent_r_proto=define
15441                 set d_setgrent_r_proto setgrent_r $hdrs
15442                 eval $hasproto ;;
15443         *)      ;;
15444         esac
15445         case "$d_setgrent_r_proto" in
15446         define)
15447         case "$setgrent_r_proto" in
15448         ''|0) try='int setgrent_r(FILE**);'
15449         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
15450         esac
15451         case "$setgrent_r_proto" in
15452         ''|0) try='void setgrent_r(FILE**);'
15453         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
15454         esac
15455         case "$setgrent_r_proto" in
15456         ''|0)   d_setgrent_r=undef
15457                 setgrent_r_proto=0
15458                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
15459         * )     case "$setgrent_r_proto" in
15460                 REENTRANT_PROTO*) ;;
15461                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
15462                 esac
15463                 echo "Prototype: $try" ;;
15464         esac
15465         ;;
15466         *)      case "$usethreads" in
15467                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
15468                 esac
15469                 d_setgrent_r=undef
15470                 setgrent_r_proto=0
15471                 ;;
15472         esac
15473         ;;
15474 *)      setgrent_r_proto=0
15475         ;;
15476 esac
15477
15478 : see if sethostent exists
15479 set sethostent d_sethent
15480 eval $inlibc
15481
15482 : see if sethostent_r exists
15483 set sethostent_r d_sethostent_r
15484 eval $inlibc
15485 case "$d_sethostent_r" in
15486 "$define")
15487         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15488         case "$d_sethostent_r_proto:$usethreads" in
15489         ":define")      d_sethostent_r_proto=define
15490                 set d_sethostent_r_proto sethostent_r $hdrs
15491                 eval $hasproto ;;
15492         *)      ;;
15493         esac
15494         case "$d_sethostent_r_proto" in
15495         define)
15496         case "$sethostent_r_proto" in
15497         ''|0) try='int sethostent_r(int, struct hostent_data*);'
15498         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
15499         esac
15500         case "$sethostent_r_proto" in
15501         ''|0) try='void sethostent_r(int, struct hostent_data*);'
15502         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
15503         esac
15504         case "$sethostent_r_proto" in
15505         ''|0)   d_sethostent_r=undef
15506                 sethostent_r_proto=0
15507                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
15508         * )     case "$sethostent_r_proto" in
15509                 REENTRANT_PROTO*) ;;
15510                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
15511                 esac
15512                 echo "Prototype: $try" ;;
15513         esac
15514         ;;
15515         *)      case "$usethreads" in
15516                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
15517                 esac
15518                 d_sethostent_r=undef
15519                 sethostent_r_proto=0
15520                 ;;
15521         esac
15522         ;;
15523 *)      sethostent_r_proto=0
15524         ;;
15525 esac
15526
15527 : see if setitimer exists
15528 set setitimer d_setitimer
15529 eval $inlibc
15530
15531 : see if setlinebuf exists
15532 set setlinebuf d_setlinebuf
15533 eval $inlibc
15534
15535 : see if setlocale exists
15536 set setlocale d_setlocale
15537 eval $inlibc
15538
15539 : see if locale.h is available
15540 set locale.h i_locale
15541 eval $inhdr
15542
15543 : see if setlocale_r exists
15544 set setlocale_r d_setlocale_r
15545 eval $inlibc
15546 case "$d_setlocale_r" in
15547 "$define")
15548         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
15549         case "$d_setlocale_r_proto:$usethreads" in
15550         ":define")      d_setlocale_r_proto=define
15551                 set d_setlocale_r_proto setlocale_r $hdrs
15552                 eval $hasproto ;;
15553         *)      ;;
15554         esac
15555         case "$d_setlocale_r_proto" in
15556         define)
15557         case "$setlocale_r_proto" in
15558         ''|0) try='int setlocale_r(int, const char*, char*, int);'
15559         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
15560         esac
15561         case "$setlocale_r_proto" in
15562         ''|0)   d_setlocale_r=undef
15563                 setlocale_r_proto=0
15564                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
15565         * )     case "$setlocale_r_proto" in
15566                 REENTRANT_PROTO*) ;;
15567                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
15568                 esac
15569                 echo "Prototype: $try" ;;
15570         esac
15571         ;;
15572         *)      case "$usethreads" in
15573                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
15574                 esac
15575                 d_setlocale_r=undef
15576                 setlocale_r_proto=0
15577                 ;;
15578         esac
15579         ;;
15580 *)      setlocale_r_proto=0
15581         ;;
15582 esac
15583
15584 : see if setnetent exists
15585 set setnetent d_setnent
15586 eval $inlibc
15587
15588 : see if setnetent_r exists
15589 set setnetent_r d_setnetent_r
15590 eval $inlibc
15591 case "$d_setnetent_r" in
15592 "$define")
15593         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15594         case "$d_setnetent_r_proto:$usethreads" in
15595         ":define")      d_setnetent_r_proto=define
15596                 set d_setnetent_r_proto setnetent_r $hdrs
15597                 eval $hasproto ;;
15598         *)      ;;
15599         esac
15600         case "$d_setnetent_r_proto" in
15601         define)
15602         case "$setnetent_r_proto" in
15603         ''|0) try='int setnetent_r(int, struct netent_data*);'
15604         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
15605         esac
15606         case "$setnetent_r_proto" in
15607         ''|0) try='void setnetent_r(int, struct netent_data*);'
15608         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
15609         esac
15610         case "$setnetent_r_proto" in
15611         ''|0)   d_setnetent_r=undef
15612                 setnetent_r_proto=0
15613                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
15614         * )     case "$setnetent_r_proto" in
15615                 REENTRANT_PROTO*) ;;
15616                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
15617                 esac
15618                 echo "Prototype: $try" ;;
15619         esac
15620         ;;
15621         *)      case "$usethreads" in
15622                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
15623                 esac
15624                 d_setnetent_r=undef
15625                 setnetent_r_proto=0
15626                 ;;
15627         esac
15628         ;;
15629 *)      setnetent_r_proto=0
15630         ;;
15631 esac
15632
15633 : see if setprotoent exists
15634 set setprotoent d_setpent
15635 eval $inlibc
15636
15637 : see if setpgid exists
15638 set setpgid d_setpgid
15639 eval $inlibc
15640
15641 : see if setpgrp2 exists
15642 set setpgrp2 d_setpgrp2
15643 eval $inlibc
15644
15645 : see if setpriority exists
15646 set setpriority d_setprior
15647 eval $inlibc
15648
15649 : see if setproctitle exists
15650 set setproctitle d_setproctitle
15651 eval $inlibc
15652
15653 : see if setprotoent_r exists
15654 set setprotoent_r d_setprotoent_r
15655 eval $inlibc
15656 case "$d_setprotoent_r" in
15657 "$define")
15658         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15659         case "$d_setprotoent_r_proto:$usethreads" in
15660         ":define")      d_setprotoent_r_proto=define
15661                 set d_setprotoent_r_proto setprotoent_r $hdrs
15662                 eval $hasproto ;;
15663         *)      ;;
15664         esac
15665         case "$d_setprotoent_r_proto" in
15666         define)
15667         case "$setprotoent_r_proto" in
15668         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
15669         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
15670         esac
15671         case "$setprotoent_r_proto" in
15672         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
15673         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
15674         esac
15675         case "$setprotoent_r_proto" in
15676         ''|0)   d_setprotoent_r=undef
15677                 setprotoent_r_proto=0
15678                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
15679         * )     case "$setprotoent_r_proto" in
15680                 REENTRANT_PROTO*) ;;
15681                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
15682                 esac
15683                 echo "Prototype: $try" ;;
15684         esac
15685         ;;
15686         *)      case "$usethreads" in
15687                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
15688                 esac
15689                 d_setprotoent_r=undef
15690                 setprotoent_r_proto=0
15691                 ;;
15692         esac
15693         ;;
15694 *)      setprotoent_r_proto=0
15695         ;;
15696 esac
15697
15698 : see if setpwent exists
15699 set setpwent d_setpwent
15700 eval $inlibc
15701
15702 : see if setpwent_r exists
15703 set setpwent_r d_setpwent_r
15704 eval $inlibc
15705 case "$d_setpwent_r" in
15706 "$define")
15707         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
15708         case "$d_setpwent_r_proto:$usethreads" in
15709         ":define")      d_setpwent_r_proto=define
15710                 set d_setpwent_r_proto setpwent_r $hdrs
15711                 eval $hasproto ;;
15712         *)      ;;
15713         esac
15714         case "$d_setpwent_r_proto" in
15715         define)
15716         case "$setpwent_r_proto" in
15717         ''|0) try='int setpwent_r(FILE**);'
15718         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
15719         esac
15720         case "$setpwent_r_proto" in
15721         ''|0) try='void setpwent_r(FILE**);'
15722         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
15723         esac
15724         case "$setpwent_r_proto" in
15725         ''|0)   d_setpwent_r=undef
15726                 setpwent_r_proto=0
15727                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
15728         * )     case "$setpwent_r_proto" in
15729                 REENTRANT_PROTO*) ;;
15730                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
15731                 esac
15732                 echo "Prototype: $try" ;;
15733         esac
15734         ;;
15735         *)      case "$usethreads" in
15736                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
15737                 esac
15738                 d_setpwent_r=undef
15739                 setpwent_r_proto=0
15740                 ;;
15741         esac
15742         ;;
15743 *)      setpwent_r_proto=0
15744         ;;
15745 esac
15746
15747 : see if setregid exists
15748 set setregid d_setregid
15749 eval $inlibc
15750 set setresgid d_setresgid
15751 eval $inlibc
15752
15753 : see if setreuid exists
15754 set setreuid d_setreuid
15755 eval $inlibc
15756 set setresuid d_setresuid
15757 eval $inlibc
15758
15759 : see if setrgid exists
15760 set setrgid d_setrgid
15761 eval $inlibc
15762
15763 : see if setruid exists
15764 set setruid d_setruid
15765 eval $inlibc
15766
15767 : see if setservent exists
15768 set setservent d_setsent
15769 eval $inlibc
15770
15771 : see if setservent_r exists
15772 set setservent_r d_setservent_r
15773 eval $inlibc
15774 case "$d_setservent_r" in
15775 "$define")
15776         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15777         case "$d_setservent_r_proto:$usethreads" in
15778         ":define")      d_setservent_r_proto=define
15779                 set d_setservent_r_proto setservent_r $hdrs
15780                 eval $hasproto ;;
15781         *)      ;;
15782         esac
15783         case "$d_setservent_r_proto" in
15784         define)
15785         case "$setservent_r_proto" in
15786         ''|0) try='int setservent_r(int, struct servent_data*);'
15787         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
15788         esac
15789         case "$setservent_r_proto" in
15790         ''|0) try='void setservent_r(int, struct servent_data*);'
15791         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
15792         esac
15793         case "$setservent_r_proto" in
15794         ''|0)   d_setservent_r=undef
15795                 setservent_r_proto=0
15796                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
15797         * )     case "$setservent_r_proto" in
15798                 REENTRANT_PROTO*) ;;
15799                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
15800                 esac
15801                 echo "Prototype: $try" ;;
15802         esac
15803         ;;
15804         *)      case "$usethreads" in
15805                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
15806                 esac
15807                 d_setservent_r=undef
15808                 setservent_r_proto=0
15809                 ;;
15810         esac
15811         ;;
15812 *)      setservent_r_proto=0
15813         ;;
15814 esac
15815
15816 : see if setsid exists
15817 set setsid d_setsid
15818 eval $inlibc
15819
15820 : see if setvbuf exists
15821 set setvbuf d_setvbuf
15822 eval $inlibc
15823
15824 : see if sfio.h is available
15825 set sfio.h i_sfio
15826 eval $inhdr
15827
15828
15829 : see if sfio library is available
15830 case "$i_sfio" in
15831 $define)
15832         val=''
15833         set sfreserve val
15834         eval $inlibc
15835         ;;
15836 *)
15837         val="$undef"
15838         ;;
15839 esac
15840 : Ok, but do we want to use it.
15841 case "$val" in
15842 $define)
15843         case "$usesfio" in
15844         true|$define|[yY]*) dflt='y';;
15845         *) dflt='n';;
15846         esac
15847         echo "$package can use the sfio library, but it is experimental."
15848         case "$useperlio" in
15849         "$undef")
15850             echo "For sfio also the PerlIO abstraction layer is needed."
15851             echo "Earlier you said you wouldn't want that."
15852             ;;
15853         esac
15854         rp="You seem to have sfio available, do you want to try using it?"
15855         . ./myread
15856         case "$ans" in
15857         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
15858                 useperlio="$define"
15859                 val="$define"
15860                 ;;
15861         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
15862                 val="$undef"
15863                 ;;
15864         esac
15865         ;;
15866 *)      case "$usesfio" in
15867         true|$define|[yY]*)
15868                 echo "Sorry, cannot find sfio on this machine." >&4
15869                 echo "Ignoring your setting of usesfio=$usesfio." >&4
15870                 val="$undef"
15871                 ;;
15872         esac
15873         ;;
15874 esac
15875 set d_sfio
15876 eval $setvar
15877 case "$d_sfio" in
15878 $define) usesfio='true';;
15879 *) usesfio='false';;
15880 esac
15881 case "$d_sfio" in
15882 $define) ;;
15883 *)      : Remove sfio from list of libraries to use
15884         case "$libs" in
15885         *-lsfio*)
15886                 echo "Removing unneeded -lsfio from library list" >&4
15887                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
15888                 shift
15889                 libs="$*"
15890                 echo "libs = $libs" >&4
15891                 ;;
15892         esac
15893 ;;
15894 esac
15895
15896
15897 : see if shmctl exists
15898 set shmctl d_shmctl
15899 eval $inlibc
15900
15901 : see if shmget exists
15902 set shmget d_shmget
15903 eval $inlibc
15904
15905 : see if shmat exists
15906 set shmat d_shmat
15907 eval $inlibc
15908 : see what shmat returns
15909 case "$d_shmat" in
15910 "$define")
15911         $cat >shmat.c <<'END'
15912 #include <sys/shm.h>
15913 void *shmat();
15914 END
15915         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15916                 shmattype='void *'
15917         else
15918                 shmattype='char *'
15919         fi
15920         echo "and it returns ($shmattype)." >&4
15921         : see if a prototype for shmat is available
15922         xxx=`./findhdr sys/shm.h`
15923         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15924         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15925                 val="$define"
15926         else
15927                 val="$undef"
15928         fi
15929         $rm -f shmat.[co]
15930         ;;
15931 *)
15932         val="$undef"
15933         ;;
15934 esac
15935 set d_shmatprototype
15936 eval $setvar
15937
15938 : see if shmdt exists
15939 set shmdt d_shmdt
15940 eval $inlibc
15941
15942 : see how much of the 'shm*(2)' library is present.
15943 h_shm=true
15944 echo " "
15945 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
15946 *"$undef"*) h_shm=false;;
15947 esac
15948 case "$osname" in
15949 freebsd)
15950     case "`ipcs 2>&1`" in
15951     "SVID shared memory"*"not configured"*)
15952         echo "Your $osname does not have the shm*(2) configured." >&4
15953         h_shm=false
15954         val="$undef"
15955         set shmctl d_shmctl
15956         evat $setvar
15957         set shmget d_shmget
15958         evat $setvar
15959         set shmat d_shmat
15960         evat $setvar
15961         set shmdt d_shmdt
15962         evat $setvar
15963         ;;
15964     esac
15965     ;;
15966 esac
15967 : we could also check for sys/ipc.h ...
15968 if $h_shm && $test `./findhdr sys/shm.h`; then
15969         echo "You have the full shm*(2) library." >&4
15970         val="$define"
15971 else
15972         echo "You don't have the full shm*(2) library." >&4
15973         val="$undef"
15974 fi
15975 set d_shm
15976 eval $setvar
15977
15978 echo " "
15979 : see if we have sigaction
15980 if set sigaction val -f d_sigaction; eval $csym; $val; then
15981         echo 'sigaction() found.' >&4
15982         $cat > try.c <<EOP
15983 #include <stdio.h>
15984 #include <sys/types.h>
15985 #include <signal.h>
15986 #$i_stdlib I_STDLIB
15987 #ifdef I_STDLIB
15988 #include <stdlib.h>
15989 #endif
15990 int main()
15991 {
15992     struct sigaction act, oact;
15993     act.sa_flags = 0;
15994     oact.sa_handler = 0;
15995     /* so that act and oact are used */
15996     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
15997 }
15998 EOP
15999         set try
16000         if eval $compile_ok; then
16001                 val="$define"
16002         else
16003                 echo "But you don't seem to have a useable struct sigaction." >&4
16004                 val="$undef"
16005         fi
16006 else
16007         echo 'sigaction NOT found.' >&4
16008         val="$undef"
16009 fi
16010 set d_sigaction; eval $setvar
16011 $rm -f try try$_o try.c
16012
16013 : see if sigprocmask exists
16014 set sigprocmask d_sigprocmask
16015 eval $inlibc
16016
16017 : see if sigsetjmp exists
16018 echo " "
16019 case "$d_sigsetjmp" in
16020 '')
16021         $cat >try.c <<EOP
16022 #include <setjmp.h>
16023 #$i_stdlib I_STDLIB
16024 #ifdef I_STDLIB
16025 #include <stdlib.h>
16026 #endif
16027 sigjmp_buf env;
16028 int set = 1;
16029 int main()
16030 {
16031         if (sigsetjmp(env,1))
16032                 exit(set);
16033         set = 0;
16034         siglongjmp(env, 1);
16035         exit(1);
16036 }
16037 EOP
16038         set try
16039         if eval $compile; then
16040                 if $run ./try >/dev/null 2>&1; then
16041                         echo "POSIX sigsetjmp found." >&4
16042                         val="$define"
16043                 else
16044                         $cat >&4 <<EOM
16045 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
16046 I'll ignore them.
16047 EOM
16048                         val="$undef"
16049                 fi
16050         else
16051                 echo "sigsetjmp not found." >&4
16052                 val="$undef"
16053         fi
16054         ;;
16055 *) val="$d_sigsetjmp"
16056         case "$d_sigsetjmp" in
16057         $define) echo "POSIX sigsetjmp found." >&4;;
16058         $undef) echo "sigsetjmp not found." >&4;;
16059         esac
16060         ;;
16061 esac
16062 set d_sigsetjmp
16063 eval $setvar
16064 $rm -f try.c try
16065
16066 : see if sockatmark exists
16067 set sockatmark d_sockatmark
16068 eval $inlibc
16069
16070 : see if prototype for sockatmark is available
16071 echo " "
16072 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
16073 eval $hasproto
16074
16075 : see if socks5_init exists
16076 set socks5_init d_socks5_init
16077 eval $inlibc
16078
16079 : see if srand48_r exists
16080 set srand48_r d_srand48_r
16081 eval $inlibc
16082 case "$d_srand48_r" in
16083 "$define")
16084         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16085         case "$d_srand48_r_proto:$usethreads" in
16086         ":define")      d_srand48_r_proto=define
16087                 set d_srand48_r_proto srand48_r $hdrs
16088                 eval $hasproto ;;
16089         *)      ;;
16090         esac
16091         case "$d_srand48_r_proto" in
16092         define)
16093         case "$srand48_r_proto" in
16094         ''|0) try='int srand48_r(long, struct drand48_data*);'
16095         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
16096         esac
16097         case "$srand48_r_proto" in
16098         ''|0)   d_srand48_r=undef
16099                 srand48_r_proto=0
16100                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
16101         * )     case "$srand48_r_proto" in
16102                 REENTRANT_PROTO*) ;;
16103                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
16104                 esac
16105                 echo "Prototype: $try" ;;
16106         esac
16107         ;;
16108         *)      case "$usethreads" in
16109                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
16110                 esac
16111                 d_srand48_r=undef
16112                 srand48_r_proto=0
16113                 ;;
16114         esac
16115         ;;
16116 *)      srand48_r_proto=0
16117         ;;
16118 esac
16119
16120 : see if srandom_r exists
16121 set srandom_r d_srandom_r
16122 eval $inlibc
16123 case "$d_srandom_r" in
16124 "$define")
16125         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16126         case "$d_srandom_r_proto:$usethreads" in
16127         ":define")      d_srandom_r_proto=define
16128                 set d_srandom_r_proto srandom_r $hdrs
16129                 eval $hasproto ;;
16130         *)      ;;
16131         esac
16132         case "$d_srandom_r_proto" in
16133         define)
16134         case "$srandom_r_proto" in
16135         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
16136         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
16137         esac
16138         case "$srandom_r_proto" in
16139         ''|0)   d_srandom_r=undef
16140                 srandom_r_proto=0
16141                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
16142         * )     case "$srandom_r_proto" in
16143                 REENTRANT_PROTO*) ;;
16144                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
16145                 esac
16146                 echo "Prototype: $try" ;;
16147         esac
16148         ;;
16149         *)      case "$usethreads" in
16150                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
16151                 esac
16152                 d_srandom_r=undef
16153                 srandom_r_proto=0
16154                 ;;
16155         esac
16156         ;;
16157 *)      srandom_r_proto=0
16158         ;;
16159 esac
16160
16161 : see if prototype for setresgid is available
16162 echo " "
16163 set d_sresgproto setresgid $i_unistd unistd.h
16164 eval $hasproto
16165
16166 : see if prototype for setresuid is available
16167 echo " "
16168 set d_sresuproto setresuid $i_unistd unistd.h
16169 eval $hasproto
16170
16171 : see if sys/stat.h is available
16172 set sys/stat.h i_sysstat
16173 eval $inhdr
16174
16175
16176 : see if stat knows about block sizes
16177 echo " "
16178 echo "Checking to see if your struct stat has st_blocks field..." >&4
16179 set d_statblks stat st_blocks $i_sysstat sys/stat.h
16180 eval $hasfield
16181
16182
16183 : see if this is a sys/vfs.h system
16184 set sys/vfs.h i_sysvfs
16185 eval $inhdr
16186
16187
16188 : see if this is a sys/statfs.h system
16189 set sys/statfs.h i_sysstatfs
16190 eval $inhdr
16191
16192
16193 echo " "
16194 echo "Checking to see if your system supports struct statfs..." >&4
16195 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
16196 eval $hasstruct
16197 case "$d_statfs_s" in
16198 "$define")      echo "Yes, it does."   ;;
16199 *)              echo "No, it doesn't." ;;
16200 esac
16201
16202
16203
16204 : see if struct statfs knows about f_flags
16205 case "$d_statfs_s" in
16206 define) 
16207         echo " "
16208         echo "Checking to see if your struct statfs has f_flags field..." >&4
16209         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
16210         eval $hasfield
16211         ;;
16212 *)      val="$undef"
16213         set d_statfs_f_flags
16214         eval $setvar
16215         ;;
16216 esac
16217 case "$d_statfs_f_flags" in
16218 "$define")      echo "Yes, it does."   ;;
16219 *)              echo "No, it doesn't." ;;
16220 esac
16221
16222 $cat >&4 <<EOM
16223 Checking how to access stdio streams by file descriptor number...
16224 EOM
16225 case "$stdio_stream_array" in
16226 '')     $cat >try.c <<EOCP
16227 #include <stdio.h>
16228 int main() {
16229   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
16230     printf("yes\n");
16231 }
16232 EOCP
16233         for s in _iob __iob __sF
16234         do
16235                 set try -DSTDIO_STREAM_ARRAY=$s
16236                 if eval $compile; then
16237                         case "`$run ./try`" in
16238                         yes)    stdio_stream_array=$s; break ;;
16239                         esac
16240                 fi
16241         done
16242         $rm -f try.* try$exe_ext
16243 esac
16244 case "$stdio_stream_array" in
16245 '')     $cat >&4 <<EOM
16246 I can't figure out how to access stdio streams by file descriptor number.
16247 EOM
16248         d_stdio_stream_array="$undef"
16249         ;;
16250 *)      $cat >&4 <<EOM
16251 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
16252 EOM
16253         d_stdio_stream_array="$define"
16254         ;;
16255 esac
16256
16257 : see if strcoll exists
16258 set strcoll d_strcoll
16259 eval $inlibc
16260
16261 : check for structure copying
16262 echo " "
16263 echo "Checking to see if your C compiler can copy structs..." >&4
16264 $cat >try.c <<'EOCP'
16265 int main()
16266 {
16267         struct blurfl {
16268                 int dyick;
16269         } foo, bar;
16270
16271         foo = bar;
16272 }
16273 EOCP
16274 if $cc -c try.c >/dev/null 2>&1 ; then
16275         val="$define"
16276         echo "Yup, it can."
16277 else
16278         val="$undef"
16279         echo "Nope, it can't."
16280 fi
16281 set d_strctcpy
16282 eval $setvar
16283 $rm -f try.*
16284
16285 : see if strerror and/or sys_errlist[] exist
16286 echo " "
16287 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
16288     if set strerror val -f d_strerror; eval $csym; $val; then
16289                 echo 'strerror() found.' >&4
16290                 d_strerror="$define"
16291                 d_strerrm='strerror(e)'
16292                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16293                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
16294                         d_syserrlst="$define"
16295                 else
16296                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
16297                         d_syserrlst="$undef"
16298                 fi
16299     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
16300                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
16301                 echo 'strerror() found in string header.' >&4
16302                 d_strerror="$define"
16303                 d_strerrm='strerror(e)'
16304                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16305                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
16306                                 d_syserrlst="$define"
16307                 else
16308                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
16309                         d_syserrlst="$undef"
16310                 fi
16311     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
16312                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
16313                 d_strerror="$undef"
16314                 d_syserrlst="$define"
16315                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
16316     else
16317                 echo 'strerror() and sys_errlist[] NOT found.' >&4
16318                 d_strerror="$undef"
16319                 d_syserrlst="$undef"
16320                 d_strerrm='"unknown"'
16321     fi
16322 fi
16323
16324 : see if strerror_r exists
16325 set strerror_r d_strerror_r
16326 eval $inlibc
16327 case "$d_strerror_r" in
16328 "$define")
16329         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
16330         case "$d_strerror_r_proto:$usethreads" in
16331         ":define")      d_strerror_r_proto=define
16332                 set d_strerror_r_proto strerror_r $hdrs
16333                 eval $hasproto ;;
16334         *)      ;;
16335         esac
16336         case "$d_strerror_r_proto" in
16337         define)
16338         case "$strerror_r_proto" in
16339         ''|0) try='int strerror_r(int, char*, size_t);'
16340         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
16341         esac
16342         case "$strerror_r_proto" in
16343         ''|0) try='int strerror_r(int, char*, int);'
16344         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
16345         esac
16346         case "$strerror_r_proto" in
16347         ''|0) try='char* strerror_r(int, char*, size_t);'
16348         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
16349         esac
16350         case "$strerror_r_proto" in
16351         ''|0)   d_strerror_r=undef
16352                 strerror_r_proto=0
16353                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
16354         * )     case "$strerror_r_proto" in
16355                 REENTRANT_PROTO*) ;;
16356                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
16357                 esac
16358                 echo "Prototype: $try" ;;
16359         esac
16360         ;;
16361         *)      case "$usethreads" in
16362                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
16363                 esac
16364                 d_strerror_r=undef
16365                 strerror_r_proto=0
16366                 ;;
16367         esac
16368         ;;
16369 *)      strerror_r_proto=0
16370         ;;
16371 esac
16372
16373 : see if strftime exists
16374 set strftime d_strftime
16375 eval $inlibc
16376
16377 : see if strtod exists
16378 set strtod d_strtod
16379 eval $inlibc
16380
16381 : see if strtol exists
16382 set strtol d_strtol
16383 eval $inlibc
16384
16385 : see if strtold exists
16386 set strtold d_strtold
16387 eval $inlibc
16388
16389 : see if strtoll exists
16390 set strtoll d_strtoll
16391 eval $inlibc
16392
16393 case "$d_longlong-$d_strtoll" in
16394 "$define-$define")
16395         $cat <<EOM
16396 Checking whether your strtoll() works okay...
16397 EOM
16398         $cat >try.c <<'EOCP'
16399 #include <errno.h>
16400 #ifdef __hpux
16401 #define strtoll __strtoll
16402 #endif
16403 #ifdef __EMX__
16404 #define strtoll _strtoll
16405 #endif
16406 #include <stdio.h>
16407 extern long long int strtoll(char *s, char **, int); 
16408 static int bad = 0;
16409 int check(char *s, long long ell, int een) {
16410         long long gll;
16411         errno = 0;
16412         gll = strtoll(s, 0, 10);
16413         if (!((gll == ell) && (errno == een)))
16414                 bad++;
16415 }
16416 int main() {
16417         check(" 1",                                      1LL, 0);
16418         check(" 0",                                      0LL, 0);
16419         check("-1",                                     -1LL, 0);
16420         check("-9223372036854775808", -9223372036854775808LL, 0);
16421         check("-9223372036854775808", -9223372036854775808LL, 0);
16422         check(" 9223372036854775807",  9223372036854775807LL, 0);
16423         check("-9223372036854775808", -9223372036854775808LL, 0);
16424         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
16425         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
16426         if (!bad)
16427                 printf("ok\n");
16428 }
16429 EOCP
16430         set try
16431         if eval $compile; then
16432                 yyy=`$run ./try`
16433                 case "$yyy" in
16434                 ok) echo "Your strtoll() seems to be working okay." ;;
16435                 *) cat <<EOM >&4
16436 Your strtoll() doesn't seem to be working okay.
16437 EOM
16438                    d_strtoll="$undef"
16439                    ;;
16440                 esac
16441         else
16442                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16443                 d_strtoll="$undef"
16444         fi
16445         ;;
16446 esac
16447
16448 : see if strtoq exists
16449 set strtoq d_strtoq
16450 eval $inlibc
16451
16452 : see if strtoul exists
16453 set strtoul d_strtoul
16454 eval $inlibc
16455
16456 case "$d_strtoul" in
16457 "$define")
16458         $cat <<EOM
16459 Checking whether your strtoul() works okay...
16460 EOM
16461         $cat >try.c <<'EOCP'
16462 #include <errno.h>
16463 #include <stdio.h>
16464 extern unsigned long int strtoul(char *s, char **, int); 
16465 static int bad = 0;
16466 void check(char *s, unsigned long eul, int een) {
16467         unsigned long gul;
16468         errno = 0;
16469         gul = strtoul(s, 0, 10);
16470         if (!((gul == eul) && (errno == een)))
16471                 bad++;
16472 }
16473 int main() {
16474         check(" 1", 1L, 0);
16475         check(" 0", 0L, 0);
16476 EOCP
16477         case "$longsize" in
16478         8)
16479             $cat >>try.c <<'EOCP'
16480         check("18446744073709551615", 18446744073709551615UL, 0);
16481         check("18446744073709551616", 18446744073709551615UL, ERANGE);
16482 #if 0 /* strtoul() for /^-/ strings is undefined. */
16483         check("-1", 18446744073709551615UL, 0);
16484         check("-18446744073709551614", 2, 0);
16485         check("-18446744073709551615", 1, 0);
16486         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
16487         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
16488 #endif
16489 EOCP
16490                 ;;
16491         4)
16492                     $cat >>try.c <<'EOCP'
16493         check("4294967295", 4294967295UL, 0);
16494         check("4294967296", 4294967295UL, ERANGE);
16495 #if 0 /* strtoul() for /^-/ strings is undefined. */
16496         check("-1", 4294967295UL, 0);
16497         check("-4294967294", 2, 0);
16498         check("-4294967295", 1, 0);
16499         check("-4294967296", 4294967295UL, ERANGE);
16500         check("-4294967297", 4294967295UL, ERANGE);
16501 #endif
16502 EOCP
16503                 ;;
16504         *)
16505 : Should we write these tests to be more portable by sprintf-ing
16506 : ~0 and then manipulating that char string as input for strtol?
16507                 ;;
16508         esac
16509         $cat >>try.c <<'EOCP'
16510         if (!bad)
16511                 printf("ok\n");
16512         return 0;
16513 }
16514 EOCP
16515         set try
16516         if eval $compile; then
16517                 case "`$run ./try`" in
16518                 ok) echo "Your strtoul() seems to be working okay." ;;
16519                 *) cat <<EOM >&4
16520 Your strtoul() doesn't seem to be working okay.
16521 EOM
16522                    d_strtoul="$undef"
16523                    ;;
16524                 esac
16525         fi
16526         ;;
16527 esac
16528
16529 : see if strtoull exists
16530 set strtoull d_strtoull
16531 eval $inlibc
16532
16533 case "$d_longlong-$d_strtoull" in
16534 "$define-$define")
16535         $cat <<EOM
16536 Checking whether your strtoull() works okay...
16537 EOM
16538         $cat >try.c <<'EOCP'
16539 #include <errno.h>
16540 #ifdef __hpux
16541 #define strtoull __strtoull
16542 #endif
16543 #include <stdio.h>
16544 extern unsigned long long int strtoull(char *s, char **, int); 
16545 static int bad = 0;
16546 int check(char *s, long long eull, int een) {
16547         long long gull;
16548         errno = 0;
16549         gull = strtoull(s, 0, 10);
16550         if (!((gull == eull) && (errno == een)))
16551                 bad++;
16552 }
16553 int main() {
16554         check(" 1",                                        1LL, 0);
16555         check(" 0",                                        0LL, 0);
16556         check("18446744073709551615",  18446744073709551615ULL, 0);
16557         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16558 #if 0 /* strtoull() for /^-/ strings is undefined. */
16559         check("-1",                    18446744073709551615ULL, 0);
16560         check("-18446744073709551614",                     2LL, 0);
16561         check("-18446744073709551615",                     1LL, 0);
16562         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16563         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16564 #endif
16565         if (!bad)
16566                 printf("ok\n");
16567 }
16568 EOCP
16569         set try
16570         if eval $compile; then
16571                 case "`$run ./try`" in
16572                 ok) echo "Your strtoull() seems to be working okay." ;;
16573                 *) cat <<EOM >&4
16574 Your strtoull() doesn't seem to be working okay.
16575 EOM
16576                    d_strtoull="$undef"
16577                    ;;
16578                 esac
16579         fi
16580         ;;
16581 esac
16582
16583 : see if strtouq exists
16584 set strtouq d_strtouq
16585 eval $inlibc
16586
16587 case "$d_strtouq" in
16588 "$define")
16589         $cat <<EOM
16590 Checking whether your strtouq() works okay...
16591 EOM
16592         $cat >try.c <<'EOCP'
16593 #include <errno.h>
16594 #include <stdio.h>
16595 extern unsigned long long int strtouq(char *s, char **, int); 
16596 static int bad = 0;
16597 void check(char *s, unsigned long long eull, int een) {
16598         unsigned long long gull;
16599         errno = 0;
16600         gull = strtouq(s, 0, 10);
16601         if (!((gull == eull) && (errno == een)))
16602                 bad++;
16603 }
16604 int main() {
16605         check(" 1",                                        1LL, 0);
16606         check(" 0",                                        0LL, 0);
16607         check("18446744073709551615",  18446744073709551615ULL, 0);
16608         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16609 #if 0 /* strtouq() for /^-/ strings is undefined. */
16610         check("-1",                    18446744073709551615ULL, 0);
16611         check("-18446744073709551614",                     2LL, 0);
16612         check("-18446744073709551615",                     1LL, 0);
16613         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16614         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16615 #endif
16616         if (!bad)
16617                 printf("ok\n");
16618         return 0;
16619 }
16620 EOCP
16621         set try
16622         if eval $compile; then
16623                 case "`$run ./try`" in
16624                 ok) echo "Your strtouq() seems to be working okay." ;;
16625                 *) cat <<EOM >&4
16626 Your strtouq() doesn't seem to be working okay.
16627 EOM
16628                    d_strtouq="$undef"
16629                    ;;
16630                 esac
16631         fi
16632         ;;
16633 esac
16634
16635 : see if strxfrm exists
16636 set strxfrm d_strxfrm
16637 eval $inlibc
16638
16639 : see if symlink exists
16640 set symlink d_symlink
16641 eval $inlibc
16642
16643 : see if syscall exists
16644 set syscall d_syscall
16645 eval $inlibc
16646
16647 : see if prototype for syscall is available
16648 echo " "
16649 set d_syscallproto syscall $i_unistd unistd.h
16650 eval $hasproto
16651
16652 : see if sysconf exists
16653 set sysconf d_sysconf
16654 eval $inlibc
16655
16656 : see if system exists
16657 set system d_system
16658 eval $inlibc
16659
16660 : see if tcgetpgrp exists
16661 set tcgetpgrp d_tcgetpgrp
16662 eval $inlibc
16663
16664 : see if tcsetpgrp exists
16665 set tcsetpgrp d_tcsetpgrp
16666 eval $inlibc
16667
16668 : see if prototype for telldir is available
16669 echo " "
16670 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16671 eval $hasproto
16672
16673 : see if time exists
16674 echo " "
16675 if test "X$d_time" = X -o X"$timetype" = X; then
16676     if set time val -f d_time; eval $csym; $val; then
16677                 echo 'time() found.' >&4
16678                 val="$define"
16679                 rp="What is the type returned by time() on this system?"
16680                 set time_t timetype long stdio.h sys/types.h
16681                 eval $typedef_ask
16682     else
16683                 echo 'time() not found, hope that will do.' >&4
16684                 val="$undef"
16685                 timetype='int';
16686     fi
16687     set d_time
16688     eval $setvar
16689 fi
16690
16691 : see if this is a sys/times.h system
16692 set sys/times.h i_systimes
16693 eval $inhdr
16694
16695 : see if times exists
16696 echo " "
16697 if set times val -f d_times; eval $csym; $val; then
16698         echo 'times() found.' >&4
16699         d_times="$define"
16700         inc=''
16701         case "$i_systimes" in
16702         "$define") inc='sys/times.h';;
16703         esac
16704         rp="What is the type returned by times() on this system?"
16705         set clock_t clocktype long stdio.h sys/types.h $inc
16706         eval $typedef_ask
16707 else
16708         echo 'times() NOT found, hope that will do.' >&4
16709         d_times="$undef"
16710         clocktype='int'
16711 fi
16712
16713 : see if tmpnam_r exists
16714 set tmpnam_r d_tmpnam_r
16715 eval $inlibc
16716 case "$d_tmpnam_r" in
16717 "$define")
16718         hdrs="$i_systypes sys/types.h define stdio.h "
16719         case "$d_tmpnam_r_proto:$usethreads" in
16720         ":define")      d_tmpnam_r_proto=define
16721                 set d_tmpnam_r_proto tmpnam_r $hdrs
16722                 eval $hasproto ;;
16723         *)      ;;
16724         esac
16725         case "$d_tmpnam_r_proto" in
16726         define)
16727         case "$tmpnam_r_proto" in
16728         ''|0) try='char* tmpnam_r(char*);'
16729         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16730         esac
16731         case "$tmpnam_r_proto" in
16732         ''|0)   d_tmpnam_r=undef
16733                 tmpnam_r_proto=0
16734                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16735         * )     case "$tmpnam_r_proto" in
16736                 REENTRANT_PROTO*) ;;
16737                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16738                 esac
16739                 echo "Prototype: $try" ;;
16740         esac
16741         ;;
16742         *)      case "$usethreads" in
16743                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16744                 esac
16745                 d_tmpnam_r=undef
16746                 tmpnam_r_proto=0
16747                 ;;
16748         esac
16749         ;;
16750 *)      tmpnam_r_proto=0
16751         ;;
16752 esac
16753
16754 : see if truncate exists
16755 set truncate d_truncate
16756 eval $inlibc
16757
16758 : see if ttyname_r exists
16759 set ttyname_r d_ttyname_r
16760 eval $inlibc
16761 case "$d_ttyname_r" in
16762 "$define")
16763         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16764         case "$d_ttyname_r_proto:$usethreads" in
16765         ":define")      d_ttyname_r_proto=define
16766                 set d_ttyname_r_proto ttyname_r $hdrs
16767                 eval $hasproto ;;
16768         *)      ;;
16769         esac
16770         case "$d_ttyname_r_proto" in
16771         define)
16772         case "$ttyname_r_proto" in
16773         ''|0) try='int ttyname_r(int, char*, size_t);'
16774         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16775         esac
16776         case "$ttyname_r_proto" in
16777         ''|0) try='int ttyname_r(int, char*, int);'
16778         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16779         esac
16780         case "$ttyname_r_proto" in
16781         ''|0) try='char* ttyname_r(int, char*, int);'
16782         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16783         esac
16784         case "$ttyname_r_proto" in
16785         ''|0)   d_ttyname_r=undef
16786                 ttyname_r_proto=0
16787                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16788         * )     case "$ttyname_r_proto" in
16789                 REENTRANT_PROTO*) ;;
16790                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16791                 esac
16792                 echo "Prototype: $try" ;;
16793         esac
16794         ;;
16795         *)      case "$usethreads" in
16796                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16797                 esac
16798                 d_ttyname_r=undef
16799                 ttyname_r_proto=0
16800                 ;;
16801         esac
16802         ;;
16803 *)      ttyname_r_proto=0
16804         ;;
16805 esac
16806
16807 : see if tzname[] exists
16808 echo " "
16809 if set tzname val -a d_tzname; eval $csym; $val; then
16810         val="$define"
16811         echo 'tzname[] found.' >&4
16812 else
16813         val="$undef"
16814         echo 'tzname[] NOT found.' >&4
16815 fi
16816 set d_tzname
16817 eval $setvar
16818
16819 case "$osname" in
16820 next|rhapsody|darwin) multiarch="$define" ;;
16821 esac
16822 case "$multiarch" in
16823 ''|[nN]*) multiarch="$undef" ;;
16824 esac
16825
16826 : check for ordering of bytes in a UV
16827 echo " "
16828 case "$usecrosscompile$multiarch" in
16829 *$define*)
16830         $cat <<EOM
16831 You seem to be either cross-compiling or doing a multiarchitecture build,
16832 skipping the byteorder check.
16833
16834 EOM
16835         byteorder='ffff'
16836         ;;
16837 *)
16838         case "$byteorder" in
16839         '')
16840                 $cat <<'EOM'
16841 In the following, larger digits indicate more significance.  A big-endian
16842 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16843 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16844 machines may have weird orders like 3412.  A Cray will report 87654321,
16845 an Alpha will report 12345678. If the test program works the default is
16846 probably right.
16847 I'm now running the test program...
16848 EOM
16849                 $cat >try.c <<EOCP
16850 #include <stdio.h>
16851 #$i_stdlib I_STDLIB
16852 #ifdef I_STDLIB
16853 #include <stdlib.h>
16854 #endif
16855 #include <sys/types.h>
16856 typedef $uvtype UV;
16857 int main()
16858 {
16859         int i;
16860         union {
16861                 UV l;
16862                 char c[$uvsize];
16863         } u;
16864
16865         if ($uvsize > 4)
16866                 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
16867         else
16868                 u.l = (UV)0x04030201;
16869         for (i = 0; i < $uvsize; i++)
16870                 printf("%c", u.c[i]+'0');
16871         printf("\n");
16872         exit(0);
16873 }
16874 EOCP
16875                 xxx_prompt=y
16876                 set try
16877                 if eval $compile && ./try > /dev/null; then
16878                         dflt=`$run ./try`
16879                         case "$dflt" in
16880                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16881                                 echo "(The test program ran ok.)"
16882                                 echo "byteorder=$dflt"
16883                                 xxx_prompt=n
16884                         ;;
16885                         ????|????????) echo "(The test program ran ok.)" ;;
16886                         *) echo "(The test program didn't run right for some reason.)" ;;
16887                         esac
16888                 else
16889                         dflt='4321'
16890                         cat <<'EOM'
16891 (I can't seem to compile the test program.  Guessing big-endian...)
16892 EOM
16893                 fi
16894                 case "$xxx_prompt" in
16895                 y)
16896                         rp="What is the order of bytes in $uvtype?"
16897                         . ./myread
16898                         byteorder="$ans"
16899                         ;;
16900                 *)      byteorder=$dflt
16901                         ;;
16902                 esac
16903                 ;;
16904         esac
16905         $rm -f try.c try
16906         ;;
16907 esac
16908
16909
16910 $cat <<EOM
16911
16912 Checking to see whether you can access character data unalignedly...
16913 EOM
16914 case "$d_u32align" in
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 #define U32 $u32type
16922 #define BYTEORDER 0x$byteorder
16923 #define U8 $u8type
16924 #include <signal.h>
16925 #ifdef SIGBUS
16926 $signal_t bletch(s) int s; { exit(4); }
16927 #endif
16928 int main() {
16929 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
16930     U8 buf[8];
16931     U32 *up;
16932     int i;
16933
16934     if (sizeof(U32) != 4) {
16935         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
16936         exit(1);
16937     }
16938
16939     fflush(stdout);
16940
16941 #ifdef SIGBUS
16942     signal(SIGBUS, bletch);
16943 #endif
16944
16945     buf[0] = 0;
16946     buf[1] = 0;
16947     buf[2] = 0;
16948     buf[3] = 1;
16949     buf[5] = 0;
16950     buf[6] = 0;
16951     buf[7] = 0;
16952     buf[8] = 1;
16953
16954     for (i = 0; i < 4; i++) {
16955         up = (U32*)(buf + i);
16956         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
16957                (*up == 1 << (8*(3-i)))  /* little-endian */
16958               )
16959            )
16960         {
16961             printf("read failed (%x)\n", *up);
16962             exit(2);
16963         }
16964     }
16965
16966     /* write test */
16967     for (i = 0; i < 4; i++) {
16968         up = (U32*)(buf + i);
16969         *up = 0xBeef;
16970         if (*up != 0xBeef) {
16971             printf("write failed (%x)\n", *up);
16972             exit(3);
16973         }
16974     }
16975
16976     exit(0);
16977 #else
16978     printf("1\n");
16979     exit(1);
16980 #endif
16981     return 0;
16982 }
16983 EOCP
16984 set try
16985 if eval $compile_ok; then
16986         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
16987         $run ./try 2>&1 >/dev/null
16988         case "$?" in
16989         0)      cat >&4 <<EOM
16990 You can access character data pretty unalignedly.
16991 EOM
16992                 d_u32align="$undef"
16993                 ;;
16994         *)      cat >&4 <<EOM
16995 It seems that you must access character data in an aligned manner.
16996 EOM
16997                 d_u32align="$define"
16998                 ;;
16999         esac
17000 else
17001         rp='Can you access character data at unaligned addresses?'
17002         dflt='n'
17003         . ./myread
17004         case "$ans" in
17005         [yY]*)  d_u32align="$undef"  ;;
17006         *)      d_u32align="$define" ;;
17007         esac
17008 fi
17009 $rm -f core core.try.* try.core
17010 ;;
17011 esac
17012
17013 : see if ualarm exists
17014 set ualarm d_ualarm
17015 eval $inlibc
17016
17017 : see if umask exists
17018 set umask d_umask
17019 eval $inlibc
17020
17021 : see if unordered exists
17022 set unordered d_unordered
17023 eval $inlibc
17024
17025 : see if usleep exists
17026 set usleep d_usleep
17027 eval $inlibc
17028
17029 : see if prototype for usleep is available
17030 echo " "
17031 set d_usleepproto usleep $i_unistd unistd.h
17032 eval $hasproto
17033
17034 : see if ustat exists
17035 set ustat d_ustat
17036 eval $inlibc
17037
17038 : backward compatibility for d_hvfork
17039 if test X$d_hvfork != X; then
17040         d_vfork="$d_hvfork"
17041         d_hvfork=''
17042 fi
17043 : see if there is a vfork
17044 val=''
17045 set vfork val
17046 eval $inlibc
17047
17048 : Ok, but do we want to use it. vfork is reportedly unreliable in 
17049 : perl on Solaris 2.x, and probably elsewhere.
17050 case "$val" in
17051 $define)
17052         echo " "
17053         case "$usevfork" in
17054         false) dflt='n';;
17055         *) dflt='y';;
17056         esac
17057         cat <<'EOM'
17058  
17059 Perl can only use a vfork() that doesn't suffer from strict
17060 restrictions on calling functions or modifying global data in
17061 the child.  For example, glibc-2.1 contains such a vfork()
17062 that is unsuitable.  If your system provides a proper fork()
17063 call, chances are that you do NOT want perl to use vfork().
17064
17065 EOM
17066         rp="Do you still want to use vfork()?"
17067         . ./myread
17068         case "$ans" in
17069         y|Y) ;;
17070         *)
17071                 echo "Ok, we won't use vfork()."
17072                 val="$undef"
17073                 ;;
17074         esac
17075         ;;
17076 esac
17077 set d_vfork
17078 eval $setvar
17079 case "$d_vfork" in
17080 $define) usevfork='true';;
17081 *) usevfork='false';;
17082 esac
17083
17084 : see if closedir exists
17085 set closedir d_closedir
17086 eval $inlibc
17087
17088 case "$d_closedir" in
17089 "$define")
17090         echo " "
17091         echo "Checking whether closedir() returns a status..." >&4
17092         cat > try.c <<EOM
17093 #$i_dirent I_DIRENT             /**/
17094 #$i_sysdir I_SYS_DIR            /**/
17095 #$i_sysndir I_SYS_NDIR          /**/
17096 #$i_systypes I_SYS_TYPES        /**/
17097
17098 #if defined(I_SYS_TYPES)
17099 #include <sys/types.h>
17100 #endif
17101 #if defined(I_DIRENT)
17102 #include <dirent.h>
17103 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
17104 #include <sys/dir.h>
17105 #endif
17106 #else
17107 #ifdef I_SYS_NDIR
17108 #include <sys/ndir.h>
17109 #else
17110 #ifdef I_SYS_DIR
17111 #ifdef hp9000s500
17112 #include <ndir.h>       /* may be wrong in the future */
17113 #else
17114 #include <sys/dir.h>
17115 #endif
17116 #endif
17117 #endif
17118 #endif 
17119 int main() { return closedir(opendir(".")); }
17120 EOM
17121         set try
17122         if eval $compile_ok; then
17123                 if $run ./try > /dev/null 2>&1 ; then
17124                         echo "Yes, it does."
17125                         val="$undef"
17126                 else
17127                         echo "No, it doesn't."
17128                         val="$define"
17129                 fi
17130         else
17131                 echo "(I can't seem to compile the test program--assuming it doesn't)"
17132                 val="$define"
17133         fi
17134         ;;
17135 *)
17136         val="$undef";
17137         ;;
17138 esac
17139 set d_void_closedir
17140 eval $setvar
17141 $rm -f try try.*
17142 : see if there is a wait4
17143 set wait4 d_wait4
17144 eval $inlibc
17145
17146 : see if waitpid exists
17147 set waitpid d_waitpid
17148 eval $inlibc
17149
17150 : see if wcstombs exists
17151 set wcstombs d_wcstombs
17152 eval $inlibc
17153
17154 : see if wctomb exists
17155 set wctomb d_wctomb
17156 eval $inlibc
17157
17158 : see if writev exists
17159 set writev d_writev
17160 eval $inlibc
17161
17162 : preserve RCS keywords in files with variable substitution, grrr
17163 Date='$Date'
17164 Id='$Id'
17165 Log='$Log'
17166 RCSfile='$RCSfile'
17167 Revision='$Revision'
17168
17169 : check for alignment requirements
17170 echo " "
17171 case "$usecrosscompile$multiarch" in
17172 *$define*)
17173         $cat <<EOM
17174 You seem to be either cross-compiling or doing a multiarchitecture build,
17175 skipping the memory alignment check.
17176
17177 EOM
17178         case "$alignbytes" in
17179         '') alignbytes=8 ;;
17180         esac
17181         ;;
17182 *)
17183         case "$alignbytes" in
17184         '') echo "Checking alignment constraints..." >&4
17185                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
17186                         $cat >try.c <<'EOCP'
17187 typedef long double NV;
17188 EOCP
17189                 else
17190                         $cat >try.c <<'EOCP'
17191 typedef double NV;
17192 EOCP
17193                 fi
17194                 $cat >>try.c <<'EOCP'
17195 #include <stdio.h>
17196 struct foobar {
17197         char foo;
17198         NV bar;
17199 } try_algn;
17200 int main()
17201 {
17202     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
17203     return(0);
17204 }
17205 EOCP
17206                 set try
17207                 if eval $compile_ok; then
17208                         dflt=`$run ./try`
17209                 else
17210                         dflt='8'
17211                         echo "(I can't seem to compile the test program...)"
17212                 fi
17213                 ;;
17214         *) dflt="$alignbytes"
17215                 ;;
17216         esac
17217         rp="Doubles must be aligned on a how-many-byte boundary?"
17218         . ./myread
17219         alignbytes="$ans"
17220         $rm -f try.c try
17221         ;;
17222 esac
17223
17224
17225 : set the base revision
17226 baserev=5.0
17227
17228 : how do we catenate cpp tokens here?
17229 echo " "
17230 echo "Checking to see how your cpp does stuff like catenate tokens..." >&4
17231 $cat >cpp_stuff.c <<'EOCP'
17232 #define RCAT(a,b)a/**/b
17233 #define ACAT(a,b)a ## b
17234 RCAT(Rei,ser)
17235 ACAT(Cir,cus)
17236 EOCP
17237 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
17238 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
17239         echo "Oh!  Smells like ANSI's been here." >&4
17240         echo "We can catify or stringify, separately or together!"
17241         cpp_stuff=42
17242 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
17243         echo "Ah, yes!  The good old days!" >&4
17244         echo "However, in the good old days we don't know how to stringify and"
17245         echo "catify at the same time."
17246         cpp_stuff=1
17247 else
17248         $cat >&4 <<EOM
17249 Hmm, I don't seem to be able to catenate tokens with your cpp.  You're going
17250 to have to edit the values of CAT[2-5] in config.h...
17251 EOM
17252         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
17253 fi
17254 $rm -f cpp_stuff.*
17255
17256 : see if this is a db.h system
17257 set db.h i_db
17258 eval $inhdr
17259
17260 case "$i_db" in
17261 $define)
17262         : Check db version.
17263         echo " "
17264         echo "Checking Berkeley DB version ..." >&4
17265         $cat >try.c <<EOCP
17266 #$d_const HASCONST
17267 #ifndef HASCONST
17268 #define const
17269 #endif
17270 #include <sys/types.h>
17271 #include <stdio.h>
17272 #$i_stdlib I_STDLIB
17273 #ifdef I_STDLIB
17274 #include <stdlib.h>
17275 #endif
17276 #include <db.h>
17277 int main(int argc, char *argv[])
17278 {
17279 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
17280     int Major, Minor, Patch ;
17281     unsigned long Version ;
17282     (void)db_version(&Major, &Minor, &Patch) ;
17283     if (argc == 2) {
17284         printf("%d %d %d %d %d %d\n",
17285                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
17286                Major, Minor, Patch);
17287         exit(0);
17288     }
17289     printf("You have Berkeley DB Version 2 or greater.\n");
17290
17291     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
17292                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
17293     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
17294                 Major, Minor, Patch) ;
17295
17296     /* check that db.h & libdb are compatible */
17297     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
17298         printf("db.h and libdb are incompatible.\n") ;
17299         exit(3);        
17300     }
17301
17302     printf("db.h and libdb are compatible.\n") ;
17303
17304     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
17305                 + DB_VERSION_PATCH ;
17306
17307     /* needs to be >= 2.3.4 */
17308     if (Version < 2003004) {
17309     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
17310         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
17311         exit(2);        
17312     }
17313
17314     exit(0);
17315 #else
17316 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
17317     if (argc == 2) {
17318         printf("1 0 0\n");
17319         exit(0);
17320     }
17321     printf("You have Berkeley DB Version 1.\n");
17322     exit(0);    /* DB version < 2: the coast is clear. */
17323 #else
17324     exit(1);    /* <db.h> not Berkeley DB? */
17325 #endif
17326 #endif
17327 }
17328 EOCP
17329         set try
17330         if eval $compile_ok && $run ./try; then
17331                 echo 'Looks OK.' >&4
17332                 set `$run ./try 1`
17333                 db_version_major=$1
17334                 db_version_minor=$2
17335                 db_version_patch=$3
17336         else
17337                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
17338                 i_db=$undef
17339                 case " $libs " in
17340                 *"-ldb "*)
17341                         : Remove db from list of libraries to use
17342                         echo "Removing unusable -ldb from library list" >&4
17343                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
17344                         shift
17345                         libs="$*"
17346                         echo "libs = $libs" >&4
17347                         ;;
17348                 esac
17349         fi
17350         $rm -f try.*
17351         ;;
17352 esac
17353
17354 case "$i_db" in
17355 define)
17356         : Check the return type needed for hash 
17357         echo " "
17358         echo "Checking return type needed for hash for Berkeley DB ..." >&4
17359         $cat >try.c <<EOCP
17360 #$d_const HASCONST
17361 #ifndef HASCONST
17362 #define const
17363 #endif
17364 #include <sys/types.h>
17365 #include <db.h>
17366
17367 #ifndef DB_VERSION_MAJOR
17368 u_int32_t hash_cb (ptr, size)
17369 const void *ptr;
17370 size_t size;
17371 {
17372 }
17373 HASHINFO info;
17374 int main()
17375 {
17376         info.hash = hash_cb;
17377 }
17378 #endif
17379 EOCP
17380         if $cc $ccflags -c try.c >try.out 2>&1 ; then
17381                 if $contains warning try.out >>/dev/null 2>&1 ; then
17382                         db_hashtype='int'
17383                 else
17384                         db_hashtype='u_int32_t'
17385                 fi
17386         else
17387                 : XXX Maybe we should just give up here.
17388                 db_hashtype=u_int32_t
17389                 $cat try.out >&4
17390                 echo "Help:  I can't seem to compile the db test program." >&4
17391                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
17392         fi
17393         $rm -f try.*
17394         echo "Your version of Berkeley DB uses $db_hashtype for hash."
17395         ;;
17396 *)      db_hashtype=u_int32_t
17397         ;;
17398 esac
17399 case "$i_db" in
17400 define)
17401         : Check the return type needed for prefix 
17402         echo " "
17403         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
17404         cat >try.c <<EOCP
17405 #$d_const HASCONST
17406 #ifndef HASCONST
17407 #define const
17408 #endif
17409 #include <sys/types.h>
17410 #include <db.h>
17411
17412 #ifndef DB_VERSION_MAJOR
17413 size_t prefix_cb (key1, key2)
17414 const DBT *key1;
17415 const DBT *key2;
17416 {
17417 }
17418 BTREEINFO info;
17419 int main()
17420 {
17421         info.prefix = prefix_cb;
17422 }
17423 #endif
17424 EOCP
17425         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
17426                 if $contains warning try.out >>/dev/null 2>&1 ; then
17427                         db_prefixtype='int'
17428                 else
17429                         db_prefixtype='size_t'
17430                 fi
17431         else
17432                 db_prefixtype='size_t'
17433                 : XXX Maybe we should just give up here.
17434                 $cat try.out >&4
17435                 echo "Help:  I can't seem to compile the db test program." >&4
17436                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
17437         fi
17438         $rm -f try.*
17439         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
17440         ;;
17441 *)      db_prefixtype='size_t'
17442         ;;
17443 esac
17444
17445
17446 : How can we generate normalized random numbers ?
17447 echo " "
17448 echo "Looking for a random number function..." >&4
17449 case "$randfunc" in
17450 '')
17451         if set drand48 val -f; eval $csym; $val; then
17452                 dflt="drand48"
17453                 echo "Good, found drand48()." >&4
17454         elif set random val -f; eval $csym; $val; then
17455                 dflt="random"
17456                 echo "OK, found random()." >&4
17457         else
17458                 dflt="rand"
17459                 echo "Yick, looks like I have to use rand()." >&4
17460         fi
17461         echo " "
17462         ;;
17463 *)
17464         dflt="$randfunc"
17465         ;;
17466 esac
17467 cont=true
17468
17469 case "$ccflags" in
17470 *-Dmy_rand=*|*-Dmy_srand=*)
17471         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
17472         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
17473         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
17474         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
17475         ;;
17476 esac
17477
17478 while $test "$cont"; do
17479         rp="Use which function to generate random numbers?"
17480         . ./myread
17481         if $test "$ans" = "$dflt"; then
17482                 : null
17483         else
17484                 randbits=''
17485         fi
17486         randfunc="$ans"
17487         if set $ans val -f; eval $csym; $val; then
17488                 cont=''
17489         else
17490                 dflt=y
17491                 rp="I cannot find function $ans. Use that name anyway?"
17492                 . ./myread
17493                 dflt=rand
17494                 case "$ans" in
17495                         [yY]*) cont='';;
17496                 esac
17497         fi
17498         case "$cont" in
17499         '')
17500                 case "$randfunc" in
17501                 drand48)
17502                         drand01="drand48()"
17503                         seedfunc="srand48"
17504                         randbits=48
17505                         randseedtype=long
17506                         ;;
17507                 rand|random)
17508                         case "$randbits" in
17509                         '')
17510 echo "Checking to see how many bits your $randfunc() function produces..." >&4
17511                                 $cat >try.c <<EOCP
17512 #$i_unistd I_UNISTD
17513 #$i_stdlib I_STDLIB
17514 #include <stdio.h>
17515 #ifdef I_UNISTD
17516 #  include <unistd.h>
17517 #endif
17518 #ifdef I_STDLIB
17519 #  include <stdlib.h>
17520 #endif
17521 int main()
17522 {
17523         register int i;
17524         register unsigned long tmp;
17525         register unsigned long max = 0L;
17526
17527         for (i = 1000; i; i--) {
17528                 tmp = (unsigned long) $randfunc();
17529                 if (tmp > max) max = tmp;
17530         }
17531         for (i = 0; max; i++)
17532                 max /= 2;
17533         printf("%d\n",i);
17534 }
17535 EOCP
17536                                 set try
17537                                 if eval $compile_ok; then
17538                                         dflt=`try`
17539                                 else
17540                                         dflt='?'
17541                                         echo "(I can't seem to compile the test program...)"
17542                                 fi
17543                                 ;;
17544                         *)
17545                                 dflt="$randbits"
17546                                 ;;
17547                         esac
17548                         rp="How many bits does your $randfunc() function produce?"
17549                         . ./myread
17550                         randbits="$ans"
17551                         $rm -f try.c try
17552                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17553                         seedfunc="s$randfunc"
17554                         randseedtype=unsigned
17555                         ;;
17556                 *)
17557                         dflt="31"
17558                         rp="How many bits does your $randfunc() function produce?"
17559                         . ./myread
17560                         randbits="$ans"
17561                         seedfunc="s$randfunc"
17562                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17563                         if set $seedfunc val -f; eval $csym; $val; then
17564                                 echo "(Using $seedfunc() to seed random generator)"
17565                         else
17566                                 echo "(Warning: no $seedfunc() to seed random generator)"
17567                                 seedfunc=rand
17568                         fi
17569                         randseedtype=unsigned
17570                         ;;
17571                 esac
17572                 ;;
17573         esac
17574 done
17575
17576 echo " "
17577 echo "Determining whether or not we are on an EBCDIC system..." >&4
17578 $cat >try.c <<'EOM'
17579 int main()
17580 {
17581   if ('M'==0xd4) return 0;
17582   return 1;
17583 }
17584 EOM
17585
17586 val=$undef
17587 set try
17588 if eval $compile_ok; then
17589         if $run ./try; then
17590                 echo "You seem to speak EBCDIC." >&4
17591                 val="$define"
17592         else
17593                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
17594         fi
17595 else
17596         echo "I'm unable to compile the test program." >&4
17597         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
17598 fi
17599 $rm -f try try.*
17600 set ebcdic
17601 eval $setvar
17602
17603 echo " "
17604 $cat >&4 <<EOM
17605 Checking how to flush all pending stdio output...
17606 EOM
17607 # I only know how to find the first 32 possibly open files on SunOS.
17608 # See also hints/sunos_4_1.sh and util.c  --AD
17609 case "$osname" in
17610 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
17611 esac
17612 $cat >>try.c <<EOCP
17613 #include <stdio.h>
17614 #$i_stdlib I_STDLIB
17615 #ifdef I_STDLIB
17616 #include <stdlib.h>
17617 #endif
17618 #$i_unistd I_UNISTD
17619 #ifdef I_UNISTD
17620 # include <unistd.h>
17621 #endif
17622 #$d_sysconf HAS_SYSCONF
17623 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
17624 #ifdef HAS_STDIO_STREAM_ARRAY
17625 # define STDIO_STREAM_ARRAY $stdio_stream_array
17626 #endif
17627 int main() {
17628   FILE* p;
17629   unlink("try.out");
17630   p = fopen("try.out", "w");
17631 #ifdef TRY_FPUTC
17632   fputc('x', p);
17633 #else
17634 # ifdef TRY_FPRINTF
17635   fprintf(p, "x");
17636 # endif
17637 #endif
17638 #ifdef TRY_FFLUSH_NULL
17639   fflush(NULL);
17640 #endif
17641 #ifdef TRY_FFLUSH_ALL
17642   {
17643     long open_max = -1;
17644 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
17645     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
17646 # else
17647 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
17648     open_max = sysconf(_SC_OPEN_MAX);
17649 #  else
17650 #   ifdef FOPEN_MAX
17651     open_max = FOPEN_MAX;
17652 #   else
17653 #    ifdef OPEN_MAX
17654     open_max = OPEN_MAX;
17655 #    else
17656 #     ifdef _NFILE
17657     open_max = _NFILE;
17658 #     endif
17659 #    endif
17660 #   endif
17661 #  endif
17662 # endif 
17663 # ifdef HAS_STDIO_STREAM_ARRAY
17664     if (open_max > 0) {
17665       long i;
17666       for (i = 0; i < open_max; i++)
17667             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17668                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17669                 STDIO_STREAM_ARRAY[i]._flag)
17670                 fflush(&STDIO_STREAM_ARRAY[i]);
17671     }   
17672   }
17673 # endif
17674 #endif
17675   _exit(42);
17676 }
17677 EOCP
17678 : first we have to find out how _not_ to flush
17679 $to try.c
17680 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17681     output=''
17682     set try -DTRY_FPUTC
17683     if eval $compile; then
17684             $run ./try 2>/dev/null
17685             code="$?"
17686             $from try.out
17687             if $test ! -s try.out -a "X$code" = X42; then
17688                 output=-DTRY_FPUTC
17689             fi
17690     fi
17691     case "$output" in
17692     '')
17693             set try -DTRY_FPRINTF
17694             if eval $compile; then
17695                     $run ./try 2>/dev/null
17696                     code="$?"
17697                     $from try.out
17698                     if $test ! -s try.out -a "X$code" = X42; then
17699                         output=-DTRY_FPRINTF
17700                     fi
17701             fi
17702         ;;
17703     esac
17704 fi
17705 : check for fflush NULL behaviour
17706 case "$fflushNULL" in
17707 '')     set try -DTRY_FFLUSH_NULL $output
17708         if eval $compile; then
17709                 $run ./try 2>/dev/null
17710                 code="$?"
17711                 $from try.out
17712                 if $test -s try.out -a "X$code" = X42; then
17713                         fflushNULL="`$cat try.out`"
17714                 else
17715                         if $test "X$code" != X42; then
17716                                 $cat >&4 <<EOM
17717 (If this test failed, don't worry, we'll try another method shortly.)
17718 EOM
17719                         fi
17720                 fi
17721         fi
17722         $rm -f core try.core core.try.*
17723         case "$fflushNULL" in
17724         x)      $cat >&4 <<EOM
17725 Your fflush(NULL) works okay for output streams.
17726 Let's see if it clobbers input pipes...
17727 EOM
17728 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17729 # bug that improperly flushes the input end of pipes.  So we avoid the
17730 # autoflush on fork/system/exec support for now. :-(
17731 $cat >tryp.c <<EOCP
17732 #include <stdio.h>
17733 int
17734 main(int argc, char **argv)
17735 {
17736     char buf[1024];
17737     int i;
17738     char *bp = buf;
17739     while (1) {
17740         while ((i = getc(stdin)) != -1
17741                && (*bp++ = i) != '\n'
17742                && bp < &buf[1024])
17743         /* DO NOTHING */ ;
17744         *bp = '\0';
17745         fprintf(stdout, "%s", buf);
17746         fflush(NULL);
17747         if (i == -1)
17748             return 0;
17749         bp = buf;
17750     }
17751 }
17752 EOCP
17753                 fflushNULL="$define"
17754                 set tryp
17755                 if eval $compile; then
17756                     $rm -f tryp.out
17757                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17758                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17759                        $cat >&4 <<EOM
17760 fflush(NULL) seems to behave okay with input streams.
17761 EOM
17762                         fflushNULL="$define"
17763                     else
17764                         $cat >&4 <<EOM
17765 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17766 EOM
17767                         fflushNULL="$undef"
17768                     fi
17769                 fi
17770                 $rm -f core tryp.c tryp.core core.tryp.*
17771                 ;;
17772         '')     $cat >&4 <<EOM
17773 Your fflush(NULL) isn't working (contrary to ANSI C).
17774 EOM
17775                 fflushNULL="$undef"
17776                 ;;
17777         *)      $cat >&4 <<EOM
17778 Cannot figure out whether your fflush(NULL) works or not.
17779 I'm assuming it doesn't (contrary to ANSI C).
17780 EOM
17781                 fflushNULL="$undef"
17782                 ;;
17783         esac
17784         ;;
17785 $define|true|[yY]*)
17786         fflushNULL="$define"
17787         ;;
17788 *)
17789         fflushNULL="$undef"
17790         ;;
17791 esac
17792 : check explicit looping only if NULL did not work, and if the pipe
17793 : bug does not show up on an explicit flush too
17794 case "$fflushNULL" in
17795 "$undef")
17796         $cat >tryp.c <<EOCP
17797 #include <stdio.h>
17798 int
17799 main(int argc, char **argv)
17800 {
17801     char buf[1024];
17802     int i;
17803     char *bp = buf;
17804     while (1) {
17805         while ((i = getc(stdin)) != -1
17806                && (*bp++ = i) != '\n'
17807                && bp < &buf[1024])
17808         /* DO NOTHING */ ;
17809         *bp = '\0';
17810         fprintf(stdout, "%s", buf);
17811         fflush(stdin);
17812         if (i == -1)
17813             return 0;
17814         bp = buf;
17815     }
17816 }
17817 EOCP
17818         set tryp
17819         if eval $compile; then
17820             $rm -f tryp.out
17821             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17822             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17823                $cat >&4 <<EOM
17824 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17825 EOM
17826                 : now check for fflushall behaviour
17827                 case "$fflushall" in
17828                 '')     set try -DTRY_FFLUSH_ALL $output
17829                         if eval $compile; then
17830                                 $cat >&4 <<EOM
17831 (Now testing the other method--but note that this also may fail.)
17832 EOM
17833                                 $run ./try 2>/dev/null
17834                                 code=$?
17835                                 $from try.out
17836                                 if $test -s try.out -a "X$code" = X42; then
17837                                         fflushall="`$cat try.out`"
17838                                 fi
17839                         fi
17840                         $rm -f core try.core core.try.*
17841                         case "$fflushall" in
17842                         x)      $cat >&4 <<EOM
17843 Whew. Flushing explicitly all the stdio streams works.
17844 EOM
17845                                 fflushall="$define"
17846                                 ;;
17847                         '')     $cat >&4 <<EOM
17848 Sigh. Flushing explicitly all the stdio streams doesn't work.
17849 EOM
17850                                 fflushall="$undef"
17851                                 ;;
17852                         *)      $cat >&4 <<EOM
17853 Cannot figure out whether flushing stdio streams explicitly works or not.
17854 I'm assuming it doesn't.
17855 EOM
17856                                 fflushall="$undef"
17857                                 ;;
17858                         esac
17859                         ;;
17860                 "$define"|true|[yY]*)
17861                         fflushall="$define"
17862                         ;;
17863                 *)
17864                         fflushall="$undef"
17865                         ;;
17866                 esac
17867             else
17868                 $cat >&4 <<EOM
17869 All is futile.  Even fflush(stdin) clobbers input pipes!
17870 EOM
17871                 fflushall="$undef"
17872             fi
17873         else
17874             fflushall="$undef"
17875         fi
17876         $rm -f core tryp.c tryp.core core.tryp.*
17877         ;;
17878 *)      fflushall="$undef"
17879         ;;
17880 esac
17881
17882 case "$fflushNULL$fflushall" in
17883 undefundef)
17884         $cat <<EOM
17885 OK, I give up.  I cannot figure out how to flush pending stdio output.
17886 We won't be flushing handles at all before fork/exec/popen.
17887 EOM
17888         ;;
17889 esac
17890 $rm -f try.* try$exe_ext
17891
17892 : Store the full pathname to the ar program for use in the C program
17893 : Respect a hint or command line value for full_ar.
17894 case "$full_ar" in
17895 '') full_ar=$ar ;;
17896 esac
17897
17898 : Store the full pathname to the sed program for use in the C program
17899 full_sed=$sed
17900
17901 : see what type gids are declared as in the kernel
17902 echo " "
17903 echo "Looking for the type for group ids returned by getgid()."
17904 set gid_t gidtype xxx stdio.h sys/types.h
17905 eval $typedef
17906 case "$gidtype" in
17907 xxx)
17908         xxx=`./findhdr sys/user.h`
17909         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17910         case $1 in
17911         unsigned) dflt="$1 $2" ;;
17912         *) dflt="$1" ;;
17913         esac
17914         ;;
17915 *) dflt="$gidtype";;
17916 esac
17917 case "$gidtype" in
17918 gid_t) echo "gid_t found." ;;
17919 *)      rp="What is the type for group ids returned by getgid()?"
17920         . ./myread
17921         gidtype="$ans"
17922         ;;
17923 esac
17924
17925 echo " "
17926 case "$gidtype" in
17927 *_t) zzz="$gidtype"     ;;
17928 *)   zzz="gid"          ;;
17929 esac
17930 echo "Checking the size of $zzz..." >&4 
17931 cat > try.c <<EOCP
17932 #include <sys/types.h>
17933 #include <stdio.h>
17934 #$i_stdlib I_STDLIB
17935 #ifdef I_STDLIB
17936 #include <stdlib.h>
17937 #endif
17938 int main() {
17939     printf("%d\n", (int)sizeof($gidtype));
17940     exit(0);
17941 }
17942 EOCP
17943 set try
17944 if eval $compile_ok; then
17945         yyy=`$run ./try`
17946         case "$yyy" in
17947         '')     gidsize=4
17948                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
17949                 ;;
17950         *)      gidsize=$yyy
17951                 echo "Your $zzz is $gidsize bytes long."
17952                 ;;
17953         esac
17954 else
17955         gidsize=4
17956         echo "(I can't compile the test program--guessing $gidsize.)" >&4
17957 fi
17958
17959
17960 echo " "
17961 case "$gidtype" in
17962 *_t) zzz="$gidtype"     ;;
17963 *)   zzz="gid"          ;;
17964 esac
17965 echo "Checking the sign of $zzz..." >&4 
17966 cat > try.c <<EOCP
17967 #include <sys/types.h>
17968 #include <stdio.h>
17969 int main() {
17970         $gidtype foo = -1;
17971         if (foo < 0)
17972                 printf("-1\n");
17973         else
17974                 printf("1\n");
17975 }
17976 EOCP
17977 set try
17978 if eval $compile; then
17979         yyy=`$run ./try`
17980         case "$yyy" in
17981         '')     gidsign=1
17982                 echo "(I can't execute the test program--guessing unsigned.)" >&4
17983                 ;;
17984         *)      gidsign=$yyy
17985                 case "$gidsign" in
17986                  1) echo "Your $zzz is unsigned." ;;
17987                 -1) echo "Your $zzz is signed."   ;;
17988                 esac
17989                 ;;
17990         esac
17991 else
17992         gidsign=1
17993         echo "(I can't compile the test program--guessing unsigned.)" >&4
17994 fi
17995
17996
17997 echo " "
17998
17999 if $test X"$quadtype" != X; then
18000
18001 echo "Checking how to print 64-bit integers..." >&4
18002
18003 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
18004         $cat >try.c <<'EOCP'
18005 #include <sys/types.h>
18006 #include <stdio.h>
18007 int main() {
18008   int q = 12345678901;
18009   printf("%ld\n", q);
18010 }
18011 EOCP
18012         set try
18013         if eval $compile; then
18014                 yyy=`$run ./try`
18015                 case "$yyy" in
18016                 12345678901)
18017                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
18018                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
18019                         echo "We will use %d."
18020                         ;;
18021                 esac
18022         fi
18023 fi
18024
18025 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
18026         $cat >try.c <<'EOCP'
18027 #include <sys/types.h>
18028 #include <stdio.h>
18029 int main() {
18030   long q = 12345678901;
18031   printf("%ld\n", q);
18032 }
18033 EOCP
18034         set try
18035         if eval $compile; then
18036                 yyy=`$run ./try`
18037                 case "$yyy" in
18038                 12345678901)
18039                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
18040                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
18041                         echo "We will use %ld."
18042                         ;;
18043                 esac
18044         fi
18045 fi
18046
18047 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
18048         $cat >try.c <<'EOCP'
18049 #include <sys/types.h>
18050 #include <inttypes.h>
18051 #include <stdio.h>
18052 int main() {
18053   int64_t q = 12345678901;
18054   printf("%" PRId64 "\n", q);
18055 }
18056 EOCP
18057         set try
18058         if eval $compile; then
18059                 yyy=`$run ./try`
18060                 case "$yyy" in
18061                 12345678901)
18062                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
18063                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
18064                         echo "We will use the C9X style."
18065                         ;;
18066                 esac
18067         fi
18068 fi
18069
18070 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18071         $cat >try.c <<EOCP
18072 #include <sys/types.h>
18073 #include <stdio.h>
18074 int main() {
18075   $quadtype q = 12345678901;
18076   printf("%Ld\n", q);
18077 }
18078 EOCP
18079         set try
18080         if eval $compile; then
18081                 yyy=`$run ./try`
18082                 case "$yyy" in
18083                 12345678901)
18084                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
18085                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
18086                         echo "We will use %Ld."
18087                         ;;
18088                 esac
18089         fi
18090 fi
18091
18092 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
18093         $cat >try.c <<'EOCP'
18094 #include <sys/types.h>
18095 #include <stdio.h>
18096 int main() {
18097   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
18098   printf("%lld\n", q);
18099 }
18100 EOCP
18101         set try
18102         if eval $compile; then
18103                 yyy=`$run ./try`
18104                 case "$yyy" in
18105                 12345678901)
18106                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
18107                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
18108                         echo "We will use the %lld style."
18109                         ;;
18110                 esac
18111         fi
18112 fi
18113
18114 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18115         $cat >try.c <<EOCP
18116 #include <sys/types.h>
18117 #include <stdio.h>
18118 int main() {
18119   $quadtype q = 12345678901;
18120   printf("%qd\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='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
18129                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
18130                         echo "We will use %qd."
18131                         ;;
18132                 esac
18133         fi
18134 fi
18135
18136 if $test X"$sPRId64" = X; then
18137         echo "Cannot figure out how to print 64-bit integers." >&4
18138 fi
18139
18140 $rm -f try try.*
18141
18142 fi
18143
18144 case "$sPRId64" in
18145 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
18146         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
18147         ;;
18148 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
18149         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
18150         ;;
18151 esac
18152
18153
18154 echo " "
18155 $echo "Checking the format strings to be used for Perl's internal types..." >&4
18156
18157 if $test X"$ivsize" = X8; then
18158         ivdformat="$sPRId64"
18159         uvuformat="$sPRIu64"
18160         uvoformat="$sPRIo64"
18161         uvxformat="$sPRIx64"
18162         uvXUformat="$sPRIXU64"
18163 else
18164         if $test X"$ivsize" = X"$longsize"; then
18165                 ivdformat='"ld"'
18166                 uvuformat='"lu"'
18167                 uvoformat='"lo"'
18168                 uvxformat='"lx"'
18169                 uvXUformat='"lX"'
18170         else
18171                 if $test X"$ivsize" = X"$intsize"; then
18172                         ivdformat='"d"'
18173                         uvuformat='"u"'
18174                         uvoformat='"o"'
18175                         uvxformat='"x"'
18176                         uvXUformat='"X"'
18177                 else
18178                         : far out
18179                         if $test X"$ivsize" = X"$shortsize"; then
18180                                 ivdformat='"hd"'
18181                                 uvuformat='"hu"'
18182                                 uvoformat='"ho"'
18183                                 uvxformat='"hx"'
18184                                 uvXUformat='"hX"'
18185                         fi
18186                 fi
18187         fi
18188 fi
18189
18190 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
18191         nveformat="$sPRIeldbl"
18192         nvfformat="$sPRIfldbl"
18193         nvgformat="$sPRIgldbl"
18194         nvEUformat="$sPRIEUldbl"
18195         nvFUformat="$sPRIFUldbl"
18196         nvGUformat="$sPRIGUldbl"
18197 else
18198         nveformat='"e"'
18199         nvfformat='"f"'
18200         nvgformat='"g"'
18201         nvEUformat='"E"'
18202         nvFUformat='"F"'
18203         nvGUformat='"G"'
18204 fi
18205
18206 case "$ivdformat" in
18207 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
18208     exit 1
18209     ;;
18210 esac
18211
18212
18213 echo " "
18214 $echo "Checking the format string to be used for gids..." >&4
18215
18216 case "$gidsign" in
18217 -1)     if $test X"$gidsize" = X"$ivsize"; then
18218                 gidformat="$ivdformat"
18219         else
18220                 if $test X"$gidsize" = X"$longsize"; then
18221                         gidformat='"ld"'
18222                 else
18223                         if $test X"$gidsize" = X"$intsize"; then
18224                                 gidformat='"d"'
18225                         else
18226                                 if $test X"$gidsize" = X"$shortsize"; then
18227                                         gidformat='"hd"'
18228                                 fi
18229                         fi
18230                 fi
18231         fi
18232         ;;
18233 *)      if $test X"$gidsize" = X"$uvsize"; then
18234                 gidformat="$uvuformat"
18235         else
18236                 if $test X"$gidsize" = X"$longsize"; then
18237                         gidformat='"lu"'
18238                 else
18239                         if $test X"$gidsize" = X"$intsize"; then
18240                                 gidformat='"u"'
18241                         else
18242                                 if $test X"$gidsize" = X"$shortsize"; then
18243                                         gidformat='"hu"'
18244                                 fi
18245                         fi
18246                 fi
18247         fi
18248         ;;
18249 esac
18250
18251 : see if getgroups exists
18252 set getgroups d_getgrps
18253 eval $inlibc
18254
18255 : see if setgroups exists
18256 set setgroups d_setgrps
18257 eval $inlibc
18258
18259
18260 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
18261 echo " "
18262 case "$d_getgrps$d_setgrps" in
18263 *define*)
18264         case "$groupstype" in
18265         '') dflt="$gidtype" ;;
18266         *)  dflt="$groupstype" ;;
18267         esac
18268         $cat <<EOM
18269 What type of pointer is the second argument to getgroups() and setgroups()?
18270 Usually this is the same as group ids, $gidtype, but not always.
18271
18272 EOM
18273         rp='What type pointer is the second argument to getgroups() and setgroups()?'
18274         . ./myread
18275         groupstype="$ans"
18276         ;;
18277 *)  groupstype="$gidtype";;
18278 esac
18279
18280 echo " "
18281 echo "Checking if your $make program sets \$(MAKE)..." >&4
18282 case "$make_set_make" in
18283 '')
18284         $sed 's/^X //' > testmake.mak << 'EOF'
18285 Xall:
18286 X       @echo 'maketemp="$(MAKE)"'
18287 EOF
18288         case "`$make -f testmake.mak 2>/dev/null`" in
18289         *maketemp=*) make_set_make='#' ;;
18290         *)      make_set_make="MAKE=$make" ;;
18291         esac
18292         $rm -f testmake.mak
18293         ;;
18294 esac
18295 case "$make_set_make" in
18296 '#') echo "Yup, it does.";;
18297 *) echo "Nope, it doesn't.";;
18298 esac
18299
18300 : see what type is used for mode_t
18301 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
18302 set mode_t modetype int stdio.h sys/types.h
18303 eval $typedef_ask
18304
18305 : see if stdarg is available
18306 echo " "
18307 if $test `./findhdr stdarg.h`; then
18308         echo "<stdarg.h> found." >&4
18309         valstd="$define"
18310 else
18311         echo "<stdarg.h> NOT found." >&4
18312         valstd="$undef"
18313 fi
18314
18315 : see if varags is available
18316 echo " "
18317 if $test `./findhdr varargs.h`; then
18318         echo "<varargs.h> found." >&4
18319 else
18320         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
18321 fi
18322
18323 : set up the varargs testing programs
18324 $cat > varargs.c <<EOP
18325 #ifdef I_STDARG
18326 #include <stdarg.h>
18327 #endif
18328 #ifdef I_VARARGS
18329 #include <varargs.h>
18330 #endif
18331
18332 #ifdef I_STDARG
18333 int f(char *p, ...)
18334 #else
18335 int f(va_alist)
18336 va_dcl
18337 #endif
18338 {
18339         va_list ap;
18340 #ifndef I_STDARG
18341         char *p;
18342 #endif
18343 #ifdef I_STDARG
18344         va_start(ap,p);
18345 #else
18346         va_start(ap);
18347         p = va_arg(ap, char *);
18348 #endif
18349         va_end(ap);
18350 }
18351 EOP
18352 $cat > varargs <<EOP
18353 $startsh
18354 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
18355         echo "true"
18356 else
18357         echo "false"
18358 fi
18359 $rm -f varargs$_o
18360 EOP
18361 chmod +x varargs
18362
18363 : now check which varargs header should be included
18364 echo " "
18365 i_varhdr=''
18366 case "$valstd" in
18367 "$define")
18368         if `./varargs I_STDARG`; then
18369                 val='stdarg.h'
18370         elif `./varargs I_VARARGS`; then
18371                 val='varargs.h'
18372         fi
18373         ;;
18374 *)
18375         if `./varargs I_VARARGS`; then
18376                 val='varargs.h'
18377         fi
18378         ;;
18379 esac
18380 case "$val" in
18381 '')
18382 echo "I could not find the definition for va_dcl... You have problems..." >&4
18383         val="$undef"; set i_stdarg; eval $setvar
18384         val="$undef"; set i_varargs; eval $setvar
18385         ;;
18386 *) 
18387         set i_varhdr
18388         eval $setvar
18389         case "$i_varhdr" in
18390         stdarg.h)
18391                 val="$define"; set i_stdarg; eval $setvar
18392                 val="$undef"; set i_varargs; eval $setvar
18393                 ;;
18394         varargs.h)
18395                 val="$undef"; set i_stdarg; eval $setvar
18396                 val="$define"; set i_varargs; eval $setvar
18397                 ;;
18398         esac
18399         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
18400 esac
18401 $rm -f varargs*
18402
18403 : see if we need va_copy
18404 echo " "
18405 case "$i_stdarg" in
18406 "$define")
18407         $cat >try.c <<EOCP
18408 #include <stdarg.h>
18409 #include <stdio.h>
18410 #$i_stdlib I_STDLIB
18411 #ifdef I_STDLIB
18412 #include <stdlib.h>
18413 #endif
18414 #include <signal.h>
18415
18416 int
18417 ivfprintf(FILE *f, const char *fmt, va_list *valp)
18418 {
18419   return vfprintf(f, fmt, *valp);
18420 }
18421  
18422 int    
18423 myvfprintf(FILE *f, const  char *fmt, va_list val)
18424 {
18425   return ivfprintf(f, fmt, &val);
18426 }
18427       
18428 int
18429 myprintf(char *fmt, ...) 
18430 {
18431   va_list val;
18432   va_start(val, fmt);
18433   return myvfprintf(stdout, fmt, val); 
18434 }         
18435
18436 int
18437 main(int ac, char **av)
18438 {
18439   signal(SIGSEGV, exit);
18440
18441   myprintf("%s%cs all right, then\n", "that", '\'');                            
18442   exit(0);      
18443 }
18444 EOCP
18445         set try
18446         if eval $compile && $run ./try 2>&1 >/dev/null; then
18447                 case "`$run ./try`" in
18448                 "that's all right, then")
18449                         okay=yes
18450                         ;;
18451                 esac
18452         fi
18453         case "$okay" in
18454         yes)    echo "It seems that you don't need va_copy()." >&4
18455                 need_va_copy="$undef"
18456                 ;;
18457         *)      echo "It seems that va_copy() or similar will be needed." >&4
18458                 need_va_copy="$define"
18459                 ;;
18460         esac
18461         $rm -f try.* core core.* *.core *.core.*
18462         ;;
18463 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
18464         ;;
18465 esac
18466
18467 : see what type is used for size_t
18468 rp="What is the type used for the length parameter for string functions?"
18469 set size_t sizetype 'unsigned int' stdio.h sys/types.h
18470 eval $typedef_ask
18471
18472 : check for type of arguments to gethostbyaddr. 
18473 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
18474         case "$d_gethbyaddr" in
18475         $define)
18476                 $cat <<EOM
18477
18478 Checking to see what type of arguments are accepted by gethostbyaddr().
18479 EOM
18480                 hdrs="$define sys/types.h
18481                         $d_socket sys/socket.h 
18482                         $i_niin netinet/in.h 
18483                         $i_netdb netdb.h
18484                         $i_unistd unistd.h"
18485                 : The first arg can 'char *' or 'void *'
18486                 : The second arg is some of integral type
18487                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
18488                         for yyy in size_t long int; do
18489                                 case "$netdb_host_type" in
18490                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
18491                                         if ./protochk "$try" $hdrs; then
18492                                                 echo "Your system accepts $xxx for the first arg."
18493                                                 echo "...and $yyy for the second arg."
18494                                                 netdb_host_type="$xxx"
18495                                                 netdb_hlen_type="$yyy"
18496                                         fi
18497                                         ;;
18498                                 esac
18499                         done
18500                 done
18501                 : In case none of those worked, prompt the user.
18502                 case "$netdb_host_type" in
18503                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
18504                         dflt='char *'
18505                         . ./myread
18506                         netdb_host_type=$ans
18507                         rp='What is the type for the 2nd argument to gethostbyaddr?'
18508                         dflt="$sizetype"
18509                         . ./myread
18510                         netdb_hlen_type=$ans
18511                         ;;
18512                 esac
18513                 ;;
18514         *)      : no gethostbyaddr, so pick harmless defaults
18515                 netdb_host_type='char *'
18516                 netdb_hlen_type="$sizetype"
18517                 ;;
18518         esac
18519         # Remove the "const" if needed. -- but then we'll have a 
18520         # prototype clash!
18521         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
18522 fi
18523
18524 : check for type of argument to gethostbyname. 
18525 if test "X$netdb_name_type" = X ; then
18526         case "$d_gethbyname" in
18527         $define)
18528                 $cat <<EOM
18529
18530 Checking to see what type of argument is accepted by gethostbyname().
18531 EOM
18532                 hdrs="$define sys/types.h
18533                         $d_socket sys/socket.h 
18534                         $i_niin netinet/in.h 
18535                         $i_netdb netdb.h
18536                         $i_unistd unistd.h"
18537                 for xxx in "const char *" "char *"; do
18538                         case "$netdb_name_type" in
18539                         '')     try="extern struct hostent *gethostbyname($xxx);"
18540                                 if ./protochk "$try" $hdrs; then
18541                                         echo "Your system accepts $xxx."
18542                                         netdb_name_type="$xxx"
18543                                 fi
18544                                 ;;
18545                         esac
18546                 done
18547                 : In case none of those worked, prompt the user.
18548                 case "$netdb_name_type" in
18549                 '')     rp='What is the type for the 1st argument to gethostbyname?'
18550                         dflt='char *'
18551                         . ./myread
18552                         netdb_name_type=$ans
18553                         ;;
18554                 esac
18555                 ;;
18556         *)      : no gethostbyname, so pick harmless default
18557                 netdb_name_type='char *'
18558                 ;;
18559         esac
18560 fi
18561
18562 : check for type of 1st argument to getnetbyaddr. 
18563 if test "X$netdb_net_type" = X ; then
18564         case "$d_getnbyaddr" in
18565         $define)
18566                 $cat <<EOM
18567
18568 Checking to see what type of 1st argument is accepted by getnetbyaddr().
18569 EOM
18570                 hdrs="$define sys/types.h
18571                         $d_socket sys/socket.h 
18572                         $i_niin netinet/in.h 
18573                         $i_netdb netdb.h
18574                         $i_unistd unistd.h"
18575                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
18576                         case "$netdb_net_type" in
18577                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
18578                                 if ./protochk "$try" $hdrs; then
18579                                         echo "Your system accepts $xxx."
18580                                         netdb_net_type="$xxx"
18581                                 fi
18582                                 ;;
18583                         esac
18584                 done
18585                 : In case none of those worked, prompt the user.
18586                 case "$netdb_net_type" in
18587                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
18588                         dflt='long'
18589                         . ./myread
18590                         netdb_net_type=$ans
18591                         ;;
18592                 esac
18593                 ;;
18594         *)      : no getnetbyaddr, so pick harmless default
18595                 netdb_net_type='long'
18596                 ;;
18597         esac
18598 fi
18599 : locate the preferred pager for this system
18600 fn=f/
18601 case "$pager" in
18602 '')
18603         dflt=''
18604         case "$pg" in
18605         /*) dflt=$pg;;
18606         [a-zA-Z]:/*) dflt=$pg;;
18607         esac
18608         case "$more" in
18609         /*) dflt=$more;;
18610         [a-zA-Z]:/*) dflt=$more;;
18611         esac
18612         case "$less" in
18613         /*) dflt=$less;;
18614         [a-zA-Z]:/*) dflt=$less;;
18615         esac
18616         case "$dflt" in
18617         '') dflt=/usr/ucb/more;;
18618         esac
18619         ;;
18620 *)      dflt="$pager"
18621         : Instruct ./getfile to trust the hinted or previous pager value,
18622         : even if it does not begin with a slash.  For example, on os2,
18623         : pager might be cmd /c more.  See comments in UU/getfile.
18624         fn="f/($pager)"
18625         ;;
18626 esac
18627 echo " "
18628 rp='What pager is used on your system?'
18629 . ./getfile
18630 pager="$ans"
18631
18632 : see what type pids are declared as in the kernel
18633 rp="What is the type of process ids on this system?"
18634 set pid_t pidtype int stdio.h sys/types.h
18635 eval $typedef_ask
18636
18637 : Find earliest binary compatible site_perl subdirectory perl can use.
18638 xs_apiversion=$version # The current site_perl version.
18639 : Find earliest pure perl site_perl subdirectory perl can use.
18640 : The versioned directories started at 5.005.
18641 pm_apiversion='5.005'
18642
18643 : see if ar generates random libraries by itself
18644 echo " "
18645 echo "Checking how to generate random libraries on your machine..." >&4
18646 echo 'int bar1() { return bar2(); }' > bar1.c
18647 echo 'int bar2() { return 2; }' > bar2.c
18648 $cat > foo.c <<EOP
18649 #$i_stdlib I_STDLIB
18650 #ifdef I_STDLIB
18651 #include <stdlib.h>
18652 #endif
18653 int main() { printf("%d\n", bar1()); exit(0); }
18654 EOP
18655 $cc $ccflags -c bar1.c >/dev/null 2>&1
18656 $cc $ccflags -c bar2.c >/dev/null 2>&1
18657 $cc $ccflags -c foo.c >/dev/null 2>&1
18658 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
18659 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18660         $run ./foobar >/dev/null 2>&1; then
18661         echo "$ar appears to generate random libraries itself."
18662         orderlib=false
18663         ranlib=":"
18664 elif $ar ts bar$_a >/dev/null 2>&1 &&
18665         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18666         $run ./foobar >/dev/null 2>&1; then
18667                 echo "a table of contents needs to be added with '$ar ts'."
18668                 orderlib=false
18669                 ranlib="$ar ts"
18670 else
18671         case "$ranlib" in
18672         :) ranlib='';;
18673         '')
18674                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18675                 $test -f $ranlib || ranlib=''
18676                 ;;
18677         esac
18678         if $test -n "$ranlib"; then
18679                 echo "your system has '$ranlib'; we'll use that."
18680                 orderlib=false
18681         else
18682                 echo "your system doesn't seem to support random libraries"
18683                 echo "so we'll use lorder and tsort to order the libraries."
18684                 orderlib=true
18685                 ranlib=":"
18686         fi
18687 fi
18688 $rm -f foo* bar* 
18689
18690 : check for type of arguments to select. 
18691 case "$selecttype" in
18692 '') case "$d_select" in
18693         $define)
18694                 echo " "
18695                 $cat <<EOM
18696 Checking to see what type of arguments are accepted by select().
18697 EOM
18698                 hdrs="$define sys/types.h
18699                         $i_systime sys/time.h 
18700                         $i_sysselct sys/select.h
18701                         $d_socket sys/socket.h"
18702                 : The first arg can be int, unsigned, or size_t
18703                 : The last arg may or may not be 'const'
18704                 val=''
18705                 : void pointer has been seen but using that
18706                 : breaks the selectminbits test
18707                 for xxx in 'fd_set *' 'int *'; do
18708                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18709                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18710                                         case "$val" in
18711                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18712                                                 if ./protochk "$try" $hdrs; then
18713                                                         echo "Your system accepts $xxx."
18714                                                         val="$xxx"
18715                                                 fi
18716                                                 ;;
18717                                         esac
18718                                 done
18719                         done
18720                 done
18721                 case "$val" in
18722                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18723                         case "$d_fd_set" in
18724                                 $define) dflt="fd_set *" ;;
18725                                 *)              dflt="int *" ;;
18726                         esac
18727                         . ./myread
18728                         val=$ans
18729                         ;;
18730                 esac
18731                 selecttype="$val"
18732                 ;;
18733         *)      : no select, so pick a harmless default
18734                 selecttype='int *'
18735                 ;;
18736         esac
18737         ;;
18738 esac
18739
18740 : check for the select 'width'
18741 case "$selectminbits" in
18742 '') safebits=`expr $ptrsize \* 8`
18743     case "$d_select" in
18744         $define)
18745                 $cat <<EOM
18746
18747 Checking to see on how many bits at a time your select() operates...
18748 EOM
18749                 $cat >try.c <<EOCP
18750 #include <sys/types.h>
18751 #$i_time I_TIME
18752 #$i_systime I_SYS_TIME
18753 #$i_systimek I_SYS_TIME_KERNEL
18754 #ifdef I_TIME
18755 #   include <time.h>
18756 #endif
18757 #ifdef I_SYS_TIME
18758 #   ifdef I_SYS_TIME_KERNEL
18759 #       define KERNEL
18760 #   endif
18761 #   include <sys/time.h>
18762 #   ifdef I_SYS_TIME_KERNEL
18763 #       undef KERNEL
18764 #   endif
18765 #endif
18766 #$i_sysselct I_SYS_SELECT
18767 #ifdef I_SYS_SELECT
18768 #include <sys/select.h>
18769 #endif
18770 #$d_socket HAS_SOCKET
18771 #ifdef HAS_SOCKET
18772 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18773 #endif
18774 #include <stdio.h>
18775 #$i_stdlib I_STDLIB
18776 #ifdef I_STDLIB
18777 #include <stdlib.h>
18778 #endif
18779 $selecttype b;
18780 #define S sizeof(*(b))
18781 #define MINBITS 64
18782 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18783 #define NBITS  (NBYTES * 8)
18784 int main() {
18785     char *s = malloc(NBYTES);
18786     struct timeval t;
18787     int i;
18788     FILE* fp;
18789     int fd;
18790
18791     if (!s)
18792         exit(1);
18793     fclose(stdin);
18794     fp = fopen("try.c", "r");
18795     if (fp == 0)
18796       exit(2);
18797     fd = fileno(fp);
18798     if (fd < 0)
18799       exit(3);
18800     b = ($selecttype)s;
18801     for (i = 0; i < NBITS; i++)
18802         FD_SET(i, b);
18803     t.tv_sec  = 0;
18804     t.tv_usec = 0;
18805     select(fd + 1, b, 0, 0, &t);
18806     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18807     free(s);
18808     printf("%d\n", i + 1);
18809     return 0;
18810 }
18811 EOCP
18812                 set try
18813                 if eval $compile_ok; then
18814                         selectminbits=`$run ./try`
18815                         case "$selectminbits" in
18816                         '')     cat >&4 <<EOM
18817 Cannot figure out on how many bits at a time your select() operates.
18818 I'll play safe and guess it is $safebits bits.
18819 EOM
18820                                 selectminbits=$safebits
18821                                 bits="$safebits bits"
18822                                 ;;
18823                         1)      bits="1 bit" ;;
18824                         *)      bits="$selectminbits bits" ;;
18825                         esac
18826                         echo "Your select() operates on $bits at a time." >&4
18827                 else
18828                         rp='What is the minimum number of bits your select() operates on?'
18829                         case "$byteorder" in
18830                         12345678)       dflt=64 ;;
18831                         1234)           dflt=32 ;;
18832                         *)              dflt=1  ;;
18833                         esac
18834                         . ./myread
18835                         val=$ans
18836                         selectminbits="$val"
18837                 fi
18838                 $rm -f try.* try
18839                 ;;
18840         *)      : no select, so pick a harmless default
18841                 selectminbits=$safebits
18842                 ;;
18843         esac
18844         ;;
18845 esac
18846
18847 : Trace out the files included by signal.h, then look for SIGxxx names.
18848 : Remove SIGARRAYSIZE used by HPUX.
18849 : Remove SIGSTKSIZE used by Linux.
18850 : Remove SIGSTKSZ used by Posix.
18851 : Remove SIGTYP void lines used by OS2.
18852 : Some cpps, like os390, dont give the file name anywhere
18853 if [ "X$fieldn" = X ]; then
18854         : Just make some guesses.  We check them later.
18855         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18856 else
18857         xxx=`echo '#include <signal.h>' |
18858         $cppstdin $cppminus $cppflags 2>/dev/null |
18859         $grep '^[       ]*#.*include' | 
18860         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18861 fi
18862 : Check this list of files to be sure we have parsed the cpp output ok.
18863 : This will also avoid potentially non-existent files, such 
18864 : as ../foo/bar.h
18865 xxxfiles=''
18866 for xx in $xxx /dev/null ; do
18867         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18868 done
18869 : If we have found no files, at least try signal.h
18870 case "$xxxfiles" in
18871 '')     xxxfiles=`./findhdr signal.h` ;;
18872 esac
18873 xxx=`awk '
18874 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18875         print substr($2, 4, 20)
18876 }
18877 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18878         print substr($3, 4, 20)
18879 }' $xxxfiles`
18880 : Append some common names just in case the awk scan failed.
18881 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18882 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18883 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18884 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18885 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18886
18887 : generate a few handy files for later
18888 $cat > signal.c <<EOCP
18889 #include <sys/types.h>
18890 #include <signal.h>
18891 #$i_stdlib I_STDLIB
18892 #ifdef I_STDLIB
18893 #include <stdlib.h>
18894 #endif
18895 #include <stdio.h>
18896 int main() {
18897
18898 /* Strange style to avoid deeply-nested #if/#else/#endif */
18899 #ifndef NSIG
18900 #  ifdef _NSIG
18901 #    define NSIG (_NSIG)
18902 #  endif
18903 #endif
18904
18905 #ifndef NSIG
18906 #  ifdef SIGMAX
18907 #    define NSIG (SIGMAX+1)
18908 #  endif
18909 #endif
18910
18911 #ifndef NSIG
18912 #  ifdef SIG_MAX
18913 #    define NSIG (SIG_MAX+1)
18914 #  endif
18915 #endif
18916
18917 #ifndef NSIG
18918 #  ifdef MAXSIG
18919 #    define NSIG (MAXSIG+1)
18920 #  endif
18921 #endif
18922
18923 #ifndef NSIG
18924 #  ifdef MAX_SIG
18925 #    define NSIG (MAX_SIG+1)
18926 #  endif
18927 #endif
18928
18929 #ifndef NSIG
18930 #  ifdef SIGARRAYSIZE
18931 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18932 #  endif
18933 #endif
18934
18935 #ifndef NSIG
18936 #  ifdef _sys_nsig
18937 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
18938 #  endif
18939 #endif
18940
18941 /* Default to some arbitrary number that's big enough to get most
18942    of the common signals.
18943 */
18944 #ifndef NSIG
18945 #    define NSIG 50
18946 #endif
18947
18948 printf("NSIG %d\n", NSIG);
18949
18950 #ifndef JUST_NSIG
18951
18952 EOCP
18953
18954 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
18955 {
18956         printf "#ifdef SIG"; printf $1; printf "\n"
18957         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
18958         printf $1; printf ");\n"
18959         printf "#endif\n"
18960 }
18961 END {
18962         printf "#endif /* JUST_NSIG */\n";
18963         printf "exit(0);\n}\n";
18964 }
18965 ' >>signal.c
18966 $cat >signal.awk <<'EOP'
18967 BEGIN { ndups = 0 }
18968 $1 ~ /^NSIG$/ { nsig = $2 }
18969 ($1 !~ /^NSIG$/) && (NF == 2) && ($2 ~ /^[0-9][0-9]*$/) {
18970     if ($2 > maxsig) { maxsig = $2 }
18971     if (sig_name[$2]) {
18972         dup_name[ndups] = $1
18973         dup_num[ndups] = $2
18974         ndups++ 
18975     }
18976     else {
18977         sig_name[$2] = $1
18978         sig_num[$2] = $2
18979     }
18980 }
18981 END { 
18982     if (nsig == 0) {
18983         nsig = maxsig + 1
18984     }
18985     printf("NSIG %d\n", nsig);
18986     for (n = 1; n < nsig; n++) {
18987         if (sig_name[n]) {
18988             printf("%s %d\n", sig_name[n], sig_num[n])
18989         }
18990         else {
18991             printf("NUM%d %d\n", n, n) 
18992         }
18993     }
18994     for (n = 0; n < ndups; n++) {
18995         printf("%s %d\n", dup_name[n], dup_num[n])
18996     }
18997 }
18998 EOP
18999 $cat >signal_cmd <<EOS
19000 $startsh
19001 if $test -s signal.lst; then
19002     echo "Using your existing signal.lst file"
19003         exit 0
19004 fi
19005 xxx="$xxx"
19006 EOS
19007 $cat >>signal_cmd <<'EOS'
19008
19009 set signal
19010 if eval $compile_ok; then
19011         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
19012 else
19013         echo "(I can't seem be able to compile the whole test program)" >&4
19014         echo "(I'll try it in little pieces.)" >&4
19015         set signal -DJUST_NSIG
19016         if eval $compile_ok; then
19017                 $run ./signal$_exe > signal.nsg
19018                 $cat signal.nsg
19019         else
19020                 echo "I can't seem to figure out how many signals you have." >&4
19021                 echo "Guessing 50." >&4
19022                 echo 'NSIG 50' > signal.nsg
19023         fi
19024         : Now look at all the signal names, one at a time.
19025         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
19026                 $cat > signal.c <<EOCP
19027 #include <sys/types.h>
19028 #include <signal.h>
19029 #include <stdio.h>
19030 int main() {
19031 printf("$xx %d\n", SIG${xx});
19032 return 0;
19033 }
19034 EOCP
19035                 set signal
19036                 if eval $compile; then
19037                         echo "SIG${xx} found."
19038                         $run ./signal$_exe  >> signal.ls1
19039                 else
19040                         echo "SIG${xx} NOT found."
19041                 fi
19042         done
19043         if $test -s signal.ls1; then
19044                 $cat signal.nsg signal.ls1 |
19045                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
19046         fi
19047
19048 fi
19049 if $test -s signal.lst; then
19050         :
19051 else
19052         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
19053         echo 'kill -l' >signal
19054         set X `csh -f <signal`
19055         $rm -f signal
19056         shift
19057         case $# in
19058         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
19059         esac
19060         echo $@ | $tr ' ' $trnl | \
19061             $awk '{ printf "%s %d\n", $1, ++s; }
19062                   END { printf "NSIG %d\n", ++s }' >signal.lst
19063 fi
19064 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
19065 EOS
19066 chmod a+x signal_cmd
19067 $eunicefix signal_cmd
19068
19069 : generate list of signal names
19070 echo " "
19071 case "$sig_name_init" in
19072 '') doinit=yes ;;
19073 *)  case "$sig_num_init" in
19074     ''|*,*) doinit=yes ;;
19075     esac ;;
19076 esac
19077 case "$doinit" in
19078 yes)
19079         echo "Generating a list of signal names and numbers..." >&4
19080         . ./signal_cmd
19081         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
19082         sig_name=`$awk 'BEGIN { printf "ZERO " }
19083                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
19084         sig_num=`$awk  'BEGIN { printf "0 " }
19085                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
19086         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
19087                              !/^NSIG/   { printf "\"%s\", ", $1 }
19088                              END        { printf "0\n" }' signal.lst`
19089         sig_num_init=`$awk  'BEGIN      { printf "0, " }
19090                              !/^NSIG/   { printf "%d, ", $2}
19091                              END        { printf "0\n"}' signal.lst`
19092         ;;
19093 esac
19094 echo "The following $sig_count signals are available:"
19095 echo " "
19096 echo $sig_name | $awk \
19097 'BEGIN { linelen = 0 }
19098 {
19099         for (i = 1; i <= NF; i++) {
19100                 name = "SIG" $i " "
19101                 linelen = linelen + length(name)
19102                 if (linelen > 70) {
19103                         printf "\n"
19104                         linelen = length(name)
19105                 }
19106                 printf "%s", name
19107         }
19108         printf "\n"
19109 }'
19110 sig_size=`echo $sig_name | awk '{print NF}'`
19111 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
19112
19113 echo " "
19114 case "$sizetype" in
19115 *_t) zzz="$sizetype"    ;;
19116 *)   zzz="filesize"     ;;
19117 esac
19118 echo "Checking the size of $zzz..." >&4 
19119 cat > try.c <<EOCP
19120 #include <sys/types.h>
19121 #include <stdio.h>
19122 #$i_stdlib I_STDLIB
19123 #ifdef I_STDLIB
19124 #include <stdlib.h>
19125 #endif
19126 int main() {
19127     printf("%d\n", (int)sizeof($sizetype));
19128     exit(0);
19129 }
19130 EOCP
19131 set try
19132 if eval $compile_ok; then
19133         yyy=`$run ./try`
19134         case "$yyy" in
19135         '')     sizesize=4
19136                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
19137                 ;;
19138         *)      sizesize=$yyy
19139                 echo "Your $zzz size is $sizesize bytes."
19140                 ;;
19141         esac
19142 else
19143         sizesize=4
19144         echo "(I can't compile the test program--guessing $sizesize.)" >&4
19145 fi
19146
19147
19148 : check for socklen_t
19149 echo " "
19150 echo "Checking to see if you have socklen_t..." >&4
19151 $cat >try.c <<EOCP
19152 #include <sys/types.h>
19153 #$d_socket HAS_SOCKET
19154 #ifdef HAS_SOCKET
19155 #include <sys/socket.h>
19156 #endif
19157 int main() { socklen_t x = 16; }
19158 EOCP
19159 set try
19160 if eval $compile; then
19161         val="$define"
19162         echo "You have socklen_t."
19163 else
19164         val="$undef"
19165         echo "You do not have socklen_t."
19166         case "$sizetype" in
19167         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
19168         esac
19169 fi
19170 $rm -f try try.*
19171 set d_socklen_t
19172 eval $setvar
19173
19174 : see if this is a socks.h system
19175 set socks.h i_socks
19176 eval $inhdr
19177
19178 : check for type of the size argument to socket calls
19179 case "$d_socket" in
19180 "$define")
19181         $cat <<EOM
19182
19183 Checking to see what type is the last argument of accept().
19184 EOM
19185         yyy=''
19186         case "$d_socklen_t" in
19187         "$define") yyy="$yyy socklen_t"
19188         esac
19189         yyy="$yyy $sizetype int long unsigned"
19190         for xxx in $yyy; do
19191                 case "$socksizetype" in
19192                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
19193                         case "$usesocks" in
19194                         "$define")
19195                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
19196                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19197                                         socksizetype="$xxx"
19198                                 fi
19199                                 ;;
19200                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
19201                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19202                                         socksizetype="$xxx"
19203                                 fi
19204                                 ;;
19205                         esac
19206                         ;;
19207                 esac
19208         done
19209 : In case none of those worked, prompt the user.
19210         case "$socksizetype" in
19211         '')     rp='What is the type for socket address structure sizes?'
19212                 dflt='int'
19213                 . ./myread
19214                 socksizetype=$ans
19215                 ;;
19216         esac
19217         ;;
19218 *)      : no sockets, so pick relatively harmless default
19219         socksizetype='int'
19220         ;;
19221 esac
19222
19223 : see what type is used for signed size_t
19224 set ssize_t ssizetype int stdio.h sys/types.h
19225 eval $typedef
19226 dflt="$ssizetype"
19227 $cat > try.c <<EOM
19228 #include <stdio.h>
19229 #$i_stdlib I_STDLIB
19230 #ifdef I_STDLIB
19231 #include <stdlib.h>
19232 #endif
19233 #include <sys/types.h>
19234 #define Size_t $sizetype
19235 #define SSize_t $dflt
19236 int main()
19237 {
19238         if (sizeof(Size_t) == sizeof(SSize_t))
19239                 printf("$dflt\n");
19240         else if (sizeof(Size_t) == sizeof(int))
19241                 printf("int\n");
19242         else 
19243                 printf("long\n");
19244         exit(0);
19245 }
19246 EOM
19247 echo " "
19248 set try
19249 if eval $compile_ok && $run ./try > /dev/null; then
19250         ssizetype=`$run ./try`
19251         echo "I'll be using $ssizetype for functions returning a byte count." >&4
19252 else
19253         $cat >&4 <<EOM
19254 Help! I can't compile and run the ssize_t test program: please enlighten me!
19255 (This is probably a misconfiguration in your system or libraries, and
19256 you really ought to fix it.  Still, I'll try anyway.)
19257
19258 I need a type that is the same size as $sizetype, but is guaranteed to
19259 be signed.  Common values are ssize_t, int and long.
19260
19261 EOM
19262         rp="What signed type is the same size as $sizetype?"
19263         . ./myread
19264         ssizetype="$ans"
19265 fi
19266 $rm -f try try.*
19267
19268 : see what type of char stdio uses.
19269 echo " "
19270 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
19271 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
19272         echo "Your stdio uses unsigned chars." >&4
19273         stdchar="unsigned char"
19274 else
19275         echo "Your stdio uses signed chars." >&4
19276         stdchar="char"
19277 fi
19278 $rm -f stdioh
19279
19280
19281
19282 : see what type uids are declared as in the kernel
19283 echo " "
19284 echo "Looking for the type for user ids returned by getuid()."
19285 set uid_t uidtype xxx stdio.h sys/types.h
19286 eval $typedef
19287 case "$uidtype" in
19288 xxx)
19289         xxx=`./findhdr sys/user.h`
19290         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
19291         case $1 in
19292         unsigned) dflt="$1 $2" ;;
19293         *) dflt="$1" ;;
19294         esac
19295         ;;
19296 *) dflt="$uidtype";;
19297 esac
19298 case "$uidtype" in
19299 uid_t)  echo "uid_t found." ;;
19300 *)      rp="What is the type for user ids returned by getuid()?"
19301         . ./myread
19302         uidtype="$ans"
19303         ;;
19304 esac
19305
19306 echo " "
19307 case "$uidtype" in
19308 *_t) zzz="$uidtype"     ;;
19309 *)   zzz="uid"          ;;
19310 esac
19311 echo "Checking the size of $zzz..." >&4 
19312 cat > try.c <<EOCP
19313 #include <sys/types.h>
19314 #include <stdio.h>
19315 #$i_stdlib I_STDLIB
19316 #ifdef I_STDLIB
19317 #include <stdlib.h>
19318 #endif
19319 int main() {
19320     printf("%d\n", (int)sizeof($uidtype));
19321     exit(0);
19322 }
19323 EOCP
19324 set try
19325 if eval $compile_ok; then
19326         yyy=`$run ./try`
19327         case "$yyy" in
19328         '')     uidsize=4
19329                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
19330                 ;;
19331         *)      uidsize=$yyy
19332                 echo "Your $zzz is $uidsize bytes long."
19333                 ;;
19334         esac
19335 else
19336         uidsize=4
19337         echo "(I can't compile the test program--guessing $uidsize.)" >&4
19338 fi
19339
19340 echo " "
19341 case "$uidtype" in
19342 *_t) zzz="$uidtype"     ;;
19343 *)   zzz="uid"          ;;
19344 esac
19345 echo "Checking the sign of $zzz..." >&4
19346 cat > try.c <<EOCP
19347 #include <sys/types.h>
19348 #include <stdio.h>
19349 int main() {
19350         $uidtype foo = -1;
19351         if (foo < 0)
19352                 printf("-1\n");
19353         else
19354                 printf("1\n");
19355 }
19356 EOCP
19357 set try
19358 if eval $compile; then
19359         yyy=`$run ./try`
19360         case "$yyy" in
19361         '')     uidsign=1
19362                 echo "(I can't execute the test program--guessing unsigned.)" >&4
19363                 ;;
19364         *)      uidsign=$yyy
19365                 case "$uidsign" in
19366                  1) echo "Your $zzz is unsigned." ;;
19367                 -1) echo "Your $zzz is signed."   ;;
19368                 esac
19369                 ;;
19370         esac
19371 else
19372         uidsign=1
19373         echo "(I can't compile the test program--guessing unsigned.)" >&4
19374 fi
19375
19376
19377
19378 echo " "
19379 $echo "Checking the format string to be used for uids..." >&4
19380
19381 case "$uidsign" in
19382 -1)     if $test X"$uidsize" = X"$ivsize"; then
19383                 uidformat="$ivdformat"
19384         else
19385                 if $test X"$uidsize" = X"$longsize"; then
19386                         uidformat='"ld"'
19387                 else
19388                         if $test X"$uidsize" = X"$intsize"; then
19389                                 uidformat='"d"'
19390                         else
19391                                 if $test X"$uidsize" = X"$shortsize"; then
19392                                         uidformat='"hd"'
19393                                 fi
19394                         fi
19395                 fi
19396         fi
19397         ;;
19398 *)      if $test X"$uidsize" = X"$uvsize"; then
19399                 uidformat="$uvuformat"
19400         else
19401                 if $test X"$uidsize" = X"$longsize"; then
19402                         uidformat='"lu"'
19403                 else
19404                         if $test X"$uidsize" = X"$intsize"; then
19405                                 uidformat='"u"'
19406                         else
19407                                 if $test X"$uidsize" = X"$shortsize"; then
19408                                         uidformat='"hu"'
19409                                 fi
19410                         fi
19411                 fi
19412         fi
19413         ;;
19414 esac
19415
19416 : determine compiler compiler
19417 case "$yacc" in
19418 '')
19419         dflt=yacc;;
19420 *)
19421         dflt="$yacc";;
19422 esac
19423 echo " "
19424 comp='yacc'
19425 if $test -f "$byacc$_exe"; then
19426         dflt="$byacc"
19427         comp="byacc or $comp"
19428 fi
19429 if $test -f "$bison$_exe"; then
19430         comp="$comp or bison -y"
19431 fi
19432 rp="Which compiler compiler ($comp) shall I use?"
19433 . ./myread
19434 yacc="$ans"
19435 case "$yacc" in
19436 *bis*)
19437         case "$yacc" in
19438         *-y*) ;;
19439         *)
19440                 yacc="$yacc -y"
19441                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
19442                 ;;
19443         esac
19444         ;;
19445 esac
19446
19447 : see if this is a fp.h system
19448 set fp.h i_fp
19449 eval $inhdr
19450
19451 : see if this is a fp_class.h system
19452 set fp_class.h i_fp_class
19453 eval $inhdr
19454
19455 : see if this is a ieeefp.h system
19456 case "$i_ieeefp" in
19457 '' ) set ieeefp.h i_ieeefp
19458      eval $inhdr
19459      ;;
19460 esac
19461
19462 : see if this is a libutil.h system
19463 set libutil.h i_libutil
19464 eval $inhdr
19465
19466 : see if mach cthreads are available
19467 if test "X$usethreads" = "X$define"; then
19468         set mach/cthreads.h i_machcthr
19469         eval $inhdr
19470 else
19471         i_machcthr="$undef"
19472 fi
19473
19474
19475
19476 : see if this is a math.h system
19477 set math.h i_math
19478 eval $inhdr
19479
19480 : see if this is a mntent.h system
19481 set mntent.h i_mntent
19482 eval $inhdr
19483
19484 : see if ndbm.h is available
19485 set ndbm.h t_ndbm
19486 eval $inhdr
19487
19488 case "$t_ndbm" in
19489 $undef)
19490     # Some Linux distributions such as RedHat 7.1 put the
19491     # ndbm.h header in /usr/include/gdbm/ndbm.h.
19492     if $test -f /usr/include/gdbm/ndbm.h; then
19493         echo '<gdbm/ndbm.h> found.'
19494         ccflags="$ccflags -I/usr/include/gdbm"
19495         cppflags="$cppflags -I/usr/include/gdbm"
19496         t_ndbm=$define
19497     fi
19498     ;;
19499 esac
19500
19501 case "$t_ndbm" in
19502 $define)
19503         : see if dbm_open exists
19504         set dbm_open d_dbm_open
19505         eval $inlibc
19506         case "$d_dbm_open" in
19507         $undef)
19508                 t_ndbm="$undef"
19509                 echo "We won't be including <ndbm.h>"
19510                 ;;
19511         esac
19512         ;;
19513 esac
19514 val="$t_ndbm"
19515 set i_ndbm
19516 eval $setvar
19517
19518 : see if net/errno.h is available
19519 val=''
19520 set net/errno.h val
19521 eval $inhdr
19522
19523 : Unfortunately, it causes problems on some systems.  Arrgh.
19524 case "$val" in
19525 $define)
19526         cat > try.c <<'EOM'
19527 #include <stdio.h>
19528 #include <errno.h>
19529 #include <net/errno.h>
19530 int func()
19531 {
19532         return ENOTSOCK;
19533 }
19534 EOM
19535         if $cc $ccflags -c try.c >/dev/null 2>&1; then
19536                 echo "We'll be including <net/errno.h>." >&4
19537         else
19538                 echo "We won't be including <net/errno.h>." >&4
19539                 val="$undef"
19540         fi
19541         $rm -f try.* try
19542         ;;
19543 esac
19544 set i_neterrno
19545 eval $setvar
19546
19547 : see if netinet/tcp.h is available
19548 set netinet/tcp.h i_netinettcp
19549 eval $inhdr
19550
19551 : see if this is a poll.h system
19552 set poll.h i_poll
19553 eval $inhdr
19554
19555 : see if this is a prot.h system
19556 set prot.h i_prot
19557 eval $inhdr
19558
19559 echo " "
19560 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
19561 $cat <<'EOSH' > Cppsym.know
19562 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
19563 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
19564 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
19565 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
19566 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
19567 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
19568 bull c cadmus clipper CMU COFF COMPILER_VERSION
19569 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
19570 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
19571 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
19572 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
19573 GLIBC GLIBC_MINOR
19574 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
19575 H3050R H3050RX hbullx20 hcx host_mips
19576 hp200 hp300 hp700 HP700 hp800 hp9000
19577 hp9000s200 hp9000s300 hp9000s400 hp9000s500
19578 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
19579 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
19580 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
19581 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
19582 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
19583 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
19584 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
19585 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
19586 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
19587 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
19588 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
19589 MATH_HAS_NO_SIDE_EFFECTS
19590 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
19591 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
19592 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
19593 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
19594 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
19595 NetBSD news1500 news1700 news1800 news1900 news3700
19596 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
19597 ns32016 ns32332 ns32k nsc32000
19598 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
19599 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
19600 pc532 pdp11 PGC PIC plexus PORTAR posix
19601 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
19602 POSIX_C_SOURCE POSIX_SOURCE POWER
19603 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
19604 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
19605 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
19606 sony sony_news sonyrisc sparc sparclite spectrum
19607 stardent stdc STDC_EXT stratos sun sun3 sun386
19608 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
19609 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
19610 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
19611 sysV68 sysV88 Tek4132 Tek4300 titan
19612 TM3200 TM5400 TM5600
19613 tower tower32 tower32_200 tower32_600 tower32_700
19614 tower32_800 tower32_850 tss
19615 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
19616 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
19617 unix UNIX95 UNIX99 unixpc unos
19618 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
19619 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
19620 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
19621 USGr4 USGr4_2
19622 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
19623 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
19624 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
19625 z8000
19626 EOSH
19627 # Maybe put other stuff here too.
19628 cat <<EOSH >>Cppsym.know
19629 $osname
19630 EOSH
19631 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
19632 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
19633 $cat Cppsym.know > Cppsym.c
19634 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
19635 $rm -f Cppsym.a Cppsym.b Cppsym.c
19636 cat <<EOSH > Cppsym
19637 $startsh
19638 if $test \$# -gt 0; then
19639     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
19640     if $test -s Cppsym.got; then
19641         $rm -f Cppsym.got
19642         exit 0
19643     fi
19644     $rm -f Cppsym.got
19645     exit 1
19646 else
19647     $tr " " "$trnl" | ./Cppsym.try
19648     exit 0
19649 fi
19650 EOSH
19651 chmod +x Cppsym
19652 $eunicefix Cppsym
19653 cat <<EOSH > Cppsym.try
19654 $startsh
19655 cat <<'EOCP' > try.c
19656 #include <stdio.h>
19657 int main() {
19658 EOCP
19659 $awk \\
19660 EOSH
19661 cat <<'EOSH' >> Cppsym.try
19662 'length($1) > 0 {
19663     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
19664     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
19665     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
19666     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
19667 }'       >> try.c
19668 echo 'return 0;}' >> try.c
19669 EOSH
19670 cat <<EOSH >> Cppsym.try
19671 ccflags="$ccflags"
19672 case "$osname-$gccversion" in
19673 irix-) ccflags="\$ccflags -woff 1178" ;;
19674 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
19675 esac
19676 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
19677 EOSH
19678 chmod +x Cppsym.try
19679 $eunicefix Cppsym.try
19680 ./Cppsym < Cppsym.know > Cppsym.true
19681 : now check the C compiler for additional symbols
19682 postprocess_cc_v=''
19683 case "$osname" in
19684 aix) postprocess_cc_v="|$tr , ' '" ;;
19685 esac
19686 $cat >ccsym <<EOS
19687 $startsh
19688 $cat >tmp.c <<EOF
19689 extern int foo;
19690 EOF
19691 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
19692 do
19693         case "\$i" in
19694         -D*) echo "\$i" | $sed 's/^-D//';;
19695         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
19696         esac
19697 done
19698 $rm -f try.c
19699 EOS
19700 postprocess_cc_v=''
19701 chmod +x ccsym
19702 $eunicefix ccsym
19703 ./ccsym > ccsym1.raw
19704 if $test -s ccsym1.raw; then
19705        $sort ccsym1.raw | $uniq >ccsym.raw
19706 else
19707        mv ccsym1.raw ccsym.raw
19708 fi
19709
19710 $awk '/\=/ { print $0; next }
19711         { print $0"=1" }' ccsym.raw >ccsym.list
19712 $awk '/\=/ { print $0; next }
19713         { print $0"=1" }' Cppsym.true >ccsym.true
19714 $comm -13 ccsym.true ccsym.list >ccsym.own
19715 $comm -12 ccsym.true ccsym.list >ccsym.com
19716 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19717 also=''
19718 if $test -z ccsym.raw; then
19719         echo "Your C compiler doesn't seem to define any symbols!" >&4
19720         echo " "
19721         echo "However, your C preprocessor defines the following symbols:"
19722         $cat Cppsym.true
19723         ccsymbols=''
19724         cppsymbols=`$cat Cppsym.true`
19725         cppsymbols=`echo $cppsymbols`
19726         cppccsymbols="$cppsymbols"
19727 else
19728         if $test -s ccsym.com; then
19729                 echo "Your C compiler and pre-processor define these symbols:"
19730                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19731                 also='also '
19732                 symbols='ones'
19733                 cppccsymbols=`$cat ccsym.com`
19734                 cppccsymbols=`echo $cppccsymbols`
19735                 $test "$silent" || sleep 1
19736         fi
19737         if $test -s ccsym.cpp; then
19738                 $test "$also" && echo " "
19739                 echo "Your C pre-processor ${also}defines the following symbols:"
19740                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19741                 also='further '
19742                 cppsymbols=`$cat ccsym.cpp`
19743                 cppsymbols=`echo $cppsymbols`
19744                 $test "$silent" || sleep 1
19745         fi
19746         if $test -s ccsym.own; then
19747                 $test "$also" && echo " "
19748                 echo "Your C compiler ${also}defines the following cpp symbols:"
19749                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19750                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19751                 ccsymbols=`$cat ccsym.own`
19752                 ccsymbols=`echo $ccsymbols`
19753                 $test "$silent" || sleep 1
19754         fi
19755 fi
19756
19757 : see if this is a termio system
19758 val="$undef"
19759 val2="$undef"
19760 val3="$undef"
19761 if $test `./findhdr termios.h`; then
19762         set tcsetattr i_termios
19763         eval $inlibc
19764         val3="$i_termios"
19765 fi
19766 echo " "
19767 case "$val3" in
19768 "$define") echo "You have POSIX termios.h... good!" >&4;;
19769 *) if ./Cppsym pyr; then
19770                 case "`/bin/universe`" in
19771                 ucb) if $test `./findhdr sgtty.h`; then
19772                                 val2="$define"
19773                                 echo "<sgtty.h> found." >&4
19774                         else
19775                                 echo "System is pyramid with BSD universe."
19776                                 echo "<sgtty.h> not found--you could have problems." >&4
19777                         fi;;
19778                 *) if $test `./findhdr termio.h`; then
19779                                 val="$define"
19780                                 echo "<termio.h> found." >&4
19781                         else
19782                                 echo "System is pyramid with USG universe."
19783                                 echo "<termio.h> not found--you could have problems." >&4
19784                         fi;;
19785                 esac
19786         elif ./usg; then
19787                 if $test `./findhdr termio.h`; then
19788                         echo "<termio.h> found." >&4
19789                         val="$define"
19790                 elif $test `./findhdr sgtty.h`; then
19791                         echo "<sgtty.h> found." >&4
19792                         val2="$define"
19793                 else
19794 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19795                 fi
19796         else
19797                 if $test `./findhdr sgtty.h`; then
19798                         echo "<sgtty.h> found." >&4
19799                         val2="$define"
19800                 elif $test `./findhdr termio.h`; then
19801                         echo "<termio.h> found." >&4
19802                         val="$define"
19803                 else
19804 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19805                 fi
19806         fi;;
19807 esac
19808 set i_termio; eval $setvar
19809 val=$val2; set i_sgtty; eval $setvar
19810 val=$val3; set i_termios; eval $setvar
19811
19812 : see if stddef is available
19813 set stddef.h i_stddef
19814 eval $inhdr
19815
19816 : see if this is a sunmath.h system
19817 set sunmath.h i_sunmath
19818 eval $inhdr
19819
19820 : see if sys/access.h is available
19821 set sys/access.h i_sysaccess
19822 eval $inhdr
19823
19824 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19825 set sys/filio.h i_sysfilio
19826 eval $inhdr
19827 echo " "
19828 if $test `./findhdr sys/ioctl.h`; then
19829         val="$define"
19830         echo '<sys/ioctl.h> found.' >&4
19831 else
19832         val="$undef"
19833         if $test $i_sysfilio = "$define"; then
19834             echo '<sys/ioctl.h> NOT found.' >&4
19835         else
19836                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19837                 $test $i_termio = "$define" && xxx="termio.h"
19838                 $test $i_termios = "$define" && xxx="termios.h"
19839 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19840         fi
19841 fi
19842 set i_sysioctl
19843 eval $setvar
19844
19845 : see if socket ioctl defs are in sys/sockio.h
19846 echo " "
19847 xxx=`./findhdr sys/sockio.h`
19848 if $test "$xxx"; then
19849         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19850                 val="$define"
19851                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19852         else
19853                 val="$undef"
19854                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19855         fi
19856 else
19857         val="$undef"
19858         $cat <<EOM
19859 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19860 EOM
19861 fi
19862 set i_syssockio
19863 eval $setvar
19864
19865
19866 : see if this is a syslog.h system
19867 set syslog.h i_syslog
19868 eval $inhdr
19869
19870
19871 : see if this is a sys/mode.h system
19872 set sys/mode.h i_sysmode
19873 eval $inhdr
19874
19875 : see if sys/resource.h has to be included
19876 set sys/resource.h i_sysresrc
19877 eval $inhdr
19878
19879 : see if sys/security.h is available
19880 set sys/security.h i_syssecrt
19881 eval $inhdr
19882
19883 : see if this is a sys/statvfs.h system
19884 set sys/statvfs.h i_sysstatvfs
19885 eval $inhdr
19886
19887 : see if this is a sys/un.h system
19888 set sys/un.h i_sysun
19889 eval $inhdr
19890
19891
19892 : see if this is a sys/utsname.h system
19893 set sys/utsname.h i_sysutsname
19894 eval $inhdr
19895
19896 : see if this is a syswait system
19897 set sys/wait.h i_syswait
19898 eval $inhdr
19899
19900 : see if this is a ustat.h system
19901 set ustat.h i_ustat
19902 eval $inhdr
19903
19904 : see if this is an utime system
19905 set utime.h i_utime
19906 eval $inhdr
19907
19908 : see if this is a values.h system
19909 set values.h i_values
19910 eval $inhdr
19911
19912 : see if this is a vfork system
19913 case "$d_vfork" in
19914 "$define")
19915         set vfork.h i_vfork
19916         eval $inhdr
19917         ;;
19918 *)
19919         i_vfork="$undef"
19920         ;;
19921 esac
19922
19923 : see if gdbm.h is available
19924 set gdbm.h t_gdbm
19925 eval $inhdr
19926 case "$t_gdbm" in
19927 $define)
19928         : see if gdbm_open exists
19929         set gdbm_open d_gdbm_open
19930         eval $inlibc
19931         case "$d_gdbm_open" in
19932         $undef)
19933                 t_gdbm="$undef"
19934                 echo "We won't be including <gdbm.h>"
19935                 ;;
19936         esac
19937         ;;
19938 esac
19939 val="$t_gdbm"
19940 set i_gdbm
19941 eval $setvar
19942
19943 echo " "
19944 echo "Looking for extensions..." >&4
19945 : If we are using the old config.sh, known_extensions may contain
19946 : old or inaccurate or duplicate values.
19947 known_extensions=''
19948 nonxs_extensions=''
19949 : We do not use find because it might not be available.
19950 : We do not just use MANIFEST because the user may have dropped
19951 : some additional extensions into the source tree and expect them
19952 : to be built.
19953
19954 : Function to recursively find available extensions, ignoring DynaLoader
19955 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
19956 find_extensions='
19957     for xxx in *; do
19958        case "$xxx" in
19959            DynaLoader|dynaload) ;;
19960            *)
19961            if $test -f $xxx/$xxx.xs; then
19962                known_extensions="$known_extensions $1$xxx";
19963            elif $test -f $xxx/Makefile.PL; then
19964                nonxs_extensions="$nonxs_extensions $1$xxx";
19965            else
19966                if $test -d $xxx -a $# -lt 10; then
19967                    set $1$xxx/ $*;
19968                    cd "$xxx";
19969                    eval $find_extensions;
19970                    cd ..;
19971                    shift;
19972                fi;
19973            fi
19974            ;;
19975        esac;
19976     done'
19977 tdir=`pwd`
19978 cd "$rsrc/ext"
19979 set X
19980 shift
19981 eval $find_extensions
19982 # Special case:  Add in threads/shared since it is not picked up by the
19983 # recursive find above (and adding in general recursive finding breaks
19984 # SDBM_File/sdbm).  A.D.  10/25/2001.
19985 known_extensions="$known_extensions threads/shared"
19986 set X $nonxs_extensions
19987 shift
19988 nonxs_extensions="$*"
19989 set X $known_extensions
19990 shift
19991 known_extensions="$*"
19992 cd "$tdir"
19993
19994 : Now see which are supported on this system.
19995 avail_ext=''
19996 for xxx in $known_extensions ; do
19997         case "$xxx" in
19998         DB_File|db_file)
19999                 case "$i_db" in
20000                 $define) avail_ext="$avail_ext $xxx" ;;
20001                 esac
20002                 ;;
20003         GDBM_File|gdbm_fil)
20004                 case "$i_gdbm" in 
20005                 $define) avail_ext="$avail_ext $xxx" ;;
20006                 esac
20007                 ;;
20008         I18N/Langinfo|i18n_lan)
20009                 case "$i_langinfo$d_nl_langinfo" in 
20010                 $define$define) avail_ext="$avail_ext $xxx" ;;
20011                 esac
20012                 ;;
20013         NDBM_File|ndbm_fil)
20014                 case "$i_ndbm" in
20015                 $define)
20016                     case "$osname-$use64bitint" in
20017                     hpux-define)
20018                         case "$libs" in
20019                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
20020                         esac
20021                         ;;
20022                     *) avail_ext="$avail_ext $xxx" ;;
20023                     esac
20024                     ;;
20025                 esac
20026                 ;;
20027         ODBM_File|odbm_fil) 
20028                 case "${i_dbm}${i_rpcsvcdbm}" in
20029                 *"${define}"*)
20030                     case "$osname-$use64bitint" in
20031                     hpux-define)
20032                         case "$libs" in
20033                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
20034                         esac
20035                         ;;
20036                     *) avail_ext="$avail_ext $xxx" ;;
20037                     esac
20038                     ;;
20039                 esac
20040                 ;;
20041         POSIX|posix)
20042                 case "$useposix" in
20043                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20044                 esac
20045                 ;;
20046         Opcode|opcode)
20047                 case "$useopcode" in
20048                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20049                 esac
20050                 ;;
20051         Socket|socket)
20052                 case "$d_socket" in 
20053                 true|$define|y)
20054                     case "$osname" in
20055                     beos) ;; # not unless BONE
20056                     *) avail_ext="$avail_ext $xxx" ;;
20057                     esac
20058                     ;;
20059                 esac
20060                 ;;
20061         Sys/Syslog|sys/syslog)
20062                 : XXX syslog requires socket
20063                 case "$d_socket" in 
20064                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
20065                 esac
20066                 ;;
20067         Thread|thread)
20068                 case "$usethreads" in
20069                 true|$define|y)
20070                         case "$useithreads" in
20071                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
20072                         esac
20073                 esac
20074                 ;;
20075         XS/APItest|xs/apitest)
20076                 # This is just for testing.  Skip it unless we have dynamic loading.
20077
20078                 case "$usedl" in
20079                 $define) avail_ext="$avail_ext $xxx" ;;
20080                 esac
20081                 ;;
20082         XS/Typemap|xs/typemap)
20083                 # This is just for testing.  Skip it unless we have dynamic loading.
20084                 case "$usedl" in
20085                 $define) avail_ext="$avail_ext $xxx" ;;
20086                 esac
20087                 ;;
20088         threads|threads/shared)
20089                 # threads and threads::shared are special cases.
20090                 # To stop people from asking "Perl 5.8.0 was supposed
20091                 # to have this new fancy threads implementation but my
20092                 # perl doesn't have it" and from people trying to
20093                 # (re)install the threads module using CPAN.pm and
20094                 # CPAN.pm then offering to reinstall Perl 5.8.0,
20095                 # the threads.pm and threads/shared.pm will always be
20096                 # there, croaking informatively ("you need to rebuild
20097                 # all of Perl with threads, sorry") when threads haven't
20098                 # been compiled in.
20099                 # --jhi
20100                 avail_ext="$avail_ext $xxx"
20101                 ;;
20102         IPC/SysV|ipc/sysv)
20103                 : XXX Do we need a useipcsysv variable here
20104                 case "${d_msg}${d_sem}${d_shm}" in 
20105                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
20106                 esac
20107                 ;;
20108         *)      avail_ext="$avail_ext $xxx"
20109                 ;;
20110         esac
20111 done
20112
20113 set X $avail_ext
20114 shift
20115 avail_ext="$*"
20116
20117 case "$onlyextensions" in
20118 '') ;;
20119 *)  keepextensions=''
20120     echo "You have requested that only certains extensions be included..." >&4
20121     for i in $onlyextensions; do
20122         case " $avail_ext " in
20123         *" $i "*)
20124             echo "Keeping extension $i."
20125             keepextensions="$keepextensions $i"
20126             ;;
20127         *) echo "Ignoring extension $i." ;;
20128         esac
20129     done
20130     avail_ext="$keepextensions"
20131     ;;
20132 esac
20133
20134 case "$noextensions" in
20135 '') ;;
20136 *)  keepextensions=''
20137     echo "You have requested that certain extensions be ignored..." >&4
20138     for i in $avail_ext; do
20139         case " $i " in
20140         " $noextensions ") echo "Ignoring extension $i." ;;
20141         *) echo "Keeping extension $i.";
20142            keepextensions="$keepextensions $i"
20143            ;;
20144         esac
20145     done
20146     avail_ext="$keepextensions"
20147     ;;
20148 esac
20149
20150 : Now see which nonxs extensions are supported on this system.
20151 : For now assume all are.
20152 nonxs_ext=''
20153 for xxx in $nonxs_extensions ; do
20154         case "$xxx" in
20155         *)      nonxs_ext="$nonxs_ext $xxx"
20156                 ;;
20157         esac
20158 done
20159
20160 set X $nonxs_ext
20161 shift
20162 nonxs_ext="$*"
20163
20164 case $usedl in
20165 $define)
20166         $cat <<EOM
20167 A number of extensions are supplied with $package.  You may choose to
20168 compile these extensions for dynamic loading (the default), compile
20169 them into the $package executable (static loading), or not include
20170 them at all.  Answer "none" to include no extensions.
20171 Note that DynaLoader is always built and need not be mentioned here.
20172
20173 EOM
20174         case "$dynamic_ext" in
20175         '')
20176                 : Exclude those listed in static_ext
20177                 dflt=''
20178                 for xxx in $avail_ext; do
20179                         case " $static_ext " in
20180                         *" $xxx "*) ;;
20181                         *) dflt="$dflt $xxx" ;;
20182                         esac
20183                 done
20184                 set X $dflt
20185                 shift
20186                 dflt="$*"
20187                 ;;
20188         *)      dflt="$dynamic_ext"
20189                 # Perhaps we are reusing an old out-of-date config.sh.
20190                 case "$hint" in
20191                 previous)
20192                         if test X"$dynamic_ext" != X"$avail_ext"; then
20193                                 $cat <<EOM
20194 NOTICE:  Your previous config.sh list may be incorrect. 
20195 The extensions now available to you are 
20196         ${avail_ext}
20197 but the default list from your previous config.sh is
20198         ${dynamic_ext} 
20199
20200 EOM
20201                         fi
20202                         ;;
20203                 esac
20204                 ;;
20205         esac
20206         case "$dflt" in
20207         '')     dflt=none;;
20208         esac
20209         rp="What extensions do you wish to load dynamically?"
20210         . ./myread
20211         case "$ans" in
20212         none) dynamic_ext=' ' ;;
20213         *) dynamic_ext="$ans" ;;
20214         esac
20215
20216         case "$static_ext" in
20217         '')
20218                 : Exclude those already listed in dynamic linking
20219                 dflt=''
20220                 for xxx in $avail_ext; do
20221                         case " $dynamic_ext " in
20222                         *" $xxx "*) ;;
20223                         *) dflt="$dflt $xxx" ;;
20224                         esac
20225                 done
20226                 set X $dflt
20227                 shift
20228                 dflt="$*"
20229                 ;;
20230         *)  dflt="$static_ext" 
20231                 ;;
20232         esac
20233
20234         case "$dflt" in
20235         '')     dflt=none;;
20236         esac
20237         rp="What extensions do you wish to load statically?"
20238         . ./myread
20239         case "$ans" in
20240         none) static_ext=' ' ;;
20241         *) static_ext="$ans" ;;
20242         esac
20243         ;;
20244 *)
20245         $cat <<EOM
20246 A number of extensions are supplied with $package.  Answer "none" 
20247 to include no extensions. 
20248 Note that DynaLoader is always built and need not be mentioned here.
20249
20250 EOM
20251         case "$static_ext" in
20252         '') dflt="$avail_ext" ;;
20253         *)      dflt="$static_ext"
20254                 # Perhaps we are reusing an old out-of-date config.sh.
20255                 case "$hint" in
20256                 previous)
20257                         if test X"$static_ext" != X"$avail_ext"; then
20258                                 $cat <<EOM
20259 NOTICE:  Your previous config.sh list may be incorrect. 
20260 The extensions now available to you are 
20261         ${avail_ext}
20262 but the default list from your previous config.sh is
20263         ${static_ext} 
20264
20265 EOM
20266                         fi
20267                         ;;
20268                 esac
20269                 ;;
20270         esac
20271         : Exclude those that are not xs extensions
20272         case "$dflt" in
20273         '')     dflt=none;;
20274         esac
20275         rp="What extensions do you wish to include?"
20276         . ./myread
20277         case "$ans" in
20278         none) static_ext=' ' ;;
20279         *) static_ext="$ans" ;;
20280         esac
20281         ;;
20282 esac
20283 #        
20284 # Encode is a special case.  If we are building Encode as a static
20285 # extension, we need to explicitly list its subextensions as well.
20286 # For other nested extensions, this is handled automatically by
20287 # the appropriate Makefile.PL.
20288 case " $static_ext " in
20289         *" Encode "*) # Add the subextensions of Encode
20290         cd "$rsrc/ext"
20291         for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
20292                 static_ext="$static_ext Encode/$xxx"
20293         done
20294         cd "$tdir"
20295         ;;
20296 esac
20297
20298 set X $dynamic_ext $static_ext $nonxs_ext
20299 shift
20300 extensions="$*"
20301
20302 # Sanity check:  We require an extension suitable for use with
20303 # AnyDBM_File, as well as Fcntl and IO.  (Failure to have these
20304 # should show up as failures in the test suite, but it's helpful to
20305 # catch them now.) The 'extensions' list is normally sorted
20306 # alphabetically, so we need to accept either
20307 #    DB_File ... Fcntl ... IO  ....
20308 # or something like
20309 #    Fcntl ... NDBM_File ... IO  ....
20310 case "$extensions" in
20311 *"_File "*" Fcntl "*" IO "*) ;;
20312 *" Fcntl "*"_File "*" IO "*) ;;
20313 *) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
20314    echo "WARNING: The Perl you are building will be quite crippled." >& 4
20315    ;;
20316 esac
20317
20318 : Remove libraries needed only for extensions
20319 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
20320 : The exception is SunOS 4.x, which needs them.
20321 case "${osname}X${osvers}" in
20322 sunos*X4*)
20323     perllibs="$libs"
20324     ;;
20325 *) case "$usedl" in
20326     $define|true|[yY]*)
20327             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
20328             shift
20329             perllibs="$*"
20330             ;;
20331     *)  perllibs="$libs"
20332             ;;
20333     esac
20334     ;;
20335 esac
20336
20337 : Remove build directory name from cppstdin so it can be used from
20338 : either the present location or the final installed location.
20339 echo " "
20340 : Get out of the UU directory to get correct path name.
20341 cd ..
20342 case "$cppstdin" in
20343 `pwd`/cppstdin)
20344         echo "Stripping down cppstdin path name"
20345         cppstdin=cppstdin
20346         ;;
20347 esac
20348 cd UU
20349
20350 : end of configuration questions
20351 echo " "
20352 echo "End of configuration questions."
20353 echo " "
20354
20355 : back to where it started
20356 if test -d ../UU; then
20357         cd ..
20358 fi
20359
20360 : configuration may be patched via a 'config.arch' file
20361 if $test -f config.arch; then
20362         echo "I see a config.arch file, loading it."
20363         . ./config.arch
20364 fi
20365
20366 : configuration may be patched via a 'config.over' file
20367 if $test -f config.over; then
20368         echo " "
20369         dflt=y
20370         rp='I see a config.over file.  Do you wish to load it?'
20371         . UU/myread
20372         case "$ans" in
20373         n*) echo "OK, I'll ignore it.";;
20374         *)      . ./config.over
20375                 echo "Configuration override changes have been loaded."
20376                 ;;
20377         esac
20378 fi
20379
20380 : in case they want portability, strip down executable paths
20381 case "$d_portable" in
20382 "$define")
20383         echo " "
20384         echo "Stripping down executable paths..." >&4
20385         for file in $loclist $trylist; do
20386                 eval temp=\$$file
20387                 eval $file=`basename $temp`
20388         done
20389         ;;
20390 esac
20391
20392 : create config.sh file
20393 echo " "
20394 echo "Creating config.sh..." >&4
20395 $spitshell <<EOT >config.sh
20396 $startsh
20397 #
20398 # This file was produced by running the Configure script. It holds all the
20399 # definitions figured out by Configure. Should you modify one of these values,
20400 # do not forget to propagate your changes by running "Configure -der". You may
20401 # instead choose to run each of the .SH files by yourself, or "Configure -S".
20402 #
20403
20404 # Package name      : $package
20405 # Source directory  : $src
20406 # Configuration time: $cf_time
20407 # Configured by     : $cf_by
20408 # Target system     : $myuname
20409
20410 Author='$Author'
20411 Date='$Date'
20412 Header='$Header'
20413 Id='$Id'
20414 Locker='$Locker'
20415 Log='$Log'
20416 Mcc='$Mcc'
20417 RCSfile='$RCSfile'
20418 Revision='$Revision'
20419 Source='$Source'
20420 State='$State'
20421 _a='$_a'
20422 _exe='$_exe'
20423 _o='$_o'
20424 afs='$afs'
20425 afsroot='$afsroot'
20426 alignbytes='$alignbytes'
20427 ansi2knr='$ansi2knr'
20428 aphostname='$aphostname'
20429 api_revision='$api_revision'
20430 api_subversion='$api_subversion'
20431 api_version='$api_version'
20432 api_versionstring='$api_versionstring'
20433 ar='$ar'
20434 archlib='$archlib'
20435 archlibexp='$archlibexp'
20436 archname64='$archname64'
20437 archname='$archname'
20438 archobjs='$archobjs'
20439 asctime_r_proto='$asctime_r_proto'
20440 awk='$awk'
20441 baserev='$baserev'
20442 bash='$bash'
20443 bin='$bin'
20444 binexp='$binexp'
20445 bison='$bison'
20446 byacc='$byacc'
20447 byteorder='$byteorder'
20448 c='$c'
20449 castflags='$castflags'
20450 cat='$cat'
20451 cc='$cc'
20452 cccdlflags='$cccdlflags'
20453 ccdlflags='$ccdlflags'
20454 ccflags='$ccflags'
20455 ccflags_uselargefiles='$ccflags_uselargefiles'
20456 ccname='$ccname'
20457 ccsymbols='$ccsymbols'
20458 ccversion='$ccversion'
20459 cf_by='$cf_by'
20460 cf_email='$cf_email'
20461 cf_time='$cf_time'
20462 charsize='$charsize'
20463 chgrp='$chgrp'
20464 chmod='$chmod'
20465 chown='$chown'
20466 clocktype='$clocktype'
20467 comm='$comm'
20468 compress='$compress'
20469 contains='$contains'
20470 cp='$cp'
20471 cpio='$cpio'
20472 cpp='$cpp'
20473 cpp_stuff='$cpp_stuff'
20474 cppccsymbols='$cppccsymbols'
20475 cppflags='$cppflags'
20476 cpplast='$cpplast'
20477 cppminus='$cppminus'
20478 cpprun='$cpprun'
20479 cppstdin='$cppstdin'
20480 cppsymbols='$cppsymbols'
20481 crypt_r_proto='$crypt_r_proto'
20482 cryptlib='$cryptlib'
20483 csh='$csh'
20484 ctermid_r_proto='$ctermid_r_proto'
20485 ctime_r_proto='$ctime_r_proto'
20486 d_Gconvert='$d_Gconvert'
20487 d_PRIEUldbl='$d_PRIEUldbl'
20488 d_PRIFUldbl='$d_PRIFUldbl'
20489 d_PRIGUldbl='$d_PRIGUldbl'
20490 d_PRIXU64='$d_PRIXU64'
20491 d_PRId64='$d_PRId64'
20492 d_PRIeldbl='$d_PRIeldbl'
20493 d_PRIfldbl='$d_PRIfldbl'
20494 d_PRIgldbl='$d_PRIgldbl'
20495 d_PRIi64='$d_PRIi64'
20496 d_PRIo64='$d_PRIo64'
20497 d_PRIu64='$d_PRIu64'
20498 d_PRIx64='$d_PRIx64'
20499 d_SCNfldbl='$d_SCNfldbl'
20500 d__fwalk='$d__fwalk'
20501 d_access='$d_access'
20502 d_accessx='$d_accessx'
20503 d_aintl='$d_aintl'
20504 d_alarm='$d_alarm'
20505 d_archlib='$d_archlib'
20506 d_asctime_r='$d_asctime_r'
20507 d_atolf='$d_atolf'
20508 d_atoll='$d_atoll'
20509 d_attribut='$d_attribut'
20510 d_bcmp='$d_bcmp'
20511 d_bcopy='$d_bcopy'
20512 d_bsd='$d_bsd'
20513 d_bsdgetpgrp='$d_bsdgetpgrp'
20514 d_bsdsetpgrp='$d_bsdsetpgrp'
20515 d_bzero='$d_bzero'
20516 d_casti32='$d_casti32'
20517 d_castneg='$d_castneg'
20518 d_charvspr='$d_charvspr'
20519 d_chown='$d_chown'
20520 d_chroot='$d_chroot'
20521 d_chsize='$d_chsize'
20522 d_class='$d_class'
20523 d_closedir='$d_closedir'
20524 d_cmsghdr_s='$d_cmsghdr_s'
20525 d_const='$d_const'
20526 d_copysignl='$d_copysignl'
20527 d_crypt='$d_crypt'
20528 d_crypt_r='$d_crypt_r'
20529 d_csh='$d_csh'
20530 d_ctermid_r='$d_ctermid_r'
20531 d_ctime_r='$d_ctime_r'
20532 d_cuserid='$d_cuserid'
20533 d_dbl_dig='$d_dbl_dig'
20534 d_dbminitproto='$d_dbminitproto'
20535 d_difftime='$d_difftime'
20536 d_dirfd='$d_dirfd'
20537 d_dirnamlen='$d_dirnamlen'
20538 d_dlerror='$d_dlerror'
20539 d_dlopen='$d_dlopen'
20540 d_dlsymun='$d_dlsymun'
20541 d_dosuid='$d_dosuid'
20542 d_drand48_r='$d_drand48_r'
20543 d_drand48proto='$d_drand48proto'
20544 d_dup2='$d_dup2'
20545 d_eaccess='$d_eaccess'
20546 d_endgrent='$d_endgrent'
20547 d_endgrent_r='$d_endgrent_r'
20548 d_endhent='$d_endhent'
20549 d_endhostent_r='$d_endhostent_r'
20550 d_endnent='$d_endnent'
20551 d_endnetent_r='$d_endnetent_r'
20552 d_endpent='$d_endpent'
20553 d_endprotoent_r='$d_endprotoent_r'
20554 d_endpwent='$d_endpwent'
20555 d_endpwent_r='$d_endpwent_r'
20556 d_endsent='$d_endsent'
20557 d_endservent_r='$d_endservent_r'
20558 d_eofnblk='$d_eofnblk'
20559 d_eunice='$d_eunice'
20560 d_faststdio='$d_faststdio'
20561 d_fchdir='$d_fchdir'
20562 d_fchmod='$d_fchmod'
20563 d_fchown='$d_fchown'
20564 d_fcntl='$d_fcntl'
20565 d_fcntl_can_lock='$d_fcntl_can_lock'
20566 d_fd_macros='$d_fd_macros'
20567 d_fd_set='$d_fd_set'
20568 d_fds_bits='$d_fds_bits'
20569 d_fgetpos='$d_fgetpos'
20570 d_finite='$d_finite'
20571 d_finitel='$d_finitel'
20572 d_flexfnam='$d_flexfnam'
20573 d_flock='$d_flock'
20574 d_flockproto='$d_flockproto'
20575 d_fork='$d_fork'
20576 d_fp_class='$d_fp_class'
20577 d_fpathconf='$d_fpathconf'
20578 d_fpclass='$d_fpclass'
20579 d_fpclassify='$d_fpclassify'
20580 d_fpclassl='$d_fpclassl'
20581 d_fpos64_t='$d_fpos64_t'
20582 d_frexpl='$d_frexpl'
20583 d_fs_data_s='$d_fs_data_s'
20584 d_fseeko='$d_fseeko'
20585 d_fsetpos='$d_fsetpos'
20586 d_fstatfs='$d_fstatfs'
20587 d_fstatvfs='$d_fstatvfs'
20588 d_fsync='$d_fsync'
20589 d_ftello='$d_ftello'
20590 d_ftime='$d_ftime'
20591 d_getcwd='$d_getcwd'
20592 d_getespwnam='$d_getespwnam'
20593 d_getfsstat='$d_getfsstat'
20594 d_getgrent='$d_getgrent'
20595 d_getgrent_r='$d_getgrent_r'
20596 d_getgrgid_r='$d_getgrgid_r'
20597 d_getgrnam_r='$d_getgrnam_r'
20598 d_getgrps='$d_getgrps'
20599 d_gethbyaddr='$d_gethbyaddr'
20600 d_gethbyname='$d_gethbyname'
20601 d_gethent='$d_gethent'
20602 d_gethname='$d_gethname'
20603 d_gethostbyaddr_r='$d_gethostbyaddr_r'
20604 d_gethostbyname_r='$d_gethostbyname_r'
20605 d_gethostent_r='$d_gethostent_r'
20606 d_gethostprotos='$d_gethostprotos'
20607 d_getitimer='$d_getitimer'
20608 d_getlogin='$d_getlogin'
20609 d_getlogin_r='$d_getlogin_r'
20610 d_getmnt='$d_getmnt'
20611 d_getmntent='$d_getmntent'
20612 d_getnbyaddr='$d_getnbyaddr'
20613 d_getnbyname='$d_getnbyname'
20614 d_getnent='$d_getnent'
20615 d_getnetbyaddr_r='$d_getnetbyaddr_r'
20616 d_getnetbyname_r='$d_getnetbyname_r'
20617 d_getnetent_r='$d_getnetent_r'
20618 d_getnetprotos='$d_getnetprotos'
20619 d_getpagsz='$d_getpagsz'
20620 d_getpbyname='$d_getpbyname'
20621 d_getpbynumber='$d_getpbynumber'
20622 d_getpent='$d_getpent'
20623 d_getpgid='$d_getpgid'
20624 d_getpgrp2='$d_getpgrp2'
20625 d_getpgrp='$d_getpgrp'
20626 d_getppid='$d_getppid'
20627 d_getprior='$d_getprior'
20628 d_getprotobyname_r='$d_getprotobyname_r'
20629 d_getprotobynumber_r='$d_getprotobynumber_r'
20630 d_getprotoent_r='$d_getprotoent_r'
20631 d_getprotoprotos='$d_getprotoprotos'
20632 d_getprpwnam='$d_getprpwnam'
20633 d_getpwent='$d_getpwent'
20634 d_getpwent_r='$d_getpwent_r'
20635 d_getpwnam_r='$d_getpwnam_r'
20636 d_getpwuid_r='$d_getpwuid_r'
20637 d_getsbyname='$d_getsbyname'
20638 d_getsbyport='$d_getsbyport'
20639 d_getsent='$d_getsent'
20640 d_getservbyname_r='$d_getservbyname_r'
20641 d_getservbyport_r='$d_getservbyport_r'
20642 d_getservent_r='$d_getservent_r'
20643 d_getservprotos='$d_getservprotos'
20644 d_getspnam='$d_getspnam'
20645 d_getspnam_r='$d_getspnam_r'
20646 d_gettimeod='$d_gettimeod'
20647 d_gmtime_r='$d_gmtime_r'
20648 d_gnulibc='$d_gnulibc'
20649 d_grpasswd='$d_grpasswd'
20650 d_hasmntopt='$d_hasmntopt'
20651 d_htonl='$d_htonl'
20652 d_ilogbl='$d_ilogbl'
20653 d_index='$d_index'
20654 d_inetaton='$d_inetaton'
20655 d_int64_t='$d_int64_t'
20656 d_isascii='$d_isascii'
20657 d_isfinite='$d_isfinite'
20658 d_isinf='$d_isinf'
20659 d_isnan='$d_isnan'
20660 d_isnanl='$d_isnanl'
20661 d_killpg='$d_killpg'
20662 d_lchown='$d_lchown'
20663 d_ldbl_dig='$d_ldbl_dig'
20664 d_link='$d_link'
20665 d_localtime_r='$d_localtime_r'
20666 d_locconv='$d_locconv'
20667 d_lockf='$d_lockf'
20668 d_longdbl='$d_longdbl'
20669 d_longlong='$d_longlong'
20670 d_lseekproto='$d_lseekproto'
20671 d_lstat='$d_lstat'
20672 d_madvise='$d_madvise'
20673 d_mblen='$d_mblen'
20674 d_mbstowcs='$d_mbstowcs'
20675 d_mbtowc='$d_mbtowc'
20676 d_memchr='$d_memchr'
20677 d_memcmp='$d_memcmp'
20678 d_memcpy='$d_memcpy'
20679 d_memmove='$d_memmove'
20680 d_memset='$d_memset'
20681 d_mkdir='$d_mkdir'
20682 d_mkdtemp='$d_mkdtemp'
20683 d_mkfifo='$d_mkfifo'
20684 d_mkstemp='$d_mkstemp'
20685 d_mkstemps='$d_mkstemps'
20686 d_mktime='$d_mktime'
20687 d_mmap='$d_mmap'
20688 d_modfl='$d_modfl'
20689 d_modfl_pow32_bug='$d_modfl_pow32_bug'
20690 d_modflproto='$d_modflproto'
20691 d_mprotect='$d_mprotect'
20692 d_msg='$d_msg'
20693 d_msg_ctrunc='$d_msg_ctrunc'
20694 d_msg_dontroute='$d_msg_dontroute'
20695 d_msg_oob='$d_msg_oob'
20696 d_msg_peek='$d_msg_peek'
20697 d_msg_proxy='$d_msg_proxy'
20698 d_msgctl='$d_msgctl'
20699 d_msgget='$d_msgget'
20700 d_msghdr_s='$d_msghdr_s'
20701 d_msgrcv='$d_msgrcv'
20702 d_msgsnd='$d_msgsnd'
20703 d_msync='$d_msync'
20704 d_munmap='$d_munmap'
20705 d_mymalloc='$d_mymalloc'
20706 d_nanosleep='$d_nanosleep'
20707 d_nice='$d_nice'
20708 d_nl_langinfo='$d_nl_langinfo'
20709 d_nv_preserves_uv='$d_nv_preserves_uv'
20710 d_off64_t='$d_off64_t'
20711 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
20712 d_oldpthreads='$d_oldpthreads'
20713 d_oldsock='$d_oldsock'
20714 d_open3='$d_open3'
20715 d_pathconf='$d_pathconf'
20716 d_pause='$d_pause'
20717 d_perl_otherlibdirs='$d_perl_otherlibdirs'
20718 d_phostname='$d_phostname'
20719 d_pipe='$d_pipe'
20720 d_poll='$d_poll'
20721 d_portable='$d_portable'
20722 d_procselfexe='$d_procselfexe'
20723 d_pthread_atfork='$d_pthread_atfork'
20724 d_pthread_yield='$d_pthread_yield'
20725 d_pwage='$d_pwage'
20726 d_pwchange='$d_pwchange'
20727 d_pwclass='$d_pwclass'
20728 d_pwcomment='$d_pwcomment'
20729 d_pwexpire='$d_pwexpire'
20730 d_pwgecos='$d_pwgecos'
20731 d_pwpasswd='$d_pwpasswd'
20732 d_pwquota='$d_pwquota'
20733 d_qgcvt='$d_qgcvt'
20734 d_quad='$d_quad'
20735 d_random_r='$d_random_r'
20736 d_readdir64_r='$d_readdir64_r'
20737 d_readdir='$d_readdir'
20738 d_readdir_r='$d_readdir_r'
20739 d_readlink='$d_readlink'
20740 d_readv='$d_readv'
20741 d_recvmsg='$d_recvmsg'
20742 d_rename='$d_rename'
20743 d_rewinddir='$d_rewinddir'
20744 d_rmdir='$d_rmdir'
20745 d_safebcpy='$d_safebcpy'
20746 d_safemcpy='$d_safemcpy'
20747 d_sanemcmp='$d_sanemcmp'
20748 d_sbrkproto='$d_sbrkproto'
20749 d_scalbnl='$d_scalbnl'
20750 d_sched_yield='$d_sched_yield'
20751 d_scm_rights='$d_scm_rights'
20752 d_seekdir='$d_seekdir'
20753 d_select='$d_select'
20754 d_sem='$d_sem'
20755 d_semctl='$d_semctl'
20756 d_semctl_semid_ds='$d_semctl_semid_ds'
20757 d_semctl_semun='$d_semctl_semun'
20758 d_semget='$d_semget'
20759 d_semop='$d_semop'
20760 d_sendmsg='$d_sendmsg'
20761 d_setegid='$d_setegid'
20762 d_seteuid='$d_seteuid'
20763 d_setgrent='$d_setgrent'
20764 d_setgrent_r='$d_setgrent_r'
20765 d_setgrps='$d_setgrps'
20766 d_sethent='$d_sethent'
20767 d_sethostent_r='$d_sethostent_r'
20768 d_setitimer='$d_setitimer'
20769 d_setlinebuf='$d_setlinebuf'
20770 d_setlocale='$d_setlocale'
20771 d_setlocale_r='$d_setlocale_r'
20772 d_setnent='$d_setnent'
20773 d_setnetent_r='$d_setnetent_r'
20774 d_setpent='$d_setpent'
20775 d_setpgid='$d_setpgid'
20776 d_setpgrp2='$d_setpgrp2'
20777 d_setpgrp='$d_setpgrp'
20778 d_setprior='$d_setprior'
20779 d_setproctitle='$d_setproctitle'
20780 d_setprotoent_r='$d_setprotoent_r'
20781 d_setpwent='$d_setpwent'
20782 d_setpwent_r='$d_setpwent_r'
20783 d_setregid='$d_setregid'
20784 d_setresgid='$d_setresgid'
20785 d_setresuid='$d_setresuid'
20786 d_setreuid='$d_setreuid'
20787 d_setrgid='$d_setrgid'
20788 d_setruid='$d_setruid'
20789 d_setsent='$d_setsent'
20790 d_setservent_r='$d_setservent_r'
20791 d_setsid='$d_setsid'
20792 d_setvbuf='$d_setvbuf'
20793 d_sfio='$d_sfio'
20794 d_shm='$d_shm'
20795 d_shmat='$d_shmat'
20796 d_shmatprototype='$d_shmatprototype'
20797 d_shmctl='$d_shmctl'
20798 d_shmdt='$d_shmdt'
20799 d_shmget='$d_shmget'
20800 d_sigaction='$d_sigaction'
20801 d_sigprocmask='$d_sigprocmask'
20802 d_sigsetjmp='$d_sigsetjmp'
20803 d_sockatmark='$d_sockatmark'
20804 d_sockatmarkproto='$d_sockatmarkproto'
20805 d_socket='$d_socket'
20806 d_socklen_t='$d_socklen_t'
20807 d_sockpair='$d_sockpair'
20808 d_socks5_init='$d_socks5_init'
20809 d_sqrtl='$d_sqrtl'
20810 d_srand48_r='$d_srand48_r'
20811 d_srandom_r='$d_srandom_r'
20812 d_sresgproto='$d_sresgproto'
20813 d_sresuproto='$d_sresuproto'
20814 d_statblks='$d_statblks'
20815 d_statfs_f_flags='$d_statfs_f_flags'
20816 d_statfs_s='$d_statfs_s'
20817 d_statvfs='$d_statvfs'
20818 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20819 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20820 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20821 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20822 d_stdio_stream_array='$d_stdio_stream_array'
20823 d_stdiobase='$d_stdiobase'
20824 d_stdstdio='$d_stdstdio'
20825 d_strchr='$d_strchr'
20826 d_strcoll='$d_strcoll'
20827 d_strctcpy='$d_strctcpy'
20828 d_strerrm='$d_strerrm'
20829 d_strerror='$d_strerror'
20830 d_strerror_r='$d_strerror_r'
20831 d_strftime='$d_strftime'
20832 d_strtod='$d_strtod'
20833 d_strtol='$d_strtol'
20834 d_strtold='$d_strtold'
20835 d_strtoll='$d_strtoll'
20836 d_strtoq='$d_strtoq'
20837 d_strtoul='$d_strtoul'
20838 d_strtoull='$d_strtoull'
20839 d_strtouq='$d_strtouq'
20840 d_strxfrm='$d_strxfrm'
20841 d_suidsafe='$d_suidsafe'
20842 d_symlink='$d_symlink'
20843 d_syscall='$d_syscall'
20844 d_syscallproto='$d_syscallproto'
20845 d_sysconf='$d_sysconf'
20846 d_sysernlst='$d_sysernlst'
20847 d_syserrlst='$d_syserrlst'
20848 d_system='$d_system'
20849 d_tcgetpgrp='$d_tcgetpgrp'
20850 d_tcsetpgrp='$d_tcsetpgrp'
20851 d_telldir='$d_telldir'
20852 d_telldirproto='$d_telldirproto'
20853 d_time='$d_time'
20854 d_times='$d_times'
20855 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20856 d_tm_tm_zone='$d_tm_tm_zone'
20857 d_tmpnam_r='$d_tmpnam_r'
20858 d_truncate='$d_truncate'
20859 d_ttyname_r='$d_ttyname_r'
20860 d_tzname='$d_tzname'
20861 d_u32align='$d_u32align'
20862 d_ualarm='$d_ualarm'
20863 d_umask='$d_umask'
20864 d_uname='$d_uname'
20865 d_union_semun='$d_union_semun'
20866 d_unordered='$d_unordered'
20867 d_usleep='$d_usleep'
20868 d_usleepproto='$d_usleepproto'
20869 d_ustat='$d_ustat'
20870 d_vendorarch='$d_vendorarch'
20871 d_vendorbin='$d_vendorbin'
20872 d_vendorlib='$d_vendorlib'
20873 d_vendorscript='$d_vendorscript'
20874 d_vfork='$d_vfork'
20875 d_void_closedir='$d_void_closedir'
20876 d_voidsig='$d_voidsig'
20877 d_voidtty='$d_voidtty'
20878 d_volatile='$d_volatile'
20879 d_vprintf='$d_vprintf'
20880 d_wait4='$d_wait4'
20881 d_waitpid='$d_waitpid'
20882 d_wcstombs='$d_wcstombs'
20883 d_wctomb='$d_wctomb'
20884 d_writev='$d_writev'
20885 d_xenix='$d_xenix'
20886 date='$date'
20887 db_hashtype='$db_hashtype'
20888 db_prefixtype='$db_prefixtype'
20889 db_version_major='$db_version_major'
20890 db_version_minor='$db_version_minor'
20891 db_version_patch='$db_version_patch'
20892 defvoidused='$defvoidused'
20893 direntrytype='$direntrytype'
20894 dlext='$dlext'
20895 dlsrc='$dlsrc'
20896 doublesize='$doublesize'
20897 drand01='$drand01'
20898 drand48_r_proto='$drand48_r_proto'
20899 dynamic_ext='$dynamic_ext'
20900 eagain='$eagain'
20901 ebcdic='$ebcdic'
20902 echo='$echo'
20903 egrep='$egrep'
20904 emacs='$emacs'
20905 endgrent_r_proto='$endgrent_r_proto'
20906 endhostent_r_proto='$endhostent_r_proto'
20907 endnetent_r_proto='$endnetent_r_proto'
20908 endprotoent_r_proto='$endprotoent_r_proto'
20909 endpwent_r_proto='$endpwent_r_proto'
20910 endservent_r_proto='$endservent_r_proto'
20911 eunicefix='$eunicefix'
20912 exe_ext='$exe_ext'
20913 expr='$expr'
20914 extensions='$extensions'
20915 extras='$extras'
20916 fflushNULL='$fflushNULL'
20917 fflushall='$fflushall'
20918 find='$find'
20919 firstmakefile='$firstmakefile'
20920 flex='$flex'
20921 fpossize='$fpossize'
20922 fpostype='$fpostype'
20923 freetype='$freetype'
20924 from='$from'
20925 full_ar='$full_ar'
20926 full_csh='$full_csh'
20927 full_sed='$full_sed'
20928 gccansipedantic='$gccansipedantic'
20929 gccosandvers='$gccosandvers'
20930 gccversion='$gccversion'
20931 getgrent_r_proto='$getgrent_r_proto'
20932 getgrgid_r_proto='$getgrgid_r_proto'
20933 getgrnam_r_proto='$getgrnam_r_proto'
20934 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
20935 gethostbyname_r_proto='$gethostbyname_r_proto'
20936 gethostent_r_proto='$gethostent_r_proto'
20937 getlogin_r_proto='$getlogin_r_proto'
20938 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
20939 getnetbyname_r_proto='$getnetbyname_r_proto'
20940 getnetent_r_proto='$getnetent_r_proto'
20941 getprotobyname_r_proto='$getprotobyname_r_proto'
20942 getprotobynumber_r_proto='$getprotobynumber_r_proto'
20943 getprotoent_r_proto='$getprotoent_r_proto'
20944 getpwent_r_proto='$getpwent_r_proto'
20945 getpwnam_r_proto='$getpwnam_r_proto'
20946 getpwuid_r_proto='$getpwuid_r_proto'
20947 getservbyname_r_proto='$getservbyname_r_proto'
20948 getservbyport_r_proto='$getservbyport_r_proto'
20949 getservent_r_proto='$getservent_r_proto'
20950 getspnam_r_proto='$getspnam_r_proto'
20951 gidformat='$gidformat'
20952 gidsign='$gidsign'
20953 gidsize='$gidsize'
20954 gidtype='$gidtype'
20955 glibpth='$glibpth'
20956 gmake='$gmake'
20957 gmtime_r_proto='$gmtime_r_proto'
20958 gnulibc_version='$gnulibc_version'
20959 grep='$grep'
20960 groupcat='$groupcat'
20961 groupstype='$groupstype'
20962 gzip='$gzip'
20963 h_fcntl='$h_fcntl'
20964 h_sysfile='$h_sysfile'
20965 hint='$hint'
20966 hostcat='$hostcat'
20967 html1dir='$html1dir'
20968 html1direxp='$html1direxp'
20969 html3dir='$html3dir'
20970 html3direxp='$html3direxp'
20971 i16size='$i16size'
20972 i16type='$i16type'
20973 i32size='$i32size'
20974 i32type='$i32type'
20975 i64size='$i64size'
20976 i64type='$i64type'
20977 i8size='$i8size'
20978 i8type='$i8type'
20979 i_arpainet='$i_arpainet'
20980 i_bsdioctl='$i_bsdioctl'
20981 i_crypt='$i_crypt'
20982 i_db='$i_db'
20983 i_dbm='$i_dbm'
20984 i_dirent='$i_dirent'
20985 i_dld='$i_dld'
20986 i_dlfcn='$i_dlfcn'
20987 i_fcntl='$i_fcntl'
20988 i_float='$i_float'
20989 i_fp='$i_fp'
20990 i_fp_class='$i_fp_class'
20991 i_gdbm='$i_gdbm'
20992 i_grp='$i_grp'
20993 i_ieeefp='$i_ieeefp'
20994 i_inttypes='$i_inttypes'
20995 i_langinfo='$i_langinfo'
20996 i_libutil='$i_libutil'
20997 i_limits='$i_limits'
20998 i_locale='$i_locale'
20999 i_machcthr='$i_machcthr'
21000 i_malloc='$i_malloc'
21001 i_math='$i_math'
21002 i_memory='$i_memory'
21003 i_mntent='$i_mntent'
21004 i_ndbm='$i_ndbm'
21005 i_netdb='$i_netdb'
21006 i_neterrno='$i_neterrno'
21007 i_netinettcp='$i_netinettcp'
21008 i_niin='$i_niin'
21009 i_poll='$i_poll'
21010 i_prot='$i_prot'
21011 i_pthread='$i_pthread'
21012 i_pwd='$i_pwd'
21013 i_rpcsvcdbm='$i_rpcsvcdbm'
21014 i_sfio='$i_sfio'
21015 i_sgtty='$i_sgtty'
21016 i_shadow='$i_shadow'
21017 i_socks='$i_socks'
21018 i_stdarg='$i_stdarg'
21019 i_stddef='$i_stddef'
21020 i_stdlib='$i_stdlib'
21021 i_string='$i_string'
21022 i_sunmath='$i_sunmath'
21023 i_sysaccess='$i_sysaccess'
21024 i_sysdir='$i_sysdir'
21025 i_sysfile='$i_sysfile'
21026 i_sysfilio='$i_sysfilio'
21027 i_sysin='$i_sysin'
21028 i_sysioctl='$i_sysioctl'
21029 i_syslog='$i_syslog'
21030 i_sysmman='$i_sysmman'
21031 i_sysmode='$i_sysmode'
21032 i_sysmount='$i_sysmount'
21033 i_sysndir='$i_sysndir'
21034 i_sysparam='$i_sysparam'
21035 i_sysresrc='$i_sysresrc'
21036 i_syssecrt='$i_syssecrt'
21037 i_sysselct='$i_sysselct'
21038 i_syssockio='$i_syssockio'
21039 i_sysstat='$i_sysstat'
21040 i_sysstatfs='$i_sysstatfs'
21041 i_sysstatvfs='$i_sysstatvfs'
21042 i_systime='$i_systime'
21043 i_systimek='$i_systimek'
21044 i_systimes='$i_systimes'
21045 i_systypes='$i_systypes'
21046 i_sysuio='$i_sysuio'
21047 i_sysun='$i_sysun'
21048 i_sysutsname='$i_sysutsname'
21049 i_sysvfs='$i_sysvfs'
21050 i_syswait='$i_syswait'
21051 i_termio='$i_termio'
21052 i_termios='$i_termios'
21053 i_time='$i_time'
21054 i_unistd='$i_unistd'
21055 i_ustat='$i_ustat'
21056 i_utime='$i_utime'
21057 i_values='$i_values'
21058 i_varargs='$i_varargs'
21059 i_varhdr='$i_varhdr'
21060 i_vfork='$i_vfork'
21061 ignore_versioned_solibs='$ignore_versioned_solibs'
21062 inc_version_list='$inc_version_list'
21063 inc_version_list_init='$inc_version_list_init'
21064 incpath='$incpath'
21065 inews='$inews'
21066 installarchlib='$installarchlib'
21067 installbin='$installbin'
21068 installhtml1dir='$installhtml1dir'
21069 installhtml3dir='$installhtml3dir'
21070 installman1dir='$installman1dir'
21071 installman3dir='$installman3dir'
21072 installprefix='$installprefix'
21073 installprefixexp='$installprefixexp'
21074 installprivlib='$installprivlib'
21075 installscript='$installscript'
21076 installsitearch='$installsitearch'
21077 installsitebin='$installsitebin'
21078 installsitehtml1='$installsitehtml1'
21079 installsitehtml3='$installsitehtml3'
21080 installsitelib='$installsitelib'
21081 installsiteman1='$installsiteman1'
21082 installsiteman3='$installsiteman3'
21083 installsitescript='$installsitescript'
21084 installstyle='$installstyle'
21085 installusrbinperl='$installusrbinperl'
21086 installvendorarch='$installvendorarch'
21087 installvendorbin='$installvendorbin'
21088 installvendorhtml1='$installvendorhtml1'
21089 installvendorhtml3='$installvendorhtml3'
21090 installvendorlib='$installvendorlib'
21091 installvendorman1='$installvendorman1'
21092 installvendorman3='$installvendorman3'
21093 installvendorscript='$installvendorscript'
21094 intsize='$intsize'
21095 issymlink='$issymlink'
21096 ivdformat='$ivdformat'
21097 ivsize='$ivsize'
21098 ivtype='$ivtype'
21099 known_extensions='$known_extensions'
21100 ksh='$ksh'
21101 ld='$ld'
21102 lddlflags='$lddlflags'
21103 ldflags='$ldflags'
21104 ldflags_uselargefiles='$ldflags_uselargefiles'
21105 ldlibpthname='$ldlibpthname'
21106 less='$less'
21107 lib_ext='$lib_ext'
21108 libc='$libc'
21109 libperl='$libperl'
21110 libpth='$libpth'
21111 libs='$libs'
21112 libsdirs='$libsdirs'
21113 libsfiles='$libsfiles'
21114 libsfound='$libsfound'
21115 libspath='$libspath'
21116 libswanted='$libswanted'
21117 libswanted_uselargefiles='$libswanted_uselargefiles'
21118 line='$line'
21119 lint='$lint'
21120 lkflags='$lkflags'
21121 ln='$ln'
21122 lns='$lns'
21123 localtime_r_proto='$localtime_r_proto'
21124 locincpth='$locincpth'
21125 loclibpth='$loclibpth'
21126 longdblsize='$longdblsize'
21127 longlongsize='$longlongsize'
21128 longsize='$longsize'
21129 lp='$lp'
21130 lpr='$lpr'
21131 ls='$ls'
21132 lseeksize='$lseeksize'
21133 lseektype='$lseektype'
21134 mail='$mail'
21135 mailx='$mailx'
21136 make='$make'
21137 make_set_make='$make_set_make'
21138 mallocobj='$mallocobj'
21139 mallocsrc='$mallocsrc'
21140 malloctype='$malloctype'
21141 man1dir='$man1dir'
21142 man1direxp='$man1direxp'
21143 man1ext='$man1ext'
21144 man3dir='$man3dir'
21145 man3direxp='$man3direxp'
21146 man3ext='$man3ext'
21147 mips_type='$mips_type'
21148 mkdir='$mkdir'
21149 mmaptype='$mmaptype'
21150 modetype='$modetype'
21151 more='$more'
21152 multiarch='$multiarch'
21153 mv='$mv'
21154 myarchname='$myarchname'
21155 mydomain='$mydomain'
21156 myhostname='$myhostname'
21157 myuname='$myuname'
21158 n='$n'
21159 need_va_copy='$need_va_copy'
21160 netdb_hlen_type='$netdb_hlen_type'
21161 netdb_host_type='$netdb_host_type'
21162 netdb_name_type='$netdb_name_type'
21163 netdb_net_type='$netdb_net_type'
21164 nm='$nm'
21165 nm_opt='$nm_opt'
21166 nm_so_opt='$nm_so_opt'
21167 nonxs_ext='$nonxs_ext'
21168 nroff='$nroff'
21169 nvEUformat='$nvEUformat'
21170 nvFUformat='$nvFUformat'
21171 nvGUformat='$nvGUformat'
21172 nv_preserves_uv_bits='$nv_preserves_uv_bits'
21173 nveformat='$nveformat'
21174 nvfformat='$nvfformat'
21175 nvgformat='$nvgformat'
21176 nvsize='$nvsize'
21177 nvtype='$nvtype'
21178 o_nonblock='$o_nonblock'
21179 obj_ext='$obj_ext'
21180 old_pthread_create_joinable='$old_pthread_create_joinable'
21181 optimize='$optimize'
21182 orderlib='$orderlib'
21183 osname='$osname'
21184 osvers='$osvers'
21185 otherlibdirs='$otherlibdirs'
21186 package='$package'
21187 pager='$pager'
21188 passcat='$passcat'
21189 patchlevel='$patchlevel'
21190 path_sep='$path_sep'
21191 perl5='$perl5'
21192 perl='$perl'
21193 perl_patchlevel='$perl_patchlevel'
21194 perladmin='$perladmin'
21195 perllibs='$perllibs'
21196 perlpath='$perlpath'
21197 pg='$pg'
21198 phostname='$phostname'
21199 pidtype='$pidtype'
21200 plibpth='$plibpth'
21201 pm_apiversion='$pm_apiversion'
21202 pmake='$pmake'
21203 pr='$pr'
21204 prefix='$prefix'
21205 prefixexp='$prefixexp'
21206 privlib='$privlib'
21207 privlibexp='$privlibexp'
21208 procselfexe='$procselfexe'
21209 prototype='$prototype'
21210 ptrsize='$ptrsize'
21211 quadkind='$quadkind'
21212 quadtype='$quadtype'
21213 randbits='$randbits'
21214 randfunc='$randfunc'
21215 random_r_proto='$random_r_proto'
21216 randseedtype='$randseedtype'
21217 ranlib='$ranlib'
21218 rd_nodata='$rd_nodata'
21219 readdir64_r_proto='$readdir64_r_proto'
21220 readdir_r_proto='$readdir_r_proto'
21221 revision='$revision'
21222 rm='$rm'
21223 rmail='$rmail'
21224 run='$run'
21225 runnm='$runnm'
21226 sPRIEUldbl='$sPRIEUldbl'
21227 sPRIFUldbl='$sPRIFUldbl'
21228 sPRIGUldbl='$sPRIGUldbl'
21229 sPRIXU64='$sPRIXU64'
21230 sPRId64='$sPRId64'
21231 sPRIeldbl='$sPRIeldbl'
21232 sPRIfldbl='$sPRIfldbl'
21233 sPRIgldbl='$sPRIgldbl'
21234 sPRIi64='$sPRIi64'
21235 sPRIo64='$sPRIo64'
21236 sPRIu64='$sPRIu64'
21237 sPRIx64='$sPRIx64'
21238 sSCNfldbl='$sSCNfldbl'
21239 sched_yield='$sched_yield'
21240 scriptdir='$scriptdir'
21241 scriptdirexp='$scriptdirexp'
21242 sed='$sed'
21243 seedfunc='$seedfunc'
21244 selectminbits='$selectminbits'
21245 selecttype='$selecttype'
21246 sendmail='$sendmail'
21247 setgrent_r_proto='$setgrent_r_proto'
21248 sethostent_r_proto='$sethostent_r_proto'
21249 setlocale_r_proto='$setlocale_r_proto'
21250 setnetent_r_proto='$setnetent_r_proto'
21251 setprotoent_r_proto='$setprotoent_r_proto'
21252 setpwent_r_proto='$setpwent_r_proto'
21253 setservent_r_proto='$setservent_r_proto'
21254 sh='$sh'
21255 shar='$shar'
21256 sharpbang='$sharpbang'
21257 shmattype='$shmattype'
21258 shortsize='$shortsize'
21259 shrpenv='$shrpenv'
21260 shsharp='$shsharp'
21261 sig_count='$sig_count'
21262 sig_name='$sig_name'
21263 sig_name_init='$sig_name_init'
21264 sig_num='$sig_num'
21265 sig_num_init='$sig_num_init'
21266 sig_size='$sig_size'
21267 signal_t='$signal_t'
21268 sitearch='$sitearch'
21269 sitearchexp='$sitearchexp'
21270 sitebin='$sitebin'
21271 sitebinexp='$sitebinexp'
21272 sitehtml1='$sitehtml1'
21273 sitehtml1exp='$sitehtml1exp'
21274 sitehtml3='$sitehtml3'
21275 sitehtml3exp='$sitehtml3exp'
21276 sitelib='$sitelib'
21277 sitelib_stem='$sitelib_stem'
21278 sitelibexp='$sitelibexp'
21279 siteman1='$siteman1'
21280 siteman1exp='$siteman1exp'
21281 siteman3='$siteman3'
21282 siteman3exp='$siteman3exp'
21283 siteprefix='$siteprefix'
21284 siteprefixexp='$siteprefixexp'
21285 sitescript='$sitescript'
21286 sitescriptexp='$sitescriptexp'
21287 sizesize='$sizesize'
21288 sizetype='$sizetype'
21289 sleep='$sleep'
21290 smail='$smail'
21291 so='$so'
21292 sockethdr='$sockethdr'
21293 socketlib='$socketlib'
21294 socksizetype='$socksizetype'
21295 sort='$sort'
21296 spackage='$spackage'
21297 spitshell='$spitshell'
21298 srand48_r_proto='$srand48_r_proto'
21299 srandom_r_proto='$srandom_r_proto'
21300 src='$src'
21301 ssizetype='$ssizetype'
21302 startperl='$startperl'
21303 startsh='$startsh'
21304 static_ext='$static_ext'
21305 stdchar='$stdchar'
21306 stdio_base='$stdio_base'
21307 stdio_bufsiz='$stdio_bufsiz'
21308 stdio_cnt='$stdio_cnt'
21309 stdio_filbuf='$stdio_filbuf'
21310 stdio_ptr='$stdio_ptr'
21311 stdio_stream_array='$stdio_stream_array'
21312 strerror_r_proto='$strerror_r_proto'
21313 strings='$strings'
21314 submit='$submit'
21315 subversion='$subversion'
21316 sysman='$sysman'
21317 tail='$tail'
21318 tar='$tar'
21319 targetarch='$targetarch'
21320 tbl='$tbl'
21321 tee='$tee'
21322 test='$test'
21323 timeincl='$timeincl'
21324 timetype='$timetype'
21325 tmpnam_r_proto='$tmpnam_r_proto'
21326 to='$to'
21327 touch='$touch'
21328 tr='$tr'
21329 trnl='$trnl'
21330 troff='$troff'
21331 ttyname_r_proto='$ttyname_r_proto'
21332 u16size='$u16size'
21333 u16type='$u16type'
21334 u32size='$u32size'
21335 u32type='$u32type'
21336 u64size='$u64size'
21337 u64type='$u64type'
21338 u8size='$u8size'
21339 u8type='$u8type'
21340 uidformat='$uidformat'
21341 uidsign='$uidsign'
21342 uidsize='$uidsize'
21343 uidtype='$uidtype'
21344 uname='$uname'
21345 uniq='$uniq'
21346 uquadtype='$uquadtype'
21347 use5005threads='$use5005threads'
21348 use64bitall='$use64bitall'
21349 use64bitint='$use64bitint'
21350 usecrosscompile='$usecrosscompile'
21351 usedl='$usedl'
21352 usefaststdio='$usefaststdio'
21353 useithreads='$useithreads'
21354 uselargefiles='$uselargefiles'
21355 uselongdouble='$uselongdouble'
21356 usemorebits='$usemorebits'
21357 usemultiplicity='$usemultiplicity'
21358 usemymalloc='$usemymalloc'
21359 usenm='$usenm'
21360 useopcode='$useopcode'
21361 useperlio='$useperlio'
21362 useposix='$useposix'
21363 usereentrant='$usereentrant'
21364 usesfio='$usesfio'
21365 useshrplib='$useshrplib'
21366 usesocks='$usesocks'
21367 usethreads='$usethreads'
21368 usevendorprefix='$usevendorprefix'
21369 usevfork='$usevfork'
21370 usrinc='$usrinc'
21371 uuname='$uuname'
21372 uvXUformat='$uvXUformat'
21373 uvoformat='$uvoformat'
21374 uvsize='$uvsize'
21375 uvtype='$uvtype'
21376 uvuformat='$uvuformat'
21377 uvxformat='$uvxformat'
21378 vendorarch='$vendorarch'
21379 vendorarchexp='$vendorarchexp'
21380 vendorbin='$vendorbin'
21381 vendorbinexp='$vendorbinexp'
21382 vendorhtml1='$vendorhtml1'
21383 vendorhtml1exp='$vendorhtml1exp'
21384 vendorhtml3='$vendorhtml3'
21385 vendorhtml3exp='$vendorhtml3exp'
21386 vendorlib='$vendorlib'
21387 vendorlib_stem='$vendorlib_stem'
21388 vendorlibexp='$vendorlibexp'
21389 vendorman1='$vendorman1'
21390 vendorman1exp='$vendorman1exp'
21391 vendorman3='$vendorman3'
21392 vendorman3exp='$vendorman3exp'
21393 vendorprefix='$vendorprefix'
21394 vendorprefixexp='$vendorprefixexp'
21395 vendorscript='$vendorscript'
21396 vendorscriptexp='$vendorscriptexp'
21397 version='$version'
21398 version_patchlevel_string='$version_patchlevel_string'
21399 versiononly='$versiononly'
21400 vi='$vi'
21401 voidflags='$voidflags'
21402 xlibpth='$xlibpth'
21403 xs_apiversion='$xs_apiversion'
21404 yacc='$yacc'
21405 yaccflags='$yaccflags'
21406 zcat='$zcat'
21407 zip='$zip'
21408 EOT
21409
21410 : Add in command line options if available
21411 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
21412
21413 : add special variables
21414 $test -f $src/patchlevel.h && \
21415 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
21416 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
21417 echo "PERL_CONFIG_SH=true" >>config.sh
21418
21419 : propagate old symbols
21420 if $test -f UU/config.sh; then
21421         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
21422         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
21423         $sort | $uniq -u >UU/oldsyms
21424         set X `cat UU/oldsyms`
21425         shift
21426         case $# in
21427         0) ;;
21428         *)
21429                 cat <<EOM
21430 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
21431 EOM
21432                 echo "# Variables propagated from previous config.sh file." >>config.sh
21433                 for sym in `cat UU/oldsyms`; do
21434                         echo "    Propagating $hint variable "'$'"$sym..."
21435                         eval 'tmp="$'"${sym}"'"'
21436                         echo "$tmp" | \
21437                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
21438                 done
21439                 ;;
21440         esac
21441 fi
21442
21443 : Finish up by extracting the .SH files
21444 case "$alldone" in
21445 exit)
21446         $rm -rf UU
21447         echo "Extraction done."
21448         exit 0
21449         ;;
21450 cont)
21451         ;;
21452 '')
21453         dflt=''
21454         nostick=true
21455         $cat <<EOM
21456
21457 If you'd like to make any changes to the config.sh file before I begin
21458 to configure things, do it as a shell escape now (e.g. !vi config.sh).
21459
21460 EOM
21461         rp="Press return or use a shell escape to edit config.sh:"
21462         . UU/myread
21463         nostick=''
21464         case "$ans" in
21465         '') ;;
21466         *) : in case they cannot read
21467                 sh 1>&4 -c "$ans";;
21468         esac
21469         ;;
21470 esac
21471
21472 : if this fails, just run all the .SH files by hand
21473 . ./config.sh
21474
21475 echo " "
21476 exec 1>&4
21477 pwd=`pwd`
21478 . ./UU/extract
21479 cd "$pwd"
21480
21481 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
21482         dflt=y
21483         case "$silent" in
21484         true) ;;
21485         *)
21486                 $cat <<EOM
21487
21488 Now you need to generate make dependencies by running "$make depend".
21489 You might prefer to run it in background: "$make depend > makedepend.out &"
21490 It can take a while, so you might not want to run it right now.
21491
21492 EOM
21493                 ;;
21494         esac
21495         rp="Run $make depend now?"
21496         . UU/myread
21497         case "$ans" in
21498         y*)
21499                 $make depend && echo "Now you must run '$make'."
21500                 ;;
21501         *)
21502                 echo "You must run '$make depend' then '$make'."
21503                 ;;
21504         esac
21505 elif test -f [Mm]akefile; then
21506         echo " "
21507         echo "Now you must run a $make."
21508 else
21509         echo "Configure done."
21510 fi
21511
21512 if $test -f Policy.sh; then
21513     $cat <<EOM
21514
21515 If you compile $package on a different machine or from a different object
21516 directory, copy the Policy.sh file from this object directory to the
21517 new one before you run Configure -- this will help you with most of
21518 the policy defaults.
21519
21520 EOM
21521 fi
21522 if $test -f config.msg; then
21523     echo "Hmm.  I also noted the following information while running:"
21524     echo " "
21525     $cat config.msg >&4
21526     $rm -f config.msg
21527 fi
21528 $rm -f kit*isdone ark*isdone
21529 $rm -rf UU
21530
21531 : End of Configure
21532